@aws-sdk/client-verifiedpermissions 3.1013.0 → 3.1015.0
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/README.md +28 -0
- package/dist-cjs/index.js +67 -0
- package/dist-cjs/schemas/schemas_0.js +116 -30
- package/dist-es/VerifiedPermissions.js +10 -0
- package/dist-es/commands/CreatePolicyStoreAliasCommand.js +16 -0
- package/dist-es/commands/DeletePolicyStoreAliasCommand.js +16 -0
- package/dist-es/commands/GetPolicyStoreAliasCommand.js +16 -0
- package/dist-es/commands/ListPolicyStoreAliasesCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/pagination/ListPolicyStoreAliasesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +112 -26
- package/dist-types/VerifiedPermissions.d.ts +36 -0
- package/dist-types/VerifiedPermissionsClient.d.ts +6 -2
- package/dist-types/commands/BatchGetPolicyCommand.d.ts +58 -1
- package/dist-types/commands/CreateIdentitySourceCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +4 -35
- package/dist-types/commands/CreatePolicyStoreAliasCommand.d.ts +118 -0
- package/dist-types/commands/CreatePolicyStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyTemplateCommand.d.ts +3 -1
- package/dist-types/commands/DeleteIdentitySourceCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyStoreAliasCommand.d.ts +100 -0
- package/dist-types/commands/DeletePolicyTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +32 -0
- package/dist-types/commands/GetPolicyStoreAliasCommand.d.ts +112 -0
- package/dist-types/commands/GetPolicyTemplateCommand.d.ts +29 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +3 -0
- package/dist-types/commands/ListPolicyStoreAliasesCommand.d.ts +166 -0
- package/dist-types/commands/ListPolicyTemplatesCommand.d.ts +3 -0
- package/dist-types/commands/PutSchemaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIdentitySourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +3 -1
- package/dist-types/commands/UpdatePolicyStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyTemplateCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +250 -33
- package/dist-types/pagination/ListPolicyStoreAliasesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +14 -0
- package/dist-types/ts3.4/VerifiedPermissions.d.ts +76 -0
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreatePolicyStoreAliasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyStoreAliasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyStoreAliasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyStoreAliasesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -0
- package/dist-types/ts3.4/pagination/ListPolicyStoreAliasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/package.json +12 -12
|
@@ -4,14 +4,17 @@ import { BatchIsAuthorizedCommand, } from "./commands/BatchIsAuthorizedCommand";
|
|
|
4
4
|
import { BatchIsAuthorizedWithTokenCommand, } from "./commands/BatchIsAuthorizedWithTokenCommand";
|
|
5
5
|
import { CreateIdentitySourceCommand, } from "./commands/CreateIdentitySourceCommand";
|
|
6
6
|
import { CreatePolicyCommand, } from "./commands/CreatePolicyCommand";
|
|
7
|
+
import { CreatePolicyStoreAliasCommand, } from "./commands/CreatePolicyStoreAliasCommand";
|
|
7
8
|
import { CreatePolicyStoreCommand, } from "./commands/CreatePolicyStoreCommand";
|
|
8
9
|
import { CreatePolicyTemplateCommand, } from "./commands/CreatePolicyTemplateCommand";
|
|
9
10
|
import { DeleteIdentitySourceCommand, } from "./commands/DeleteIdentitySourceCommand";
|
|
10
11
|
import { DeletePolicyCommand, } from "./commands/DeletePolicyCommand";
|
|
12
|
+
import { DeletePolicyStoreAliasCommand, } from "./commands/DeletePolicyStoreAliasCommand";
|
|
11
13
|
import { DeletePolicyStoreCommand, } from "./commands/DeletePolicyStoreCommand";
|
|
12
14
|
import { DeletePolicyTemplateCommand, } from "./commands/DeletePolicyTemplateCommand";
|
|
13
15
|
import { GetIdentitySourceCommand, } from "./commands/GetIdentitySourceCommand";
|
|
14
16
|
import { GetPolicyCommand } from "./commands/GetPolicyCommand";
|
|
17
|
+
import { GetPolicyStoreAliasCommand, } from "./commands/GetPolicyStoreAliasCommand";
|
|
15
18
|
import { GetPolicyStoreCommand, } from "./commands/GetPolicyStoreCommand";
|
|
16
19
|
import { GetPolicyTemplateCommand, } from "./commands/GetPolicyTemplateCommand";
|
|
17
20
|
import { GetSchemaCommand } from "./commands/GetSchemaCommand";
|
|
@@ -19,6 +22,7 @@ import { IsAuthorizedCommand, } from "./commands/IsAuthorizedCommand";
|
|
|
19
22
|
import { IsAuthorizedWithTokenCommand, } from "./commands/IsAuthorizedWithTokenCommand";
|
|
20
23
|
import { ListIdentitySourcesCommand, } from "./commands/ListIdentitySourcesCommand";
|
|
21
24
|
import { ListPoliciesCommand, } from "./commands/ListPoliciesCommand";
|
|
25
|
+
import { ListPolicyStoreAliasesCommand, } from "./commands/ListPolicyStoreAliasesCommand";
|
|
22
26
|
import { ListPolicyStoresCommand, } from "./commands/ListPolicyStoresCommand";
|
|
23
27
|
import { ListPolicyTemplatesCommand, } from "./commands/ListPolicyTemplatesCommand";
|
|
24
28
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
@@ -31,6 +35,7 @@ import { UpdatePolicyStoreCommand, } from "./commands/UpdatePolicyStoreCommand";
|
|
|
31
35
|
import { UpdatePolicyTemplateCommand, } from "./commands/UpdatePolicyTemplateCommand";
|
|
32
36
|
import { paginateListIdentitySources } from "./pagination/ListIdentitySourcesPaginator";
|
|
33
37
|
import { paginateListPolicies } from "./pagination/ListPoliciesPaginator";
|
|
38
|
+
import { paginateListPolicyStoreAliases } from "./pagination/ListPolicyStoreAliasesPaginator";
|
|
34
39
|
import { paginateListPolicyStores } from "./pagination/ListPolicyStoresPaginator";
|
|
35
40
|
import { paginateListPolicyTemplates } from "./pagination/ListPolicyTemplatesPaginator";
|
|
36
41
|
import { VerifiedPermissionsClient } from "./VerifiedPermissionsClient";
|
|
@@ -41,20 +46,24 @@ const commands = {
|
|
|
41
46
|
CreateIdentitySourceCommand,
|
|
42
47
|
CreatePolicyCommand,
|
|
43
48
|
CreatePolicyStoreCommand,
|
|
49
|
+
CreatePolicyStoreAliasCommand,
|
|
44
50
|
CreatePolicyTemplateCommand,
|
|
45
51
|
DeleteIdentitySourceCommand,
|
|
46
52
|
DeletePolicyCommand,
|
|
47
53
|
DeletePolicyStoreCommand,
|
|
54
|
+
DeletePolicyStoreAliasCommand,
|
|
48
55
|
DeletePolicyTemplateCommand,
|
|
49
56
|
GetIdentitySourceCommand,
|
|
50
57
|
GetPolicyCommand,
|
|
51
58
|
GetPolicyStoreCommand,
|
|
59
|
+
GetPolicyStoreAliasCommand,
|
|
52
60
|
GetPolicyTemplateCommand,
|
|
53
61
|
GetSchemaCommand,
|
|
54
62
|
IsAuthorizedCommand,
|
|
55
63
|
IsAuthorizedWithTokenCommand,
|
|
56
64
|
ListIdentitySourcesCommand,
|
|
57
65
|
ListPoliciesCommand,
|
|
66
|
+
ListPolicyStoreAliasesCommand,
|
|
58
67
|
ListPolicyStoresCommand,
|
|
59
68
|
ListPolicyTemplatesCommand,
|
|
60
69
|
ListTagsForResourceCommand,
|
|
@@ -69,6 +78,7 @@ const commands = {
|
|
|
69
78
|
const paginators = {
|
|
70
79
|
paginateListIdentitySources,
|
|
71
80
|
paginateListPolicies,
|
|
81
|
+
paginateListPolicyStoreAliases,
|
|
72
82
|
paginateListPolicyStores,
|
|
73
83
|
paginateListPolicyTemplates,
|
|
74
84
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreatePolicyStoreAlias$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreatePolicyStoreAliasCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("VerifiedPermissions", "CreatePolicyStoreAlias", {})
|
|
13
|
+
.n("VerifiedPermissionsClient", "CreatePolicyStoreAliasCommand")
|
|
14
|
+
.sc(CreatePolicyStoreAlias$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeletePolicyStoreAlias$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeletePolicyStoreAliasCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("VerifiedPermissions", "DeletePolicyStoreAlias", {})
|
|
13
|
+
.n("VerifiedPermissionsClient", "DeletePolicyStoreAliasCommand")
|
|
14
|
+
.sc(DeletePolicyStoreAlias$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetPolicyStoreAlias$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetPolicyStoreAliasCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("VerifiedPermissions", "GetPolicyStoreAlias", {})
|
|
13
|
+
.n("VerifiedPermissionsClient", "GetPolicyStoreAliasCommand")
|
|
14
|
+
.sc(GetPolicyStoreAlias$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListPolicyStoreAliases$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListPolicyStoreAliasesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("VerifiedPermissions", "ListPolicyStoreAliases", {})
|
|
13
|
+
.n("VerifiedPermissionsClient", "ListPolicyStoreAliasesCommand")
|
|
14
|
+
.sc(ListPolicyStoreAliases$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -3,14 +3,17 @@ export * from "./BatchIsAuthorizedCommand";
|
|
|
3
3
|
export * from "./BatchIsAuthorizedWithTokenCommand";
|
|
4
4
|
export * from "./CreateIdentitySourceCommand";
|
|
5
5
|
export * from "./CreatePolicyCommand";
|
|
6
|
+
export * from "./CreatePolicyStoreAliasCommand";
|
|
6
7
|
export * from "./CreatePolicyStoreCommand";
|
|
7
8
|
export * from "./CreatePolicyTemplateCommand";
|
|
8
9
|
export * from "./DeleteIdentitySourceCommand";
|
|
9
10
|
export * from "./DeletePolicyCommand";
|
|
11
|
+
export * from "./DeletePolicyStoreAliasCommand";
|
|
10
12
|
export * from "./DeletePolicyStoreCommand";
|
|
11
13
|
export * from "./DeletePolicyTemplateCommand";
|
|
12
14
|
export * from "./GetIdentitySourceCommand";
|
|
13
15
|
export * from "./GetPolicyCommand";
|
|
16
|
+
export * from "./GetPolicyStoreAliasCommand";
|
|
14
17
|
export * from "./GetPolicyStoreCommand";
|
|
15
18
|
export * from "./GetPolicyTemplateCommand";
|
|
16
19
|
export * from "./GetSchemaCommand";
|
|
@@ -18,6 +21,7 @@ export * from "./IsAuthorizedCommand";
|
|
|
18
21
|
export * from "./IsAuthorizedWithTokenCommand";
|
|
19
22
|
export * from "./ListIdentitySourcesCommand";
|
|
20
23
|
export * from "./ListPoliciesCommand";
|
|
24
|
+
export * from "./ListPolicyStoreAliasesCommand";
|
|
21
25
|
export * from "./ListPolicyStoresCommand";
|
|
22
26
|
export * from "./ListPolicyTemplatesCommand";
|
|
23
27
|
export * from "./ListTagsForResourceCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
export const AliasState = {
|
|
2
|
+
ACTIVE: "Active",
|
|
3
|
+
PENDING_DELETION: "PendingDeletion",
|
|
4
|
+
};
|
|
1
5
|
export const BatchGetPolicyErrorCode = {
|
|
2
6
|
POLICY_NOT_FOUND: "POLICY_NOT_FOUND",
|
|
7
|
+
POLICY_STORE_ALIAS_NOT_FOUND: "POLICY_STORE_ALIAS_NOT_FOUND",
|
|
3
8
|
POLICY_STORE_NOT_FOUND: "POLICY_STORE_NOT_FOUND",
|
|
4
9
|
};
|
|
5
10
|
export const PolicyType = {
|
|
@@ -14,6 +19,7 @@ export const ResourceType = {
|
|
|
14
19
|
IDENTITY_SOURCE: "IDENTITY_SOURCE",
|
|
15
20
|
POLICY: "POLICY",
|
|
16
21
|
POLICY_STORE: "POLICY_STORE",
|
|
22
|
+
POLICY_STORE_ALIAS: "POLICY_STORE_ALIAS",
|
|
17
23
|
POLICY_TEMPLATE: "POLICY_TEMPLATE",
|
|
18
24
|
SCHEMA: "SCHEMA",
|
|
19
25
|
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListPolicyStoreAliasesCommand, } from "../commands/ListPolicyStoreAliasesCommand";
|
|
3
|
+
import { VerifiedPermissionsClient } from "../VerifiedPermissionsClient";
|
|
4
|
+
export const paginateListPolicyStoreAliases = createPaginator(VerifiedPermissionsClient, ListPolicyStoreAliasesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListIdentitySourcesPaginator";
|
|
3
3
|
export * from "./ListPoliciesPaginator";
|
|
4
|
+
export * from "./ListPolicyStoreAliasesPaginator";
|
|
4
5
|
export * from "./ListPolicyStoresPaginator";
|
|
5
6
|
export * from "./ListPolicyTemplatesPaginator";
|
|
@@ -47,6 +47,9 @@ const _CP = "CreatePolicy";
|
|
|
47
47
|
const _CPI = "CreatePolicyInput";
|
|
48
48
|
const _CPO = "CreatePolicyOutput";
|
|
49
49
|
const _CPS = "CreatePolicyStore";
|
|
50
|
+
const _CPSA = "CreatePolicyStoreAlias";
|
|
51
|
+
const _CPSAI = "CreatePolicyStoreAliasInput";
|
|
52
|
+
const _CPSAO = "CreatePolicyStoreAliasOutput";
|
|
50
53
|
const _CPSI = "CreatePolicyStoreInput";
|
|
51
54
|
const _CPSO = "CreatePolicyStoreOutput";
|
|
52
55
|
const _CPT = "CreatePolicyTemplate";
|
|
@@ -70,6 +73,9 @@ const _DPIe = "DeterminingPolicyItem";
|
|
|
70
73
|
const _DPL = "DeterminingPolicyList";
|
|
71
74
|
const _DPO = "DeletePolicyOutput";
|
|
72
75
|
const _DPS = "DeletePolicyStore";
|
|
76
|
+
const _DPSA = "DeletePolicyStoreAlias";
|
|
77
|
+
const _DPSAI = "DeletePolicyStoreAliasInput";
|
|
78
|
+
const _DPSAO = "DeletePolicyStoreAliasOutput";
|
|
73
79
|
const _DPSI = "DeletePolicyStoreInput";
|
|
74
80
|
const _DPSO = "DeletePolicyStoreOutput";
|
|
75
81
|
const _DPT = "DeletePolicyTemplate";
|
|
@@ -98,6 +104,9 @@ const _GP = "GetPolicy";
|
|
|
98
104
|
const _GPI = "GetPolicyInput";
|
|
99
105
|
const _GPO = "GetPolicyOutput";
|
|
100
106
|
const _GPS = "GetPolicyStore";
|
|
107
|
+
const _GPSA = "GetPolicyStoreAlias";
|
|
108
|
+
const _GPSAI = "GetPolicyStoreAliasInput";
|
|
109
|
+
const _GPSAO = "GetPolicyStoreAliasOutput";
|
|
101
110
|
const _GPSI = "GetPolicyStoreInput";
|
|
102
111
|
const _GPSO = "GetPolicyStoreOutput";
|
|
103
112
|
const _GPT = "GetPolicyTemplate";
|
|
@@ -131,6 +140,9 @@ const _LP = "ListPolicies";
|
|
|
131
140
|
const _LPI = "ListPoliciesInput";
|
|
132
141
|
const _LPO = "ListPoliciesOutput";
|
|
133
142
|
const _LPS = "ListPolicyStores";
|
|
143
|
+
const _LPSA = "ListPolicyStoreAliases";
|
|
144
|
+
const _LPSAI = "ListPolicyStoreAliasesInput";
|
|
145
|
+
const _LPSAO = "ListPolicyStoreAliasesOutput";
|
|
134
146
|
const _LPSI = "ListPolicyStoresInput";
|
|
135
147
|
const _LPSO = "ListPolicyStoresOutput";
|
|
136
148
|
const _LPT = "ListPolicyTemplates";
|
|
@@ -165,6 +177,9 @@ const _PI = "PolicyItem";
|
|
|
165
177
|
const _PL = "ParentList";
|
|
166
178
|
const _PLo = "PolicyList";
|
|
167
179
|
const _PS = "PolicyStatement";
|
|
180
|
+
const _PSAF = "PolicyStoreAliasFilter";
|
|
181
|
+
const _PSAI = "PolicyStoreAliasItem";
|
|
182
|
+
const _PSAL = "PolicyStoreAliasList";
|
|
168
183
|
const _PSD = "PolicyStoreDescription";
|
|
169
184
|
const _PSI = "PolicyStoreItem";
|
|
170
185
|
const _PSIu = "PutSchemaInput";
|
|
@@ -226,7 +241,9 @@ const _VEF = "ValidationExceptionField";
|
|
|
226
241
|
const _VEFL = "ValidationExceptionFieldList";
|
|
227
242
|
const _VS = "ValidationSettings";
|
|
228
243
|
const _a = "action";
|
|
244
|
+
const _aA = "aliasArn";
|
|
229
245
|
const _aI = "actionId";
|
|
246
|
+
const _aN = "aliasName";
|
|
230
247
|
const _aT = "actionType";
|
|
231
248
|
const _aTO = "accessTokenOnly";
|
|
232
249
|
const _aTc = "accessToken";
|
|
@@ -236,6 +253,7 @@ const _at = "attributes";
|
|
|
236
253
|
const _au = "audiences";
|
|
237
254
|
const _b = "boolean";
|
|
238
255
|
const _c = "client";
|
|
256
|
+
const _cA = "createdAt";
|
|
239
257
|
const _cD = "createdDate";
|
|
240
258
|
const _cI = "clientIds";
|
|
241
259
|
const _cJ = "cedarJson";
|
|
@@ -292,8 +310,9 @@ const _lUD = "lastUpdatedDate";
|
|
|
292
310
|
const _m = "message";
|
|
293
311
|
const _mR = "maxResults";
|
|
294
312
|
const _mo = "mode";
|
|
295
|
-
const _n = "
|
|
313
|
+
const _n = "name";
|
|
296
314
|
const _nT = "nextToken";
|
|
315
|
+
const _na = "namespaces";
|
|
297
316
|
const _oICC = "openIdConnectConfiguration";
|
|
298
317
|
const _oII = "openIdIssuer";
|
|
299
318
|
const _p = "principal";
|
|
@@ -301,6 +320,7 @@ const _pET = "principalEntityType";
|
|
|
301
320
|
const _pI = "policyId";
|
|
302
321
|
const _pIC = "principalIdClaim";
|
|
303
322
|
const _pS = "policyStores";
|
|
323
|
+
const _pSA = "policyStoreAliases";
|
|
304
324
|
const _pSI = "policyStoreId";
|
|
305
325
|
const _pT = "policyType";
|
|
306
326
|
const _pTI = "policyTemplateId";
|
|
@@ -325,7 +345,8 @@ const _sc = "schema";
|
|
|
325
345
|
const _se = "server";
|
|
326
346
|
const _set = "set";
|
|
327
347
|
const _st = "statement";
|
|
328
|
-
const _sta = "
|
|
348
|
+
const _sta = "state";
|
|
349
|
+
const _stat = "static";
|
|
329
350
|
const _str = "string";
|
|
330
351
|
const _t = "tags";
|
|
331
352
|
const _tK = "tagKeys";
|
|
@@ -452,8 +473,8 @@ export var BatchGetPolicyOutput$ = [3, n0, _BGPO,
|
|
|
452
473
|
];
|
|
453
474
|
export var BatchGetPolicyOutputItem$ = [3, n0, _BGPOI,
|
|
454
475
|
0,
|
|
455
|
-
[_pSI, _pI, _pT, _d, _cD, _lUD],
|
|
456
|
-
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5], 6
|
|
476
|
+
[_pSI, _pI, _pT, _d, _cD, _lUD, _n],
|
|
477
|
+
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5, 0], 6
|
|
457
478
|
];
|
|
458
479
|
export var BatchIsAuthorizedInput$ = [3, n0, _BIAI,
|
|
459
480
|
0,
|
|
@@ -537,14 +558,24 @@ export var CreateIdentitySourceOutput$ = [3, n0, _CISO,
|
|
|
537
558
|
];
|
|
538
559
|
export var CreatePolicyInput$ = [3, n0, _CPI,
|
|
539
560
|
0,
|
|
540
|
-
[_pSI, _d, _cT],
|
|
541
|
-
[0, [() => PolicyDefinition$, 0], [0, 4]], 2
|
|
561
|
+
[_pSI, _d, _cT, _n],
|
|
562
|
+
[0, [() => PolicyDefinition$, 0], [0, 4], 0], 2
|
|
542
563
|
];
|
|
543
564
|
export var CreatePolicyOutput$ = [3, n0, _CPO,
|
|
544
565
|
0,
|
|
545
566
|
[_pSI, _pI, _pT, _cD, _lUD, _p, _reso, _ac, _ef],
|
|
546
567
|
[0, 0, 0, 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 5
|
|
547
568
|
];
|
|
569
|
+
export var CreatePolicyStoreAliasInput$ = [3, n0, _CPSAI,
|
|
570
|
+
0,
|
|
571
|
+
[_aN, _pSI],
|
|
572
|
+
[0, 0], 2
|
|
573
|
+
];
|
|
574
|
+
export var CreatePolicyStoreAliasOutput$ = [3, n0, _CPSAO,
|
|
575
|
+
0,
|
|
576
|
+
[_aN, _pSI, _aA, _cA],
|
|
577
|
+
[0, 0, 0, 5], 4
|
|
578
|
+
];
|
|
548
579
|
export var CreatePolicyStoreInput$ = [3, n0, _CPSI,
|
|
549
580
|
0,
|
|
550
581
|
[_vS, _cT, _des, _dPe, _eS, _t],
|
|
@@ -557,8 +588,8 @@ export var CreatePolicyStoreOutput$ = [3, n0, _CPSO,
|
|
|
557
588
|
];
|
|
558
589
|
export var CreatePolicyTemplateInput$ = [3, n0, _CPTI,
|
|
559
590
|
0,
|
|
560
|
-
[_pSI, _st, _cT, _des],
|
|
561
|
-
[0, [() => PolicyStatement, 0], [0, 4], [() => PolicyTemplateDescription, 0]], 2
|
|
591
|
+
[_pSI, _st, _cT, _des, _n],
|
|
592
|
+
[0, [() => PolicyStatement, 0], [0, 4], [() => PolicyTemplateDescription, 0], 0], 2
|
|
562
593
|
];
|
|
563
594
|
export var CreatePolicyTemplateOutput$ = [3, n0, _CPTO,
|
|
564
595
|
0,
|
|
@@ -585,6 +616,16 @@ export var DeletePolicyOutput$ = [3, n0, _DPO,
|
|
|
585
616
|
[],
|
|
586
617
|
[]
|
|
587
618
|
];
|
|
619
|
+
export var DeletePolicyStoreAliasInput$ = [3, n0, _DPSAI,
|
|
620
|
+
0,
|
|
621
|
+
[_aN],
|
|
622
|
+
[0], 1
|
|
623
|
+
];
|
|
624
|
+
export var DeletePolicyStoreAliasOutput$ = [3, n0, _DPSAO,
|
|
625
|
+
0,
|
|
626
|
+
[],
|
|
627
|
+
[]
|
|
628
|
+
];
|
|
588
629
|
export var DeletePolicyStoreInput$ = [3, n0, _DPSI,
|
|
589
630
|
0,
|
|
590
631
|
[_pSI],
|
|
@@ -642,8 +683,18 @@ export var GetPolicyInput$ = [3, n0, _GPI,
|
|
|
642
683
|
];
|
|
643
684
|
export var GetPolicyOutput$ = [3, n0, _GPO,
|
|
644
685
|
0,
|
|
645
|
-
[_pSI, _pI, _pT, _d, _cD, _lUD, _p, _reso, _ac, _ef],
|
|
646
|
-
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 6
|
|
686
|
+
[_pSI, _pI, _pT, _d, _cD, _lUD, _p, _reso, _ac, _ef, _n],
|
|
687
|
+
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0, 0], 6
|
|
688
|
+
];
|
|
689
|
+
export var GetPolicyStoreAliasInput$ = [3, n0, _GPSAI,
|
|
690
|
+
0,
|
|
691
|
+
[_aN],
|
|
692
|
+
[0], 1
|
|
693
|
+
];
|
|
694
|
+
export var GetPolicyStoreAliasOutput$ = [3, n0, _GPSAO,
|
|
695
|
+
0,
|
|
696
|
+
[_aN, _pSI, _aA, _cA, _sta],
|
|
697
|
+
[0, 0, 0, 5, 0], 5
|
|
647
698
|
];
|
|
648
699
|
export var GetPolicyStoreInput$ = [3, n0, _GPSI,
|
|
649
700
|
0,
|
|
@@ -662,8 +713,8 @@ export var GetPolicyTemplateInput$ = [3, n0, _GPTI,
|
|
|
662
713
|
];
|
|
663
714
|
export var GetPolicyTemplateOutput$ = [3, n0, _GPTO,
|
|
664
715
|
0,
|
|
665
|
-
[_pSI, _pTI, _st, _cD, _lUD, _des],
|
|
666
|
-
[0, 0, [() => PolicyStatement, 0], 5, 5, [() => PolicyTemplateDescription, 0]], 5
|
|
716
|
+
[_pSI, _pTI, _st, _cD, _lUD, _des, _n],
|
|
717
|
+
[0, 0, [() => PolicyStatement, 0], 5, 5, [() => PolicyTemplateDescription, 0], 0], 5
|
|
667
718
|
];
|
|
668
719
|
export var GetSchemaInput$ = [3, n0, _GSI,
|
|
669
720
|
0,
|
|
@@ -672,7 +723,7 @@ export var GetSchemaInput$ = [3, n0, _GSI,
|
|
|
672
723
|
];
|
|
673
724
|
export var GetSchemaOutput$ = [3, n0, _GSO,
|
|
674
725
|
0,
|
|
675
|
-
[_pSI, _sc, _cD, _lUD,
|
|
726
|
+
[_pSI, _sc, _cD, _lUD, _na],
|
|
676
727
|
[0, [() => SchemaJson, 0], 5, 5, [() => NamespaceList, 0]], 4
|
|
677
728
|
];
|
|
678
729
|
export var IdentitySourceDetails$ = [3, n0, _ISD,
|
|
@@ -745,6 +796,16 @@ export var ListPoliciesOutput$ = [3, n0, _LPO,
|
|
|
745
796
|
[_po, _nT],
|
|
746
797
|
[[() => PolicyList, 0], 0], 1
|
|
747
798
|
];
|
|
799
|
+
export var ListPolicyStoreAliasesInput$ = [3, n0, _LPSAI,
|
|
800
|
+
0,
|
|
801
|
+
[_nT, _mR, _fi],
|
|
802
|
+
[0, 1, () => PolicyStoreAliasFilter$]
|
|
803
|
+
];
|
|
804
|
+
export var ListPolicyStoreAliasesOutput$ = [3, n0, _LPSAO,
|
|
805
|
+
0,
|
|
806
|
+
[_pSA, _nT],
|
|
807
|
+
[() => PolicyStoreAliasList, 0], 1
|
|
808
|
+
];
|
|
748
809
|
export var ListPolicyStoresInput$ = [3, n0, _LPSI,
|
|
749
810
|
0,
|
|
750
811
|
[_nT, _mR],
|
|
@@ -842,8 +903,18 @@ export var PolicyFilter$ = [3, n0, _PF,
|
|
|
842
903
|
];
|
|
843
904
|
export var PolicyItem$ = [3, n0, _PI,
|
|
844
905
|
0,
|
|
845
|
-
[_pSI, _pI, _pT, _d, _cD, _lUD, _p, _reso, _ac, _ef],
|
|
846
|
-
[0, 0, 0, [() => PolicyDefinitionItem$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 6
|
|
906
|
+
[_pSI, _pI, _pT, _d, _cD, _lUD, _p, _reso, _ac, _ef, _n],
|
|
907
|
+
[0, 0, 0, [() => PolicyDefinitionItem$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0, 0], 6
|
|
908
|
+
];
|
|
909
|
+
export var PolicyStoreAliasFilter$ = [3, n0, _PSAF,
|
|
910
|
+
0,
|
|
911
|
+
[_pSI],
|
|
912
|
+
[0]
|
|
913
|
+
];
|
|
914
|
+
export var PolicyStoreAliasItem$ = [3, n0, _PSAI,
|
|
915
|
+
0,
|
|
916
|
+
[_aN, _pSI, _aA, _cA, _sta],
|
|
917
|
+
[0, 0, 0, 5, 0], 5
|
|
847
918
|
];
|
|
848
919
|
export var PolicyStoreItem$ = [3, n0, _PSI,
|
|
849
920
|
0,
|
|
@@ -852,8 +923,8 @@ export var PolicyStoreItem$ = [3, n0, _PSI,
|
|
|
852
923
|
];
|
|
853
924
|
export var PolicyTemplateItem$ = [3, n0, _PTI,
|
|
854
925
|
0,
|
|
855
|
-
[_pSI, _pTI, _cD, _lUD, _des],
|
|
856
|
-
[0, 0, 5, 5, [() => PolicyTemplateDescription, 0]], 4
|
|
926
|
+
[_pSI, _pTI, _cD, _lUD, _des, _n],
|
|
927
|
+
[0, 0, 5, 5, [() => PolicyTemplateDescription, 0], 0], 4
|
|
857
928
|
];
|
|
858
929
|
export var PutSchemaInput$ = [3, n0, _PSIu,
|
|
859
930
|
0,
|
|
@@ -862,7 +933,7 @@ export var PutSchemaInput$ = [3, n0, _PSIu,
|
|
|
862
933
|
];
|
|
863
934
|
export var PutSchemaOutput$ = [3, n0, _PSO,
|
|
864
935
|
0,
|
|
865
|
-
[_pSI,
|
|
936
|
+
[_pSI, _na, _cD, _lUD],
|
|
866
937
|
[0, [() => NamespaceList, 0], 5, 5], 4
|
|
867
938
|
];
|
|
868
939
|
export var ResourceConflict$ = [3, n0, _RC,
|
|
@@ -962,8 +1033,8 @@ export var UpdateOpenIdConnectIdentityTokenConfiguration$ = [3, n0, _UOICITC,
|
|
|
962
1033
|
];
|
|
963
1034
|
export var UpdatePolicyInput$ = [3, n0, _UPI,
|
|
964
1035
|
0,
|
|
965
|
-
[_pSI, _pI, _d],
|
|
966
|
-
[0, 0, [() => UpdatePolicyDefinition$, 0]], 2
|
|
1036
|
+
[_pSI, _pI, _d, _n],
|
|
1037
|
+
[0, 0, [() => UpdatePolicyDefinition$, 0], 0], 2
|
|
967
1038
|
];
|
|
968
1039
|
export var UpdatePolicyOutput$ = [3, n0, _UPO,
|
|
969
1040
|
0,
|
|
@@ -982,8 +1053,8 @@ export var UpdatePolicyStoreOutput$ = [3, n0, _UPSO,
|
|
|
982
1053
|
];
|
|
983
1054
|
export var UpdatePolicyTemplateInput$ = [3, n0, _UPTI,
|
|
984
1055
|
0,
|
|
985
|
-
[_pSI, _pTI, _st, _des],
|
|
986
|
-
[0, 0, [() => PolicyStatement, 0], [() => PolicyTemplateDescription, 0]], 3
|
|
1056
|
+
[_pSI, _pTI, _st, _des, _n],
|
|
1057
|
+
[0, 0, [() => PolicyStatement, 0], [() => PolicyTemplateDescription, 0], 0], 3
|
|
987
1058
|
];
|
|
988
1059
|
export var UpdatePolicyTemplateOutput$ = [3, n0, _UPTO,
|
|
989
1060
|
0,
|
|
@@ -1076,6 +1147,9 @@ var PolicyList = [1, n0, _PLo,
|
|
|
1076
1147
|
0, [() => PolicyItem$,
|
|
1077
1148
|
0]
|
|
1078
1149
|
];
|
|
1150
|
+
var PolicyStoreAliasList = [1, n0, _PSAL,
|
|
1151
|
+
0, () => PolicyStoreAliasItem$
|
|
1152
|
+
];
|
|
1079
1153
|
var PolicyStoreList = [1, n0, _PSL,
|
|
1080
1154
|
0, [() => PolicyStoreItem$,
|
|
1081
1155
|
0]
|
|
@@ -1194,17 +1268,17 @@ export var OpenIdConnectTokenSelectionItem$ = [4, n0, _OICTSI,
|
|
|
1194
1268
|
];
|
|
1195
1269
|
export var PolicyDefinition$ = [4, n0, _PD,
|
|
1196
1270
|
0,
|
|
1197
|
-
[
|
|
1271
|
+
[_stat, _tL],
|
|
1198
1272
|
[[() => StaticPolicyDefinition$, 0], [() => TemplateLinkedPolicyDefinition$, 0]]
|
|
1199
1273
|
];
|
|
1200
1274
|
export var PolicyDefinitionDetail$ = [4, n0, _PDD,
|
|
1201
1275
|
0,
|
|
1202
|
-
[
|
|
1276
|
+
[_stat, _tL],
|
|
1203
1277
|
[[() => StaticPolicyDefinitionDetail$, 0], [() => TemplateLinkedPolicyDefinitionDetail$, 0]]
|
|
1204
1278
|
];
|
|
1205
1279
|
export var PolicyDefinitionItem$ = [4, n0, _PDI,
|
|
1206
1280
|
0,
|
|
1207
|
-
[
|
|
1281
|
+
[_stat, _tL],
|
|
1208
1282
|
[[() => StaticPolicyDefinitionItem$, 0], [() => TemplateLinkedPolicyDefinitionItem$, 0]]
|
|
1209
1283
|
];
|
|
1210
1284
|
export var SchemaDefinition$ = [4, n0, _SD,
|
|
@@ -1224,7 +1298,7 @@ export var UpdateOpenIdConnectTokenSelection$ = [4, n0, _UOICTS,
|
|
|
1224
1298
|
];
|
|
1225
1299
|
export var UpdatePolicyDefinition$ = [4, n0, _UPD,
|
|
1226
1300
|
0,
|
|
1227
|
-
[
|
|
1301
|
+
[_stat],
|
|
1228
1302
|
[[() => UpdateStaticPolicyDefinition$, 0]]
|
|
1229
1303
|
];
|
|
1230
1304
|
export var BatchGetPolicy$ = [9, n0, _BGP,
|
|
@@ -1245,6 +1319,9 @@ export var CreatePolicy$ = [9, n0, _CP,
|
|
|
1245
1319
|
export var CreatePolicyStore$ = [9, n0, _CPS,
|
|
1246
1320
|
2, () => CreatePolicyStoreInput$, () => CreatePolicyStoreOutput$
|
|
1247
1321
|
];
|
|
1322
|
+
export var CreatePolicyStoreAlias$ = [9, n0, _CPSA,
|
|
1323
|
+
2, () => CreatePolicyStoreAliasInput$, () => CreatePolicyStoreAliasOutput$
|
|
1324
|
+
];
|
|
1248
1325
|
export var CreatePolicyTemplate$ = [9, n0, _CPT,
|
|
1249
1326
|
2, () => CreatePolicyTemplateInput$, () => CreatePolicyTemplateOutput$
|
|
1250
1327
|
];
|
|
@@ -1257,6 +1334,9 @@ export var DeletePolicy$ = [9, n0, _DP,
|
|
|
1257
1334
|
export var DeletePolicyStore$ = [9, n0, _DPS,
|
|
1258
1335
|
2, () => DeletePolicyStoreInput$, () => DeletePolicyStoreOutput$
|
|
1259
1336
|
];
|
|
1337
|
+
export var DeletePolicyStoreAlias$ = [9, n0, _DPSA,
|
|
1338
|
+
2, () => DeletePolicyStoreAliasInput$, () => DeletePolicyStoreAliasOutput$
|
|
1339
|
+
];
|
|
1260
1340
|
export var DeletePolicyTemplate$ = [9, n0, _DPT,
|
|
1261
1341
|
2, () => DeletePolicyTemplateInput$, () => DeletePolicyTemplateOutput$
|
|
1262
1342
|
];
|
|
@@ -1269,6 +1349,9 @@ export var GetPolicy$ = [9, n0, _GP,
|
|
|
1269
1349
|
export var GetPolicyStore$ = [9, n0, _GPS,
|
|
1270
1350
|
0, () => GetPolicyStoreInput$, () => GetPolicyStoreOutput$
|
|
1271
1351
|
];
|
|
1352
|
+
export var GetPolicyStoreAlias$ = [9, n0, _GPSA,
|
|
1353
|
+
0, () => GetPolicyStoreAliasInput$, () => GetPolicyStoreAliasOutput$
|
|
1354
|
+
];
|
|
1272
1355
|
export var GetPolicyTemplate$ = [9, n0, _GPT,
|
|
1273
1356
|
0, () => GetPolicyTemplateInput$, () => GetPolicyTemplateOutput$
|
|
1274
1357
|
];
|
|
@@ -1287,6 +1370,9 @@ export var ListIdentitySources$ = [9, n0, _LIS,
|
|
|
1287
1370
|
export var ListPolicies$ = [9, n0, _LP,
|
|
1288
1371
|
0, () => ListPoliciesInput$, () => ListPoliciesOutput$
|
|
1289
1372
|
];
|
|
1373
|
+
export var ListPolicyStoreAliases$ = [9, n0, _LPSA,
|
|
1374
|
+
0, () => ListPolicyStoreAliasesInput$, () => ListPolicyStoreAliasesOutput$
|
|
1375
|
+
];
|
|
1290
1376
|
export var ListPolicyStores$ = [9, n0, _LPS,
|
|
1291
1377
|
0, () => ListPolicyStoresInput$, () => ListPolicyStoresOutput$
|
|
1292
1378
|
];
|
|
@@ -4,14 +4,17 @@ import { BatchIsAuthorizedCommandInput, BatchIsAuthorizedCommandOutput } from ".
|
|
|
4
4
|
import { BatchIsAuthorizedWithTokenCommandInput, BatchIsAuthorizedWithTokenCommandOutput } from "./commands/BatchIsAuthorizedWithTokenCommand";
|
|
5
5
|
import { CreateIdentitySourceCommandInput, CreateIdentitySourceCommandOutput } from "./commands/CreateIdentitySourceCommand";
|
|
6
6
|
import { CreatePolicyCommandInput, CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
|
|
7
|
+
import { CreatePolicyStoreAliasCommandInput, CreatePolicyStoreAliasCommandOutput } from "./commands/CreatePolicyStoreAliasCommand";
|
|
7
8
|
import { CreatePolicyStoreCommandInput, CreatePolicyStoreCommandOutput } from "./commands/CreatePolicyStoreCommand";
|
|
8
9
|
import { CreatePolicyTemplateCommandInput, CreatePolicyTemplateCommandOutput } from "./commands/CreatePolicyTemplateCommand";
|
|
9
10
|
import { DeleteIdentitySourceCommandInput, DeleteIdentitySourceCommandOutput } from "./commands/DeleteIdentitySourceCommand";
|
|
10
11
|
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
12
|
+
import { DeletePolicyStoreAliasCommandInput, DeletePolicyStoreAliasCommandOutput } from "./commands/DeletePolicyStoreAliasCommand";
|
|
11
13
|
import { DeletePolicyStoreCommandInput, DeletePolicyStoreCommandOutput } from "./commands/DeletePolicyStoreCommand";
|
|
12
14
|
import { DeletePolicyTemplateCommandInput, DeletePolicyTemplateCommandOutput } from "./commands/DeletePolicyTemplateCommand";
|
|
13
15
|
import { GetIdentitySourceCommandInput, GetIdentitySourceCommandOutput } from "./commands/GetIdentitySourceCommand";
|
|
14
16
|
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
17
|
+
import { GetPolicyStoreAliasCommandInput, GetPolicyStoreAliasCommandOutput } from "./commands/GetPolicyStoreAliasCommand";
|
|
15
18
|
import { GetPolicyStoreCommandInput, GetPolicyStoreCommandOutput } from "./commands/GetPolicyStoreCommand";
|
|
16
19
|
import { GetPolicyTemplateCommandInput, GetPolicyTemplateCommandOutput } from "./commands/GetPolicyTemplateCommand";
|
|
17
20
|
import { GetSchemaCommandInput, GetSchemaCommandOutput } from "./commands/GetSchemaCommand";
|
|
@@ -19,6 +22,7 @@ import { IsAuthorizedCommandInput, IsAuthorizedCommandOutput } from "./commands/
|
|
|
19
22
|
import { IsAuthorizedWithTokenCommandInput, IsAuthorizedWithTokenCommandOutput } from "./commands/IsAuthorizedWithTokenCommand";
|
|
20
23
|
import { ListIdentitySourcesCommandInput, ListIdentitySourcesCommandOutput } from "./commands/ListIdentitySourcesCommand";
|
|
21
24
|
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
25
|
+
import { ListPolicyStoreAliasesCommandInput, ListPolicyStoreAliasesCommandOutput } from "./commands/ListPolicyStoreAliasesCommand";
|
|
22
26
|
import { ListPolicyStoresCommandInput, ListPolicyStoresCommandOutput } from "./commands/ListPolicyStoresCommand";
|
|
23
27
|
import { ListPolicyTemplatesCommandInput, ListPolicyTemplatesCommandOutput } from "./commands/ListPolicyTemplatesCommand";
|
|
24
28
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
@@ -67,6 +71,12 @@ export interface VerifiedPermissions {
|
|
|
67
71
|
createPolicyStore(args: CreatePolicyStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreatePolicyStoreCommandOutput>;
|
|
68
72
|
createPolicyStore(args: CreatePolicyStoreCommandInput, cb: (err: any, data?: CreatePolicyStoreCommandOutput) => void): void;
|
|
69
73
|
createPolicyStore(args: CreatePolicyStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePolicyStoreCommandOutput) => void): void;
|
|
74
|
+
/**
|
|
75
|
+
* @see {@link CreatePolicyStoreAliasCommand}
|
|
76
|
+
*/
|
|
77
|
+
createPolicyStoreAlias(args: CreatePolicyStoreAliasCommandInput, options?: __HttpHandlerOptions): Promise<CreatePolicyStoreAliasCommandOutput>;
|
|
78
|
+
createPolicyStoreAlias(args: CreatePolicyStoreAliasCommandInput, cb: (err: any, data?: CreatePolicyStoreAliasCommandOutput) => void): void;
|
|
79
|
+
createPolicyStoreAlias(args: CreatePolicyStoreAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePolicyStoreAliasCommandOutput) => void): void;
|
|
70
80
|
/**
|
|
71
81
|
* @see {@link CreatePolicyTemplateCommand}
|
|
72
82
|
*/
|
|
@@ -91,6 +101,12 @@ export interface VerifiedPermissions {
|
|
|
91
101
|
deletePolicyStore(args: DeletePolicyStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyStoreCommandOutput>;
|
|
92
102
|
deletePolicyStore(args: DeletePolicyStoreCommandInput, cb: (err: any, data?: DeletePolicyStoreCommandOutput) => void): void;
|
|
93
103
|
deletePolicyStore(args: DeletePolicyStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyStoreCommandOutput) => void): void;
|
|
104
|
+
/**
|
|
105
|
+
* @see {@link DeletePolicyStoreAliasCommand}
|
|
106
|
+
*/
|
|
107
|
+
deletePolicyStoreAlias(args: DeletePolicyStoreAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyStoreAliasCommandOutput>;
|
|
108
|
+
deletePolicyStoreAlias(args: DeletePolicyStoreAliasCommandInput, cb: (err: any, data?: DeletePolicyStoreAliasCommandOutput) => void): void;
|
|
109
|
+
deletePolicyStoreAlias(args: DeletePolicyStoreAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyStoreAliasCommandOutput) => void): void;
|
|
94
110
|
/**
|
|
95
111
|
* @see {@link DeletePolicyTemplateCommand}
|
|
96
112
|
*/
|
|
@@ -115,6 +131,12 @@ export interface VerifiedPermissions {
|
|
|
115
131
|
getPolicyStore(args: GetPolicyStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyStoreCommandOutput>;
|
|
116
132
|
getPolicyStore(args: GetPolicyStoreCommandInput, cb: (err: any, data?: GetPolicyStoreCommandOutput) => void): void;
|
|
117
133
|
getPolicyStore(args: GetPolicyStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyStoreCommandOutput) => void): void;
|
|
134
|
+
/**
|
|
135
|
+
* @see {@link GetPolicyStoreAliasCommand}
|
|
136
|
+
*/
|
|
137
|
+
getPolicyStoreAlias(args: GetPolicyStoreAliasCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyStoreAliasCommandOutput>;
|
|
138
|
+
getPolicyStoreAlias(args: GetPolicyStoreAliasCommandInput, cb: (err: any, data?: GetPolicyStoreAliasCommandOutput) => void): void;
|
|
139
|
+
getPolicyStoreAlias(args: GetPolicyStoreAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyStoreAliasCommandOutput) => void): void;
|
|
118
140
|
/**
|
|
119
141
|
* @see {@link GetPolicyTemplateCommand}
|
|
120
142
|
*/
|
|
@@ -151,6 +173,13 @@ export interface VerifiedPermissions {
|
|
|
151
173
|
listPolicies(args: ListPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListPoliciesCommandOutput>;
|
|
152
174
|
listPolicies(args: ListPoliciesCommandInput, cb: (err: any, data?: ListPoliciesCommandOutput) => void): void;
|
|
153
175
|
listPolicies(args: ListPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPoliciesCommandOutput) => void): void;
|
|
176
|
+
/**
|
|
177
|
+
* @see {@link ListPolicyStoreAliasesCommand}
|
|
178
|
+
*/
|
|
179
|
+
listPolicyStoreAliases(): Promise<ListPolicyStoreAliasesCommandOutput>;
|
|
180
|
+
listPolicyStoreAliases(args: ListPolicyStoreAliasesCommandInput, options?: __HttpHandlerOptions): Promise<ListPolicyStoreAliasesCommandOutput>;
|
|
181
|
+
listPolicyStoreAliases(args: ListPolicyStoreAliasesCommandInput, cb: (err: any, data?: ListPolicyStoreAliasesCommandOutput) => void): void;
|
|
182
|
+
listPolicyStoreAliases(args: ListPolicyStoreAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPolicyStoreAliasesCommandOutput) => void): void;
|
|
154
183
|
/**
|
|
155
184
|
* @see {@link ListPolicyStoresCommand}
|
|
156
185
|
*/
|
|
@@ -226,6 +255,13 @@ export interface VerifiedPermissions {
|
|
|
226
255
|
* @returns AsyncIterable of {@link ListPoliciesCommandOutput}.
|
|
227
256
|
*/
|
|
228
257
|
paginateListPolicies(args: ListPoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPoliciesCommandOutput>;
|
|
258
|
+
/**
|
|
259
|
+
* @see {@link ListPolicyStoreAliasesCommand}
|
|
260
|
+
* @param args - command input.
|
|
261
|
+
* @param paginationConfig - optional pagination config.
|
|
262
|
+
* @returns AsyncIterable of {@link ListPolicyStoreAliasesCommandOutput}.
|
|
263
|
+
*/
|
|
264
|
+
paginateListPolicyStoreAliases(args?: ListPolicyStoreAliasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPolicyStoreAliasesCommandOutput>;
|
|
229
265
|
/**
|
|
230
266
|
* @see {@link ListPolicyStoresCommand}
|
|
231
267
|
* @param args - command input.
|