@aws-sdk/client-ssm-quicksetup 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/SSMQuickSetup.d.ts +46 -51
- package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +7 -20
- 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/CreateConfigurationManagerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +2 -3
- 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/errors.d.ts +5 -15
- 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/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/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -39,10 +39,7 @@ import {
|
|
|
39
39
|
ListTagsForResourceCommandInput,
|
|
40
40
|
ListTagsForResourceCommandOutput,
|
|
41
41
|
} from "./commands/ListTagsForResourceCommand";
|
|
42
|
-
import {
|
|
43
|
-
TagResourceCommandInput,
|
|
44
|
-
TagResourceCommandOutput,
|
|
45
|
-
} from "./commands/TagResourceCommand";
|
|
42
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
46
43
|
import {
|
|
47
44
|
UntagResourceCommandInput,
|
|
48
45
|
UntagResourceCommandOutput,
|
|
@@ -63,206 +60,204 @@ import { SSMQuickSetupClient } from "./SSMQuickSetupClient";
|
|
|
63
60
|
export interface SSMQuickSetup {
|
|
64
61
|
createConfigurationManager(
|
|
65
62
|
args: CreateConfigurationManagerCommandInput,
|
|
66
|
-
options?: __HttpHandlerOptions
|
|
63
|
+
options?: __HttpHandlerOptions,
|
|
67
64
|
): Promise<CreateConfigurationManagerCommandOutput>;
|
|
68
65
|
createConfigurationManager(
|
|
69
66
|
args: CreateConfigurationManagerCommandInput,
|
|
70
|
-
cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void
|
|
67
|
+
cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void,
|
|
71
68
|
): void;
|
|
72
69
|
createConfigurationManager(
|
|
73
70
|
args: CreateConfigurationManagerCommandInput,
|
|
74
71
|
options: __HttpHandlerOptions,
|
|
75
|
-
cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void
|
|
72
|
+
cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void,
|
|
76
73
|
): void;
|
|
77
74
|
deleteConfigurationManager(
|
|
78
75
|
args: DeleteConfigurationManagerCommandInput,
|
|
79
|
-
options?: __HttpHandlerOptions
|
|
76
|
+
options?: __HttpHandlerOptions,
|
|
80
77
|
): Promise<DeleteConfigurationManagerCommandOutput>;
|
|
81
78
|
deleteConfigurationManager(
|
|
82
79
|
args: DeleteConfigurationManagerCommandInput,
|
|
83
|
-
cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void
|
|
80
|
+
cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void,
|
|
84
81
|
): void;
|
|
85
82
|
deleteConfigurationManager(
|
|
86
83
|
args: DeleteConfigurationManagerCommandInput,
|
|
87
84
|
options: __HttpHandlerOptions,
|
|
88
|
-
cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void
|
|
85
|
+
cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void,
|
|
89
86
|
): void;
|
|
90
87
|
getConfiguration(
|
|
91
88
|
args: GetConfigurationCommandInput,
|
|
92
|
-
options?: __HttpHandlerOptions
|
|
89
|
+
options?: __HttpHandlerOptions,
|
|
93
90
|
): Promise<GetConfigurationCommandOutput>;
|
|
94
91
|
getConfiguration(
|
|
95
92
|
args: GetConfigurationCommandInput,
|
|
96
|
-
cb: (err: any, data?: GetConfigurationCommandOutput) => void
|
|
93
|
+
cb: (err: any, data?: GetConfigurationCommandOutput) => void,
|
|
97
94
|
): void;
|
|
98
95
|
getConfiguration(
|
|
99
96
|
args: GetConfigurationCommandInput,
|
|
100
97
|
options: __HttpHandlerOptions,
|
|
101
|
-
cb: (err: any, data?: GetConfigurationCommandOutput) => void
|
|
98
|
+
cb: (err: any, data?: GetConfigurationCommandOutput) => void,
|
|
102
99
|
): void;
|
|
103
100
|
getConfigurationManager(
|
|
104
101
|
args: GetConfigurationManagerCommandInput,
|
|
105
|
-
options?: __HttpHandlerOptions
|
|
102
|
+
options?: __HttpHandlerOptions,
|
|
106
103
|
): Promise<GetConfigurationManagerCommandOutput>;
|
|
107
104
|
getConfigurationManager(
|
|
108
105
|
args: GetConfigurationManagerCommandInput,
|
|
109
|
-
cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void
|
|
106
|
+
cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void,
|
|
110
107
|
): void;
|
|
111
108
|
getConfigurationManager(
|
|
112
109
|
args: GetConfigurationManagerCommandInput,
|
|
113
110
|
options: __HttpHandlerOptions,
|
|
114
|
-
cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void
|
|
111
|
+
cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void,
|
|
115
112
|
): void;
|
|
116
113
|
getServiceSettings(): Promise<GetServiceSettingsCommandOutput>;
|
|
117
114
|
getServiceSettings(
|
|
118
115
|
args: GetServiceSettingsCommandInput,
|
|
119
|
-
options?: __HttpHandlerOptions
|
|
116
|
+
options?: __HttpHandlerOptions,
|
|
120
117
|
): Promise<GetServiceSettingsCommandOutput>;
|
|
121
118
|
getServiceSettings(
|
|
122
119
|
args: GetServiceSettingsCommandInput,
|
|
123
|
-
cb: (err: any, data?: GetServiceSettingsCommandOutput) => void
|
|
120
|
+
cb: (err: any, data?: GetServiceSettingsCommandOutput) => void,
|
|
124
121
|
): void;
|
|
125
122
|
getServiceSettings(
|
|
126
123
|
args: GetServiceSettingsCommandInput,
|
|
127
124
|
options: __HttpHandlerOptions,
|
|
128
|
-
cb: (err: any, data?: GetServiceSettingsCommandOutput) => void
|
|
125
|
+
cb: (err: any, data?: GetServiceSettingsCommandOutput) => void,
|
|
129
126
|
): void;
|
|
130
127
|
listConfigurationManagers(): Promise<ListConfigurationManagersCommandOutput>;
|
|
131
128
|
listConfigurationManagers(
|
|
132
129
|
args: ListConfigurationManagersCommandInput,
|
|
133
|
-
options?: __HttpHandlerOptions
|
|
130
|
+
options?: __HttpHandlerOptions,
|
|
134
131
|
): Promise<ListConfigurationManagersCommandOutput>;
|
|
135
132
|
listConfigurationManagers(
|
|
136
133
|
args: ListConfigurationManagersCommandInput,
|
|
137
|
-
cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void,
|
|
138
135
|
): void;
|
|
139
136
|
listConfigurationManagers(
|
|
140
137
|
args: ListConfigurationManagersCommandInput,
|
|
141
138
|
options: __HttpHandlerOptions,
|
|
142
|
-
cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void,
|
|
143
140
|
): void;
|
|
144
141
|
listConfigurations(): Promise<ListConfigurationsCommandOutput>;
|
|
145
142
|
listConfigurations(
|
|
146
143
|
args: ListConfigurationsCommandInput,
|
|
147
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
148
145
|
): Promise<ListConfigurationsCommandOutput>;
|
|
149
146
|
listConfigurations(
|
|
150
147
|
args: ListConfigurationsCommandInput,
|
|
151
|
-
cb: (err: any, data?: ListConfigurationsCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: ListConfigurationsCommandOutput) => void,
|
|
152
149
|
): void;
|
|
153
150
|
listConfigurations(
|
|
154
151
|
args: ListConfigurationsCommandInput,
|
|
155
152
|
options: __HttpHandlerOptions,
|
|
156
|
-
cb: (err: any, data?: ListConfigurationsCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: ListConfigurationsCommandOutput) => void,
|
|
157
154
|
): void;
|
|
158
155
|
listQuickSetupTypes(): Promise<ListQuickSetupTypesCommandOutput>;
|
|
159
156
|
listQuickSetupTypes(
|
|
160
157
|
args: ListQuickSetupTypesCommandInput,
|
|
161
|
-
options?: __HttpHandlerOptions
|
|
158
|
+
options?: __HttpHandlerOptions,
|
|
162
159
|
): Promise<ListQuickSetupTypesCommandOutput>;
|
|
163
160
|
listQuickSetupTypes(
|
|
164
161
|
args: ListQuickSetupTypesCommandInput,
|
|
165
|
-
cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void
|
|
162
|
+
cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void,
|
|
166
163
|
): void;
|
|
167
164
|
listQuickSetupTypes(
|
|
168
165
|
args: ListQuickSetupTypesCommandInput,
|
|
169
166
|
options: __HttpHandlerOptions,
|
|
170
|
-
cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void,
|
|
171
168
|
): void;
|
|
172
169
|
listTagsForResource(
|
|
173
170
|
args: ListTagsForResourceCommandInput,
|
|
174
|
-
options?: __HttpHandlerOptions
|
|
171
|
+
options?: __HttpHandlerOptions,
|
|
175
172
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
176
173
|
listTagsForResource(
|
|
177
174
|
args: ListTagsForResourceCommandInput,
|
|
178
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
175
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
179
176
|
): void;
|
|
180
177
|
listTagsForResource(
|
|
181
178
|
args: ListTagsForResourceCommandInput,
|
|
182
179
|
options: __HttpHandlerOptions,
|
|
183
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
184
181
|
): void;
|
|
185
182
|
tagResource(
|
|
186
183
|
args: TagResourceCommandInput,
|
|
187
|
-
options?: __HttpHandlerOptions
|
|
184
|
+
options?: __HttpHandlerOptions,
|
|
188
185
|
): Promise<TagResourceCommandOutput>;
|
|
189
186
|
tagResource(
|
|
190
187
|
args: TagResourceCommandInput,
|
|
191
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
192
189
|
): void;
|
|
193
190
|
tagResource(
|
|
194
191
|
args: TagResourceCommandInput,
|
|
195
192
|
options: __HttpHandlerOptions,
|
|
196
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
197
194
|
): void;
|
|
198
195
|
untagResource(
|
|
199
196
|
args: UntagResourceCommandInput,
|
|
200
|
-
options?: __HttpHandlerOptions
|
|
197
|
+
options?: __HttpHandlerOptions,
|
|
201
198
|
): Promise<UntagResourceCommandOutput>;
|
|
202
199
|
untagResource(
|
|
203
200
|
args: UntagResourceCommandInput,
|
|
204
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
205
202
|
): void;
|
|
206
203
|
untagResource(
|
|
207
204
|
args: UntagResourceCommandInput,
|
|
208
205
|
options: __HttpHandlerOptions,
|
|
209
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
210
207
|
): void;
|
|
211
208
|
updateConfigurationDefinition(
|
|
212
209
|
args: UpdateConfigurationDefinitionCommandInput,
|
|
213
|
-
options?: __HttpHandlerOptions
|
|
210
|
+
options?: __HttpHandlerOptions,
|
|
214
211
|
): Promise<UpdateConfigurationDefinitionCommandOutput>;
|
|
215
212
|
updateConfigurationDefinition(
|
|
216
213
|
args: UpdateConfigurationDefinitionCommandInput,
|
|
217
|
-
cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void
|
|
214
|
+
cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void,
|
|
218
215
|
): void;
|
|
219
216
|
updateConfigurationDefinition(
|
|
220
217
|
args: UpdateConfigurationDefinitionCommandInput,
|
|
221
218
|
options: __HttpHandlerOptions,
|
|
222
|
-
cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void,
|
|
223
220
|
): void;
|
|
224
221
|
updateConfigurationManager(
|
|
225
222
|
args: UpdateConfigurationManagerCommandInput,
|
|
226
|
-
options?: __HttpHandlerOptions
|
|
223
|
+
options?: __HttpHandlerOptions,
|
|
227
224
|
): Promise<UpdateConfigurationManagerCommandOutput>;
|
|
228
225
|
updateConfigurationManager(
|
|
229
226
|
args: UpdateConfigurationManagerCommandInput,
|
|
230
|
-
cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void
|
|
227
|
+
cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void,
|
|
231
228
|
): void;
|
|
232
229
|
updateConfigurationManager(
|
|
233
230
|
args: UpdateConfigurationManagerCommandInput,
|
|
234
231
|
options: __HttpHandlerOptions,
|
|
235
|
-
cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void,
|
|
236
233
|
): void;
|
|
237
234
|
updateServiceSettings(): Promise<UpdateServiceSettingsCommandOutput>;
|
|
238
235
|
updateServiceSettings(
|
|
239
236
|
args: UpdateServiceSettingsCommandInput,
|
|
240
|
-
options?: __HttpHandlerOptions
|
|
237
|
+
options?: __HttpHandlerOptions,
|
|
241
238
|
): Promise<UpdateServiceSettingsCommandOutput>;
|
|
242
239
|
updateServiceSettings(
|
|
243
240
|
args: UpdateServiceSettingsCommandInput,
|
|
244
|
-
cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void,
|
|
245
242
|
): void;
|
|
246
243
|
updateServiceSettings(
|
|
247
244
|
args: UpdateServiceSettingsCommandInput,
|
|
248
245
|
options: __HttpHandlerOptions,
|
|
249
|
-
cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void,
|
|
250
247
|
): void;
|
|
251
248
|
paginateListConfigurationManagers(
|
|
252
249
|
args?: ListConfigurationManagersCommandInput,
|
|
253
250
|
paginationConfig?: Pick<
|
|
254
251
|
PaginationConfiguration,
|
|
255
252
|
Exclude<keyof PaginationConfiguration, "client">
|
|
256
|
-
|
|
253
|
+
>,
|
|
257
254
|
): Paginator<ListConfigurationManagersCommandOutput>;
|
|
258
255
|
paginateListConfigurations(
|
|
259
256
|
args?: ListConfigurationsCommandInput,
|
|
260
257
|
paginationConfig?: Pick<
|
|
261
258
|
PaginationConfiguration,
|
|
262
259
|
Exclude<keyof PaginationConfiguration, "client">
|
|
263
|
-
|
|
260
|
+
>,
|
|
264
261
|
): Paginator<ListConfigurationsCommandOutput>;
|
|
265
262
|
}
|
|
266
|
-
export declare class SSMQuickSetup
|
|
267
|
-
extends SSMQuickSetupClient
|
|
268
|
-
implements SSMQuickSetup {}
|
|
263
|
+
export declare class SSMQuickSetup extends SSMQuickSetupClient implements SSMQuickSetup {}
|
|
@@ -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 {
|
|
@@ -72,10 +69,7 @@ import {
|
|
|
72
69
|
ListTagsForResourceCommandInput,
|
|
73
70
|
ListTagsForResourceCommandOutput,
|
|
74
71
|
} from "./commands/ListTagsForResourceCommand";
|
|
75
|
-
import {
|
|
76
|
-
TagResourceCommandInput,
|
|
77
|
-
TagResourceCommandOutput,
|
|
78
|
-
} from "./commands/TagResourceCommand";
|
|
72
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
79
73
|
import {
|
|
80
74
|
UntagResourceCommandInput,
|
|
81
75
|
UntagResourceCommandOutput,
|
|
@@ -129,8 +123,7 @@ export type ServiceOutputTypes =
|
|
|
129
123
|
| UpdateConfigurationDefinitionCommandOutput
|
|
130
124
|
| UpdateConfigurationManagerCommandOutput
|
|
131
125
|
| UpdateServiceSettingsCommandOutput;
|
|
132
|
-
export interface ClientDefaults
|
|
133
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
126
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
134
127
|
requestHandler?: __HttpHandlerUserInput;
|
|
135
128
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
136
129
|
urlParser?: __UrlParser;
|
|
@@ -155,9 +148,7 @@ export interface ClientDefaults
|
|
|
155
148
|
extensions?: RuntimeExtension[];
|
|
156
149
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
157
150
|
}
|
|
158
|
-
export type SSMQuickSetupClientConfigType = Partial<
|
|
159
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
160
|
-
> &
|
|
151
|
+
export type SSMQuickSetupClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
161
152
|
ClientDefaults &
|
|
162
153
|
UserAgentInputConfig &
|
|
163
154
|
RetryInputConfig &
|
|
@@ -166,8 +157,7 @@ export type SSMQuickSetupClientConfigType = Partial<
|
|
|
166
157
|
EndpointInputConfig<EndpointParameters> &
|
|
167
158
|
HttpAuthSchemeInputConfig &
|
|
168
159
|
ClientInputEndpointParameters;
|
|
169
|
-
export interface SSMQuickSetupClientConfig
|
|
170
|
-
extends SSMQuickSetupClientConfigType {}
|
|
160
|
+
export interface SSMQuickSetupClientConfig extends SSMQuickSetupClientConfigType {}
|
|
171
161
|
export type SSMQuickSetupClientResolvedConfigType =
|
|
172
162
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
173
163
|
Required<ClientDefaults> &
|
|
@@ -179,8 +169,7 @@ export type SSMQuickSetupClientResolvedConfigType =
|
|
|
179
169
|
EndpointResolvedConfig<EndpointParameters> &
|
|
180
170
|
HttpAuthSchemeResolvedConfig &
|
|
181
171
|
ClientResolvedEndpointParameters;
|
|
182
|
-
export interface SSMQuickSetupClientResolvedConfig
|
|
183
|
-
extends SSMQuickSetupClientResolvedConfigType {}
|
|
172
|
+
export interface SSMQuickSetupClientResolvedConfig extends SSMQuickSetupClientResolvedConfigType {}
|
|
184
173
|
export declare class SSMQuickSetupClient extends __Client<
|
|
185
174
|
__HttpHandlerOptions,
|
|
186
175
|
ServiceInputTypes,
|
|
@@ -188,8 +177,6 @@ export declare class SSMQuickSetupClient extends __Client<
|
|
|
188
177
|
SSMQuickSetupClientResolvedConfig
|
|
189
178
|
> {
|
|
190
179
|
readonly config: SSMQuickSetupClientResolvedConfig;
|
|
191
|
-
constructor(
|
|
192
|
-
...[configuration]: __CheckOptionalClientConfig<SSMQuickSetupClientConfig>
|
|
193
|
-
);
|
|
180
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SSMQuickSetupClientConfig>);
|
|
194
181
|
destroy(): void;
|
|
195
182
|
}
|
|
@@ -7,17 +7,10 @@ import { SSMQuickSetupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): SSMQuickSetupHttpAuthSchemeProvider;
|
|
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 { SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
|
|
15
|
-
export interface SSMQuickSetupHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SSMQuickSetupHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SSMQuickSetupHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SSMQuickSetupHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SSMQuickSetupClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SSMQuickSetupHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSSMQuickSetupHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SSMQuickSetupClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SSMQuickSetupHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SSMQuickSetupHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SSMQuickSetupHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SSMQuickSetupHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SSMQuickSetupHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSSMQuickSetupHttpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SSMQuickSetupHttpAuthSchemeProvider;
|
|
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: SSMQuickSetupHttpAuthSchemeProvider;
|
|
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
|
SSMQuickSetupClientResolvedConfig,
|
|
6
6
|
} from "./SSMQuickSetupClient";
|
|
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
|
SSMQuickSetupClientResolvedConfig,
|
|
@@ -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[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateConfigurationManagerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateConfigurationManagerCommandInput
|
|
8
|
-
extends CreateConfigurationManagerInput {}
|
|
7
|
+
export interface CreateConfigurationManagerCommandInput extends CreateConfigurationManagerInput {}
|
|
9
8
|
export interface CreateConfigurationManagerCommandOutput
|
|
10
|
-
extends CreateConfigurationManagerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateConfigurationManagerOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateConfigurationManagerCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateConfigurationManagerCommandInput
|
|
12
|
+
input: CreateConfigurationManagerCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateConfigurationManagerCommandInput,
|
|
17
15
|
CreateConfigurationManagerCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateConfigurationManagerCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateConfigurationManagerCommandInput
|
|
21
|
+
input: CreateConfigurationManagerCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateConfigurationManagerCommandInput,
|
|
26
24
|
CreateConfigurationManagerCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteConfigurationManagerInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteConfigurationManagerCommandInput
|
|
5
|
-
|
|
6
|
-
export interface DeleteConfigurationManagerCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface DeleteConfigurationManagerCommandInput extends DeleteConfigurationManagerInput {}
|
|
5
|
+
export interface DeleteConfigurationManagerCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const DeleteConfigurationManagerCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteConfigurationManagerCommandInput
|
|
8
|
+
input: DeleteConfigurationManagerCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteConfigurationManagerCommandInput,
|
|
13
11
|
DeleteConfigurationManagerCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteConfigurationManagerCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteConfigurationManagerCommandInput
|
|
17
|
+
input: DeleteConfigurationManagerCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteConfigurationManagerCommandInput,
|
|
22
20
|
DeleteConfigurationManagerCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetConfigurationInput,
|
|
4
|
-
GetConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetConfigurationInput, GetConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetConfigurationCommandInput extends GetConfigurationInput {}
|
|
8
|
-
export interface GetConfigurationCommandOutput
|
|
9
|
-
extends GetConfigurationOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetConfigurationCommandOutput extends GetConfigurationOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetConfigurationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetConfigurationCommandInput
|
|
8
|
+
input: GetConfigurationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetConfigurationCommandInput,
|
|
16
11
|
GetConfigurationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetConfigurationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetConfigurationCommandInput
|
|
17
|
+
input: GetConfigurationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetConfigurationCommandInput,
|
|
25
20
|
GetConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetConfigurationManagerInput,
|
|
4
|
-
GetConfigurationManagerOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetConfigurationManagerInput, GetConfigurationManagerOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetConfigurationManagerCommandInput
|
|
8
|
-
extends GetConfigurationManagerInput {}
|
|
4
|
+
export interface GetConfigurationManagerCommandInput extends GetConfigurationManagerInput {}
|
|
9
5
|
export interface GetConfigurationManagerCommandOutput
|
|
10
|
-
extends GetConfigurationManagerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetConfigurationManagerOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetConfigurationManagerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetConfigurationManagerCommandInput
|
|
9
|
+
input: GetConfigurationManagerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetConfigurationManagerCommandInput,
|
|
17
12
|
GetConfigurationManagerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetConfigurationManagerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetConfigurationManagerCommandInput
|
|
18
|
+
input: GetConfigurationManagerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetConfigurationManagerCommandInput,
|
|
26
21
|
GetConfigurationManagerCommandOutput,
|
|
@@ -3,11 +3,10 @@ import { GetServiceSettingsOutput } from "../models/models_0";
|
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetServiceSettingsCommandInput {}
|
|
5
5
|
export interface GetServiceSettingsCommandOutput
|
|
6
|
-
extends GetServiceSettingsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetServiceSettingsOutput, __MetadataBearer {}
|
|
8
7
|
declare const GetServiceSettingsCommand_base: {
|
|
9
8
|
new (
|
|
10
|
-
input: GetServiceSettingsCommandInput
|
|
9
|
+
input: GetServiceSettingsCommandInput,
|
|
11
10
|
): import("@smithy/core/client").CommandImpl<
|
|
12
11
|
GetServiceSettingsCommandInput,
|
|
13
12
|
GetServiceSettingsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListConfigurationManagersOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListConfigurationManagersCommandInput
|
|
8
|
-
extends ListConfigurationManagersInput {}
|
|
7
|
+
export interface ListConfigurationManagersCommandInput extends ListConfigurationManagersInput {}
|
|
9
8
|
export interface ListConfigurationManagersCommandOutput
|
|
10
|
-
extends ListConfigurationManagersOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListConfigurationManagersOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListConfigurationManagersCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListConfigurationManagersCommandInput
|
|
12
|
+
input: ListConfigurationManagersCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListConfigurationManagersCommandInput,
|
|
17
15
|
ListConfigurationManagersCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListConfigurationsInput,
|
|
4
|
-
ListConfigurationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListConfigurationsInput, ListConfigurationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListConfigurationsCommandInput
|
|
8
|
-
extends ListConfigurationsInput {}
|
|
4
|
+
export interface ListConfigurationsCommandInput extends ListConfigurationsInput {}
|
|
9
5
|
export interface ListConfigurationsCommandOutput
|
|
10
|
-
extends ListConfigurationsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListConfigurationsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListConfigurationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListConfigurationsCommandInput
|
|
9
|
+
input: ListConfigurationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListConfigurationsCommandInput,
|
|
17
12
|
ListConfigurationsCommandOutput,
|
|
@@ -3,11 +3,10 @@ import { ListQuickSetupTypesOutput } from "../models/models_0";
|
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListQuickSetupTypesCommandInput {}
|
|
5
5
|
export interface ListQuickSetupTypesCommandOutput
|
|
6
|
-
extends ListQuickSetupTypesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListQuickSetupTypesOutput, __MetadataBearer {}
|
|
8
7
|
declare const ListQuickSetupTypesCommand_base: {
|
|
9
8
|
new (
|
|
10
|
-
input: ListQuickSetupTypesCommandInput
|
|
9
|
+
input: ListQuickSetupTypesCommandInput,
|
|
11
10
|
): import("@smithy/core/client").CommandImpl<
|
|
12
11
|
ListQuickSetupTypesCommandInput,
|
|
13
12
|
ListQuickSetupTypesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __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,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceInput {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateConfigurationDefinitionInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateConfigurationDefinitionCommandInput
|
|
5
|
-
|
|
6
|
-
export interface UpdateConfigurationDefinitionCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface UpdateConfigurationDefinitionCommandInput extends UpdateConfigurationDefinitionInput {}
|
|
5
|
+
export interface UpdateConfigurationDefinitionCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const UpdateConfigurationDefinitionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateConfigurationDefinitionCommandInput
|
|
8
|
+
input: UpdateConfigurationDefinitionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateConfigurationDefinitionCommandInput,
|
|
13
11
|
UpdateConfigurationDefinitionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateConfigurationDefinitionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateConfigurationDefinitionCommandInput
|
|
17
|
+
input: UpdateConfigurationDefinitionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateConfigurationDefinitionCommandInput,
|
|
22
20
|
UpdateConfigurationDefinitionCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateConfigurationManagerInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateConfigurationManagerCommandInput
|
|
5
|
-
|
|
6
|
-
export interface UpdateConfigurationManagerCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface UpdateConfigurationManagerCommandInput extends UpdateConfigurationManagerInput {}
|
|
5
|
+
export interface UpdateConfigurationManagerCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const UpdateConfigurationManagerCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateConfigurationManagerCommandInput
|
|
8
|
+
input: UpdateConfigurationManagerCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateConfigurationManagerCommandInput,
|
|
13
11
|
UpdateConfigurationManagerCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateConfigurationManagerCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateConfigurationManagerCommandInput
|
|
17
|
+
input: UpdateConfigurationManagerCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateConfigurationManagerCommandInput,
|
|
22
20
|
UpdateConfigurationManagerCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateServiceSettingsInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateServiceSettingsCommandInput
|
|
5
|
-
extends UpdateServiceSettingsInput {}
|
|
4
|
+
export interface UpdateServiceSettingsCommandInput extends UpdateServiceSettingsInput {}
|
|
6
5
|
export interface UpdateServiceSettingsCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const UpdateServiceSettingsCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: UpdateServiceSettingsCommandInput
|
|
8
|
+
input: UpdateServiceSettingsCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
UpdateServiceSettingsCommandInput,
|
|
12
11
|
UpdateServiceSettingsCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
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 SSMQuickSetupExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -4,9 +4,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
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";
|
|
@@ -19,32 +17,24 @@ export declare class InternalServerException extends __BaseException {
|
|
|
19
17
|
readonly $fault: "server";
|
|
20
18
|
$retryable: {};
|
|
21
19
|
Message?: string | undefined;
|
|
22
|
-
constructor(
|
|
23
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
-
);
|
|
20
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
25
21
|
}
|
|
26
22
|
export declare class ThrottlingException extends __BaseException {
|
|
27
23
|
readonly name: "ThrottlingException";
|
|
28
24
|
readonly $fault: "client";
|
|
29
25
|
$retryable: {};
|
|
30
26
|
Message: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
33
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
34
28
|
}
|
|
35
29
|
export declare class ValidationException extends __BaseException {
|
|
36
30
|
readonly name: "ValidationException";
|
|
37
31
|
readonly $fault: "client";
|
|
38
32
|
Message?: string | undefined;
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
41
|
-
);
|
|
33
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
42
34
|
}
|
|
43
35
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
36
|
readonly name: "ResourceNotFoundException";
|
|
45
37
|
readonly $fault: "client";
|
|
46
38
|
Message?: string | undefined;
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
49
|
-
);
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
50
40
|
}
|
|
@@ -32,9 +32,7 @@ export interface ConfigurationManagerSummary {
|
|
|
32
32
|
Description?: string | undefined;
|
|
33
33
|
Name?: string | undefined;
|
|
34
34
|
StatusSummaries?: StatusSummary[] | undefined;
|
|
35
|
-
ConfigurationDefinitionSummaries?:
|
|
36
|
-
| ConfigurationDefinitionSummary[]
|
|
37
|
-
| undefined;
|
|
35
|
+
ConfigurationDefinitionSummaries?: ConfigurationDefinitionSummary[] | undefined;
|
|
38
36
|
}
|
|
39
37
|
export interface ConfigurationSummary {
|
|
40
38
|
Id?: string | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { SSMQuickSetupClient } from "../SSMQuickSetupClient";
|
|
3
|
-
export interface SSMQuickSetupPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface SSMQuickSetupPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: SSMQuickSetupClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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: SSMQuickSetupClientConfig) => {
|
|
|
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").SSMQuickSetupHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var SSMQuickSetupServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var ConflictException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-quicksetup",
|
|
3
|
+
"version": "3.1089.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Ssm Quicksetup Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ssm-quicksetup",
|
|
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-ssm-quicksetup"
|
|
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-ssm-quicksetup",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-ssm-quicksetup"
|
|
68
68
|
}
|
|
69
69
|
}
|