@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,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { VerifiedPermissionsClient } from "../VerifiedPermissionsClient";
|
|
3
|
+
export interface VerifiedPermissionsPaginationConfiguration
|
|
4
|
+
extends PaginationConfiguration {
|
|
5
|
+
client: VerifiedPermissionsClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListIdentitySourcesCommandInput,
|
|
4
|
+
ListIdentitySourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListIdentitySourcesCommand";
|
|
6
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListIdentitySources(
|
|
8
|
+
config: VerifiedPermissionsPaginationConfiguration,
|
|
9
|
+
input: ListIdentitySourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListIdentitySourcesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPoliciesCommandInput,
|
|
4
|
+
ListPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/ListPoliciesCommand";
|
|
6
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPolicies(
|
|
8
|
+
config: VerifiedPermissionsPaginationConfiguration,
|
|
9
|
+
input: ListPoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPoliciesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPolicyStoresCommandInput,
|
|
4
|
+
ListPolicyStoresCommandOutput,
|
|
5
|
+
} from "../commands/ListPolicyStoresCommand";
|
|
6
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPolicyStores(
|
|
8
|
+
config: VerifiedPermissionsPaginationConfiguration,
|
|
9
|
+
input: ListPolicyStoresCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPolicyStoresCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPolicyTemplatesCommandInput,
|
|
4
|
+
ListPolicyTemplatesCommandOutput,
|
|
5
|
+
} from "../commands/ListPolicyTemplatesCommand";
|
|
6
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPolicyTemplates(
|
|
8
|
+
config: VerifiedPermissionsPaginationConfiguration,
|
|
9
|
+
input: ListPolicyTemplatesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPolicyTemplatesCommandOutput>;
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateIdentitySourceCommandInput,
|
|
8
|
+
CreateIdentitySourceCommandOutput,
|
|
9
|
+
} from "../commands/CreateIdentitySourceCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreatePolicyCommandInput,
|
|
12
|
+
CreatePolicyCommandOutput,
|
|
13
|
+
} from "../commands/CreatePolicyCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreatePolicyStoreCommandInput,
|
|
16
|
+
CreatePolicyStoreCommandOutput,
|
|
17
|
+
} from "../commands/CreatePolicyStoreCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreatePolicyTemplateCommandInput,
|
|
20
|
+
CreatePolicyTemplateCommandOutput,
|
|
21
|
+
} from "../commands/CreatePolicyTemplateCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteIdentitySourceCommandInput,
|
|
24
|
+
DeleteIdentitySourceCommandOutput,
|
|
25
|
+
} from "../commands/DeleteIdentitySourceCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeletePolicyCommandInput,
|
|
28
|
+
DeletePolicyCommandOutput,
|
|
29
|
+
} from "../commands/DeletePolicyCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeletePolicyStoreCommandInput,
|
|
32
|
+
DeletePolicyStoreCommandOutput,
|
|
33
|
+
} from "../commands/DeletePolicyStoreCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeletePolicyTemplateCommandInput,
|
|
36
|
+
DeletePolicyTemplateCommandOutput,
|
|
37
|
+
} from "../commands/DeletePolicyTemplateCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetIdentitySourceCommandInput,
|
|
40
|
+
GetIdentitySourceCommandOutput,
|
|
41
|
+
} from "../commands/GetIdentitySourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetPolicyCommandInput,
|
|
44
|
+
GetPolicyCommandOutput,
|
|
45
|
+
} from "../commands/GetPolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetPolicyStoreCommandInput,
|
|
48
|
+
GetPolicyStoreCommandOutput,
|
|
49
|
+
} from "../commands/GetPolicyStoreCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetPolicyTemplateCommandInput,
|
|
52
|
+
GetPolicyTemplateCommandOutput,
|
|
53
|
+
} from "../commands/GetPolicyTemplateCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetSchemaCommandInput,
|
|
56
|
+
GetSchemaCommandOutput,
|
|
57
|
+
} from "../commands/GetSchemaCommand";
|
|
58
|
+
import {
|
|
59
|
+
IsAuthorizedCommandInput,
|
|
60
|
+
IsAuthorizedCommandOutput,
|
|
61
|
+
} from "../commands/IsAuthorizedCommand";
|
|
62
|
+
import {
|
|
63
|
+
IsAuthorizedWithTokenCommandInput,
|
|
64
|
+
IsAuthorizedWithTokenCommandOutput,
|
|
65
|
+
} from "../commands/IsAuthorizedWithTokenCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListIdentitySourcesCommandInput,
|
|
68
|
+
ListIdentitySourcesCommandOutput,
|
|
69
|
+
} from "../commands/ListIdentitySourcesCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListPoliciesCommandInput,
|
|
72
|
+
ListPoliciesCommandOutput,
|
|
73
|
+
} from "../commands/ListPoliciesCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListPolicyStoresCommandInput,
|
|
76
|
+
ListPolicyStoresCommandOutput,
|
|
77
|
+
} from "../commands/ListPolicyStoresCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListPolicyTemplatesCommandInput,
|
|
80
|
+
ListPolicyTemplatesCommandOutput,
|
|
81
|
+
} from "../commands/ListPolicyTemplatesCommand";
|
|
82
|
+
import {
|
|
83
|
+
PutSchemaCommandInput,
|
|
84
|
+
PutSchemaCommandOutput,
|
|
85
|
+
} from "../commands/PutSchemaCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateIdentitySourceCommandInput,
|
|
88
|
+
UpdateIdentitySourceCommandOutput,
|
|
89
|
+
} from "../commands/UpdateIdentitySourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
UpdatePolicyCommandInput,
|
|
92
|
+
UpdatePolicyCommandOutput,
|
|
93
|
+
} from "../commands/UpdatePolicyCommand";
|
|
94
|
+
import {
|
|
95
|
+
UpdatePolicyStoreCommandInput,
|
|
96
|
+
UpdatePolicyStoreCommandOutput,
|
|
97
|
+
} from "../commands/UpdatePolicyStoreCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdatePolicyTemplateCommandInput,
|
|
100
|
+
UpdatePolicyTemplateCommandOutput,
|
|
101
|
+
} from "../commands/UpdatePolicyTemplateCommand";
|
|
102
|
+
export declare const se_CreateIdentitySourceCommand: (
|
|
103
|
+
input: CreateIdentitySourceCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_CreatePolicyCommand: (
|
|
107
|
+
input: CreatePolicyCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const se_CreatePolicyStoreCommand: (
|
|
111
|
+
input: CreatePolicyStoreCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_CreatePolicyTemplateCommand: (
|
|
115
|
+
input: CreatePolicyTemplateCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_DeleteIdentitySourceCommand: (
|
|
119
|
+
input: DeleteIdentitySourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_DeletePolicyCommand: (
|
|
123
|
+
input: DeletePolicyCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_DeletePolicyStoreCommand: (
|
|
127
|
+
input: DeletePolicyStoreCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_DeletePolicyTemplateCommand: (
|
|
131
|
+
input: DeletePolicyTemplateCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_GetIdentitySourceCommand: (
|
|
135
|
+
input: GetIdentitySourceCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_GetPolicyCommand: (
|
|
139
|
+
input: GetPolicyCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_GetPolicyStoreCommand: (
|
|
143
|
+
input: GetPolicyStoreCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_GetPolicyTemplateCommand: (
|
|
147
|
+
input: GetPolicyTemplateCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_GetSchemaCommand: (
|
|
151
|
+
input: GetSchemaCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_IsAuthorizedCommand: (
|
|
155
|
+
input: IsAuthorizedCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_IsAuthorizedWithTokenCommand: (
|
|
159
|
+
input: IsAuthorizedWithTokenCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_ListIdentitySourcesCommand: (
|
|
163
|
+
input: ListIdentitySourcesCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_ListPoliciesCommand: (
|
|
167
|
+
input: ListPoliciesCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_ListPolicyStoresCommand: (
|
|
171
|
+
input: ListPolicyStoresCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_ListPolicyTemplatesCommand: (
|
|
175
|
+
input: ListPolicyTemplatesCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_PutSchemaCommand: (
|
|
179
|
+
input: PutSchemaCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_UpdateIdentitySourceCommand: (
|
|
183
|
+
input: UpdateIdentitySourceCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_UpdatePolicyCommand: (
|
|
187
|
+
input: UpdatePolicyCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const se_UpdatePolicyStoreCommand: (
|
|
191
|
+
input: UpdatePolicyStoreCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_UpdatePolicyTemplateCommand: (
|
|
195
|
+
input: UpdatePolicyTemplateCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const de_CreateIdentitySourceCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<CreateIdentitySourceCommandOutput>;
|
|
202
|
+
export declare const de_CreatePolicyCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<CreatePolicyCommandOutput>;
|
|
206
|
+
export declare const de_CreatePolicyStoreCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<CreatePolicyStoreCommandOutput>;
|
|
210
|
+
export declare const de_CreatePolicyTemplateCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<CreatePolicyTemplateCommandOutput>;
|
|
214
|
+
export declare const de_DeleteIdentitySourceCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<DeleteIdentitySourceCommandOutput>;
|
|
218
|
+
export declare const de_DeletePolicyCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<DeletePolicyCommandOutput>;
|
|
222
|
+
export declare const de_DeletePolicyStoreCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<DeletePolicyStoreCommandOutput>;
|
|
226
|
+
export declare const de_DeletePolicyTemplateCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DeletePolicyTemplateCommandOutput>;
|
|
230
|
+
export declare const de_GetIdentitySourceCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<GetIdentitySourceCommandOutput>;
|
|
234
|
+
export declare const de_GetPolicyCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<GetPolicyCommandOutput>;
|
|
238
|
+
export declare const de_GetPolicyStoreCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<GetPolicyStoreCommandOutput>;
|
|
242
|
+
export declare const de_GetPolicyTemplateCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<GetPolicyTemplateCommandOutput>;
|
|
246
|
+
export declare const de_GetSchemaCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<GetSchemaCommandOutput>;
|
|
250
|
+
export declare const de_IsAuthorizedCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<IsAuthorizedCommandOutput>;
|
|
254
|
+
export declare const de_IsAuthorizedWithTokenCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<IsAuthorizedWithTokenCommandOutput>;
|
|
258
|
+
export declare const de_ListIdentitySourcesCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<ListIdentitySourcesCommandOutput>;
|
|
262
|
+
export declare const de_ListPoliciesCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ListPoliciesCommandOutput>;
|
|
266
|
+
export declare const de_ListPolicyStoresCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<ListPolicyStoresCommandOutput>;
|
|
270
|
+
export declare const de_ListPolicyTemplatesCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<ListPolicyTemplatesCommandOutput>;
|
|
274
|
+
export declare const de_PutSchemaCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<PutSchemaCommandOutput>;
|
|
278
|
+
export declare const de_UpdateIdentitySourceCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<UpdateIdentitySourceCommandOutput>;
|
|
282
|
+
export declare const de_UpdatePolicyCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<UpdatePolicyCommandOutput>;
|
|
286
|
+
export declare const de_UpdatePolicyStoreCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<UpdatePolicyStoreCommandOutput>;
|
|
290
|
+
export declare const de_UpdatePolicyTemplateCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<UpdatePolicyTemplateCommandOutput>;
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: VerifiedPermissionsClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) &
|
|
18
|
+
(number | import("@aws-sdk/types").Provider<number>);
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
32
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
33
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
34
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
38
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
39
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
40
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
41
|
+
disableHostPrefix: boolean;
|
|
42
|
+
serviceId: string;
|
|
43
|
+
logger: import("@aws-sdk/types").Logger;
|
|
44
|
+
endpoint?:
|
|
45
|
+
| ((
|
|
46
|
+
| string
|
|
47
|
+
| import("@aws-sdk/types").Endpoint
|
|
48
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
49
|
+
| import("@aws-sdk/types").EndpointV2
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
51
|
+
) &
|
|
52
|
+
(
|
|
53
|
+
| string
|
|
54
|
+
| import("@smithy/types").Provider<string>
|
|
55
|
+
| import("@smithy/types").Endpoint
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
57
|
+
| import("@aws-sdk/types").EndpointV2
|
|
58
|
+
| import("@smithy/types").Provider<
|
|
59
|
+
import("@aws-sdk/types").EndpointV2
|
|
60
|
+
>
|
|
61
|
+
))
|
|
62
|
+
| undefined;
|
|
63
|
+
endpointProvider: (
|
|
64
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
65
|
+
context?: {
|
|
66
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
67
|
+
}
|
|
68
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
69
|
+
tls?: boolean | undefined;
|
|
70
|
+
retryStrategy?:
|
|
71
|
+
| import("@aws-sdk/types").RetryStrategy
|
|
72
|
+
| import("@aws-sdk/types").RetryStrategyV2
|
|
73
|
+
| undefined;
|
|
74
|
+
credentials?:
|
|
75
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
76
|
+
| import("@aws-sdk/types").Provider<
|
|
77
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
78
|
+
>
|
|
79
|
+
| undefined;
|
|
80
|
+
signer?:
|
|
81
|
+
| import("@aws-sdk/types").RequestSigner
|
|
82
|
+
| ((
|
|
83
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
84
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
85
|
+
| undefined;
|
|
86
|
+
signingEscapePath?: boolean | undefined;
|
|
87
|
+
systemClockOffset?: number | undefined;
|
|
88
|
+
signingRegion?: string | undefined;
|
|
89
|
+
signerConstructor?:
|
|
90
|
+
| (new (
|
|
91
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
92
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
93
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
94
|
+
| undefined;
|
|
95
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
96
|
+
};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: VerifiedPermissionsClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
apiVersion: string;
|
|
33
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
35
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
36
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
37
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| import("@aws-sdk/types").EndpointV2
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@smithy/types").Provider<string>
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@aws-sdk/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<
|
|
56
|
+
import("@aws-sdk/types").EndpointV2
|
|
57
|
+
>
|
|
58
|
+
))
|
|
59
|
+
| undefined;
|
|
60
|
+
endpointProvider: (
|
|
61
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
|
+
context?: {
|
|
63
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
64
|
+
}
|
|
65
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
66
|
+
tls?: boolean | undefined;
|
|
67
|
+
retryStrategy?:
|
|
68
|
+
| import("@aws-sdk/types").RetryStrategy
|
|
69
|
+
| import("@aws-sdk/types").RetryStrategyV2
|
|
70
|
+
| undefined;
|
|
71
|
+
credentials?:
|
|
72
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
73
|
+
| import("@aws-sdk/types").Provider<
|
|
74
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
75
|
+
>
|
|
76
|
+
| undefined;
|
|
77
|
+
signer?:
|
|
78
|
+
| import("@aws-sdk/types").RequestSigner
|
|
79
|
+
| ((
|
|
80
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
81
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
82
|
+
| undefined;
|
|
83
|
+
signingEscapePath?: boolean | undefined;
|
|
84
|
+
systemClockOffset?: number | undefined;
|
|
85
|
+
signingRegion?: string | undefined;
|
|
86
|
+
signerConstructor?:
|
|
87
|
+
| (new (
|
|
88
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
89
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
90
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
91
|
+
| undefined;
|
|
92
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
93
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: VerifiedPermissionsClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
9
|
+
any,
|
|
10
|
+
any,
|
|
11
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
12
|
+
> &
|
|
13
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
14
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
15
|
+
apiVersion: string;
|
|
16
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
17
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
21
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
serviceId: string;
|
|
25
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
27
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
29
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
30
|
+
credentialDefaultProvider: (
|
|
31
|
+
input: any
|
|
32
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
33
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
34
|
+
import("@aws-sdk/types").UserAgent
|
|
35
|
+
>;
|
|
36
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) &
|
|
37
|
+
(number | import("@aws-sdk/types").Provider<number>);
|
|
38
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
defaultsMode:
|
|
41
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
42
|
+
| import("@smithy/types").Provider<
|
|
43
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
44
|
+
>;
|
|
45
|
+
endpoint?:
|
|
46
|
+
| string
|
|
47
|
+
| import("@aws-sdk/types").EndpointV2
|
|
48
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> &
|
|
49
|
+
import("@smithy/types").Provider<import("@smithy/types").Endpoint>)
|
|
50
|
+
| (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint)
|
|
51
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> &
|
|
52
|
+
import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)
|
|
53
|
+
| undefined;
|
|
54
|
+
endpointProvider: (
|
|
55
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
56
|
+
context?: {
|
|
57
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
58
|
+
}
|
|
59
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
60
|
+
tls?: boolean | undefined;
|
|
61
|
+
retryStrategy?:
|
|
62
|
+
| import("@aws-sdk/types").RetryStrategy
|
|
63
|
+
| import("@aws-sdk/types").RetryStrategyV2
|
|
64
|
+
| undefined;
|
|
65
|
+
credentials?:
|
|
66
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
67
|
+
| import("@aws-sdk/types").Provider<
|
|
68
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
69
|
+
>
|
|
70
|
+
| undefined;
|
|
71
|
+
signer?:
|
|
72
|
+
| import("@aws-sdk/types").RequestSigner
|
|
73
|
+
| ((
|
|
74
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
75
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
76
|
+
| undefined;
|
|
77
|
+
signingEscapePath?: boolean | undefined;
|
|
78
|
+
systemClockOffset?: number | undefined;
|
|
79
|
+
signingRegion?: string | undefined;
|
|
80
|
+
signerConstructor?:
|
|
81
|
+
| (new (
|
|
82
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
83
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
84
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
85
|
+
| undefined;
|
|
86
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
87
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: VerifiedPermissionsClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (
|
|
10
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
11
|
+
context?: {
|
|
12
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
13
|
+
}
|
|
14
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
15
|
+
logger: import("@aws-sdk/types").Logger;
|
|
16
|
+
serviceId: string;
|
|
17
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
20
|
+
};
|