@aws-sdk/client-verifiedpermissions 3.533.0 → 3.536.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/dist-types/VerifiedPermissions.d.ts +2 -1
- package/dist-types/VerifiedPermissionsClient.d.ts +1 -1
- package/dist-types/commands/BatchIsAuthorizedCommand.d.ts +2 -1
- package/dist-types/commands/CreateIdentitySourceCommand.d.ts +2 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +2 -1
- package/dist-types/commands/CreatePolicyStoreCommand.d.ts +2 -1
- package/dist-types/commands/CreatePolicyTemplateCommand.d.ts +2 -1
- package/dist-types/commands/DeleteIdentitySourceCommand.d.ts +2 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeletePolicyStoreCommand.d.ts +2 -1
- package/dist-types/commands/DeletePolicyTemplateCommand.d.ts +2 -1
- package/dist-types/commands/GetIdentitySourceCommand.d.ts +2 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +2 -1
- package/dist-types/commands/GetPolicyStoreCommand.d.ts +2 -1
- package/dist-types/commands/GetPolicyTemplateCommand.d.ts +2 -1
- package/dist-types/commands/GetSchemaCommand.d.ts +2 -1
- package/dist-types/commands/IsAuthorizedCommand.d.ts +2 -1
- package/dist-types/commands/IsAuthorizedWithTokenCommand.d.ts +2 -1
- package/dist-types/commands/ListIdentitySourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListPoliciesCommand.d.ts +2 -1
- package/dist-types/commands/ListPolicyStoresCommand.d.ts +2 -1
- package/dist-types/commands/ListPolicyTemplatesCommand.d.ts +2 -1
- package/dist-types/commands/PutSchemaCommand.d.ts +2 -1
- package/dist-types/commands/UpdateIdentitySourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePolicyStoreCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePolicyTemplateCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +334 -334
- package/dist-types/ts3.4/VerifiedPermissions.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchIsAuthorizedCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateIdentitySourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreatePolicyStoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreatePolicyTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteIdentitySourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePolicyStoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePolicyTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetIdentitySourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPolicyStoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPolicyTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/IsAuthorizedCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/IsAuthorizedWithTokenCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListIdentitySourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPolicyStoresCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPolicyTemplatesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateIdentitySourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePolicyStoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePolicyTemplateCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -335,6 +335,7 @@ export interface VerifiedPermissions {
|
|
|
335
335
|
options: __HttpHandlerOptions,
|
|
336
336
|
cb: (err: any, data?: ListPoliciesCommandOutput) => void
|
|
337
337
|
): void;
|
|
338
|
+
listPolicyStores(): Promise<ListPolicyStoresCommandOutput>;
|
|
338
339
|
listPolicyStores(
|
|
339
340
|
args: ListPolicyStoresCommandInput,
|
|
340
341
|
options?: __HttpHandlerOptions
|
|
@@ -24,6 +24,15 @@ declare const BatchIsAuthorizedCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: BatchIsAuthorizedCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
BatchIsAuthorizedCommandInput,
|
|
31
|
+
BatchIsAuthorizedCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class BatchIsAuthorizedCommand extends BatchIsAuthorizedCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateIdentitySourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateIdentitySourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateIdentitySourceCommandInput,
|
|
32
|
+
CreateIdentitySourceCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateIdentitySourceCommand extends CreateIdentitySourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreatePolicyCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreatePolicyCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreatePolicyCommandInput,
|
|
28
|
+
CreatePolicyCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreatePolicyCommand extends CreatePolicyCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const CreatePolicyStoreCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreatePolicyStoreCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreatePolicyStoreCommandInput,
|
|
31
|
+
CreatePolicyStoreCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreatePolicyStoreCommand extends CreatePolicyStoreCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreatePolicyTemplateCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreatePolicyTemplateCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreatePolicyTemplateCommandInput,
|
|
32
|
+
CreatePolicyTemplateCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreatePolicyTemplateCommand extends CreatePolicyTemplateCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeleteIdentitySourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteIdentitySourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteIdentitySourceCommandInput,
|
|
32
|
+
DeleteIdentitySourceCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteIdentitySourceCommand extends DeleteIdentitySourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeletePolicyCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeletePolicyCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeletePolicyCommandInput,
|
|
28
|
+
DeletePolicyCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeletePolicyCommand extends DeletePolicyCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DeletePolicyStoreCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeletePolicyStoreCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeletePolicyStoreCommandInput,
|
|
31
|
+
DeletePolicyStoreCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeletePolicyStoreCommand extends DeletePolicyStoreCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeletePolicyTemplateCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeletePolicyTemplateCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeletePolicyTemplateCommandInput,
|
|
32
|
+
DeletePolicyTemplateCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeletePolicyTemplateCommand extends DeletePolicyTemplateCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetIdentitySourceCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetIdentitySourceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetIdentitySourceCommandInput,
|
|
31
|
+
GetIdentitySourceCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetIdentitySourceCommand extends GetIdentitySourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetPolicyCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetPolicyCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetPolicyCommandInput,
|
|
28
|
+
GetPolicyCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetPolicyCommand extends GetPolicyCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetPolicyStoreCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetPolicyStoreCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetPolicyStoreCommandInput,
|
|
28
|
+
GetPolicyStoreCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetPolicyStoreCommand extends GetPolicyStoreCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetPolicyTemplateCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetPolicyTemplateCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetPolicyTemplateCommandInput,
|
|
31
|
+
GetPolicyTemplateCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetPolicyTemplateCommand extends GetPolicyTemplateCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetSchemaCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetSchemaCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetSchemaCommandInput,
|
|
28
|
+
GetSchemaCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetSchemaCommand extends GetSchemaCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const IsAuthorizedCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: IsAuthorizedCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
IsAuthorizedCommandInput,
|
|
28
|
+
IsAuthorizedCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class IsAuthorizedCommand extends IsAuthorizedCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const IsAuthorizedWithTokenCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: IsAuthorizedWithTokenCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
IsAuthorizedWithTokenCommandInput,
|
|
32
|
+
IsAuthorizedWithTokenCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class IsAuthorizedWithTokenCommand extends IsAuthorizedWithTokenCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListIdentitySourcesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListIdentitySourcesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListIdentitySourcesCommandInput,
|
|
32
|
+
ListIdentitySourcesCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListIdentitySourcesCommand extends ListIdentitySourcesCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListPoliciesCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ListPoliciesCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListPoliciesCommandInput,
|
|
28
|
+
ListPoliciesCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListPoliciesCommand extends ListPoliciesCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListPolicyStoresCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListPolicyStoresCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListPolicyStoresCommandInput,
|
|
31
|
+
ListPolicyStoresCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListPolicyStoresCommand extends ListPolicyStoresCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListPolicyTemplatesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListPolicyTemplatesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListPolicyTemplatesCommandInput,
|
|
32
|
+
ListPolicyTemplatesCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListPolicyTemplatesCommand extends ListPolicyTemplatesCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const PutSchemaCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: PutSchemaCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
PutSchemaCommandInput,
|
|
28
|
+
PutSchemaCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class PutSchemaCommand extends PutSchemaCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateIdentitySourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateIdentitySourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateIdentitySourceCommandInput,
|
|
32
|
+
UpdateIdentitySourceCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateIdentitySourceCommand extends UpdateIdentitySourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdatePolicyCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdatePolicyCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdatePolicyCommandInput,
|
|
28
|
+
UpdatePolicyCommandOutput,
|
|
29
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdatePolicyCommand extends UpdatePolicyCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdatePolicyStoreCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdatePolicyStoreCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdatePolicyStoreCommandInput,
|
|
31
|
+
UpdatePolicyStoreCommandOutput,
|
|
32
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdatePolicyStoreCommand extends UpdatePolicyStoreCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdatePolicyTemplateCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdatePolicyTemplateCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdatePolicyTemplateCommandInput,
|
|
32
|
+
UpdatePolicyTemplateCommandOutput,
|
|
33
|
+
VerifiedPermissionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdatePolicyTemplateCommand extends UpdatePolicyTemplateCommand_base {}
|
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.536.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",
|
|
@@ -20,48 +20,48 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2",
|
|
61
61
|
"uuid": "^9.0.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
64
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
65
65
|
"@tsconfig/node14": "1.0.3",
|
|
66
66
|
"@types/node": "^14.14.31",
|
|
67
67
|
"@types/uuid": "^9.0.4",
|