@aws-sdk/client-supportauthz 3.1087.0 → 3.1089.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/SupportAuthZ.d.ts +40 -51
- package/dist-types/ts3.4/SupportAuthZClient.d.ts +9 -28
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateSupportPermitCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSupportPermitCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetActionCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetSupportPermitCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSupportPermitRequestsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSupportPermitsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RejectSupportPermitRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListActionsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -11,18 +11,12 @@ import {
|
|
|
11
11
|
DeleteSupportPermitCommandInput,
|
|
12
12
|
DeleteSupportPermitCommandOutput,
|
|
13
13
|
} from "./commands/DeleteSupportPermitCommand";
|
|
14
|
-
import {
|
|
15
|
-
GetActionCommandInput,
|
|
16
|
-
GetActionCommandOutput,
|
|
17
|
-
} from "./commands/GetActionCommand";
|
|
14
|
+
import { GetActionCommandInput, GetActionCommandOutput } from "./commands/GetActionCommand";
|
|
18
15
|
import {
|
|
19
16
|
GetSupportPermitCommandInput,
|
|
20
17
|
GetSupportPermitCommandOutput,
|
|
21
18
|
} from "./commands/GetSupportPermitCommand";
|
|
22
|
-
import {
|
|
23
|
-
ListActionsCommandInput,
|
|
24
|
-
ListActionsCommandOutput,
|
|
25
|
-
} from "./commands/ListActionsCommand";
|
|
19
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
26
20
|
import {
|
|
27
21
|
ListSupportPermitRequestsCommandInput,
|
|
28
22
|
ListSupportPermitRequestsCommandOutput,
|
|
@@ -39,10 +33,7 @@ import {
|
|
|
39
33
|
RejectSupportPermitRequestCommandInput,
|
|
40
34
|
RejectSupportPermitRequestCommandOutput,
|
|
41
35
|
} from "./commands/RejectSupportPermitRequestCommand";
|
|
42
|
-
import {
|
|
43
|
-
TagResourceCommandInput,
|
|
44
|
-
TagResourceCommandOutput,
|
|
45
|
-
} from "./commands/TagResourceCommand";
|
|
36
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
46
37
|
import {
|
|
47
38
|
UntagResourceCommandInput,
|
|
48
39
|
UntagResourceCommandOutput,
|
|
@@ -51,171 +42,169 @@ import { SupportAuthZClient } from "./SupportAuthZClient";
|
|
|
51
42
|
export interface SupportAuthZ {
|
|
52
43
|
createSupportPermit(
|
|
53
44
|
args: CreateSupportPermitCommandInput,
|
|
54
|
-
options?: __HttpHandlerOptions
|
|
45
|
+
options?: __HttpHandlerOptions,
|
|
55
46
|
): Promise<CreateSupportPermitCommandOutput>;
|
|
56
47
|
createSupportPermit(
|
|
57
48
|
args: CreateSupportPermitCommandInput,
|
|
58
|
-
cb: (err: any, data?: CreateSupportPermitCommandOutput) => void
|
|
49
|
+
cb: (err: any, data?: CreateSupportPermitCommandOutput) => void,
|
|
59
50
|
): void;
|
|
60
51
|
createSupportPermit(
|
|
61
52
|
args: CreateSupportPermitCommandInput,
|
|
62
53
|
options: __HttpHandlerOptions,
|
|
63
|
-
cb: (err: any, data?: CreateSupportPermitCommandOutput) => void
|
|
54
|
+
cb: (err: any, data?: CreateSupportPermitCommandOutput) => void,
|
|
64
55
|
): void;
|
|
65
56
|
deleteSupportPermit(
|
|
66
57
|
args: DeleteSupportPermitCommandInput,
|
|
67
|
-
options?: __HttpHandlerOptions
|
|
58
|
+
options?: __HttpHandlerOptions,
|
|
68
59
|
): Promise<DeleteSupportPermitCommandOutput>;
|
|
69
60
|
deleteSupportPermit(
|
|
70
61
|
args: DeleteSupportPermitCommandInput,
|
|
71
|
-
cb: (err: any, data?: DeleteSupportPermitCommandOutput) => void
|
|
62
|
+
cb: (err: any, data?: DeleteSupportPermitCommandOutput) => void,
|
|
72
63
|
): void;
|
|
73
64
|
deleteSupportPermit(
|
|
74
65
|
args: DeleteSupportPermitCommandInput,
|
|
75
66
|
options: __HttpHandlerOptions,
|
|
76
|
-
cb: (err: any, data?: DeleteSupportPermitCommandOutput) => void
|
|
67
|
+
cb: (err: any, data?: DeleteSupportPermitCommandOutput) => void,
|
|
77
68
|
): void;
|
|
78
69
|
getAction(
|
|
79
70
|
args: GetActionCommandInput,
|
|
80
|
-
options?: __HttpHandlerOptions
|
|
71
|
+
options?: __HttpHandlerOptions,
|
|
81
72
|
): Promise<GetActionCommandOutput>;
|
|
82
73
|
getAction(
|
|
83
74
|
args: GetActionCommandInput,
|
|
84
|
-
cb: (err: any, data?: GetActionCommandOutput) => void
|
|
75
|
+
cb: (err: any, data?: GetActionCommandOutput) => void,
|
|
85
76
|
): void;
|
|
86
77
|
getAction(
|
|
87
78
|
args: GetActionCommandInput,
|
|
88
79
|
options: __HttpHandlerOptions,
|
|
89
|
-
cb: (err: any, data?: GetActionCommandOutput) => void
|
|
80
|
+
cb: (err: any, data?: GetActionCommandOutput) => void,
|
|
90
81
|
): void;
|
|
91
82
|
getSupportPermit(
|
|
92
83
|
args: GetSupportPermitCommandInput,
|
|
93
|
-
options?: __HttpHandlerOptions
|
|
84
|
+
options?: __HttpHandlerOptions,
|
|
94
85
|
): Promise<GetSupportPermitCommandOutput>;
|
|
95
86
|
getSupportPermit(
|
|
96
87
|
args: GetSupportPermitCommandInput,
|
|
97
|
-
cb: (err: any, data?: GetSupportPermitCommandOutput) => void
|
|
88
|
+
cb: (err: any, data?: GetSupportPermitCommandOutput) => void,
|
|
98
89
|
): void;
|
|
99
90
|
getSupportPermit(
|
|
100
91
|
args: GetSupportPermitCommandInput,
|
|
101
92
|
options: __HttpHandlerOptions,
|
|
102
|
-
cb: (err: any, data?: GetSupportPermitCommandOutput) => void
|
|
93
|
+
cb: (err: any, data?: GetSupportPermitCommandOutput) => void,
|
|
103
94
|
): void;
|
|
104
95
|
listActions(
|
|
105
96
|
args: ListActionsCommandInput,
|
|
106
|
-
options?: __HttpHandlerOptions
|
|
97
|
+
options?: __HttpHandlerOptions,
|
|
107
98
|
): Promise<ListActionsCommandOutput>;
|
|
108
99
|
listActions(
|
|
109
100
|
args: ListActionsCommandInput,
|
|
110
|
-
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
101
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void,
|
|
111
102
|
): void;
|
|
112
103
|
listActions(
|
|
113
104
|
args: ListActionsCommandInput,
|
|
114
105
|
options: __HttpHandlerOptions,
|
|
115
|
-
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
106
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void,
|
|
116
107
|
): void;
|
|
117
108
|
listSupportPermitRequests(): Promise<ListSupportPermitRequestsCommandOutput>;
|
|
118
109
|
listSupportPermitRequests(
|
|
119
110
|
args: ListSupportPermitRequestsCommandInput,
|
|
120
|
-
options?: __HttpHandlerOptions
|
|
111
|
+
options?: __HttpHandlerOptions,
|
|
121
112
|
): Promise<ListSupportPermitRequestsCommandOutput>;
|
|
122
113
|
listSupportPermitRequests(
|
|
123
114
|
args: ListSupportPermitRequestsCommandInput,
|
|
124
|
-
cb: (err: any, data?: ListSupportPermitRequestsCommandOutput) => void
|
|
115
|
+
cb: (err: any, data?: ListSupportPermitRequestsCommandOutput) => void,
|
|
125
116
|
): void;
|
|
126
117
|
listSupportPermitRequests(
|
|
127
118
|
args: ListSupportPermitRequestsCommandInput,
|
|
128
119
|
options: __HttpHandlerOptions,
|
|
129
|
-
cb: (err: any, data?: ListSupportPermitRequestsCommandOutput) => void
|
|
120
|
+
cb: (err: any, data?: ListSupportPermitRequestsCommandOutput) => void,
|
|
130
121
|
): void;
|
|
131
122
|
listSupportPermits(): Promise<ListSupportPermitsCommandOutput>;
|
|
132
123
|
listSupportPermits(
|
|
133
124
|
args: ListSupportPermitsCommandInput,
|
|
134
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
135
126
|
): Promise<ListSupportPermitsCommandOutput>;
|
|
136
127
|
listSupportPermits(
|
|
137
128
|
args: ListSupportPermitsCommandInput,
|
|
138
|
-
cb: (err: any, data?: ListSupportPermitsCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: ListSupportPermitsCommandOutput) => void,
|
|
139
130
|
): void;
|
|
140
131
|
listSupportPermits(
|
|
141
132
|
args: ListSupportPermitsCommandInput,
|
|
142
133
|
options: __HttpHandlerOptions,
|
|
143
|
-
cb: (err: any, data?: ListSupportPermitsCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: ListSupportPermitsCommandOutput) => void,
|
|
144
135
|
): void;
|
|
145
136
|
listTagsForResource(
|
|
146
137
|
args: ListTagsForResourceCommandInput,
|
|
147
|
-
options?: __HttpHandlerOptions
|
|
138
|
+
options?: __HttpHandlerOptions,
|
|
148
139
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
149
140
|
listTagsForResource(
|
|
150
141
|
args: ListTagsForResourceCommandInput,
|
|
151
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
152
143
|
): void;
|
|
153
144
|
listTagsForResource(
|
|
154
145
|
args: ListTagsForResourceCommandInput,
|
|
155
146
|
options: __HttpHandlerOptions,
|
|
156
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
157
148
|
): void;
|
|
158
149
|
rejectSupportPermitRequest(
|
|
159
150
|
args: RejectSupportPermitRequestCommandInput,
|
|
160
|
-
options?: __HttpHandlerOptions
|
|
151
|
+
options?: __HttpHandlerOptions,
|
|
161
152
|
): Promise<RejectSupportPermitRequestCommandOutput>;
|
|
162
153
|
rejectSupportPermitRequest(
|
|
163
154
|
args: RejectSupportPermitRequestCommandInput,
|
|
164
|
-
cb: (err: any, data?: RejectSupportPermitRequestCommandOutput) => void
|
|
155
|
+
cb: (err: any, data?: RejectSupportPermitRequestCommandOutput) => void,
|
|
165
156
|
): void;
|
|
166
157
|
rejectSupportPermitRequest(
|
|
167
158
|
args: RejectSupportPermitRequestCommandInput,
|
|
168
159
|
options: __HttpHandlerOptions,
|
|
169
|
-
cb: (err: any, data?: RejectSupportPermitRequestCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: RejectSupportPermitRequestCommandOutput) => void,
|
|
170
161
|
): void;
|
|
171
162
|
tagResource(
|
|
172
163
|
args: TagResourceCommandInput,
|
|
173
|
-
options?: __HttpHandlerOptions
|
|
164
|
+
options?: __HttpHandlerOptions,
|
|
174
165
|
): Promise<TagResourceCommandOutput>;
|
|
175
166
|
tagResource(
|
|
176
167
|
args: TagResourceCommandInput,
|
|
177
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
168
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
178
169
|
): void;
|
|
179
170
|
tagResource(
|
|
180
171
|
args: TagResourceCommandInput,
|
|
181
172
|
options: __HttpHandlerOptions,
|
|
182
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
183
174
|
): void;
|
|
184
175
|
untagResource(
|
|
185
176
|
args: UntagResourceCommandInput,
|
|
186
|
-
options?: __HttpHandlerOptions
|
|
177
|
+
options?: __HttpHandlerOptions,
|
|
187
178
|
): Promise<UntagResourceCommandOutput>;
|
|
188
179
|
untagResource(
|
|
189
180
|
args: UntagResourceCommandInput,
|
|
190
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
181
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
191
182
|
): void;
|
|
192
183
|
untagResource(
|
|
193
184
|
args: UntagResourceCommandInput,
|
|
194
185
|
options: __HttpHandlerOptions,
|
|
195
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
196
187
|
): void;
|
|
197
188
|
paginateListActions(
|
|
198
189
|
args: ListActionsCommandInput,
|
|
199
190
|
paginationConfig?: Pick<
|
|
200
191
|
PaginationConfiguration,
|
|
201
192
|
Exclude<keyof PaginationConfiguration, "client">
|
|
202
|
-
|
|
193
|
+
>,
|
|
203
194
|
): Paginator<ListActionsCommandOutput>;
|
|
204
195
|
paginateListSupportPermitRequests(
|
|
205
196
|
args?: ListSupportPermitRequestsCommandInput,
|
|
206
197
|
paginationConfig?: Pick<
|
|
207
198
|
PaginationConfiguration,
|
|
208
199
|
Exclude<keyof PaginationConfiguration, "client">
|
|
209
|
-
|
|
200
|
+
>,
|
|
210
201
|
): Paginator<ListSupportPermitRequestsCommandOutput>;
|
|
211
202
|
paginateListSupportPermits(
|
|
212
203
|
args?: ListSupportPermitsCommandInput,
|
|
213
204
|
paginationConfig?: Pick<
|
|
214
205
|
PaginationConfiguration,
|
|
215
206
|
Exclude<keyof PaginationConfiguration, "client">
|
|
216
|
-
|
|
207
|
+
>,
|
|
217
208
|
): Paginator<ListSupportPermitsCommandOutput>;
|
|
218
209
|
}
|
|
219
|
-
export declare class SupportAuthZ
|
|
220
|
-
extends SupportAuthZClient
|
|
221
|
-
implements SupportAuthZ {}
|
|
210
|
+
export declare class SupportAuthZ extends SupportAuthZClient implements SupportAuthZ {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -44,18 +41,12 @@ import {
|
|
|
44
41
|
DeleteSupportPermitCommandInput,
|
|
45
42
|
DeleteSupportPermitCommandOutput,
|
|
46
43
|
} from "./commands/DeleteSupportPermitCommand";
|
|
47
|
-
import {
|
|
48
|
-
GetActionCommandInput,
|
|
49
|
-
GetActionCommandOutput,
|
|
50
|
-
} from "./commands/GetActionCommand";
|
|
44
|
+
import { GetActionCommandInput, GetActionCommandOutput } from "./commands/GetActionCommand";
|
|
51
45
|
import {
|
|
52
46
|
GetSupportPermitCommandInput,
|
|
53
47
|
GetSupportPermitCommandOutput,
|
|
54
48
|
} from "./commands/GetSupportPermitCommand";
|
|
55
|
-
import {
|
|
56
|
-
ListActionsCommandInput,
|
|
57
|
-
ListActionsCommandOutput,
|
|
58
|
-
} from "./commands/ListActionsCommand";
|
|
49
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
59
50
|
import {
|
|
60
51
|
ListSupportPermitRequestsCommandInput,
|
|
61
52
|
ListSupportPermitRequestsCommandOutput,
|
|
@@ -72,10 +63,7 @@ import {
|
|
|
72
63
|
RejectSupportPermitRequestCommandInput,
|
|
73
64
|
RejectSupportPermitRequestCommandOutput,
|
|
74
65
|
} from "./commands/RejectSupportPermitRequestCommand";
|
|
75
|
-
import {
|
|
76
|
-
TagResourceCommandInput,
|
|
77
|
-
TagResourceCommandOutput,
|
|
78
|
-
} from "./commands/TagResourceCommand";
|
|
66
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
79
67
|
import {
|
|
80
68
|
UntagResourceCommandInput,
|
|
81
69
|
UntagResourceCommandOutput,
|
|
@@ -111,8 +99,7 @@ export type ServiceOutputTypes =
|
|
|
111
99
|
| RejectSupportPermitRequestCommandOutput
|
|
112
100
|
| TagResourceCommandOutput
|
|
113
101
|
| UntagResourceCommandOutput;
|
|
114
|
-
export interface ClientDefaults
|
|
115
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
102
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
116
103
|
requestHandler?: __HttpHandlerUserInput;
|
|
117
104
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
118
105
|
urlParser?: __UrlParser;
|
|
@@ -137,9 +124,7 @@ export interface ClientDefaults
|
|
|
137
124
|
extensions?: RuntimeExtension[];
|
|
138
125
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
139
126
|
}
|
|
140
|
-
export type SupportAuthZClientConfigType = Partial<
|
|
141
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
142
|
-
> &
|
|
127
|
+
export type SupportAuthZClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
143
128
|
ClientDefaults &
|
|
144
129
|
UserAgentInputConfig &
|
|
145
130
|
RetryInputConfig &
|
|
@@ -148,8 +133,7 @@ export type SupportAuthZClientConfigType = Partial<
|
|
|
148
133
|
EndpointInputConfig<EndpointParameters> &
|
|
149
134
|
HttpAuthSchemeInputConfig &
|
|
150
135
|
ClientInputEndpointParameters;
|
|
151
|
-
export interface SupportAuthZClientConfig
|
|
152
|
-
extends SupportAuthZClientConfigType {}
|
|
136
|
+
export interface SupportAuthZClientConfig extends SupportAuthZClientConfigType {}
|
|
153
137
|
export type SupportAuthZClientResolvedConfigType =
|
|
154
138
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
155
139
|
Required<ClientDefaults> &
|
|
@@ -161,8 +145,7 @@ export type SupportAuthZClientResolvedConfigType =
|
|
|
161
145
|
EndpointResolvedConfig<EndpointParameters> &
|
|
162
146
|
HttpAuthSchemeResolvedConfig &
|
|
163
147
|
ClientResolvedEndpointParameters;
|
|
164
|
-
export interface SupportAuthZClientResolvedConfig
|
|
165
|
-
extends SupportAuthZClientResolvedConfigType {}
|
|
148
|
+
export interface SupportAuthZClientResolvedConfig extends SupportAuthZClientResolvedConfigType {}
|
|
166
149
|
export declare class SupportAuthZClient extends __Client<
|
|
167
150
|
__HttpHandlerOptions,
|
|
168
151
|
ServiceInputTypes,
|
|
@@ -170,8 +153,6 @@ export declare class SupportAuthZClient extends __Client<
|
|
|
170
153
|
SupportAuthZClientResolvedConfig
|
|
171
154
|
> {
|
|
172
155
|
readonly config: SupportAuthZClientResolvedConfig;
|
|
173
|
-
constructor(
|
|
174
|
-
...[configuration]: __CheckOptionalClientConfig<SupportAuthZClientConfig>
|
|
175
|
-
);
|
|
156
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SupportAuthZClientConfig>);
|
|
176
157
|
destroy(): void;
|
|
177
158
|
}
|
|
@@ -7,17 +7,10 @@ import { SupportAuthZHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): SupportAuthZHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { SupportAuthZClientResolvedConfig } from "../SupportAuthZClient";
|
|
15
|
-
export interface SupportAuthZHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SupportAuthZHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SupportAuthZHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SupportAuthZHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SupportAuthZClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SupportAuthZHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSupportAuthZHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SupportAuthZClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SupportAuthZHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SupportAuthZHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SupportAuthZHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SupportAuthZHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SupportAuthZHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSupportAuthZHttpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SupportAuthZHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
SupportAuthZClientResolvedConfig,
|
|
6
6
|
} from "./SupportAuthZClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
SupportAuthZClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateSupportPermitInput,
|
|
4
|
-
CreateSupportPermitOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateSupportPermitInput, CreateSupportPermitOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateSupportPermitCommandInput
|
|
8
|
-
extends CreateSupportPermitInput {}
|
|
4
|
+
export interface CreateSupportPermitCommandInput extends CreateSupportPermitInput {}
|
|
9
5
|
export interface CreateSupportPermitCommandOutput
|
|
10
|
-
extends CreateSupportPermitOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateSupportPermitOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateSupportPermitCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateSupportPermitCommandInput
|
|
9
|
+
input: CreateSupportPermitCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateSupportPermitCommandInput,
|
|
17
12
|
CreateSupportPermitCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateSupportPermitCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateSupportPermitCommandInput
|
|
18
|
+
input: CreateSupportPermitCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateSupportPermitCommandInput,
|
|
26
21
|
CreateSupportPermitCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSupportPermitInput,
|
|
4
|
-
DeleteSupportPermitOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSupportPermitInput, DeleteSupportPermitOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteSupportPermitCommandInput
|
|
8
|
-
extends DeleteSupportPermitInput {}
|
|
4
|
+
export interface DeleteSupportPermitCommandInput extends DeleteSupportPermitInput {}
|
|
9
5
|
export interface DeleteSupportPermitCommandOutput
|
|
10
|
-
extends DeleteSupportPermitOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteSupportPermitOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteSupportPermitCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteSupportPermitCommandInput
|
|
9
|
+
input: DeleteSupportPermitCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteSupportPermitCommandInput,
|
|
17
12
|
DeleteSupportPermitCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteSupportPermitCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteSupportPermitCommandInput
|
|
18
|
+
input: DeleteSupportPermitCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteSupportPermitCommandInput,
|
|
26
21
|
DeleteSupportPermitCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetActionInput, GetActionOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetActionCommandInput extends GetActionInput {}
|
|
5
|
-
export interface GetActionCommandOutput
|
|
6
|
-
extends GetActionOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetActionCommandOutput extends GetActionOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetActionCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetActionCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetActionCommandInput,
|
|
11
11
|
GetActionCommandOutput,
|
|
12
12
|
import("..").SupportAuthZClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetActionCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetActionCommandInput,
|
|
18
20
|
GetActionCommandOutput,
|
|
19
21
|
import("..").SupportAuthZClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSupportPermitInput,
|
|
4
|
-
GetSupportPermitOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSupportPermitInput, GetSupportPermitOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSupportPermitCommandInput extends GetSupportPermitInput {}
|
|
8
|
-
export interface GetSupportPermitCommandOutput
|
|
9
|
-
extends GetSupportPermitOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSupportPermitCommandOutput extends GetSupportPermitOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetSupportPermitCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSupportPermitCommandInput
|
|
8
|
+
input: GetSupportPermitCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSupportPermitCommandInput,
|
|
16
11
|
GetSupportPermitCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSupportPermitCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSupportPermitCommandInput
|
|
17
|
+
input: GetSupportPermitCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSupportPermitCommandInput,
|
|
25
20
|
GetSupportPermitCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListActionsInput, ListActionsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListActionsCommandInput extends ListActionsInput {}
|
|
5
|
-
export interface ListActionsCommandOutput
|
|
6
|
-
extends ListActionsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListActionsCommandOutput extends ListActionsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListActionsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListActionsCommandInput
|
|
8
|
+
input: ListActionsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListActionsCommandInput,
|
|
13
11
|
ListActionsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListActionsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListActionsCommandInput
|
|
17
|
+
input: ListActionsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListActionsCommandInput,
|
|
22
20
|
ListActionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListSupportPermitRequestsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSupportPermitRequestsCommandInput
|
|
8
|
-
extends ListSupportPermitRequestsInput {}
|
|
7
|
+
export interface ListSupportPermitRequestsCommandInput extends ListSupportPermitRequestsInput {}
|
|
9
8
|
export interface ListSupportPermitRequestsCommandOutput
|
|
10
|
-
extends ListSupportPermitRequestsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListSupportPermitRequestsOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListSupportPermitRequestsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListSupportPermitRequestsCommandInput
|
|
12
|
+
input: ListSupportPermitRequestsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListSupportPermitRequestsCommandInput,
|
|
17
15
|
ListSupportPermitRequestsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSupportPermitsInput,
|
|
4
|
-
ListSupportPermitsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSupportPermitsInput, ListSupportPermitsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSupportPermitsCommandInput
|
|
8
|
-
extends ListSupportPermitsInput {}
|
|
4
|
+
export interface ListSupportPermitsCommandInput extends ListSupportPermitsInput {}
|
|
9
5
|
export interface ListSupportPermitsCommandOutput
|
|
10
|
-
extends ListSupportPermitsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSupportPermitsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListSupportPermitsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSupportPermitsCommandInput
|
|
9
|
+
input: ListSupportPermitsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSupportPermitsCommandInput,
|
|
17
12
|
ListSupportPermitsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RejectSupportPermitRequestOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RejectSupportPermitRequestCommandInput
|
|
8
|
-
extends RejectSupportPermitRequestInput {}
|
|
7
|
+
export interface RejectSupportPermitRequestCommandInput extends RejectSupportPermitRequestInput {}
|
|
9
8
|
export interface RejectSupportPermitRequestCommandOutput
|
|
10
|
-
extends RejectSupportPermitRequestOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RejectSupportPermitRequestOutput, __MetadataBearer {}
|
|
12
10
|
declare const RejectSupportPermitRequestCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RejectSupportPermitRequestCommandInput
|
|
12
|
+
input: RejectSupportPermitRequestCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RejectSupportPermitRequestCommandInput,
|
|
17
15
|
RejectSupportPermitRequestCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RejectSupportPermitRequestCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RejectSupportPermitRequestCommandInput
|
|
21
|
+
input: RejectSupportPermitRequestCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RejectSupportPermitRequestCommandInput,
|
|
26
24
|
RejectSupportPermitRequestCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface SupportAuthZExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,8 +3,7 @@ export declare const SupportPermitStatus: {
|
|
|
3
3
|
readonly DELETING: "DELETING";
|
|
4
4
|
readonly INACTIVE: "INACTIVE";
|
|
5
5
|
};
|
|
6
|
-
export type SupportPermitStatus =
|
|
7
|
-
(typeof SupportPermitStatus)[keyof typeof SupportPermitStatus];
|
|
6
|
+
export type SupportPermitStatus = (typeof SupportPermitStatus)[keyof typeof SupportPermitStatus];
|
|
8
7
|
export declare const SupportPermitRequestStatus: {
|
|
9
8
|
readonly ACCEPTED: "ACCEPTED";
|
|
10
9
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -4,9 +4,7 @@ import { SupportAuthZServiceException as __BaseException } from "./SupportAuthZS
|
|
|
4
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class ConflictException extends __BaseException {
|
|
12
10
|
readonly name: "ConflictException";
|
|
@@ -20,9 +18,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
20
18
|
readonly $fault: "server";
|
|
21
19
|
$retryable: {};
|
|
22
20
|
retryAfterSeconds?: number | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
25
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
26
22
|
}
|
|
27
23
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
28
24
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -31,9 +27,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
31
27
|
resourceType: string | undefined;
|
|
32
28
|
serviceCode: string | undefined;
|
|
33
29
|
quotaCode: string | undefined;
|
|
34
|
-
constructor(
|
|
35
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
36
|
-
);
|
|
30
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
37
31
|
}
|
|
38
32
|
export declare class ThrottlingException extends __BaseException {
|
|
39
33
|
readonly name: "ThrottlingException";
|
|
@@ -42,24 +36,18 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
42
36
|
throttling: boolean;
|
|
43
37
|
};
|
|
44
38
|
retryAfterSeconds?: number | undefined;
|
|
45
|
-
constructor(
|
|
46
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
47
|
-
);
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
48
40
|
}
|
|
49
41
|
export declare class ValidationException extends __BaseException {
|
|
50
42
|
readonly name: "ValidationException";
|
|
51
43
|
readonly $fault: "client";
|
|
52
44
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
55
|
-
);
|
|
45
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
56
46
|
}
|
|
57
47
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
58
48
|
readonly name: "ResourceNotFoundException";
|
|
59
49
|
readonly $fault: "client";
|
|
60
50
|
resourceId: string | undefined;
|
|
61
51
|
resourceType: string | undefined;
|
|
62
|
-
constructor(
|
|
63
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
64
|
-
);
|
|
52
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
65
53
|
}
|
|
@@ -88,9 +88,7 @@ export interface Permit {
|
|
|
88
88
|
resources: ResourceSet | undefined;
|
|
89
89
|
conditions?: Condition[] | undefined;
|
|
90
90
|
}
|
|
91
|
-
export type SigningKeyInfo =
|
|
92
|
-
| SigningKeyInfo.KmsKeyMember
|
|
93
|
-
| SigningKeyInfo.$UnknownMember;
|
|
91
|
+
export type SigningKeyInfo = SigningKeyInfo.KmsKeyMember | SigningKeyInfo.$UnknownMember;
|
|
94
92
|
export declare namespace SigningKeyInfo {
|
|
95
93
|
interface KmsKeyMember {
|
|
96
94
|
kmsKey: string;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { SupportAuthZClient } from "../SupportAuthZClient";
|
|
3
|
-
export interface SupportAuthZPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface SupportAuthZPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: SupportAuthZClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListActionsCommandInput,
|
|
4
|
-
ListActionsCommandOutput,
|
|
5
|
-
} from "../commands/ListActionsCommand";
|
|
2
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
|
|
6
3
|
import { SupportAuthZPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListActions: (
|
|
8
5
|
config: SupportAuthZPaginationConfiguration,
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-supportauthz",
|
|
3
|
+
"version": "3.1089.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Supportauthz Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-supportauthz",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-supportauthz"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,17 +45,13 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.70",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-supportauthz",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-supportauthz"
|
|
68
68
|
}
|
|
69
69
|
}
|