@alicloud/eiam20211201 2.18.0 → 2.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +10 -10
- package/dist/client.js +19 -10
- package/dist/client.js.map +1 -1
- package/dist/models/CreateAuthorizationResourceRequest.d.ts +42 -2
- package/dist/models/CreateAuthorizationResourceRequest.js +47 -1
- package/dist/models/CreateAuthorizationResourceRequest.js.map +1 -1
- package/dist/models/CreateInstanceRequest.d.ts +8 -0
- package/dist/models/CreateInstanceRequest.js +2 -0
- package/dist/models/CreateInstanceRequest.js.map +1 -1
- package/dist/models/CreateInstanceResponseBody.d.ts +1 -1
- package/dist/models/ExecuteInstanceFailoverRequest.d.ts +4 -2
- package/dist/models/ExecuteInstanceFailoverRequest.js.map +1 -1
- package/dist/models/ExecuteInstanceFailoverResponseBody.d.ts +3 -0
- package/dist/models/ExecuteInstanceFailoverResponseBody.js.map +1 -1
- package/dist/models/GetAuthorizationResourceResponseBody.d.ts +59 -5
- package/dist/models/GetAuthorizationResourceResponseBody.js +51 -1
- package/dist/models/GetAuthorizationResourceResponseBody.js.map +1 -1
- package/dist/models/GetInstanceLicenseResponseBody.d.ts +26 -21
- package/dist/models/GetInstanceLicenseResponseBody.js +2 -0
- package/dist/models/GetInstanceLicenseResponseBody.js.map +1 -1
- package/dist/models/ListAuthorizationResourcesRequest.d.ts +7 -7
- package/dist/models/ListAuthorizationResourcesResponseBody.d.ts +60 -5
- package/dist/models/ListAuthorizationResourcesResponseBody.js +51 -1
- package/dist/models/ListAuthorizationResourcesResponseBody.js.map +1 -1
- package/dist/models/ListInstancesRequest.d.ts +15 -0
- package/dist/models/ListInstancesRequest.js +2 -0
- package/dist/models/ListInstancesRequest.js.map +1 -1
- package/dist/models/ListInstancesResponseBody.d.ts +4 -4
- package/dist/models/model.d.ts +6 -0
- package/dist/models/model.js +51 -39
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +22 -10
- package/src/models/CreateAuthorizationResourceRequest.ts +70 -2
- package/src/models/CreateInstanceRequest.ts +10 -0
- package/src/models/CreateInstanceResponseBody.ts +1 -1
- package/src/models/ExecuteInstanceFailoverRequest.ts +4 -2
- package/src/models/ExecuteInstanceFailoverResponseBody.ts +3 -0
- package/src/models/GetAuthorizationResourceResponseBody.ts +91 -5
- package/src/models/GetInstanceLicenseResponseBody.ts +28 -21
- package/src/models/ListAuthorizationResourcesRequest.ts +7 -7
- package/src/models/ListAuthorizationResourcesResponseBody.ts +92 -5
- package/src/models/ListInstancesRequest.ts +17 -0
- package/src/models/ListInstancesResponseBody.ts +4 -4
- package/src/models/model.ts +6 -0
|
@@ -4,9 +4,9 @@ export declare class ListAuthorizationResourcesRequestFilter extends $dara.Model
|
|
|
4
4
|
* @remarks
|
|
5
5
|
* The name of the filter field. Valid values:
|
|
6
6
|
*
|
|
7
|
-
* - AuthorizationResourceEntityType: the resource entity
|
|
7
|
+
* - AuthorizationResourceEntityType: the type of the resource entity associated with the authorization resource.
|
|
8
8
|
*
|
|
9
|
-
* - AuthorizationResourceEntityId: the resource entity
|
|
9
|
+
* - AuthorizationResourceEntityId: the ID of the resource entity associated with the authorization resource.
|
|
10
10
|
*
|
|
11
11
|
* @example
|
|
12
12
|
* AuthorizationResourceEntityId
|
|
@@ -14,7 +14,7 @@ export declare class ListAuthorizationResourcesRequestFilter extends $dara.Model
|
|
|
14
14
|
name?: string;
|
|
15
15
|
/**
|
|
16
16
|
* @remarks
|
|
17
|
-
* The
|
|
17
|
+
* The list of filter field values.
|
|
18
18
|
*/
|
|
19
19
|
value?: string[];
|
|
20
20
|
static names(): {
|
|
@@ -56,11 +56,11 @@ export declare class ListAuthorizationResourcesRequest extends $dara.Model {
|
|
|
56
56
|
instanceId?: string;
|
|
57
57
|
/**
|
|
58
58
|
* @remarks
|
|
59
|
-
* The maximum number of
|
|
59
|
+
* The maximum number of records per page.
|
|
60
60
|
*
|
|
61
|
-
* -
|
|
61
|
+
* - If this parameter is not specified, the default value is 20.
|
|
62
62
|
*
|
|
63
|
-
* -
|
|
63
|
+
* - The maximum value is 100.
|
|
64
64
|
*
|
|
65
65
|
* @example
|
|
66
66
|
* 20
|
|
@@ -70,7 +70,7 @@ export declare class ListAuthorizationResourcesRequest extends $dara.Model {
|
|
|
70
70
|
* @remarks
|
|
71
71
|
* The token that identifies the start position of the next page.
|
|
72
72
|
*
|
|
73
|
-
* - If
|
|
73
|
+
* - If this parameter is not specified, the query starts from the first page.
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
76
|
* NTxxxxxexample
|
|
@@ -1,8 +1,42 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* Specifies whether same-name identity accounts are supported.
|
|
6
|
+
*/
|
|
7
|
+
allowSameNameIdentity?: boolean;
|
|
8
|
+
static names(): {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
};
|
|
11
|
+
static types(): {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
validate(): void;
|
|
15
|
+
constructor(map?: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
export declare class ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition extends $dara.Model {
|
|
20
|
+
/**
|
|
21
|
+
* @remarks
|
|
22
|
+
* The effective condition when used as a credential.
|
|
23
|
+
*/
|
|
24
|
+
credentialCondition?: ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition;
|
|
25
|
+
static names(): {
|
|
26
|
+
[key: string]: string;
|
|
27
|
+
};
|
|
28
|
+
static types(): {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
};
|
|
31
|
+
validate(): void;
|
|
32
|
+
constructor(map?: {
|
|
33
|
+
[key: string]: any;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
2
36
|
export declare class ListAuthorizationResourcesResponseBodyAuthorizationResources extends $dara.Model {
|
|
3
37
|
/**
|
|
4
38
|
* @remarks
|
|
5
|
-
* The resource entity
|
|
39
|
+
* The ID of the resource entity associated with the authorization resource.
|
|
6
40
|
*
|
|
7
41
|
* @example
|
|
8
42
|
* carole_01kmek49aqxxxx
|
|
@@ -10,7 +44,7 @@ export declare class ListAuthorizationResourcesResponseBodyAuthorizationResource
|
|
|
10
44
|
authorizationResourceEntityId?: string;
|
|
11
45
|
/**
|
|
12
46
|
* @remarks
|
|
13
|
-
* The resource entity
|
|
47
|
+
* The type of the resource entity associated with the authorization resource. Valid values:
|
|
14
48
|
* - cloud_account_role: cloud role.
|
|
15
49
|
*
|
|
16
50
|
* @example
|
|
@@ -41,6 +75,19 @@ export declare class ListAuthorizationResourcesResponseBodyAuthorizationResource
|
|
|
41
75
|
* ca_01kmegjc11qa1txxxxx
|
|
42
76
|
*/
|
|
43
77
|
cloudAccountId?: string;
|
|
78
|
+
/**
|
|
79
|
+
* @remarks
|
|
80
|
+
* The effective condition.
|
|
81
|
+
*/
|
|
82
|
+
condition?: ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition;
|
|
83
|
+
/**
|
|
84
|
+
* @remarks
|
|
85
|
+
* The creation time.
|
|
86
|
+
*
|
|
87
|
+
* @example
|
|
88
|
+
* 1787023451494
|
|
89
|
+
*/
|
|
90
|
+
createTime?: number;
|
|
44
91
|
/**
|
|
45
92
|
* @remarks
|
|
46
93
|
* The instance ID.
|
|
@@ -49,6 +96,14 @@ export declare class ListAuthorizationResourcesResponseBodyAuthorizationResource
|
|
|
49
96
|
* idaas_ue2jvisn35ea5lmthk267xxxxx
|
|
50
97
|
*/
|
|
51
98
|
instanceId?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @remarks
|
|
101
|
+
* The update time.
|
|
102
|
+
*
|
|
103
|
+
* @example
|
|
104
|
+
* 1787023451494
|
|
105
|
+
*/
|
|
106
|
+
updateTime?: number;
|
|
52
107
|
static names(): {
|
|
53
108
|
[key: string]: string;
|
|
54
109
|
};
|
|
@@ -68,7 +123,7 @@ export declare class ListAuthorizationResourcesResponseBody extends $dara.Model
|
|
|
68
123
|
authorizationResources?: ListAuthorizationResourcesResponseBodyAuthorizationResources[];
|
|
69
124
|
/**
|
|
70
125
|
* @remarks
|
|
71
|
-
* The number of entries per page in
|
|
126
|
+
* The number of entries per page in a paged query. This parameter is used for paging.
|
|
72
127
|
*
|
|
73
128
|
* @example
|
|
74
129
|
* 20
|
|
@@ -76,7 +131,7 @@ export declare class ListAuthorizationResourcesResponseBody extends $dara.Model
|
|
|
76
131
|
maxResults?: number;
|
|
77
132
|
/**
|
|
78
133
|
* @remarks
|
|
79
|
-
* The
|
|
134
|
+
* The token returned for the next page query.
|
|
80
135
|
*
|
|
81
136
|
* @example
|
|
82
137
|
* NTxxxexample
|
|
@@ -92,7 +147,7 @@ export declare class ListAuthorizationResourcesResponseBody extends $dara.Model
|
|
|
92
147
|
requestId?: string;
|
|
93
148
|
/**
|
|
94
149
|
* @remarks
|
|
95
|
-
* The total number of entries
|
|
150
|
+
* The total number of entries in the list.
|
|
96
151
|
*
|
|
97
152
|
* @example
|
|
98
153
|
* 100
|
|
@@ -33,9 +33,50 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.ListAuthorizationResourcesResponseBody = exports.ListAuthorizationResourcesResponseBodyAuthorizationResources = void 0;
|
|
36
|
+
exports.ListAuthorizationResourcesResponseBody = exports.ListAuthorizationResourcesResponseBodyAuthorizationResources = exports.ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition = exports.ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
allowSameNameIdentity: 'AllowSameNameIdentity',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
allowSameNameIdentity: 'boolean',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
super.validate();
|
|
52
|
+
}
|
|
53
|
+
constructor(map) {
|
|
54
|
+
super(map);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition = ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition;
|
|
58
|
+
class ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition extends $dara.Model {
|
|
59
|
+
static names() {
|
|
60
|
+
return {
|
|
61
|
+
credentialCondition: 'CredentialCondition',
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
static types() {
|
|
65
|
+
return {
|
|
66
|
+
credentialCondition: ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition,
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
validate() {
|
|
70
|
+
if (this.credentialCondition && typeof this.credentialCondition.validate === 'function') {
|
|
71
|
+
this.credentialCondition.validate();
|
|
72
|
+
}
|
|
73
|
+
super.validate();
|
|
74
|
+
}
|
|
75
|
+
constructor(map) {
|
|
76
|
+
super(map);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
exports.ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition = ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition;
|
|
39
80
|
class ListAuthorizationResourcesResponseBodyAuthorizationResources extends $dara.Model {
|
|
40
81
|
static names() {
|
|
41
82
|
return {
|
|
@@ -44,7 +85,10 @@ class ListAuthorizationResourcesResponseBodyAuthorizationResources extends $dara
|
|
|
44
85
|
authorizationResourceId: 'AuthorizationResourceId',
|
|
45
86
|
authorizationRuleId: 'AuthorizationRuleId',
|
|
46
87
|
cloudAccountId: 'CloudAccountId',
|
|
88
|
+
condition: 'Condition',
|
|
89
|
+
createTime: 'CreateTime',
|
|
47
90
|
instanceId: 'InstanceId',
|
|
91
|
+
updateTime: 'UpdateTime',
|
|
48
92
|
};
|
|
49
93
|
}
|
|
50
94
|
static types() {
|
|
@@ -54,10 +98,16 @@ class ListAuthorizationResourcesResponseBodyAuthorizationResources extends $dara
|
|
|
54
98
|
authorizationResourceId: 'string',
|
|
55
99
|
authorizationRuleId: 'string',
|
|
56
100
|
cloudAccountId: 'string',
|
|
101
|
+
condition: ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition,
|
|
102
|
+
createTime: 'number',
|
|
57
103
|
instanceId: 'string',
|
|
104
|
+
updateTime: 'number',
|
|
58
105
|
};
|
|
59
106
|
}
|
|
60
107
|
validate() {
|
|
108
|
+
if (this.condition && typeof this.condition.validate === 'function') {
|
|
109
|
+
this.condition.validate();
|
|
110
|
+
}
|
|
61
111
|
super.validate();
|
|
62
112
|
}
|
|
63
113
|
constructor(map) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListAuthorizationResourcesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListAuthorizationResourcesResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,4DAA6D,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListAuthorizationResourcesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListAuthorizationResourcesResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,6 +26,14 @@ export declare class ListInstancesRequest extends $dara.Model {
|
|
|
26
26
|
* The list of instance IDs.
|
|
27
27
|
*/
|
|
28
28
|
instanceIds?: string[];
|
|
29
|
+
/**
|
|
30
|
+
* @remarks
|
|
31
|
+
* The service code of the managing cloud service.
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* kms
|
|
35
|
+
*/
|
|
36
|
+
managedServiceCode?: string;
|
|
29
37
|
/**
|
|
30
38
|
* @remarks
|
|
31
39
|
* The page number.
|
|
@@ -42,6 +50,13 @@ export declare class ListInstancesRequest extends $dara.Model {
|
|
|
42
50
|
* 20
|
|
43
51
|
*/
|
|
44
52
|
pageSize?: number;
|
|
53
|
+
/**
|
|
54
|
+
* @remarks
|
|
55
|
+
* Indicates whether the instance is managed by a cloud service.
|
|
56
|
+
*
|
|
57
|
+
* @example
|
|
58
|
+
* true
|
|
59
|
+
*/
|
|
45
60
|
serviceManaged?: boolean;
|
|
46
61
|
/**
|
|
47
62
|
* @remarks
|
|
@@ -42,6 +42,7 @@ class ListInstancesRequest extends $dara.Model {
|
|
|
42
42
|
crossRegionReplication: 'CrossRegionReplication',
|
|
43
43
|
edition: 'Edition',
|
|
44
44
|
instanceIds: 'InstanceIds',
|
|
45
|
+
managedServiceCode: 'ManagedServiceCode',
|
|
45
46
|
pageNumber: 'PageNumber',
|
|
46
47
|
pageSize: 'PageSize',
|
|
47
48
|
serviceManaged: 'ServiceManaged',
|
|
@@ -53,6 +54,7 @@ class ListInstancesRequest extends $dara.Model {
|
|
|
53
54
|
crossRegionReplication: 'string',
|
|
54
55
|
edition: 'string',
|
|
55
56
|
instanceIds: { 'type': 'array', 'itemType': 'string' },
|
|
57
|
+
managedServiceCode: 'string',
|
|
56
58
|
pageNumber: 'number',
|
|
57
59
|
pageSize: 'number',
|
|
58
60
|
serviceManaged: 'boolean',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListInstancesRequest.js","sourceRoot":"","sources":["../../src/models/ListInstancesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oBAAqB,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListInstancesRequest.js","sourceRoot":"","sources":["../../src/models/ListInstancesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oBAAqB,SAAQ,KAAK,CAAC,KAAK;IAqEnD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,sBAAsB,EAAE,wBAAwB;YAChD,OAAO,EAAE,SAAS;YAClB,WAAW,EAAE,aAAa;YAC1B,kBAAkB,EAAE,oBAAoB;YACxC,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,cAAc,EAAE,gBAAgB;YAChC,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,sBAAsB,EAAE,QAAQ;YAChC,OAAO,EAAE,QAAQ;YACjB,WAAW,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACtD,kBAAkB,EAAE,QAAQ;YAC5B,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,cAAc,EAAE,SAAS;YACzB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC;YACnC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC9C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAzGD,oDAyGC"}
|
|
@@ -64,7 +64,7 @@ export declare class ListInstancesResponseBodyInstancesReplicationConfiguration
|
|
|
64
64
|
primaryInstanceRegionId?: string;
|
|
65
65
|
/**
|
|
66
66
|
* @remarks
|
|
67
|
-
* The
|
|
67
|
+
* The time when the disaster recovery data replication was created. The value is a UNIX timestamp in milliseconds.
|
|
68
68
|
*
|
|
69
69
|
* @example
|
|
70
70
|
* 1778499337000
|
|
@@ -84,7 +84,7 @@ export declare class ListInstancesResponseBodyInstancesReplicationConfiguration
|
|
|
84
84
|
export declare class ListInstancesResponseBodyInstances extends $dara.Model {
|
|
85
85
|
/**
|
|
86
86
|
* @remarks
|
|
87
|
-
* The instance
|
|
87
|
+
* The time when the instance was created. The value is a UNIX timestamp in milliseconds.
|
|
88
88
|
*
|
|
89
89
|
* @example
|
|
90
90
|
* 1550115455000
|
|
@@ -137,7 +137,7 @@ export declare class ListInstancesResponseBodyInstances extends $dara.Model {
|
|
|
137
137
|
instanceId?: string;
|
|
138
138
|
/**
|
|
139
139
|
* @remarks
|
|
140
|
-
* The service code of the
|
|
140
|
+
* The service code of the cloud service that manages the instance.
|
|
141
141
|
*
|
|
142
142
|
* @example
|
|
143
143
|
* sase
|
|
@@ -150,7 +150,7 @@ export declare class ListInstancesResponseBodyInstances extends $dara.Model {
|
|
|
150
150
|
replicationConfiguration?: ListInstancesResponseBodyInstancesReplicationConfiguration;
|
|
151
151
|
/**
|
|
152
152
|
* @remarks
|
|
153
|
-
* Indicates whether the instance is managed by
|
|
153
|
+
* Indicates whether the instance is managed by a cloud service.
|
|
154
154
|
*
|
|
155
155
|
* @example
|
|
156
156
|
* true
|
package/dist/models/model.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export { CreateApplicationFederatedCredentialRequestOidcVerificationConfigKubern
|
|
|
16
16
|
export { CreateApplicationFederatedCredentialRequestOidcVerificationConfig } from './CreateApplicationFederatedCredentialRequest';
|
|
17
17
|
export { CreateApplicationFederatedCredentialRequestPkcs7VerificationConfig } from './CreateApplicationFederatedCredentialRequest';
|
|
18
18
|
export { CreateApplicationTokenResponseBodyApplicationTokens } from './CreateApplicationTokenResponseBody';
|
|
19
|
+
export { CreateAuthorizationResourceRequestConditionCredentialCondition } from './CreateAuthorizationResourceRequest';
|
|
20
|
+
export { CreateAuthorizationResourceRequestCondition } from './CreateAuthorizationResourceRequest';
|
|
19
21
|
export { CreateConditionalAccessPolicyRequestConditionsConfigApplications } from './CreateConditionalAccessPolicyRequest';
|
|
20
22
|
export { CreateConditionalAccessPolicyRequestConditionsConfigNetworkZones } from './CreateConditionalAccessPolicyRequest';
|
|
21
23
|
export { CreateConditionalAccessPolicyRequestConditionsConfigUsers } from './CreateConditionalAccessPolicyRequest';
|
|
@@ -96,6 +98,8 @@ export { GetApplicationSsoConfigResponseBodyApplicationSsoConfigSamlSsoConfig }
|
|
|
96
98
|
export { GetApplicationSsoConfigResponseBodyApplicationSsoConfig } from './GetApplicationSsoConfigResponseBody';
|
|
97
99
|
export { GetApplicationTemplateResponseBodyApplicationTemplateSaleInfo } from './GetApplicationTemplateResponseBody';
|
|
98
100
|
export { GetApplicationTemplateResponseBodyApplicationTemplate } from './GetApplicationTemplateResponseBody';
|
|
101
|
+
export { GetAuthorizationResourceResponseBodyAuthorizationResourceConditionCredentialCondition } from './GetAuthorizationResourceResponseBody';
|
|
102
|
+
export { GetAuthorizationResourceResponseBodyAuthorizationResourceCondition } from './GetAuthorizationResourceResponseBody';
|
|
99
103
|
export { GetAuthorizationResourceResponseBodyAuthorizationResource } from './GetAuthorizationResourceResponseBody';
|
|
100
104
|
export { GetAuthorizationRuleResponseBodyAuthorizationRule } from './GetAuthorizationRuleResponseBody';
|
|
101
105
|
export { GetAuthorizationServerResponseBodyAuthorizationServerProtocolEndpoint } from './GetAuthorizationServerResponseBody';
|
|
@@ -272,6 +276,8 @@ export { ListApplicationsForOrganizationalUnitResponseBodyApplications } from '.
|
|
|
272
276
|
export { ListApplicationsForUserResponseBodyApplicationsApplicationRoles } from './ListApplicationsForUserResponseBody';
|
|
273
277
|
export { ListApplicationsForUserResponseBodyApplications } from './ListApplicationsForUserResponseBody';
|
|
274
278
|
export { ListAuthorizationResourcesRequestFilter } from './ListAuthorizationResourcesRequest';
|
|
279
|
+
export { ListAuthorizationResourcesResponseBodyAuthorizationResourcesConditionCredentialCondition } from './ListAuthorizationResourcesResponseBody';
|
|
280
|
+
export { ListAuthorizationResourcesResponseBodyAuthorizationResourcesCondition } from './ListAuthorizationResourcesResponseBody';
|
|
275
281
|
export { ListAuthorizationResourcesResponseBodyAuthorizationResources } from './ListAuthorizationResourcesResponseBody';
|
|
276
282
|
export { ListAuthorizationRulesRequestFilter } from './ListAuthorizationRulesRequest';
|
|
277
283
|
export { ListAuthorizationRulesResponseBodyAuthorizationRules } from './ListAuthorizationRulesResponseBody';
|