-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathauth-rules.ts
More file actions
66 lines (62 loc) · 2.01 KB
/
Copy pathauth-rules.ts
File metadata and controls
66 lines (62 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as V2API from './v2/v2';
import {
AuthRule,
AuthRuleCondition,
ConditionalAttribute,
ConditionalBlockParameters,
RuleStats,
V2,
V2ApplyParams,
V2ApplyResponse,
V2CreateParams,
V2CreateResponse,
V2DraftParams,
V2DraftResponse,
V2ListParams,
V2ListResponse,
V2ListResponsesCursorPage,
V2PromoteResponse,
V2ReportResponse,
V2RetrieveReportParams,
V2RetrieveReportResponse,
V2RetrieveResponse,
V2UpdateParams,
V2UpdateResponse,
VelocityLimitParams,
VelocityLimitParamsPeriodWindow,
} from './v2/v2';
export class AuthRules extends APIResource {
v2: V2API.V2 = new V2API.V2(this._client);
}
AuthRules.V2 = V2;
AuthRules.V2ListResponsesCursorPage = V2ListResponsesCursorPage;
export declare namespace AuthRules {
export {
V2 as V2,
type AuthRule as AuthRule,
type AuthRuleCondition as AuthRuleCondition,
type ConditionalAttribute as ConditionalAttribute,
type ConditionalBlockParameters as ConditionalBlockParameters,
type RuleStats as RuleStats,
type VelocityLimitParams as VelocityLimitParams,
type VelocityLimitParamsPeriodWindow as VelocityLimitParamsPeriodWindow,
type V2CreateResponse as V2CreateResponse,
type V2RetrieveResponse as V2RetrieveResponse,
type V2UpdateResponse as V2UpdateResponse,
type V2ListResponse as V2ListResponse,
type V2ApplyResponse as V2ApplyResponse,
type V2DraftResponse as V2DraftResponse,
type V2PromoteResponse as V2PromoteResponse,
type V2ReportResponse as V2ReportResponse,
type V2RetrieveReportResponse as V2RetrieveReportResponse,
V2ListResponsesCursorPage as V2ListResponsesCursorPage,
type V2CreateParams as V2CreateParams,
type V2UpdateParams as V2UpdateParams,
type V2ListParams as V2ListParams,
type V2ApplyParams as V2ApplyParams,
type V2DraftParams as V2DraftParams,
type V2RetrieveReportParams as V2RetrieveReportParams,
};
}