@aws-sdk/client-verifiedpermissions 3.799.0 → 3.801.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 +25 -65
- package/dist-cjs/index.js +158 -0
- package/dist-es/VerifiedPermissions.js +6 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/protocols/Aws_json1_0.js +73 -1
- package/dist-types/VerifiedPermissions.d.ts +22 -65
- package/dist-types/VerifiedPermissionsClient.d.ts +6 -67
- package/dist-types/commands/BatchGetPolicyCommand.d.ts +2 -88
- package/dist-types/commands/BatchIsAuthorizedCommand.d.ts +2 -103
- package/dist-types/commands/BatchIsAuthorizedWithTokenCommand.d.ts +2 -101
- package/dist-types/commands/CreateIdentitySourceCommand.d.ts +3 -121
- package/dist-types/commands/CreatePolicyCommand.d.ts +3 -111
- package/dist-types/commands/CreatePolicyStoreCommand.d.ts +6 -95
- package/dist-types/commands/CreatePolicyTemplateCommand.d.ts +3 -97
- package/dist-types/commands/DeleteIdentitySourceCommand.d.ts +3 -88
- package/dist-types/commands/DeletePolicyCommand.d.ts +3 -87
- package/dist-types/commands/DeletePolicyStoreCommand.d.ts +2 -85
- package/dist-types/commands/DeletePolicyTemplateCommand.d.ts +3 -90
- package/dist-types/commands/GetIdentitySourceCommand.d.ts +1 -82
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -82
- package/dist-types/commands/GetPolicyStoreCommand.d.ts +6 -82
- package/dist-types/commands/GetPolicyTemplateCommand.d.ts +1 -82
- package/dist-types/commands/GetSchemaCommand.d.ts +1 -82
- package/dist-types/commands/IsAuthorizedCommand.d.ts +2 -88
- package/dist-types/commands/IsAuthorizedWithTokenCommand.d.ts +2 -96
- package/dist-types/commands/ListIdentitySourcesCommand.d.ts +1 -82
- package/dist-types/commands/ListPoliciesCommand.d.ts +1 -82
- package/dist-types/commands/ListPolicyStoresCommand.d.ts +1 -82
- package/dist-types/commands/ListPolicyTemplatesCommand.d.ts +1 -82
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +107 -0
- package/dist-types/commands/PutSchemaCommand.d.ts +3 -95
- package/dist-types/commands/TagResourceCommand.d.ts +108 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +105 -0
- package/dist-types/commands/UpdateIdentitySourceCommand.d.ts +3 -92
- package/dist-types/commands/UpdatePolicyCommand.d.ts +3 -135
- package/dist-types/commands/UpdatePolicyStoreCommand.d.ts +3 -91
- package/dist-types/commands/UpdatePolicyTemplateCommand.d.ts +3 -97
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +1 -65
- package/dist-types/models/models_0.d.ts +385 -1235
- package/dist-types/protocols/Aws_json1_0.d.ts +27 -0
- package/dist-types/ts3.4/VerifiedPermissions.d.ts +51 -0
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +36 -0
- package/package.json +1 -1
|
@@ -22,7 +22,10 @@ import { ListIdentitySourcesCommandInput, ListIdentitySourcesCommandOutput } fro
|
|
|
22
22
|
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
|
|
23
23
|
import { ListPolicyStoresCommandInput, ListPolicyStoresCommandOutput } from "../commands/ListPolicyStoresCommand";
|
|
24
24
|
import { ListPolicyTemplatesCommandInput, ListPolicyTemplatesCommandOutput } from "../commands/ListPolicyTemplatesCommand";
|
|
25
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
25
26
|
import { PutSchemaCommandInput, PutSchemaCommandOutput } from "../commands/PutSchemaCommand";
|
|
27
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
28
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
26
29
|
import { UpdateIdentitySourceCommandInput, UpdateIdentitySourceCommandOutput } from "../commands/UpdateIdentitySourceCommand";
|
|
27
30
|
import { UpdatePolicyCommandInput, UpdatePolicyCommandOutput } from "../commands/UpdatePolicyCommand";
|
|
28
31
|
import { UpdatePolicyStoreCommandInput, UpdatePolicyStoreCommandOutput } from "../commands/UpdatePolicyStoreCommand";
|
|
@@ -115,10 +118,22 @@ export declare const se_ListPolicyStoresCommand: (input: ListPolicyStoresCommand
|
|
|
115
118
|
* serializeAws_json1_0ListPolicyTemplatesCommand
|
|
116
119
|
*/
|
|
117
120
|
export declare const se_ListPolicyTemplatesCommand: (input: ListPolicyTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
+
/**
|
|
122
|
+
* serializeAws_json1_0ListTagsForResourceCommand
|
|
123
|
+
*/
|
|
124
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
125
|
/**
|
|
119
126
|
* serializeAws_json1_0PutSchemaCommand
|
|
120
127
|
*/
|
|
121
128
|
export declare const se_PutSchemaCommand: (input: PutSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
+
/**
|
|
130
|
+
* serializeAws_json1_0TagResourceCommand
|
|
131
|
+
*/
|
|
132
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
+
/**
|
|
134
|
+
* serializeAws_json1_0UntagResourceCommand
|
|
135
|
+
*/
|
|
136
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
137
|
/**
|
|
123
138
|
* serializeAws_json1_0UpdateIdentitySourceCommand
|
|
124
139
|
*/
|
|
@@ -223,10 +238,22 @@ export declare const de_ListPolicyStoresCommand: (output: __HttpResponse, contex
|
|
|
223
238
|
* deserializeAws_json1_0ListPolicyTemplatesCommand
|
|
224
239
|
*/
|
|
225
240
|
export declare const de_ListPolicyTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPolicyTemplatesCommandOutput>;
|
|
241
|
+
/**
|
|
242
|
+
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
243
|
+
*/
|
|
244
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
226
245
|
/**
|
|
227
246
|
* deserializeAws_json1_0PutSchemaCommand
|
|
228
247
|
*/
|
|
229
248
|
export declare const de_PutSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSchemaCommandOutput>;
|
|
249
|
+
/**
|
|
250
|
+
* deserializeAws_json1_0TagResourceCommand
|
|
251
|
+
*/
|
|
252
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
253
|
+
/**
|
|
254
|
+
* deserializeAws_json1_0UntagResourceCommand
|
|
255
|
+
*/
|
|
256
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
230
257
|
/**
|
|
231
258
|
* deserializeAws_json1_0UpdateIdentitySourceCommand
|
|
232
259
|
*/
|
|
@@ -87,10 +87,22 @@ import {
|
|
|
87
87
|
ListPolicyTemplatesCommandInput,
|
|
88
88
|
ListPolicyTemplatesCommandOutput,
|
|
89
89
|
} from "./commands/ListPolicyTemplatesCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListTagsForResourceCommandInput,
|
|
92
|
+
ListTagsForResourceCommandOutput,
|
|
93
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
90
94
|
import {
|
|
91
95
|
PutSchemaCommandInput,
|
|
92
96
|
PutSchemaCommandOutput,
|
|
93
97
|
} from "./commands/PutSchemaCommand";
|
|
98
|
+
import {
|
|
99
|
+
TagResourceCommandInput,
|
|
100
|
+
TagResourceCommandOutput,
|
|
101
|
+
} from "./commands/TagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UntagResourceCommandInput,
|
|
104
|
+
UntagResourceCommandOutput,
|
|
105
|
+
} from "./commands/UntagResourceCommand";
|
|
94
106
|
import {
|
|
95
107
|
UpdateIdentitySourceCommandInput,
|
|
96
108
|
UpdateIdentitySourceCommandOutput,
|
|
@@ -396,6 +408,19 @@ export interface VerifiedPermissions {
|
|
|
396
408
|
options: __HttpHandlerOptions,
|
|
397
409
|
cb: (err: any, data?: ListPolicyTemplatesCommandOutput) => void
|
|
398
410
|
): void;
|
|
411
|
+
listTagsForResource(
|
|
412
|
+
args: ListTagsForResourceCommandInput,
|
|
413
|
+
options?: __HttpHandlerOptions
|
|
414
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
415
|
+
listTagsForResource(
|
|
416
|
+
args: ListTagsForResourceCommandInput,
|
|
417
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
418
|
+
): void;
|
|
419
|
+
listTagsForResource(
|
|
420
|
+
args: ListTagsForResourceCommandInput,
|
|
421
|
+
options: __HttpHandlerOptions,
|
|
422
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
423
|
+
): void;
|
|
399
424
|
putSchema(
|
|
400
425
|
args: PutSchemaCommandInput,
|
|
401
426
|
options?: __HttpHandlerOptions
|
|
@@ -409,6 +434,32 @@ export interface VerifiedPermissions {
|
|
|
409
434
|
options: __HttpHandlerOptions,
|
|
410
435
|
cb: (err: any, data?: PutSchemaCommandOutput) => void
|
|
411
436
|
): void;
|
|
437
|
+
tagResource(
|
|
438
|
+
args: TagResourceCommandInput,
|
|
439
|
+
options?: __HttpHandlerOptions
|
|
440
|
+
): Promise<TagResourceCommandOutput>;
|
|
441
|
+
tagResource(
|
|
442
|
+
args: TagResourceCommandInput,
|
|
443
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
444
|
+
): void;
|
|
445
|
+
tagResource(
|
|
446
|
+
args: TagResourceCommandInput,
|
|
447
|
+
options: __HttpHandlerOptions,
|
|
448
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
449
|
+
): void;
|
|
450
|
+
untagResource(
|
|
451
|
+
args: UntagResourceCommandInput,
|
|
452
|
+
options?: __HttpHandlerOptions
|
|
453
|
+
): Promise<UntagResourceCommandOutput>;
|
|
454
|
+
untagResource(
|
|
455
|
+
args: UntagResourceCommandInput,
|
|
456
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
457
|
+
): void;
|
|
458
|
+
untagResource(
|
|
459
|
+
args: UntagResourceCommandInput,
|
|
460
|
+
options: __HttpHandlerOptions,
|
|
461
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
462
|
+
): void;
|
|
412
463
|
updateIdentitySource(
|
|
413
464
|
args: UpdateIdentitySourceCommandInput,
|
|
414
465
|
options?: __HttpHandlerOptions
|
|
@@ -133,10 +133,22 @@ import {
|
|
|
133
133
|
ListPolicyTemplatesCommandInput,
|
|
134
134
|
ListPolicyTemplatesCommandOutput,
|
|
135
135
|
} from "./commands/ListPolicyTemplatesCommand";
|
|
136
|
+
import {
|
|
137
|
+
ListTagsForResourceCommandInput,
|
|
138
|
+
ListTagsForResourceCommandOutput,
|
|
139
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
136
140
|
import {
|
|
137
141
|
PutSchemaCommandInput,
|
|
138
142
|
PutSchemaCommandOutput,
|
|
139
143
|
} from "./commands/PutSchemaCommand";
|
|
144
|
+
import {
|
|
145
|
+
TagResourceCommandInput,
|
|
146
|
+
TagResourceCommandOutput,
|
|
147
|
+
} from "./commands/TagResourceCommand";
|
|
148
|
+
import {
|
|
149
|
+
UntagResourceCommandInput,
|
|
150
|
+
UntagResourceCommandOutput,
|
|
151
|
+
} from "./commands/UntagResourceCommand";
|
|
140
152
|
import {
|
|
141
153
|
UpdateIdentitySourceCommandInput,
|
|
142
154
|
UpdateIdentitySourceCommandOutput,
|
|
@@ -183,7 +195,10 @@ export type ServiceInputTypes =
|
|
|
183
195
|
| ListPoliciesCommandInput
|
|
184
196
|
| ListPolicyStoresCommandInput
|
|
185
197
|
| ListPolicyTemplatesCommandInput
|
|
198
|
+
| ListTagsForResourceCommandInput
|
|
186
199
|
| PutSchemaCommandInput
|
|
200
|
+
| TagResourceCommandInput
|
|
201
|
+
| UntagResourceCommandInput
|
|
187
202
|
| UpdateIdentitySourceCommandInput
|
|
188
203
|
| UpdatePolicyCommandInput
|
|
189
204
|
| UpdatePolicyStoreCommandInput
|
|
@@ -211,7 +226,10 @@ export type ServiceOutputTypes =
|
|
|
211
226
|
| ListPoliciesCommandOutput
|
|
212
227
|
| ListPolicyStoresCommandOutput
|
|
213
228
|
| ListPolicyTemplatesCommandOutput
|
|
229
|
+
| ListTagsForResourceCommandOutput
|
|
214
230
|
| PutSchemaCommandOutput
|
|
231
|
+
| TagResourceCommandOutput
|
|
232
|
+
| UntagResourceCommandOutput
|
|
215
233
|
| UpdateIdentitySourceCommandOutput
|
|
216
234
|
| UpdatePolicyCommandOutput
|
|
217
235
|
| UpdatePolicyStoreCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListTagsForResourceInput,
|
|
5
|
+
ListTagsForResourceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
11
|
+
} from "../VerifiedPermissionsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceInput {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceInput;
|
|
44
|
+
output: ListTagsForResourceOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
8
|
+
} from "../VerifiedPermissionsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
12
|
+
export interface TagResourceCommandOutput
|
|
13
|
+
extends TagResourceOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const TagResourceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: TagResourceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: TagResourceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
TagResourceCommandInput,
|
|
29
|
+
TagResourceCommandOutput,
|
|
30
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: TagResourceInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: TagResourceCommandInput;
|
|
44
|
+
output: TagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
8
|
+
} from "../VerifiedPermissionsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
12
|
+
export interface UntagResourceCommandOutput
|
|
13
|
+
extends UntagResourceOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UntagResourceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UntagResourceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UntagResourceCommandInput,
|
|
20
|
+
UntagResourceCommandOutput,
|
|
21
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UntagResourceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UntagResourceCommandInput,
|
|
29
|
+
UntagResourceCommandOutput,
|
|
30
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UntagResourceInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UntagResourceCommandInput;
|
|
44
|
+
output: UntagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -20,7 +20,10 @@ export * from "./ListIdentitySourcesCommand";
|
|
|
20
20
|
export * from "./ListPoliciesCommand";
|
|
21
21
|
export * from "./ListPolicyStoresCommand";
|
|
22
22
|
export * from "./ListPolicyTemplatesCommand";
|
|
23
|
+
export * from "./ListTagsForResourceCommand";
|
|
23
24
|
export * from "./PutSchemaCommand";
|
|
25
|
+
export * from "./TagResourceCommand";
|
|
26
|
+
export * from "./UntagResourceCommand";
|
|
24
27
|
export * from "./UpdateIdentitySourceCommand";
|
|
25
28
|
export * from "./UpdatePolicyCommand";
|
|
26
29
|
export * from "./UpdatePolicyStoreCommand";
|
|
@@ -147,6 +147,11 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
147
147
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
148
148
|
);
|
|
149
149
|
}
|
|
150
|
+
export declare const CedarVersion: {
|
|
151
|
+
readonly CEDAR_2: "CEDAR_2";
|
|
152
|
+
readonly CEDAR_4: "CEDAR_4";
|
|
153
|
+
};
|
|
154
|
+
export type CedarVersion = (typeof CedarVersion)[keyof typeof CedarVersion];
|
|
150
155
|
export interface CognitoGroupConfiguration {
|
|
151
156
|
groupEntityType: string | undefined;
|
|
152
157
|
}
|
|
@@ -516,6 +521,7 @@ export interface CreatePolicyStoreInput {
|
|
|
516
521
|
validationSettings: ValidationSettings | undefined;
|
|
517
522
|
description?: string | undefined;
|
|
518
523
|
deletionProtection?: DeletionProtection | undefined;
|
|
524
|
+
tags?: Record<string, string> | undefined;
|
|
519
525
|
}
|
|
520
526
|
export interface CreatePolicyStoreOutput {
|
|
521
527
|
policyStoreId: string | undefined;
|
|
@@ -629,6 +635,7 @@ export interface GetPolicyOutput {
|
|
|
629
635
|
}
|
|
630
636
|
export interface GetPolicyStoreInput {
|
|
631
637
|
policyStoreId: string | undefined;
|
|
638
|
+
tags?: boolean | undefined;
|
|
632
639
|
}
|
|
633
640
|
export interface GetPolicyStoreOutput {
|
|
634
641
|
policyStoreId: string | undefined;
|
|
@@ -638,6 +645,8 @@ export interface GetPolicyStoreOutput {
|
|
|
638
645
|
lastUpdatedDate: Date | undefined;
|
|
639
646
|
description?: string | undefined;
|
|
640
647
|
deletionProtection?: DeletionProtection | undefined;
|
|
648
|
+
cedarVersion?: CedarVersion | undefined;
|
|
649
|
+
tags?: Record<string, string> | undefined;
|
|
641
650
|
}
|
|
642
651
|
export interface GetPolicyTemplateInput {
|
|
643
652
|
policyStoreId: string | undefined;
|
|
@@ -893,6 +902,12 @@ export interface ListPolicyTemplatesOutput {
|
|
|
893
902
|
nextToken?: string | undefined;
|
|
894
903
|
policyTemplates: PolicyTemplateItem[] | undefined;
|
|
895
904
|
}
|
|
905
|
+
export interface ListTagsForResourceInput {
|
|
906
|
+
resourceArn: string | undefined;
|
|
907
|
+
}
|
|
908
|
+
export interface ListTagsForResourceOutput {
|
|
909
|
+
tags?: Record<string, string> | undefined;
|
|
910
|
+
}
|
|
896
911
|
export interface UpdateStaticPolicyDefinition {
|
|
897
912
|
description?: string | undefined;
|
|
898
913
|
statement: string | undefined;
|
|
@@ -983,6 +998,24 @@ export interface UpdatePolicyStoreOutput {
|
|
|
983
998
|
createdDate: Date | undefined;
|
|
984
999
|
lastUpdatedDate: Date | undefined;
|
|
985
1000
|
}
|
|
1001
|
+
export interface TagResourceInput {
|
|
1002
|
+
resourceArn: string | undefined;
|
|
1003
|
+
tags: Record<string, string> | undefined;
|
|
1004
|
+
}
|
|
1005
|
+
export interface TagResourceOutput {}
|
|
1006
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1007
|
+
readonly name: "TooManyTagsException";
|
|
1008
|
+
readonly $fault: "client";
|
|
1009
|
+
resourceName?: string | undefined;
|
|
1010
|
+
constructor(
|
|
1011
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
1012
|
+
);
|
|
1013
|
+
}
|
|
1014
|
+
export interface UntagResourceInput {
|
|
1015
|
+
resourceArn: string | undefined;
|
|
1016
|
+
tagKeys: string[] | undefined;
|
|
1017
|
+
}
|
|
1018
|
+
export interface UntagResourceOutput {}
|
|
986
1019
|
export type AttributeValue =
|
|
987
1020
|
| AttributeValue.BooleanMember
|
|
988
1021
|
| AttributeValue.DecimalMember
|
|
@@ -91,10 +91,22 @@ import {
|
|
|
91
91
|
ListPolicyTemplatesCommandInput,
|
|
92
92
|
ListPolicyTemplatesCommandOutput,
|
|
93
93
|
} from "../commands/ListPolicyTemplatesCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListTagsForResourceCommandInput,
|
|
96
|
+
ListTagsForResourceCommandOutput,
|
|
97
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
94
98
|
import {
|
|
95
99
|
PutSchemaCommandInput,
|
|
96
100
|
PutSchemaCommandOutput,
|
|
97
101
|
} from "../commands/PutSchemaCommand";
|
|
102
|
+
import {
|
|
103
|
+
TagResourceCommandInput,
|
|
104
|
+
TagResourceCommandOutput,
|
|
105
|
+
} from "../commands/TagResourceCommand";
|
|
106
|
+
import {
|
|
107
|
+
UntagResourceCommandInput,
|
|
108
|
+
UntagResourceCommandOutput,
|
|
109
|
+
} from "../commands/UntagResourceCommand";
|
|
98
110
|
import {
|
|
99
111
|
UpdateIdentitySourceCommandInput,
|
|
100
112
|
UpdateIdentitySourceCommandOutput,
|
|
@@ -199,10 +211,22 @@ export declare const se_ListPolicyTemplatesCommand: (
|
|
|
199
211
|
input: ListPolicyTemplatesCommandInput,
|
|
200
212
|
context: __SerdeContext
|
|
201
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
215
|
+
input: ListTagsForResourceCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
202
218
|
export declare const se_PutSchemaCommand: (
|
|
203
219
|
input: PutSchemaCommandInput,
|
|
204
220
|
context: __SerdeContext
|
|
205
221
|
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const se_TagResourceCommand: (
|
|
223
|
+
input: TagResourceCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const se_UntagResourceCommand: (
|
|
227
|
+
input: UntagResourceCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
206
230
|
export declare const se_UpdateIdentitySourceCommand: (
|
|
207
231
|
input: UpdateIdentitySourceCommandInput,
|
|
208
232
|
context: __SerdeContext
|
|
@@ -307,10 +331,22 @@ export declare const de_ListPolicyTemplatesCommand: (
|
|
|
307
331
|
output: __HttpResponse,
|
|
308
332
|
context: __SerdeContext
|
|
309
333
|
) => Promise<ListPolicyTemplatesCommandOutput>;
|
|
334
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
310
338
|
export declare const de_PutSchemaCommand: (
|
|
311
339
|
output: __HttpResponse,
|
|
312
340
|
context: __SerdeContext
|
|
313
341
|
) => Promise<PutSchemaCommandOutput>;
|
|
342
|
+
export declare const de_TagResourceCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<TagResourceCommandOutput>;
|
|
346
|
+
export declare const de_UntagResourceCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
314
350
|
export declare const de_UpdateIdentitySourceCommand: (
|
|
315
351
|
output: __HttpResponse,
|
|
316
352
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-verifiedpermissions",
|
|
3
3
|
"description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.801.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-verifiedpermissions",
|