@aws-sdk/client-verifiedpermissions 3.352.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/LICENSE +201 -0
- package/README.md +461 -0
- package/dist-cjs/VerifiedPermissions.js +59 -0
- package/dist-cjs/VerifiedPermissionsClient.js +41 -0
- package/dist-cjs/commands/CreateIdentitySourceCommand.js +46 -0
- package/dist-cjs/commands/CreatePolicyCommand.js +46 -0
- package/dist-cjs/commands/CreatePolicyStoreCommand.js +46 -0
- package/dist-cjs/commands/CreatePolicyTemplateCommand.js +46 -0
- package/dist-cjs/commands/DeleteIdentitySourceCommand.js +46 -0
- package/dist-cjs/commands/DeletePolicyCommand.js +46 -0
- package/dist-cjs/commands/DeletePolicyStoreCommand.js +46 -0
- package/dist-cjs/commands/DeletePolicyTemplateCommand.js +46 -0
- package/dist-cjs/commands/GetIdentitySourceCommand.js +46 -0
- package/dist-cjs/commands/GetPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetPolicyStoreCommand.js +46 -0
- package/dist-cjs/commands/GetPolicyTemplateCommand.js +46 -0
- package/dist-cjs/commands/GetSchemaCommand.js +46 -0
- package/dist-cjs/commands/IsAuthorizedCommand.js +46 -0
- package/dist-cjs/commands/IsAuthorizedWithTokenCommand.js +46 -0
- package/dist-cjs/commands/ListIdentitySourcesCommand.js +46 -0
- package/dist-cjs/commands/ListPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListPolicyStoresCommand.js +46 -0
- package/dist-cjs/commands/ListPolicyTemplatesCommand.js +46 -0
- package/dist-cjs/commands/PutSchemaCommand.js +46 -0
- package/dist-cjs/commands/UpdateIdentitySourceCommand.js +46 -0
- package/dist-cjs/commands/UpdatePolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdatePolicyStoreCommand.js +46 -0
- package/dist-cjs/commands/UpdatePolicyTemplateCommand.js +46 -0
- package/dist-cjs/commands/index.js +27 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/VerifiedPermissionsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +237 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListIdentitySourcesPaginator.js +29 -0
- package/dist-cjs/pagination/ListPoliciesPaginator.js +29 -0
- package/dist-cjs/pagination/ListPolicyStoresPaginator.js +29 -0
- package/dist-cjs/pagination/ListPolicyTemplatesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_json1_0.js +1772 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/VerifiedPermissions.js +55 -0
- package/dist-es/VerifiedPermissionsClient.js +37 -0
- package/dist-es/commands/CreateIdentitySourceCommand.js +42 -0
- package/dist-es/commands/CreatePolicyCommand.js +42 -0
- package/dist-es/commands/CreatePolicyStoreCommand.js +42 -0
- package/dist-es/commands/CreatePolicyTemplateCommand.js +42 -0
- package/dist-es/commands/DeleteIdentitySourceCommand.js +42 -0
- package/dist-es/commands/DeletePolicyCommand.js +42 -0
- package/dist-es/commands/DeletePolicyStoreCommand.js +42 -0
- package/dist-es/commands/DeletePolicyTemplateCommand.js +42 -0
- package/dist-es/commands/GetIdentitySourceCommand.js +42 -0
- package/dist-es/commands/GetPolicyCommand.js +42 -0
- package/dist-es/commands/GetPolicyStoreCommand.js +42 -0
- package/dist-es/commands/GetPolicyTemplateCommand.js +42 -0
- package/dist-es/commands/GetSchemaCommand.js +42 -0
- package/dist-es/commands/IsAuthorizedCommand.js +42 -0
- package/dist-es/commands/IsAuthorizedWithTokenCommand.js +42 -0
- package/dist-es/commands/ListIdentitySourcesCommand.js +42 -0
- package/dist-es/commands/ListPoliciesCommand.js +42 -0
- package/dist-es/commands/ListPolicyStoresCommand.js +42 -0
- package/dist-es/commands/ListPolicyTemplatesCommand.js +42 -0
- package/dist-es/commands/PutSchemaCommand.js +42 -0
- package/dist-es/commands/UpdateIdentitySourceCommand.js +42 -0
- package/dist-es/commands/UpdatePolicyCommand.js +42 -0
- package/dist-es/commands/UpdatePolicyStoreCommand.js +42 -0
- package/dist-es/commands/UpdatePolicyTemplateCommand.js +42 -0
- package/dist-es/commands/index.js +24 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/VerifiedPermissionsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +227 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListIdentitySourcesPaginator.js +25 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +25 -0
- package/dist-es/pagination/ListPolicyStoresPaginator.js +25 -0
- package/dist-es/pagination/ListPolicyTemplatesPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_json1_0.js +1721 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/VerifiedPermissions.d.ts +242 -0
- package/dist-types/VerifiedPermissionsClient.d.ts +250 -0
- package/dist-types/commands/CreateIdentitySourceCommand.d.ts +210 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +222 -0
- package/dist-types/commands/CreatePolicyStoreCommand.d.ts +175 -0
- package/dist-types/commands/CreatePolicyTemplateCommand.d.ts +184 -0
- package/dist-types/commands/DeleteIdentitySourceCommand.d.ts +175 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +174 -0
- package/dist-types/commands/DeletePolicyStoreCommand.d.ts +166 -0
- package/dist-types/commands/DeletePolicyTemplateCommand.d.ts +177 -0
- package/dist-types/commands/GetIdentitySourceCommand.d.ts +182 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +199 -0
- package/dist-types/commands/GetPolicyStoreCommand.d.ts +175 -0
- package/dist-types/commands/GetPolicyTemplateCommand.d.ts +175 -0
- package/dist-types/commands/GetSchemaCommand.d.ts +172 -0
- package/dist-types/commands/IsAuthorizedCommand.d.ts +239 -0
- package/dist-types/commands/IsAuthorizedWithTokenCommand.d.ts +240 -0
- package/dist-types/commands/ListIdentitySourcesCommand.d.ts +193 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +222 -0
- package/dist-types/commands/ListPolicyStoresCommand.d.ts +174 -0
- package/dist-types/commands/ListPolicyTemplatesCommand.d.ts +180 -0
- package/dist-types/commands/PutSchemaCommand.d.ts +188 -0
- package/dist-types/commands/UpdateIdentitySourceCommand.d.ts +187 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +202 -0
- package/dist-types/commands/UpdatePolicyStoreCommand.d.ts +179 -0
- package/dist-types/commands/UpdatePolicyTemplateCommand.d.ts +184 -0
- package/dist-types/commands/index.d.ts +24 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +75 -0
- package/dist-types/models/VerifiedPermissionsServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2456 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListIdentitySourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyStoresPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyTemplatesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +218 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/VerifiedPermissions.d.ts +415 -0
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +259 -0
- package/dist-types/ts3.4/commands/CreateIdentitySourceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreatePolicyStoreCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreatePolicyTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteIdentitySourceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeletePolicyStoreCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeletePolicyTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetIdentitySourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetPolicyStoreCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetPolicyTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/IsAuthorizedCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/IsAuthorizedWithTokenCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListIdentitySourcesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListPolicyStoresCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPolicyTemplatesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PutSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateIdentitySourceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdatePolicyStoreCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePolicyTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +24 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/VerifiedPermissionsServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +757 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListIdentitySourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyStoresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +293 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
- package/package.json +101 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { VerifiedPermissionsClient } from "../VerifiedPermissionsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface VerifiedPermissionsPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: VerifiedPermissionsClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListIdentitySourcesCommandInput, ListIdentitySourcesCommandOutput } from "../commands/ListIdentitySourcesCommand";
|
|
3
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListIdentitySources(config: VerifiedPermissionsPaginationConfiguration, input: ListIdentitySourcesCommandInput, ...additionalArguments: any): Paginator<ListIdentitySourcesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
|
|
3
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListPolicies(config: VerifiedPermissionsPaginationConfiguration, input: ListPoliciesCommandInput, ...additionalArguments: any): Paginator<ListPoliciesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPolicyStoresCommandInput, ListPolicyStoresCommandOutput } from "../commands/ListPolicyStoresCommand";
|
|
3
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListPolicyStores(config: VerifiedPermissionsPaginationConfiguration, input: ListPolicyStoresCommandInput, ...additionalArguments: any): Paginator<ListPolicyStoresCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPolicyTemplatesCommandInput, ListPolicyTemplatesCommandOutput } from "../commands/ListPolicyTemplatesCommand";
|
|
3
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListPolicyTemplates(config: VerifiedPermissionsPaginationConfiguration, input: ListPolicyTemplatesCommandInput, ...additionalArguments: any): Paginator<ListPolicyTemplatesCommandOutput>;
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateIdentitySourceCommandInput, CreateIdentitySourceCommandOutput } from "../commands/CreateIdentitySourceCommand";
|
|
4
|
+
import { CreatePolicyCommandInput, CreatePolicyCommandOutput } from "../commands/CreatePolicyCommand";
|
|
5
|
+
import { CreatePolicyStoreCommandInput, CreatePolicyStoreCommandOutput } from "../commands/CreatePolicyStoreCommand";
|
|
6
|
+
import { CreatePolicyTemplateCommandInput, CreatePolicyTemplateCommandOutput } from "../commands/CreatePolicyTemplateCommand";
|
|
7
|
+
import { DeleteIdentitySourceCommandInput, DeleteIdentitySourceCommandOutput } from "../commands/DeleteIdentitySourceCommand";
|
|
8
|
+
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "../commands/DeletePolicyCommand";
|
|
9
|
+
import { DeletePolicyStoreCommandInput, DeletePolicyStoreCommandOutput } from "../commands/DeletePolicyStoreCommand";
|
|
10
|
+
import { DeletePolicyTemplateCommandInput, DeletePolicyTemplateCommandOutput } from "../commands/DeletePolicyTemplateCommand";
|
|
11
|
+
import { GetIdentitySourceCommandInput, GetIdentitySourceCommandOutput } from "../commands/GetIdentitySourceCommand";
|
|
12
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
13
|
+
import { GetPolicyStoreCommandInput, GetPolicyStoreCommandOutput } from "../commands/GetPolicyStoreCommand";
|
|
14
|
+
import { GetPolicyTemplateCommandInput, GetPolicyTemplateCommandOutput } from "../commands/GetPolicyTemplateCommand";
|
|
15
|
+
import { GetSchemaCommandInput, GetSchemaCommandOutput } from "../commands/GetSchemaCommand";
|
|
16
|
+
import { IsAuthorizedCommandInput, IsAuthorizedCommandOutput } from "../commands/IsAuthorizedCommand";
|
|
17
|
+
import { IsAuthorizedWithTokenCommandInput, IsAuthorizedWithTokenCommandOutput } from "../commands/IsAuthorizedWithTokenCommand";
|
|
18
|
+
import { ListIdentitySourcesCommandInput, ListIdentitySourcesCommandOutput } from "../commands/ListIdentitySourcesCommand";
|
|
19
|
+
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
|
|
20
|
+
import { ListPolicyStoresCommandInput, ListPolicyStoresCommandOutput } from "../commands/ListPolicyStoresCommand";
|
|
21
|
+
import { ListPolicyTemplatesCommandInput, ListPolicyTemplatesCommandOutput } from "../commands/ListPolicyTemplatesCommand";
|
|
22
|
+
import { PutSchemaCommandInput, PutSchemaCommandOutput } from "../commands/PutSchemaCommand";
|
|
23
|
+
import { UpdateIdentitySourceCommandInput, UpdateIdentitySourceCommandOutput } from "../commands/UpdateIdentitySourceCommand";
|
|
24
|
+
import { UpdatePolicyCommandInput, UpdatePolicyCommandOutput } from "../commands/UpdatePolicyCommand";
|
|
25
|
+
import { UpdatePolicyStoreCommandInput, UpdatePolicyStoreCommandOutput } from "../commands/UpdatePolicyStoreCommand";
|
|
26
|
+
import { UpdatePolicyTemplateCommandInput, UpdatePolicyTemplateCommandOutput } from "../commands/UpdatePolicyTemplateCommand";
|
|
27
|
+
/**
|
|
28
|
+
* serializeAws_json1_0CreateIdentitySourceCommand
|
|
29
|
+
*/
|
|
30
|
+
export declare const se_CreateIdentitySourceCommand: (input: CreateIdentitySourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_json1_0CreatePolicyCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_CreatePolicyCommand: (input: CreatePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
/**
|
|
36
|
+
* serializeAws_json1_0CreatePolicyStoreCommand
|
|
37
|
+
*/
|
|
38
|
+
export declare const se_CreatePolicyStoreCommand: (input: CreatePolicyStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
/**
|
|
40
|
+
* serializeAws_json1_0CreatePolicyTemplateCommand
|
|
41
|
+
*/
|
|
42
|
+
export declare const se_CreatePolicyTemplateCommand: (input: CreatePolicyTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_json1_0DeleteIdentitySourceCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_DeleteIdentitySourceCommand: (input: DeleteIdentitySourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_json1_0DeletePolicyCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_DeletePolicyCommand: (input: DeletePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* serializeAws_json1_0DeletePolicyStoreCommand
|
|
53
|
+
*/
|
|
54
|
+
export declare const se_DeletePolicyStoreCommand: (input: DeletePolicyStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_json1_0DeletePolicyTemplateCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_DeletePolicyTemplateCommand: (input: DeletePolicyTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_json1_0GetIdentitySourceCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_GetIdentitySourceCommand: (input: GetIdentitySourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_json1_0GetPolicyCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
/**
|
|
68
|
+
* serializeAws_json1_0GetPolicyStoreCommand
|
|
69
|
+
*/
|
|
70
|
+
export declare const se_GetPolicyStoreCommand: (input: GetPolicyStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_json1_0GetPolicyTemplateCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_GetPolicyTemplateCommand: (input: GetPolicyTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_json1_0GetSchemaCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_GetSchemaCommand: (input: GetSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
/**
|
|
80
|
+
* serializeAws_json1_0IsAuthorizedCommand
|
|
81
|
+
*/
|
|
82
|
+
export declare const se_IsAuthorizedCommand: (input: IsAuthorizedCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
/**
|
|
84
|
+
* serializeAws_json1_0IsAuthorizedWithTokenCommand
|
|
85
|
+
*/
|
|
86
|
+
export declare const se_IsAuthorizedWithTokenCommand: (input: IsAuthorizedWithTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
+
/**
|
|
88
|
+
* serializeAws_json1_0ListIdentitySourcesCommand
|
|
89
|
+
*/
|
|
90
|
+
export declare const se_ListIdentitySourcesCommand: (input: ListIdentitySourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
+
/**
|
|
92
|
+
* serializeAws_json1_0ListPoliciesCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const se_ListPoliciesCommand: (input: ListPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
|
+
/**
|
|
96
|
+
* serializeAws_json1_0ListPolicyStoresCommand
|
|
97
|
+
*/
|
|
98
|
+
export declare const se_ListPolicyStoresCommand: (input: ListPolicyStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
99
|
+
/**
|
|
100
|
+
* serializeAws_json1_0ListPolicyTemplatesCommand
|
|
101
|
+
*/
|
|
102
|
+
export declare const se_ListPolicyTemplatesCommand: (input: ListPolicyTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
/**
|
|
104
|
+
* serializeAws_json1_0PutSchemaCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const se_PutSchemaCommand: (input: PutSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
/**
|
|
108
|
+
* serializeAws_json1_0UpdateIdentitySourceCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const se_UpdateIdentitySourceCommand: (input: UpdateIdentitySourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
+
/**
|
|
112
|
+
* serializeAws_json1_0UpdatePolicyCommand
|
|
113
|
+
*/
|
|
114
|
+
export declare const se_UpdatePolicyCommand: (input: UpdatePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
|
+
/**
|
|
116
|
+
* serializeAws_json1_0UpdatePolicyStoreCommand
|
|
117
|
+
*/
|
|
118
|
+
export declare const se_UpdatePolicyStoreCommand: (input: UpdatePolicyStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
/**
|
|
120
|
+
* serializeAws_json1_0UpdatePolicyTemplateCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const se_UpdatePolicyTemplateCommand: (input: UpdatePolicyTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
/**
|
|
124
|
+
* deserializeAws_json1_0CreateIdentitySourceCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const de_CreateIdentitySourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdentitySourceCommandOutput>;
|
|
127
|
+
/**
|
|
128
|
+
* deserializeAws_json1_0CreatePolicyCommand
|
|
129
|
+
*/
|
|
130
|
+
export declare const de_CreatePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePolicyCommandOutput>;
|
|
131
|
+
/**
|
|
132
|
+
* deserializeAws_json1_0CreatePolicyStoreCommand
|
|
133
|
+
*/
|
|
134
|
+
export declare const de_CreatePolicyStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePolicyStoreCommandOutput>;
|
|
135
|
+
/**
|
|
136
|
+
* deserializeAws_json1_0CreatePolicyTemplateCommand
|
|
137
|
+
*/
|
|
138
|
+
export declare const de_CreatePolicyTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePolicyTemplateCommandOutput>;
|
|
139
|
+
/**
|
|
140
|
+
* deserializeAws_json1_0DeleteIdentitySourceCommand
|
|
141
|
+
*/
|
|
142
|
+
export declare const de_DeleteIdentitySourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentitySourceCommandOutput>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_json1_0DeletePolicyCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_DeletePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyCommandOutput>;
|
|
147
|
+
/**
|
|
148
|
+
* deserializeAws_json1_0DeletePolicyStoreCommand
|
|
149
|
+
*/
|
|
150
|
+
export declare const de_DeletePolicyStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyStoreCommandOutput>;
|
|
151
|
+
/**
|
|
152
|
+
* deserializeAws_json1_0DeletePolicyTemplateCommand
|
|
153
|
+
*/
|
|
154
|
+
export declare const de_DeletePolicyTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyTemplateCommandOutput>;
|
|
155
|
+
/**
|
|
156
|
+
* deserializeAws_json1_0GetIdentitySourceCommand
|
|
157
|
+
*/
|
|
158
|
+
export declare const de_GetIdentitySourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentitySourceCommandOutput>;
|
|
159
|
+
/**
|
|
160
|
+
* deserializeAws_json1_0GetPolicyCommand
|
|
161
|
+
*/
|
|
162
|
+
export declare const de_GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
|
|
163
|
+
/**
|
|
164
|
+
* deserializeAws_json1_0GetPolicyStoreCommand
|
|
165
|
+
*/
|
|
166
|
+
export declare const de_GetPolicyStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyStoreCommandOutput>;
|
|
167
|
+
/**
|
|
168
|
+
* deserializeAws_json1_0GetPolicyTemplateCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const de_GetPolicyTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyTemplateCommandOutput>;
|
|
171
|
+
/**
|
|
172
|
+
* deserializeAws_json1_0GetSchemaCommand
|
|
173
|
+
*/
|
|
174
|
+
export declare const de_GetSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSchemaCommandOutput>;
|
|
175
|
+
/**
|
|
176
|
+
* deserializeAws_json1_0IsAuthorizedCommand
|
|
177
|
+
*/
|
|
178
|
+
export declare const de_IsAuthorizedCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IsAuthorizedCommandOutput>;
|
|
179
|
+
/**
|
|
180
|
+
* deserializeAws_json1_0IsAuthorizedWithTokenCommand
|
|
181
|
+
*/
|
|
182
|
+
export declare const de_IsAuthorizedWithTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IsAuthorizedWithTokenCommandOutput>;
|
|
183
|
+
/**
|
|
184
|
+
* deserializeAws_json1_0ListIdentitySourcesCommand
|
|
185
|
+
*/
|
|
186
|
+
export declare const de_ListIdentitySourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentitySourcesCommandOutput>;
|
|
187
|
+
/**
|
|
188
|
+
* deserializeAws_json1_0ListPoliciesCommand
|
|
189
|
+
*/
|
|
190
|
+
export declare const de_ListPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPoliciesCommandOutput>;
|
|
191
|
+
/**
|
|
192
|
+
* deserializeAws_json1_0ListPolicyStoresCommand
|
|
193
|
+
*/
|
|
194
|
+
export declare const de_ListPolicyStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPolicyStoresCommandOutput>;
|
|
195
|
+
/**
|
|
196
|
+
* deserializeAws_json1_0ListPolicyTemplatesCommand
|
|
197
|
+
*/
|
|
198
|
+
export declare const de_ListPolicyTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPolicyTemplatesCommandOutput>;
|
|
199
|
+
/**
|
|
200
|
+
* deserializeAws_json1_0PutSchemaCommand
|
|
201
|
+
*/
|
|
202
|
+
export declare const de_PutSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSchemaCommandOutput>;
|
|
203
|
+
/**
|
|
204
|
+
* deserializeAws_json1_0UpdateIdentitySourceCommand
|
|
205
|
+
*/
|
|
206
|
+
export declare const de_UpdateIdentitySourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdentitySourceCommandOutput>;
|
|
207
|
+
/**
|
|
208
|
+
* deserializeAws_json1_0UpdatePolicyCommand
|
|
209
|
+
*/
|
|
210
|
+
export declare const de_UpdatePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePolicyCommandOutput>;
|
|
211
|
+
/**
|
|
212
|
+
* deserializeAws_json1_0UpdatePolicyStoreCommand
|
|
213
|
+
*/
|
|
214
|
+
export declare const de_UpdatePolicyStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePolicyStoreCommandOutput>;
|
|
215
|
+
/**
|
|
216
|
+
* deserializeAws_json1_0UpdatePolicyTemplateCommand
|
|
217
|
+
*/
|
|
218
|
+
export declare const de_UpdatePolicyTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePolicyTemplateCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@aws-sdk/types").Logger;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@aws-sdk/types").Logger;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
serviceId: string;
|
|
19
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
24
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").EndpointV2 | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@smithy/types").Provider<import("@smithy/types").Endpoint>) | (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
12
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
|
+
};
|