@aws-sdk/client-ssm-sap 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/SsmSap.d.ts +92 -104
- package/dist-types/ts3.4/SsmSapClient.d.ts +17 -33
- 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 +8 -18
- package/dist-types/ts3.4/commands/DeleteResourcePermissionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeregisterApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetConfigurationCheckOperationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetResourcePermissionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListConfigurationCheckDefinitionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListConfigurationCheckOperationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListOperationEventsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSubCheckResultsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSubCheckRuleResultsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutResourcePermissionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RegisterApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartApplicationRefreshCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartConfigurationChecksCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateApplicationSettingsCommand.d.ts +4 -6
- 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 +13 -26
- package/dist-types/ts3.4/models/errors.d.ts +4 -12
- 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
|
@@ -23,10 +23,7 @@ import {
|
|
|
23
23
|
GetConfigurationCheckOperationCommandInput,
|
|
24
24
|
GetConfigurationCheckOperationCommandOutput,
|
|
25
25
|
} from "./commands/GetConfigurationCheckOperationCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetDatabaseCommandInput,
|
|
28
|
-
GetDatabaseCommandOutput,
|
|
29
|
-
} from "./commands/GetDatabaseCommand";
|
|
26
|
+
import { GetDatabaseCommandInput, GetDatabaseCommandOutput } from "./commands/GetDatabaseCommand";
|
|
30
27
|
import {
|
|
31
28
|
GetOperationCommandInput,
|
|
32
29
|
GetOperationCommandOutput,
|
|
@@ -99,10 +96,7 @@ import {
|
|
|
99
96
|
StopApplicationCommandInput,
|
|
100
97
|
StopApplicationCommandOutput,
|
|
101
98
|
} from "./commands/StopApplicationCommand";
|
|
102
|
-
import {
|
|
103
|
-
TagResourceCommandInput,
|
|
104
|
-
TagResourceCommandOutput,
|
|
105
|
-
} from "./commands/TagResourceCommand";
|
|
99
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
106
100
|
import {
|
|
107
101
|
UntagResourceCommandInput,
|
|
108
102
|
UntagResourceCommandOutput,
|
|
@@ -115,429 +109,423 @@ import { SsmSapClient } from "./SsmSapClient";
|
|
|
115
109
|
export interface SsmSap {
|
|
116
110
|
deleteResourcePermission(
|
|
117
111
|
args: DeleteResourcePermissionCommandInput,
|
|
118
|
-
options?: __HttpHandlerOptions
|
|
112
|
+
options?: __HttpHandlerOptions,
|
|
119
113
|
): Promise<DeleteResourcePermissionCommandOutput>;
|
|
120
114
|
deleteResourcePermission(
|
|
121
115
|
args: DeleteResourcePermissionCommandInput,
|
|
122
|
-
cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void,
|
|
123
117
|
): void;
|
|
124
118
|
deleteResourcePermission(
|
|
125
119
|
args: DeleteResourcePermissionCommandInput,
|
|
126
120
|
options: __HttpHandlerOptions,
|
|
127
|
-
cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void,
|
|
128
122
|
): void;
|
|
129
123
|
deregisterApplication(
|
|
130
124
|
args: DeregisterApplicationCommandInput,
|
|
131
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
132
126
|
): Promise<DeregisterApplicationCommandOutput>;
|
|
133
127
|
deregisterApplication(
|
|
134
128
|
args: DeregisterApplicationCommandInput,
|
|
135
|
-
cb: (err: any, data?: DeregisterApplicationCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: DeregisterApplicationCommandOutput) => void,
|
|
136
130
|
): void;
|
|
137
131
|
deregisterApplication(
|
|
138
132
|
args: DeregisterApplicationCommandInput,
|
|
139
133
|
options: __HttpHandlerOptions,
|
|
140
|
-
cb: (err: any, data?: DeregisterApplicationCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: DeregisterApplicationCommandOutput) => void,
|
|
141
135
|
): void;
|
|
142
136
|
getApplication(): Promise<GetApplicationCommandOutput>;
|
|
143
137
|
getApplication(
|
|
144
138
|
args: GetApplicationCommandInput,
|
|
145
|
-
options?: __HttpHandlerOptions
|
|
139
|
+
options?: __HttpHandlerOptions,
|
|
146
140
|
): Promise<GetApplicationCommandOutput>;
|
|
147
141
|
getApplication(
|
|
148
142
|
args: GetApplicationCommandInput,
|
|
149
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
150
144
|
): void;
|
|
151
145
|
getApplication(
|
|
152
146
|
args: GetApplicationCommandInput,
|
|
153
147
|
options: __HttpHandlerOptions,
|
|
154
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
155
149
|
): void;
|
|
156
150
|
getComponent(
|
|
157
151
|
args: GetComponentCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
159
153
|
): Promise<GetComponentCommandOutput>;
|
|
160
154
|
getComponent(
|
|
161
155
|
args: GetComponentCommandInput,
|
|
162
|
-
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void,
|
|
163
157
|
): void;
|
|
164
158
|
getComponent(
|
|
165
159
|
args: GetComponentCommandInput,
|
|
166
160
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void,
|
|
168
162
|
): void;
|
|
169
163
|
getConfigurationCheckOperation(
|
|
170
164
|
args: GetConfigurationCheckOperationCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
165
|
+
options?: __HttpHandlerOptions,
|
|
172
166
|
): Promise<GetConfigurationCheckOperationCommandOutput>;
|
|
173
167
|
getConfigurationCheckOperation(
|
|
174
168
|
args: GetConfigurationCheckOperationCommandInput,
|
|
175
|
-
cb: (err: any, data?: GetConfigurationCheckOperationCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: GetConfigurationCheckOperationCommandOutput) => void,
|
|
176
170
|
): void;
|
|
177
171
|
getConfigurationCheckOperation(
|
|
178
172
|
args: GetConfigurationCheckOperationCommandInput,
|
|
179
173
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: GetConfigurationCheckOperationCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: GetConfigurationCheckOperationCommandOutput) => void,
|
|
181
175
|
): void;
|
|
182
176
|
getDatabase(): Promise<GetDatabaseCommandOutput>;
|
|
183
177
|
getDatabase(
|
|
184
178
|
args: GetDatabaseCommandInput,
|
|
185
|
-
options?: __HttpHandlerOptions
|
|
179
|
+
options?: __HttpHandlerOptions,
|
|
186
180
|
): Promise<GetDatabaseCommandOutput>;
|
|
187
181
|
getDatabase(
|
|
188
182
|
args: GetDatabaseCommandInput,
|
|
189
|
-
cb: (err: any, data?: GetDatabaseCommandOutput) => void
|
|
183
|
+
cb: (err: any, data?: GetDatabaseCommandOutput) => void,
|
|
190
184
|
): void;
|
|
191
185
|
getDatabase(
|
|
192
186
|
args: GetDatabaseCommandInput,
|
|
193
187
|
options: __HttpHandlerOptions,
|
|
194
|
-
cb: (err: any, data?: GetDatabaseCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: GetDatabaseCommandOutput) => void,
|
|
195
189
|
): void;
|
|
196
190
|
getOperation(
|
|
197
191
|
args: GetOperationCommandInput,
|
|
198
|
-
options?: __HttpHandlerOptions
|
|
192
|
+
options?: __HttpHandlerOptions,
|
|
199
193
|
): Promise<GetOperationCommandOutput>;
|
|
200
194
|
getOperation(
|
|
201
195
|
args: GetOperationCommandInput,
|
|
202
|
-
cb: (err: any, data?: GetOperationCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: GetOperationCommandOutput) => void,
|
|
203
197
|
): void;
|
|
204
198
|
getOperation(
|
|
205
199
|
args: GetOperationCommandInput,
|
|
206
200
|
options: __HttpHandlerOptions,
|
|
207
|
-
cb: (err: any, data?: GetOperationCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: GetOperationCommandOutput) => void,
|
|
208
202
|
): void;
|
|
209
203
|
getResourcePermission(
|
|
210
204
|
args: GetResourcePermissionCommandInput,
|
|
211
|
-
options?: __HttpHandlerOptions
|
|
205
|
+
options?: __HttpHandlerOptions,
|
|
212
206
|
): Promise<GetResourcePermissionCommandOutput>;
|
|
213
207
|
getResourcePermission(
|
|
214
208
|
args: GetResourcePermissionCommandInput,
|
|
215
|
-
cb: (err: any, data?: GetResourcePermissionCommandOutput) => void
|
|
209
|
+
cb: (err: any, data?: GetResourcePermissionCommandOutput) => void,
|
|
216
210
|
): void;
|
|
217
211
|
getResourcePermission(
|
|
218
212
|
args: GetResourcePermissionCommandInput,
|
|
219
213
|
options: __HttpHandlerOptions,
|
|
220
|
-
cb: (err: any, data?: GetResourcePermissionCommandOutput) => void
|
|
214
|
+
cb: (err: any, data?: GetResourcePermissionCommandOutput) => void,
|
|
221
215
|
): void;
|
|
222
216
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
223
217
|
listApplications(
|
|
224
218
|
args: ListApplicationsCommandInput,
|
|
225
|
-
options?: __HttpHandlerOptions
|
|
219
|
+
options?: __HttpHandlerOptions,
|
|
226
220
|
): Promise<ListApplicationsCommandOutput>;
|
|
227
221
|
listApplications(
|
|
228
222
|
args: ListApplicationsCommandInput,
|
|
229
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
230
224
|
): void;
|
|
231
225
|
listApplications(
|
|
232
226
|
args: ListApplicationsCommandInput,
|
|
233
227
|
options: __HttpHandlerOptions,
|
|
234
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
235
229
|
): void;
|
|
236
230
|
listComponents(): Promise<ListComponentsCommandOutput>;
|
|
237
231
|
listComponents(
|
|
238
232
|
args: ListComponentsCommandInput,
|
|
239
|
-
options?: __HttpHandlerOptions
|
|
233
|
+
options?: __HttpHandlerOptions,
|
|
240
234
|
): Promise<ListComponentsCommandOutput>;
|
|
241
235
|
listComponents(
|
|
242
236
|
args: ListComponentsCommandInput,
|
|
243
|
-
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void,
|
|
244
238
|
): void;
|
|
245
239
|
listComponents(
|
|
246
240
|
args: ListComponentsCommandInput,
|
|
247
241
|
options: __HttpHandlerOptions,
|
|
248
|
-
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
242
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void,
|
|
249
243
|
): void;
|
|
250
244
|
listConfigurationCheckDefinitions(): Promise<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
251
245
|
listConfigurationCheckDefinitions(
|
|
252
246
|
args: ListConfigurationCheckDefinitionsCommandInput,
|
|
253
|
-
options?: __HttpHandlerOptions
|
|
247
|
+
options?: __HttpHandlerOptions,
|
|
254
248
|
): Promise<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
255
249
|
listConfigurationCheckDefinitions(
|
|
256
250
|
args: ListConfigurationCheckDefinitionsCommandInput,
|
|
257
|
-
cb: (
|
|
258
|
-
err: any,
|
|
259
|
-
data?: ListConfigurationCheckDefinitionsCommandOutput
|
|
260
|
-
) => void
|
|
251
|
+
cb: (err: any, data?: ListConfigurationCheckDefinitionsCommandOutput) => void,
|
|
261
252
|
): void;
|
|
262
253
|
listConfigurationCheckDefinitions(
|
|
263
254
|
args: ListConfigurationCheckDefinitionsCommandInput,
|
|
264
255
|
options: __HttpHandlerOptions,
|
|
265
|
-
cb: (
|
|
266
|
-
err: any,
|
|
267
|
-
data?: ListConfigurationCheckDefinitionsCommandOutput
|
|
268
|
-
) => void
|
|
256
|
+
cb: (err: any, data?: ListConfigurationCheckDefinitionsCommandOutput) => void,
|
|
269
257
|
): void;
|
|
270
258
|
listConfigurationCheckOperations(
|
|
271
259
|
args: ListConfigurationCheckOperationsCommandInput,
|
|
272
|
-
options?: __HttpHandlerOptions
|
|
260
|
+
options?: __HttpHandlerOptions,
|
|
273
261
|
): Promise<ListConfigurationCheckOperationsCommandOutput>;
|
|
274
262
|
listConfigurationCheckOperations(
|
|
275
263
|
args: ListConfigurationCheckOperationsCommandInput,
|
|
276
|
-
cb: (err: any, data?: ListConfigurationCheckOperationsCommandOutput) => void
|
|
264
|
+
cb: (err: any, data?: ListConfigurationCheckOperationsCommandOutput) => void,
|
|
277
265
|
): void;
|
|
278
266
|
listConfigurationCheckOperations(
|
|
279
267
|
args: ListConfigurationCheckOperationsCommandInput,
|
|
280
268
|
options: __HttpHandlerOptions,
|
|
281
|
-
cb: (err: any, data?: ListConfigurationCheckOperationsCommandOutput) => void
|
|
269
|
+
cb: (err: any, data?: ListConfigurationCheckOperationsCommandOutput) => void,
|
|
282
270
|
): void;
|
|
283
271
|
listDatabases(): Promise<ListDatabasesCommandOutput>;
|
|
284
272
|
listDatabases(
|
|
285
273
|
args: ListDatabasesCommandInput,
|
|
286
|
-
options?: __HttpHandlerOptions
|
|
274
|
+
options?: __HttpHandlerOptions,
|
|
287
275
|
): Promise<ListDatabasesCommandOutput>;
|
|
288
276
|
listDatabases(
|
|
289
277
|
args: ListDatabasesCommandInput,
|
|
290
|
-
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
278
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void,
|
|
291
279
|
): void;
|
|
292
280
|
listDatabases(
|
|
293
281
|
args: ListDatabasesCommandInput,
|
|
294
282
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void,
|
|
296
284
|
): void;
|
|
297
285
|
listOperationEvents(
|
|
298
286
|
args: ListOperationEventsCommandInput,
|
|
299
|
-
options?: __HttpHandlerOptions
|
|
287
|
+
options?: __HttpHandlerOptions,
|
|
300
288
|
): Promise<ListOperationEventsCommandOutput>;
|
|
301
289
|
listOperationEvents(
|
|
302
290
|
args: ListOperationEventsCommandInput,
|
|
303
|
-
cb: (err: any, data?: ListOperationEventsCommandOutput) => void
|
|
291
|
+
cb: (err: any, data?: ListOperationEventsCommandOutput) => void,
|
|
304
292
|
): void;
|
|
305
293
|
listOperationEvents(
|
|
306
294
|
args: ListOperationEventsCommandInput,
|
|
307
295
|
options: __HttpHandlerOptions,
|
|
308
|
-
cb: (err: any, data?: ListOperationEventsCommandOutput) => void
|
|
296
|
+
cb: (err: any, data?: ListOperationEventsCommandOutput) => void,
|
|
309
297
|
): void;
|
|
310
298
|
listOperations(
|
|
311
299
|
args: ListOperationsCommandInput,
|
|
312
|
-
options?: __HttpHandlerOptions
|
|
300
|
+
options?: __HttpHandlerOptions,
|
|
313
301
|
): Promise<ListOperationsCommandOutput>;
|
|
314
302
|
listOperations(
|
|
315
303
|
args: ListOperationsCommandInput,
|
|
316
|
-
cb: (err: any, data?: ListOperationsCommandOutput) => void
|
|
304
|
+
cb: (err: any, data?: ListOperationsCommandOutput) => void,
|
|
317
305
|
): void;
|
|
318
306
|
listOperations(
|
|
319
307
|
args: ListOperationsCommandInput,
|
|
320
308
|
options: __HttpHandlerOptions,
|
|
321
|
-
cb: (err: any, data?: ListOperationsCommandOutput) => void
|
|
309
|
+
cb: (err: any, data?: ListOperationsCommandOutput) => void,
|
|
322
310
|
): void;
|
|
323
311
|
listSubCheckResults(
|
|
324
312
|
args: ListSubCheckResultsCommandInput,
|
|
325
|
-
options?: __HttpHandlerOptions
|
|
313
|
+
options?: __HttpHandlerOptions,
|
|
326
314
|
): Promise<ListSubCheckResultsCommandOutput>;
|
|
327
315
|
listSubCheckResults(
|
|
328
316
|
args: ListSubCheckResultsCommandInput,
|
|
329
|
-
cb: (err: any, data?: ListSubCheckResultsCommandOutput) => void
|
|
317
|
+
cb: (err: any, data?: ListSubCheckResultsCommandOutput) => void,
|
|
330
318
|
): void;
|
|
331
319
|
listSubCheckResults(
|
|
332
320
|
args: ListSubCheckResultsCommandInput,
|
|
333
321
|
options: __HttpHandlerOptions,
|
|
334
|
-
cb: (err: any, data?: ListSubCheckResultsCommandOutput) => void
|
|
322
|
+
cb: (err: any, data?: ListSubCheckResultsCommandOutput) => void,
|
|
335
323
|
): void;
|
|
336
324
|
listSubCheckRuleResults(
|
|
337
325
|
args: ListSubCheckRuleResultsCommandInput,
|
|
338
|
-
options?: __HttpHandlerOptions
|
|
326
|
+
options?: __HttpHandlerOptions,
|
|
339
327
|
): Promise<ListSubCheckRuleResultsCommandOutput>;
|
|
340
328
|
listSubCheckRuleResults(
|
|
341
329
|
args: ListSubCheckRuleResultsCommandInput,
|
|
342
|
-
cb: (err: any, data?: ListSubCheckRuleResultsCommandOutput) => void
|
|
330
|
+
cb: (err: any, data?: ListSubCheckRuleResultsCommandOutput) => void,
|
|
343
331
|
): void;
|
|
344
332
|
listSubCheckRuleResults(
|
|
345
333
|
args: ListSubCheckRuleResultsCommandInput,
|
|
346
334
|
options: __HttpHandlerOptions,
|
|
347
|
-
cb: (err: any, data?: ListSubCheckRuleResultsCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: ListSubCheckRuleResultsCommandOutput) => void,
|
|
348
336
|
): void;
|
|
349
337
|
listTagsForResource(
|
|
350
338
|
args: ListTagsForResourceCommandInput,
|
|
351
|
-
options?: __HttpHandlerOptions
|
|
339
|
+
options?: __HttpHandlerOptions,
|
|
352
340
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
353
341
|
listTagsForResource(
|
|
354
342
|
args: ListTagsForResourceCommandInput,
|
|
355
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
356
344
|
): void;
|
|
357
345
|
listTagsForResource(
|
|
358
346
|
args: ListTagsForResourceCommandInput,
|
|
359
347
|
options: __HttpHandlerOptions,
|
|
360
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
348
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
361
349
|
): void;
|
|
362
350
|
putResourcePermission(
|
|
363
351
|
args: PutResourcePermissionCommandInput,
|
|
364
|
-
options?: __HttpHandlerOptions
|
|
352
|
+
options?: __HttpHandlerOptions,
|
|
365
353
|
): Promise<PutResourcePermissionCommandOutput>;
|
|
366
354
|
putResourcePermission(
|
|
367
355
|
args: PutResourcePermissionCommandInput,
|
|
368
|
-
cb: (err: any, data?: PutResourcePermissionCommandOutput) => void
|
|
356
|
+
cb: (err: any, data?: PutResourcePermissionCommandOutput) => void,
|
|
369
357
|
): void;
|
|
370
358
|
putResourcePermission(
|
|
371
359
|
args: PutResourcePermissionCommandInput,
|
|
372
360
|
options: __HttpHandlerOptions,
|
|
373
|
-
cb: (err: any, data?: PutResourcePermissionCommandOutput) => void
|
|
361
|
+
cb: (err: any, data?: PutResourcePermissionCommandOutput) => void,
|
|
374
362
|
): void;
|
|
375
363
|
registerApplication(
|
|
376
364
|
args: RegisterApplicationCommandInput,
|
|
377
|
-
options?: __HttpHandlerOptions
|
|
365
|
+
options?: __HttpHandlerOptions,
|
|
378
366
|
): Promise<RegisterApplicationCommandOutput>;
|
|
379
367
|
registerApplication(
|
|
380
368
|
args: RegisterApplicationCommandInput,
|
|
381
|
-
cb: (err: any, data?: RegisterApplicationCommandOutput) => void
|
|
369
|
+
cb: (err: any, data?: RegisterApplicationCommandOutput) => void,
|
|
382
370
|
): void;
|
|
383
371
|
registerApplication(
|
|
384
372
|
args: RegisterApplicationCommandInput,
|
|
385
373
|
options: __HttpHandlerOptions,
|
|
386
|
-
cb: (err: any, data?: RegisterApplicationCommandOutput) => void
|
|
374
|
+
cb: (err: any, data?: RegisterApplicationCommandOutput) => void,
|
|
387
375
|
): void;
|
|
388
376
|
startApplication(
|
|
389
377
|
args: StartApplicationCommandInput,
|
|
390
|
-
options?: __HttpHandlerOptions
|
|
378
|
+
options?: __HttpHandlerOptions,
|
|
391
379
|
): Promise<StartApplicationCommandOutput>;
|
|
392
380
|
startApplication(
|
|
393
381
|
args: StartApplicationCommandInput,
|
|
394
|
-
cb: (err: any, data?: StartApplicationCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: StartApplicationCommandOutput) => void,
|
|
395
383
|
): void;
|
|
396
384
|
startApplication(
|
|
397
385
|
args: StartApplicationCommandInput,
|
|
398
386
|
options: __HttpHandlerOptions,
|
|
399
|
-
cb: (err: any, data?: StartApplicationCommandOutput) => void
|
|
387
|
+
cb: (err: any, data?: StartApplicationCommandOutput) => void,
|
|
400
388
|
): void;
|
|
401
389
|
startApplicationRefresh(
|
|
402
390
|
args: StartApplicationRefreshCommandInput,
|
|
403
|
-
options?: __HttpHandlerOptions
|
|
391
|
+
options?: __HttpHandlerOptions,
|
|
404
392
|
): Promise<StartApplicationRefreshCommandOutput>;
|
|
405
393
|
startApplicationRefresh(
|
|
406
394
|
args: StartApplicationRefreshCommandInput,
|
|
407
|
-
cb: (err: any, data?: StartApplicationRefreshCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: StartApplicationRefreshCommandOutput) => void,
|
|
408
396
|
): void;
|
|
409
397
|
startApplicationRefresh(
|
|
410
398
|
args: StartApplicationRefreshCommandInput,
|
|
411
399
|
options: __HttpHandlerOptions,
|
|
412
|
-
cb: (err: any, data?: StartApplicationRefreshCommandOutput) => void
|
|
400
|
+
cb: (err: any, data?: StartApplicationRefreshCommandOutput) => void,
|
|
413
401
|
): void;
|
|
414
402
|
startConfigurationChecks(
|
|
415
403
|
args: StartConfigurationChecksCommandInput,
|
|
416
|
-
options?: __HttpHandlerOptions
|
|
404
|
+
options?: __HttpHandlerOptions,
|
|
417
405
|
): Promise<StartConfigurationChecksCommandOutput>;
|
|
418
406
|
startConfigurationChecks(
|
|
419
407
|
args: StartConfigurationChecksCommandInput,
|
|
420
|
-
cb: (err: any, data?: StartConfigurationChecksCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: StartConfigurationChecksCommandOutput) => void,
|
|
421
409
|
): void;
|
|
422
410
|
startConfigurationChecks(
|
|
423
411
|
args: StartConfigurationChecksCommandInput,
|
|
424
412
|
options: __HttpHandlerOptions,
|
|
425
|
-
cb: (err: any, data?: StartConfigurationChecksCommandOutput) => void
|
|
413
|
+
cb: (err: any, data?: StartConfigurationChecksCommandOutput) => void,
|
|
426
414
|
): void;
|
|
427
415
|
stopApplication(
|
|
428
416
|
args: StopApplicationCommandInput,
|
|
429
|
-
options?: __HttpHandlerOptions
|
|
417
|
+
options?: __HttpHandlerOptions,
|
|
430
418
|
): Promise<StopApplicationCommandOutput>;
|
|
431
419
|
stopApplication(
|
|
432
420
|
args: StopApplicationCommandInput,
|
|
433
|
-
cb: (err: any, data?: StopApplicationCommandOutput) => void
|
|
421
|
+
cb: (err: any, data?: StopApplicationCommandOutput) => void,
|
|
434
422
|
): void;
|
|
435
423
|
stopApplication(
|
|
436
424
|
args: StopApplicationCommandInput,
|
|
437
425
|
options: __HttpHandlerOptions,
|
|
438
|
-
cb: (err: any, data?: StopApplicationCommandOutput) => void
|
|
426
|
+
cb: (err: any, data?: StopApplicationCommandOutput) => void,
|
|
439
427
|
): void;
|
|
440
428
|
tagResource(
|
|
441
429
|
args: TagResourceCommandInput,
|
|
442
|
-
options?: __HttpHandlerOptions
|
|
430
|
+
options?: __HttpHandlerOptions,
|
|
443
431
|
): Promise<TagResourceCommandOutput>;
|
|
444
432
|
tagResource(
|
|
445
433
|
args: TagResourceCommandInput,
|
|
446
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
434
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
447
435
|
): void;
|
|
448
436
|
tagResource(
|
|
449
437
|
args: TagResourceCommandInput,
|
|
450
438
|
options: __HttpHandlerOptions,
|
|
451
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
439
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
452
440
|
): void;
|
|
453
441
|
untagResource(
|
|
454
442
|
args: UntagResourceCommandInput,
|
|
455
|
-
options?: __HttpHandlerOptions
|
|
443
|
+
options?: __HttpHandlerOptions,
|
|
456
444
|
): Promise<UntagResourceCommandOutput>;
|
|
457
445
|
untagResource(
|
|
458
446
|
args: UntagResourceCommandInput,
|
|
459
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
447
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
460
448
|
): void;
|
|
461
449
|
untagResource(
|
|
462
450
|
args: UntagResourceCommandInput,
|
|
463
451
|
options: __HttpHandlerOptions,
|
|
464
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
452
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
465
453
|
): void;
|
|
466
454
|
updateApplicationSettings(
|
|
467
455
|
args: UpdateApplicationSettingsCommandInput,
|
|
468
|
-
options?: __HttpHandlerOptions
|
|
456
|
+
options?: __HttpHandlerOptions,
|
|
469
457
|
): Promise<UpdateApplicationSettingsCommandOutput>;
|
|
470
458
|
updateApplicationSettings(
|
|
471
459
|
args: UpdateApplicationSettingsCommandInput,
|
|
472
|
-
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void
|
|
460
|
+
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void,
|
|
473
461
|
): void;
|
|
474
462
|
updateApplicationSettings(
|
|
475
463
|
args: UpdateApplicationSettingsCommandInput,
|
|
476
464
|
options: __HttpHandlerOptions,
|
|
477
|
-
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void
|
|
465
|
+
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void,
|
|
478
466
|
): void;
|
|
479
467
|
paginateListApplications(
|
|
480
468
|
args?: ListApplicationsCommandInput,
|
|
481
469
|
paginationConfig?: Pick<
|
|
482
470
|
PaginationConfiguration,
|
|
483
471
|
Exclude<keyof PaginationConfiguration, "client">
|
|
484
|
-
|
|
472
|
+
>,
|
|
485
473
|
): Paginator<ListApplicationsCommandOutput>;
|
|
486
474
|
paginateListComponents(
|
|
487
475
|
args?: ListComponentsCommandInput,
|
|
488
476
|
paginationConfig?: Pick<
|
|
489
477
|
PaginationConfiguration,
|
|
490
478
|
Exclude<keyof PaginationConfiguration, "client">
|
|
491
|
-
|
|
479
|
+
>,
|
|
492
480
|
): Paginator<ListComponentsCommandOutput>;
|
|
493
481
|
paginateListConfigurationCheckDefinitions(
|
|
494
482
|
args?: ListConfigurationCheckDefinitionsCommandInput,
|
|
495
483
|
paginationConfig?: Pick<
|
|
496
484
|
PaginationConfiguration,
|
|
497
485
|
Exclude<keyof PaginationConfiguration, "client">
|
|
498
|
-
|
|
486
|
+
>,
|
|
499
487
|
): Paginator<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
500
488
|
paginateListConfigurationCheckOperations(
|
|
501
489
|
args: ListConfigurationCheckOperationsCommandInput,
|
|
502
490
|
paginationConfig?: Pick<
|
|
503
491
|
PaginationConfiguration,
|
|
504
492
|
Exclude<keyof PaginationConfiguration, "client">
|
|
505
|
-
|
|
493
|
+
>,
|
|
506
494
|
): Paginator<ListConfigurationCheckOperationsCommandOutput>;
|
|
507
495
|
paginateListDatabases(
|
|
508
496
|
args?: ListDatabasesCommandInput,
|
|
509
497
|
paginationConfig?: Pick<
|
|
510
498
|
PaginationConfiguration,
|
|
511
499
|
Exclude<keyof PaginationConfiguration, "client">
|
|
512
|
-
|
|
500
|
+
>,
|
|
513
501
|
): Paginator<ListDatabasesCommandOutput>;
|
|
514
502
|
paginateListOperationEvents(
|
|
515
503
|
args: ListOperationEventsCommandInput,
|
|
516
504
|
paginationConfig?: Pick<
|
|
517
505
|
PaginationConfiguration,
|
|
518
506
|
Exclude<keyof PaginationConfiguration, "client">
|
|
519
|
-
|
|
507
|
+
>,
|
|
520
508
|
): Paginator<ListOperationEventsCommandOutput>;
|
|
521
509
|
paginateListOperations(
|
|
522
510
|
args: ListOperationsCommandInput,
|
|
523
511
|
paginationConfig?: Pick<
|
|
524
512
|
PaginationConfiguration,
|
|
525
513
|
Exclude<keyof PaginationConfiguration, "client">
|
|
526
|
-
|
|
514
|
+
>,
|
|
527
515
|
): Paginator<ListOperationsCommandOutput>;
|
|
528
516
|
paginateListSubCheckResults(
|
|
529
517
|
args: ListSubCheckResultsCommandInput,
|
|
530
518
|
paginationConfig?: Pick<
|
|
531
519
|
PaginationConfiguration,
|
|
532
520
|
Exclude<keyof PaginationConfiguration, "client">
|
|
533
|
-
|
|
521
|
+
>,
|
|
534
522
|
): Paginator<ListSubCheckResultsCommandOutput>;
|
|
535
523
|
paginateListSubCheckRuleResults(
|
|
536
524
|
args: ListSubCheckRuleResultsCommandInput,
|
|
537
525
|
paginationConfig?: Pick<
|
|
538
526
|
PaginationConfiguration,
|
|
539
527
|
Exclude<keyof PaginationConfiguration, "client">
|
|
540
|
-
|
|
528
|
+
>,
|
|
541
529
|
): Paginator<ListSubCheckRuleResultsCommandOutput>;
|
|
542
530
|
}
|
|
543
531
|
export declare class SsmSap extends SsmSapClient implements SsmSap {}
|
|
@@ -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 {
|
|
@@ -56,10 +53,7 @@ import {
|
|
|
56
53
|
GetConfigurationCheckOperationCommandInput,
|
|
57
54
|
GetConfigurationCheckOperationCommandOutput,
|
|
58
55
|
} from "./commands/GetConfigurationCheckOperationCommand";
|
|
59
|
-
import {
|
|
60
|
-
GetDatabaseCommandInput,
|
|
61
|
-
GetDatabaseCommandOutput,
|
|
62
|
-
} from "./commands/GetDatabaseCommand";
|
|
56
|
+
import { GetDatabaseCommandInput, GetDatabaseCommandOutput } from "./commands/GetDatabaseCommand";
|
|
63
57
|
import {
|
|
64
58
|
GetOperationCommandInput,
|
|
65
59
|
GetOperationCommandOutput,
|
|
@@ -132,10 +126,7 @@ import {
|
|
|
132
126
|
StopApplicationCommandInput,
|
|
133
127
|
StopApplicationCommandOutput,
|
|
134
128
|
} from "./commands/StopApplicationCommand";
|
|
135
|
-
import {
|
|
136
|
-
TagResourceCommandInput,
|
|
137
|
-
TagResourceCommandOutput,
|
|
138
|
-
} from "./commands/TagResourceCommand";
|
|
129
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
139
130
|
import {
|
|
140
131
|
UntagResourceCommandInput,
|
|
141
132
|
UntagResourceCommandOutput,
|
|
@@ -207,8 +198,7 @@ export type ServiceOutputTypes =
|
|
|
207
198
|
| TagResourceCommandOutput
|
|
208
199
|
| UntagResourceCommandOutput
|
|
209
200
|
| UpdateApplicationSettingsCommandOutput;
|
|
210
|
-
export interface ClientDefaults
|
|
211
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
201
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
212
202
|
requestHandler?: __HttpHandlerUserInput;
|
|
213
203
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
214
204
|
urlParser?: __UrlParser;
|
|
@@ -233,9 +223,7 @@ export interface ClientDefaults
|
|
|
233
223
|
extensions?: RuntimeExtension[];
|
|
234
224
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
235
225
|
}
|
|
236
|
-
export type SsmSapClientConfigType = Partial<
|
|
237
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
238
|
-
> &
|
|
226
|
+
export type SsmSapClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
239
227
|
ClientDefaults &
|
|
240
228
|
UserAgentInputConfig &
|
|
241
229
|
RetryInputConfig &
|
|
@@ -245,19 +233,17 @@ export type SsmSapClientConfigType = Partial<
|
|
|
245
233
|
HttpAuthSchemeInputConfig &
|
|
246
234
|
ClientInputEndpointParameters;
|
|
247
235
|
export interface SsmSapClientConfig extends SsmSapClientConfigType {}
|
|
248
|
-
export type SsmSapClientResolvedConfigType =
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
export interface SsmSapClientResolvedConfig
|
|
260
|
-
extends SsmSapClientResolvedConfigType {}
|
|
236
|
+
export type SsmSapClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
237
|
+
Required<ClientDefaults> &
|
|
238
|
+
RuntimeExtensionsConfig &
|
|
239
|
+
UserAgentResolvedConfig &
|
|
240
|
+
RetryResolvedConfig &
|
|
241
|
+
RegionResolvedConfig &
|
|
242
|
+
HostHeaderResolvedConfig &
|
|
243
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
244
|
+
HttpAuthSchemeResolvedConfig &
|
|
245
|
+
ClientResolvedEndpointParameters;
|
|
246
|
+
export interface SsmSapClientResolvedConfig extends SsmSapClientResolvedConfigType {}
|
|
261
247
|
export declare class SsmSapClient extends __Client<
|
|
262
248
|
__HttpHandlerOptions,
|
|
263
249
|
ServiceInputTypes,
|
|
@@ -265,8 +251,6 @@ export declare class SsmSapClient extends __Client<
|
|
|
265
251
|
SsmSapClientResolvedConfig
|
|
266
252
|
> {
|
|
267
253
|
readonly config: SsmSapClientResolvedConfig;
|
|
268
|
-
constructor(
|
|
269
|
-
...[configuration]: __CheckOptionalClientConfig<SsmSapClientConfig>
|
|
270
|
-
);
|
|
254
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SsmSapClientConfig>);
|
|
271
255
|
destroy(): void;
|
|
272
256
|
}
|