@aws-sdk/client-appconfig 3.721.0 → 3.723.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 +250 -175
- package/dist-es/AppConfigClient.js +1 -0
- package/dist-es/models/models_0.js +24 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -202,7 +202,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
202
202
|
}, "resolveRuntimeExtensions");
|
|
203
203
|
|
|
204
204
|
// src/AppConfigClient.ts
|
|
205
|
-
var
|
|
205
|
+
var AppConfigClient = class extends import_smithy_client.Client {
|
|
206
|
+
static {
|
|
207
|
+
__name(this, "AppConfigClient");
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* The resolved configuration of AppConfigClient class. This is resolved and normalized from the {@link AppConfigClientConfig | constructor configuration interface}.
|
|
211
|
+
*/
|
|
212
|
+
config;
|
|
206
213
|
constructor(...[configuration]) {
|
|
207
214
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
208
215
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -212,7 +219,7 @@ var _AppConfigClient = class _AppConfigClient extends import_smithy_client.Clien
|
|
|
212
219
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
213
220
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
214
221
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
215
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
222
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
216
223
|
super(_config_8);
|
|
217
224
|
this.config = _config_8;
|
|
218
225
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -240,8 +247,6 @@ var _AppConfigClient = class _AppConfigClient extends import_smithy_client.Clien
|
|
|
240
247
|
super.destroy();
|
|
241
248
|
}
|
|
242
249
|
};
|
|
243
|
-
__name(_AppConfigClient, "AppConfigClient");
|
|
244
|
-
var AppConfigClient = _AppConfigClient;
|
|
245
250
|
|
|
246
251
|
// src/AppConfig.ts
|
|
247
252
|
|
|
@@ -258,7 +263,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
258
263
|
|
|
259
264
|
// src/models/AppConfigServiceException.ts
|
|
260
265
|
|
|
261
|
-
var
|
|
266
|
+
var AppConfigServiceException = class _AppConfigServiceException extends import_smithy_client.ServiceException {
|
|
267
|
+
static {
|
|
268
|
+
__name(this, "AppConfigServiceException");
|
|
269
|
+
}
|
|
262
270
|
/**
|
|
263
271
|
* @internal
|
|
264
272
|
*/
|
|
@@ -267,8 +275,6 @@ var _AppConfigServiceException = class _AppConfigServiceException extends import
|
|
|
267
275
|
Object.setPrototypeOf(this, _AppConfigServiceException.prototype);
|
|
268
276
|
}
|
|
269
277
|
};
|
|
270
|
-
__name(_AppConfigServiceException, "AppConfigServiceException");
|
|
271
|
-
var AppConfigServiceException = _AppConfigServiceException;
|
|
272
278
|
|
|
273
279
|
// src/models/models_0.ts
|
|
274
280
|
|
|
@@ -293,7 +299,20 @@ var BadRequestDetails;
|
|
|
293
299
|
var BadRequestReason = {
|
|
294
300
|
INVALID_CONFIGURATION: "InvalidConfiguration"
|
|
295
301
|
};
|
|
296
|
-
var
|
|
302
|
+
var BadRequestException = class _BadRequestException extends AppConfigServiceException {
|
|
303
|
+
static {
|
|
304
|
+
__name(this, "BadRequestException");
|
|
305
|
+
}
|
|
306
|
+
name = "BadRequestException";
|
|
307
|
+
$fault = "client";
|
|
308
|
+
Message;
|
|
309
|
+
Reason;
|
|
310
|
+
/**
|
|
311
|
+
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
312
|
+
* a call.</p>
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
Details;
|
|
297
316
|
/**
|
|
298
317
|
* @internal
|
|
299
318
|
*/
|
|
@@ -303,17 +322,19 @@ var _BadRequestException = class _BadRequestException extends AppConfigServiceEx
|
|
|
303
322
|
$fault: "client",
|
|
304
323
|
...opts
|
|
305
324
|
});
|
|
306
|
-
this.name = "BadRequestException";
|
|
307
|
-
this.$fault = "client";
|
|
308
325
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
309
326
|
this.Message = opts.Message;
|
|
310
327
|
this.Reason = opts.Reason;
|
|
311
328
|
this.Details = opts.Details;
|
|
312
329
|
}
|
|
313
330
|
};
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
331
|
+
var InternalServerException = class _InternalServerException extends AppConfigServiceException {
|
|
332
|
+
static {
|
|
333
|
+
__name(this, "InternalServerException");
|
|
334
|
+
}
|
|
335
|
+
name = "InternalServerException";
|
|
336
|
+
$fault = "server";
|
|
337
|
+
Message;
|
|
317
338
|
/**
|
|
318
339
|
* @internal
|
|
319
340
|
*/
|
|
@@ -323,15 +344,17 @@ var _InternalServerException = class _InternalServerException extends AppConfigS
|
|
|
323
344
|
$fault: "server",
|
|
324
345
|
...opts
|
|
325
346
|
});
|
|
326
|
-
this.name = "InternalServerException";
|
|
327
|
-
this.$fault = "server";
|
|
328
347
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
329
348
|
this.Message = opts.Message;
|
|
330
349
|
}
|
|
331
350
|
};
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
351
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends AppConfigServiceException {
|
|
352
|
+
static {
|
|
353
|
+
__name(this, "ServiceQuotaExceededException");
|
|
354
|
+
}
|
|
355
|
+
name = "ServiceQuotaExceededException";
|
|
356
|
+
$fault = "client";
|
|
357
|
+
Message;
|
|
335
358
|
/**
|
|
336
359
|
* @internal
|
|
337
360
|
*/
|
|
@@ -341,19 +364,22 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
341
364
|
$fault: "client",
|
|
342
365
|
...opts
|
|
343
366
|
});
|
|
344
|
-
this.name = "ServiceQuotaExceededException";
|
|
345
|
-
this.$fault = "client";
|
|
346
367
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
347
368
|
this.Message = opts.Message;
|
|
348
369
|
}
|
|
349
370
|
};
|
|
350
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
351
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
352
371
|
var ValidatorType = {
|
|
353
372
|
JSON_SCHEMA: "JSON_SCHEMA",
|
|
354
373
|
LAMBDA: "LAMBDA"
|
|
355
374
|
};
|
|
356
|
-
var
|
|
375
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AppConfigServiceException {
|
|
376
|
+
static {
|
|
377
|
+
__name(this, "ResourceNotFoundException");
|
|
378
|
+
}
|
|
379
|
+
name = "ResourceNotFoundException";
|
|
380
|
+
$fault = "client";
|
|
381
|
+
Message;
|
|
382
|
+
ResourceName;
|
|
357
383
|
/**
|
|
358
384
|
* @internal
|
|
359
385
|
*/
|
|
@@ -363,15 +389,11 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AppCon
|
|
|
363
389
|
$fault: "client",
|
|
364
390
|
...opts
|
|
365
391
|
});
|
|
366
|
-
this.name = "ResourceNotFoundException";
|
|
367
|
-
this.$fault = "client";
|
|
368
392
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
369
393
|
this.Message = opts.Message;
|
|
370
394
|
this.ResourceName = opts.ResourceName;
|
|
371
395
|
}
|
|
372
396
|
};
|
|
373
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
374
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
375
397
|
var GrowthType = {
|
|
376
398
|
EXPONENTIAL: "EXPONENTIAL",
|
|
377
399
|
LINEAR: "LINEAR"
|
|
@@ -387,7 +409,13 @@ var EnvironmentState = {
|
|
|
387
409
|
ROLLED_BACK: "ROLLED_BACK",
|
|
388
410
|
ROLLING_BACK: "ROLLING_BACK"
|
|
389
411
|
};
|
|
390
|
-
var
|
|
412
|
+
var ConflictException = class _ConflictException extends AppConfigServiceException {
|
|
413
|
+
static {
|
|
414
|
+
__name(this, "ConflictException");
|
|
415
|
+
}
|
|
416
|
+
name = "ConflictException";
|
|
417
|
+
$fault = "client";
|
|
418
|
+
Message;
|
|
391
419
|
/**
|
|
392
420
|
* @internal
|
|
393
421
|
*/
|
|
@@ -397,18 +425,23 @@ var _ConflictException = class _ConflictException extends AppConfigServiceExcept
|
|
|
397
425
|
$fault: "client",
|
|
398
426
|
...opts
|
|
399
427
|
});
|
|
400
|
-
this.name = "ConflictException";
|
|
401
|
-
this.$fault = "client";
|
|
402
428
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
403
429
|
this.Message = opts.Message;
|
|
404
430
|
}
|
|
405
431
|
};
|
|
406
|
-
__name(_ConflictException, "ConflictException");
|
|
407
|
-
var ConflictException = _ConflictException;
|
|
408
432
|
var BytesMeasure = {
|
|
409
433
|
KILOBYTES: "KILOBYTES"
|
|
410
434
|
};
|
|
411
|
-
var
|
|
435
|
+
var PayloadTooLargeException = class _PayloadTooLargeException extends AppConfigServiceException {
|
|
436
|
+
static {
|
|
437
|
+
__name(this, "PayloadTooLargeException");
|
|
438
|
+
}
|
|
439
|
+
name = "PayloadTooLargeException";
|
|
440
|
+
$fault = "client";
|
|
441
|
+
Message;
|
|
442
|
+
Measure;
|
|
443
|
+
Limit;
|
|
444
|
+
Size;
|
|
412
445
|
/**
|
|
413
446
|
* @internal
|
|
414
447
|
*/
|
|
@@ -418,8 +451,6 @@ var _PayloadTooLargeException = class _PayloadTooLargeException extends AppConfi
|
|
|
418
451
|
$fault: "client",
|
|
419
452
|
...opts
|
|
420
453
|
});
|
|
421
|
-
this.name = "PayloadTooLargeException";
|
|
422
|
-
this.$fault = "client";
|
|
423
454
|
Object.setPrototypeOf(this, _PayloadTooLargeException.prototype);
|
|
424
455
|
this.Message = opts.Message;
|
|
425
456
|
this.Measure = opts.Measure;
|
|
@@ -427,8 +458,6 @@ var _PayloadTooLargeException = class _PayloadTooLargeException extends AppConfi
|
|
|
427
458
|
this.Size = opts.Size;
|
|
428
459
|
}
|
|
429
460
|
};
|
|
430
|
-
__name(_PayloadTooLargeException, "PayloadTooLargeException");
|
|
431
|
-
var PayloadTooLargeException = _PayloadTooLargeException;
|
|
432
461
|
var DeletionProtectionCheck = {
|
|
433
462
|
ACCOUNT_DEFAULT: "ACCOUNT_DEFAULT",
|
|
434
463
|
APPLY: "APPLY",
|
|
@@ -2127,631 +2156,676 @@ var _vn_ = "version-number";
|
|
|
2127
2156
|
var _xadpc = "x-amzn-deletion-protection-check";
|
|
2128
2157
|
|
|
2129
2158
|
// src/commands/CreateApplicationCommand.ts
|
|
2130
|
-
var
|
|
2159
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2131
2160
|
return [
|
|
2132
2161
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2133
2162
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2134
2163
|
];
|
|
2135
2164
|
}).s("AmazonAppConfig", "CreateApplication", {}).n("AppConfigClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
2165
|
+
static {
|
|
2166
|
+
__name(this, "CreateApplicationCommand");
|
|
2167
|
+
}
|
|
2136
2168
|
};
|
|
2137
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
2138
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
2139
2169
|
|
|
2140
2170
|
// src/commands/CreateConfigurationProfileCommand.ts
|
|
2141
2171
|
|
|
2142
2172
|
|
|
2143
2173
|
|
|
2144
|
-
var
|
|
2174
|
+
var CreateConfigurationProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2145
2175
|
return [
|
|
2146
2176
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2147
2177
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2148
2178
|
];
|
|
2149
2179
|
}).s("AmazonAppConfig", "CreateConfigurationProfile", {}).n("AppConfigClient", "CreateConfigurationProfileCommand").f(CreateConfigurationProfileRequestFilterSensitiveLog, ConfigurationProfileFilterSensitiveLog).ser(se_CreateConfigurationProfileCommand).de(de_CreateConfigurationProfileCommand).build() {
|
|
2180
|
+
static {
|
|
2181
|
+
__name(this, "CreateConfigurationProfileCommand");
|
|
2182
|
+
}
|
|
2150
2183
|
};
|
|
2151
|
-
__name(_CreateConfigurationProfileCommand, "CreateConfigurationProfileCommand");
|
|
2152
|
-
var CreateConfigurationProfileCommand = _CreateConfigurationProfileCommand;
|
|
2153
2184
|
|
|
2154
2185
|
// src/commands/CreateDeploymentStrategyCommand.ts
|
|
2155
2186
|
|
|
2156
2187
|
|
|
2157
2188
|
|
|
2158
|
-
var
|
|
2189
|
+
var CreateDeploymentStrategyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2159
2190
|
return [
|
|
2160
2191
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2161
2192
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2162
2193
|
];
|
|
2163
2194
|
}).s("AmazonAppConfig", "CreateDeploymentStrategy", {}).n("AppConfigClient", "CreateDeploymentStrategyCommand").f(void 0, void 0).ser(se_CreateDeploymentStrategyCommand).de(de_CreateDeploymentStrategyCommand).build() {
|
|
2195
|
+
static {
|
|
2196
|
+
__name(this, "CreateDeploymentStrategyCommand");
|
|
2197
|
+
}
|
|
2164
2198
|
};
|
|
2165
|
-
__name(_CreateDeploymentStrategyCommand, "CreateDeploymentStrategyCommand");
|
|
2166
|
-
var CreateDeploymentStrategyCommand = _CreateDeploymentStrategyCommand;
|
|
2167
2199
|
|
|
2168
2200
|
// src/commands/CreateEnvironmentCommand.ts
|
|
2169
2201
|
|
|
2170
2202
|
|
|
2171
2203
|
|
|
2172
|
-
var
|
|
2204
|
+
var CreateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2173
2205
|
return [
|
|
2174
2206
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2175
2207
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2176
2208
|
];
|
|
2177
2209
|
}).s("AmazonAppConfig", "CreateEnvironment", {}).n("AppConfigClient", "CreateEnvironmentCommand").f(void 0, void 0).ser(se_CreateEnvironmentCommand).de(de_CreateEnvironmentCommand).build() {
|
|
2210
|
+
static {
|
|
2211
|
+
__name(this, "CreateEnvironmentCommand");
|
|
2212
|
+
}
|
|
2178
2213
|
};
|
|
2179
|
-
__name(_CreateEnvironmentCommand, "CreateEnvironmentCommand");
|
|
2180
|
-
var CreateEnvironmentCommand = _CreateEnvironmentCommand;
|
|
2181
2214
|
|
|
2182
2215
|
// src/commands/CreateExtensionAssociationCommand.ts
|
|
2183
2216
|
|
|
2184
2217
|
|
|
2185
2218
|
|
|
2186
|
-
var
|
|
2219
|
+
var CreateExtensionAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2187
2220
|
return [
|
|
2188
2221
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2189
2222
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2190
2223
|
];
|
|
2191
2224
|
}).s("AmazonAppConfig", "CreateExtensionAssociation", {}).n("AppConfigClient", "CreateExtensionAssociationCommand").f(void 0, void 0).ser(se_CreateExtensionAssociationCommand).de(de_CreateExtensionAssociationCommand).build() {
|
|
2225
|
+
static {
|
|
2226
|
+
__name(this, "CreateExtensionAssociationCommand");
|
|
2227
|
+
}
|
|
2192
2228
|
};
|
|
2193
|
-
__name(_CreateExtensionAssociationCommand, "CreateExtensionAssociationCommand");
|
|
2194
|
-
var CreateExtensionAssociationCommand = _CreateExtensionAssociationCommand;
|
|
2195
2229
|
|
|
2196
2230
|
// src/commands/CreateExtensionCommand.ts
|
|
2197
2231
|
|
|
2198
2232
|
|
|
2199
2233
|
|
|
2200
|
-
var
|
|
2234
|
+
var CreateExtensionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2201
2235
|
return [
|
|
2202
2236
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2203
2237
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2204
2238
|
];
|
|
2205
2239
|
}).s("AmazonAppConfig", "CreateExtension", {}).n("AppConfigClient", "CreateExtensionCommand").f(void 0, void 0).ser(se_CreateExtensionCommand).de(de_CreateExtensionCommand).build() {
|
|
2240
|
+
static {
|
|
2241
|
+
__name(this, "CreateExtensionCommand");
|
|
2242
|
+
}
|
|
2206
2243
|
};
|
|
2207
|
-
__name(_CreateExtensionCommand, "CreateExtensionCommand");
|
|
2208
|
-
var CreateExtensionCommand = _CreateExtensionCommand;
|
|
2209
2244
|
|
|
2210
2245
|
// src/commands/CreateHostedConfigurationVersionCommand.ts
|
|
2211
2246
|
|
|
2212
2247
|
|
|
2213
2248
|
|
|
2214
|
-
var
|
|
2249
|
+
var CreateHostedConfigurationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2215
2250
|
return [
|
|
2216
2251
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2217
2252
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2218
2253
|
];
|
|
2219
2254
|
}).s("AmazonAppConfig", "CreateHostedConfigurationVersion", {}).n("AppConfigClient", "CreateHostedConfigurationVersionCommand").f(CreateHostedConfigurationVersionRequestFilterSensitiveLog, HostedConfigurationVersionFilterSensitiveLog).ser(se_CreateHostedConfigurationVersionCommand).de(de_CreateHostedConfigurationVersionCommand).build() {
|
|
2255
|
+
static {
|
|
2256
|
+
__name(this, "CreateHostedConfigurationVersionCommand");
|
|
2257
|
+
}
|
|
2220
2258
|
};
|
|
2221
|
-
__name(_CreateHostedConfigurationVersionCommand, "CreateHostedConfigurationVersionCommand");
|
|
2222
|
-
var CreateHostedConfigurationVersionCommand = _CreateHostedConfigurationVersionCommand;
|
|
2223
2259
|
|
|
2224
2260
|
// src/commands/DeleteApplicationCommand.ts
|
|
2225
2261
|
|
|
2226
2262
|
|
|
2227
2263
|
|
|
2228
|
-
var
|
|
2264
|
+
var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2229
2265
|
return [
|
|
2230
2266
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2231
2267
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2232
2268
|
];
|
|
2233
2269
|
}).s("AmazonAppConfig", "DeleteApplication", {}).n("AppConfigClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
|
|
2270
|
+
static {
|
|
2271
|
+
__name(this, "DeleteApplicationCommand");
|
|
2272
|
+
}
|
|
2234
2273
|
};
|
|
2235
|
-
__name(_DeleteApplicationCommand, "DeleteApplicationCommand");
|
|
2236
|
-
var DeleteApplicationCommand = _DeleteApplicationCommand;
|
|
2237
2274
|
|
|
2238
2275
|
// src/commands/DeleteConfigurationProfileCommand.ts
|
|
2239
2276
|
|
|
2240
2277
|
|
|
2241
2278
|
|
|
2242
|
-
var
|
|
2279
|
+
var DeleteConfigurationProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2243
2280
|
return [
|
|
2244
2281
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2245
2282
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2246
2283
|
];
|
|
2247
2284
|
}).s("AmazonAppConfig", "DeleteConfigurationProfile", {}).n("AppConfigClient", "DeleteConfigurationProfileCommand").f(void 0, void 0).ser(se_DeleteConfigurationProfileCommand).de(de_DeleteConfigurationProfileCommand).build() {
|
|
2285
|
+
static {
|
|
2286
|
+
__name(this, "DeleteConfigurationProfileCommand");
|
|
2287
|
+
}
|
|
2248
2288
|
};
|
|
2249
|
-
__name(_DeleteConfigurationProfileCommand, "DeleteConfigurationProfileCommand");
|
|
2250
|
-
var DeleteConfigurationProfileCommand = _DeleteConfigurationProfileCommand;
|
|
2251
2289
|
|
|
2252
2290
|
// src/commands/DeleteDeploymentStrategyCommand.ts
|
|
2253
2291
|
|
|
2254
2292
|
|
|
2255
2293
|
|
|
2256
|
-
var
|
|
2294
|
+
var DeleteDeploymentStrategyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2257
2295
|
return [
|
|
2258
2296
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2259
2297
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2260
2298
|
];
|
|
2261
2299
|
}).s("AmazonAppConfig", "DeleteDeploymentStrategy", {}).n("AppConfigClient", "DeleteDeploymentStrategyCommand").f(void 0, void 0).ser(se_DeleteDeploymentStrategyCommand).de(de_DeleteDeploymentStrategyCommand).build() {
|
|
2300
|
+
static {
|
|
2301
|
+
__name(this, "DeleteDeploymentStrategyCommand");
|
|
2302
|
+
}
|
|
2262
2303
|
};
|
|
2263
|
-
__name(_DeleteDeploymentStrategyCommand, "DeleteDeploymentStrategyCommand");
|
|
2264
|
-
var DeleteDeploymentStrategyCommand = _DeleteDeploymentStrategyCommand;
|
|
2265
2304
|
|
|
2266
2305
|
// src/commands/DeleteEnvironmentCommand.ts
|
|
2267
2306
|
|
|
2268
2307
|
|
|
2269
2308
|
|
|
2270
|
-
var
|
|
2309
|
+
var DeleteEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2271
2310
|
return [
|
|
2272
2311
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2273
2312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2274
2313
|
];
|
|
2275
2314
|
}).s("AmazonAppConfig", "DeleteEnvironment", {}).n("AppConfigClient", "DeleteEnvironmentCommand").f(void 0, void 0).ser(se_DeleteEnvironmentCommand).de(de_DeleteEnvironmentCommand).build() {
|
|
2315
|
+
static {
|
|
2316
|
+
__name(this, "DeleteEnvironmentCommand");
|
|
2317
|
+
}
|
|
2276
2318
|
};
|
|
2277
|
-
__name(_DeleteEnvironmentCommand, "DeleteEnvironmentCommand");
|
|
2278
|
-
var DeleteEnvironmentCommand = _DeleteEnvironmentCommand;
|
|
2279
2319
|
|
|
2280
2320
|
// src/commands/DeleteExtensionAssociationCommand.ts
|
|
2281
2321
|
|
|
2282
2322
|
|
|
2283
2323
|
|
|
2284
|
-
var
|
|
2324
|
+
var DeleteExtensionAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2285
2325
|
return [
|
|
2286
2326
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2287
2327
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2288
2328
|
];
|
|
2289
2329
|
}).s("AmazonAppConfig", "DeleteExtensionAssociation", {}).n("AppConfigClient", "DeleteExtensionAssociationCommand").f(void 0, void 0).ser(se_DeleteExtensionAssociationCommand).de(de_DeleteExtensionAssociationCommand).build() {
|
|
2330
|
+
static {
|
|
2331
|
+
__name(this, "DeleteExtensionAssociationCommand");
|
|
2332
|
+
}
|
|
2290
2333
|
};
|
|
2291
|
-
__name(_DeleteExtensionAssociationCommand, "DeleteExtensionAssociationCommand");
|
|
2292
|
-
var DeleteExtensionAssociationCommand = _DeleteExtensionAssociationCommand;
|
|
2293
2334
|
|
|
2294
2335
|
// src/commands/DeleteExtensionCommand.ts
|
|
2295
2336
|
|
|
2296
2337
|
|
|
2297
2338
|
|
|
2298
|
-
var
|
|
2339
|
+
var DeleteExtensionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2299
2340
|
return [
|
|
2300
2341
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2301
2342
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2302
2343
|
];
|
|
2303
2344
|
}).s("AmazonAppConfig", "DeleteExtension", {}).n("AppConfigClient", "DeleteExtensionCommand").f(void 0, void 0).ser(se_DeleteExtensionCommand).de(de_DeleteExtensionCommand).build() {
|
|
2345
|
+
static {
|
|
2346
|
+
__name(this, "DeleteExtensionCommand");
|
|
2347
|
+
}
|
|
2304
2348
|
};
|
|
2305
|
-
__name(_DeleteExtensionCommand, "DeleteExtensionCommand");
|
|
2306
|
-
var DeleteExtensionCommand = _DeleteExtensionCommand;
|
|
2307
2349
|
|
|
2308
2350
|
// src/commands/DeleteHostedConfigurationVersionCommand.ts
|
|
2309
2351
|
|
|
2310
2352
|
|
|
2311
2353
|
|
|
2312
|
-
var
|
|
2354
|
+
var DeleteHostedConfigurationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2313
2355
|
return [
|
|
2314
2356
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2315
2357
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2316
2358
|
];
|
|
2317
2359
|
}).s("AmazonAppConfig", "DeleteHostedConfigurationVersion", {}).n("AppConfigClient", "DeleteHostedConfigurationVersionCommand").f(void 0, void 0).ser(se_DeleteHostedConfigurationVersionCommand).de(de_DeleteHostedConfigurationVersionCommand).build() {
|
|
2360
|
+
static {
|
|
2361
|
+
__name(this, "DeleteHostedConfigurationVersionCommand");
|
|
2362
|
+
}
|
|
2318
2363
|
};
|
|
2319
|
-
__name(_DeleteHostedConfigurationVersionCommand, "DeleteHostedConfigurationVersionCommand");
|
|
2320
|
-
var DeleteHostedConfigurationVersionCommand = _DeleteHostedConfigurationVersionCommand;
|
|
2321
2364
|
|
|
2322
2365
|
// src/commands/GetAccountSettingsCommand.ts
|
|
2323
2366
|
|
|
2324
2367
|
|
|
2325
2368
|
|
|
2326
|
-
var
|
|
2369
|
+
var GetAccountSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2327
2370
|
return [
|
|
2328
2371
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2329
2372
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2330
2373
|
];
|
|
2331
2374
|
}).s("AmazonAppConfig", "GetAccountSettings", {}).n("AppConfigClient", "GetAccountSettingsCommand").f(void 0, void 0).ser(se_GetAccountSettingsCommand).de(de_GetAccountSettingsCommand).build() {
|
|
2375
|
+
static {
|
|
2376
|
+
__name(this, "GetAccountSettingsCommand");
|
|
2377
|
+
}
|
|
2332
2378
|
};
|
|
2333
|
-
__name(_GetAccountSettingsCommand, "GetAccountSettingsCommand");
|
|
2334
|
-
var GetAccountSettingsCommand = _GetAccountSettingsCommand;
|
|
2335
2379
|
|
|
2336
2380
|
// src/commands/GetApplicationCommand.ts
|
|
2337
2381
|
|
|
2338
2382
|
|
|
2339
2383
|
|
|
2340
|
-
var
|
|
2384
|
+
var GetApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2341
2385
|
return [
|
|
2342
2386
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2343
2387
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2344
2388
|
];
|
|
2345
2389
|
}).s("AmazonAppConfig", "GetApplication", {}).n("AppConfigClient", "GetApplicationCommand").f(void 0, void 0).ser(se_GetApplicationCommand).de(de_GetApplicationCommand).build() {
|
|
2390
|
+
static {
|
|
2391
|
+
__name(this, "GetApplicationCommand");
|
|
2392
|
+
}
|
|
2346
2393
|
};
|
|
2347
|
-
__name(_GetApplicationCommand, "GetApplicationCommand");
|
|
2348
|
-
var GetApplicationCommand = _GetApplicationCommand;
|
|
2349
2394
|
|
|
2350
2395
|
// src/commands/GetConfigurationCommand.ts
|
|
2351
2396
|
|
|
2352
2397
|
|
|
2353
2398
|
|
|
2354
|
-
var
|
|
2399
|
+
var GetConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2355
2400
|
return [
|
|
2356
2401
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2357
2402
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2358
2403
|
];
|
|
2359
2404
|
}).s("AmazonAppConfig", "GetConfiguration", {}).n("AppConfigClient", "GetConfigurationCommand").f(void 0, ConfigurationFilterSensitiveLog).ser(se_GetConfigurationCommand).de(de_GetConfigurationCommand).build() {
|
|
2405
|
+
static {
|
|
2406
|
+
__name(this, "GetConfigurationCommand");
|
|
2407
|
+
}
|
|
2360
2408
|
};
|
|
2361
|
-
__name(_GetConfigurationCommand, "GetConfigurationCommand");
|
|
2362
|
-
var GetConfigurationCommand = _GetConfigurationCommand;
|
|
2363
2409
|
|
|
2364
2410
|
// src/commands/GetConfigurationProfileCommand.ts
|
|
2365
2411
|
|
|
2366
2412
|
|
|
2367
2413
|
|
|
2368
|
-
var
|
|
2414
|
+
var GetConfigurationProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2369
2415
|
return [
|
|
2370
2416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2371
2417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2372
2418
|
];
|
|
2373
2419
|
}).s("AmazonAppConfig", "GetConfigurationProfile", {}).n("AppConfigClient", "GetConfigurationProfileCommand").f(void 0, ConfigurationProfileFilterSensitiveLog).ser(se_GetConfigurationProfileCommand).de(de_GetConfigurationProfileCommand).build() {
|
|
2420
|
+
static {
|
|
2421
|
+
__name(this, "GetConfigurationProfileCommand");
|
|
2422
|
+
}
|
|
2374
2423
|
};
|
|
2375
|
-
__name(_GetConfigurationProfileCommand, "GetConfigurationProfileCommand");
|
|
2376
|
-
var GetConfigurationProfileCommand = _GetConfigurationProfileCommand;
|
|
2377
2424
|
|
|
2378
2425
|
// src/commands/GetDeploymentCommand.ts
|
|
2379
2426
|
|
|
2380
2427
|
|
|
2381
2428
|
|
|
2382
|
-
var
|
|
2429
|
+
var GetDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2383
2430
|
return [
|
|
2384
2431
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2385
2432
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2386
2433
|
];
|
|
2387
2434
|
}).s("AmazonAppConfig", "GetDeployment", {}).n("AppConfigClient", "GetDeploymentCommand").f(void 0, void 0).ser(se_GetDeploymentCommand).de(de_GetDeploymentCommand).build() {
|
|
2435
|
+
static {
|
|
2436
|
+
__name(this, "GetDeploymentCommand");
|
|
2437
|
+
}
|
|
2388
2438
|
};
|
|
2389
|
-
__name(_GetDeploymentCommand, "GetDeploymentCommand");
|
|
2390
|
-
var GetDeploymentCommand = _GetDeploymentCommand;
|
|
2391
2439
|
|
|
2392
2440
|
// src/commands/GetDeploymentStrategyCommand.ts
|
|
2393
2441
|
|
|
2394
2442
|
|
|
2395
2443
|
|
|
2396
|
-
var
|
|
2444
|
+
var GetDeploymentStrategyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2397
2445
|
return [
|
|
2398
2446
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2399
2447
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2400
2448
|
];
|
|
2401
2449
|
}).s("AmazonAppConfig", "GetDeploymentStrategy", {}).n("AppConfigClient", "GetDeploymentStrategyCommand").f(void 0, void 0).ser(se_GetDeploymentStrategyCommand).de(de_GetDeploymentStrategyCommand).build() {
|
|
2450
|
+
static {
|
|
2451
|
+
__name(this, "GetDeploymentStrategyCommand");
|
|
2452
|
+
}
|
|
2402
2453
|
};
|
|
2403
|
-
__name(_GetDeploymentStrategyCommand, "GetDeploymentStrategyCommand");
|
|
2404
|
-
var GetDeploymentStrategyCommand = _GetDeploymentStrategyCommand;
|
|
2405
2454
|
|
|
2406
2455
|
// src/commands/GetEnvironmentCommand.ts
|
|
2407
2456
|
|
|
2408
2457
|
|
|
2409
2458
|
|
|
2410
|
-
var
|
|
2459
|
+
var GetEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2411
2460
|
return [
|
|
2412
2461
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2413
2462
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2414
2463
|
];
|
|
2415
2464
|
}).s("AmazonAppConfig", "GetEnvironment", {}).n("AppConfigClient", "GetEnvironmentCommand").f(void 0, void 0).ser(se_GetEnvironmentCommand).de(de_GetEnvironmentCommand).build() {
|
|
2465
|
+
static {
|
|
2466
|
+
__name(this, "GetEnvironmentCommand");
|
|
2467
|
+
}
|
|
2416
2468
|
};
|
|
2417
|
-
__name(_GetEnvironmentCommand, "GetEnvironmentCommand");
|
|
2418
|
-
var GetEnvironmentCommand = _GetEnvironmentCommand;
|
|
2419
2469
|
|
|
2420
2470
|
// src/commands/GetExtensionAssociationCommand.ts
|
|
2421
2471
|
|
|
2422
2472
|
|
|
2423
2473
|
|
|
2424
|
-
var
|
|
2474
|
+
var GetExtensionAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2425
2475
|
return [
|
|
2426
2476
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2427
2477
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2428
2478
|
];
|
|
2429
2479
|
}).s("AmazonAppConfig", "GetExtensionAssociation", {}).n("AppConfigClient", "GetExtensionAssociationCommand").f(void 0, void 0).ser(se_GetExtensionAssociationCommand).de(de_GetExtensionAssociationCommand).build() {
|
|
2480
|
+
static {
|
|
2481
|
+
__name(this, "GetExtensionAssociationCommand");
|
|
2482
|
+
}
|
|
2430
2483
|
};
|
|
2431
|
-
__name(_GetExtensionAssociationCommand, "GetExtensionAssociationCommand");
|
|
2432
|
-
var GetExtensionAssociationCommand = _GetExtensionAssociationCommand;
|
|
2433
2484
|
|
|
2434
2485
|
// src/commands/GetExtensionCommand.ts
|
|
2435
2486
|
|
|
2436
2487
|
|
|
2437
2488
|
|
|
2438
|
-
var
|
|
2489
|
+
var GetExtensionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2439
2490
|
return [
|
|
2440
2491
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2441
2492
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2442
2493
|
];
|
|
2443
2494
|
}).s("AmazonAppConfig", "GetExtension", {}).n("AppConfigClient", "GetExtensionCommand").f(void 0, void 0).ser(se_GetExtensionCommand).de(de_GetExtensionCommand).build() {
|
|
2495
|
+
static {
|
|
2496
|
+
__name(this, "GetExtensionCommand");
|
|
2497
|
+
}
|
|
2444
2498
|
};
|
|
2445
|
-
__name(_GetExtensionCommand, "GetExtensionCommand");
|
|
2446
|
-
var GetExtensionCommand = _GetExtensionCommand;
|
|
2447
2499
|
|
|
2448
2500
|
// src/commands/GetHostedConfigurationVersionCommand.ts
|
|
2449
2501
|
|
|
2450
2502
|
|
|
2451
2503
|
|
|
2452
|
-
var
|
|
2504
|
+
var GetHostedConfigurationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2453
2505
|
return [
|
|
2454
2506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2455
2507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2456
2508
|
];
|
|
2457
2509
|
}).s("AmazonAppConfig", "GetHostedConfigurationVersion", {}).n("AppConfigClient", "GetHostedConfigurationVersionCommand").f(void 0, HostedConfigurationVersionFilterSensitiveLog).ser(se_GetHostedConfigurationVersionCommand).de(de_GetHostedConfigurationVersionCommand).build() {
|
|
2510
|
+
static {
|
|
2511
|
+
__name(this, "GetHostedConfigurationVersionCommand");
|
|
2512
|
+
}
|
|
2458
2513
|
};
|
|
2459
|
-
__name(_GetHostedConfigurationVersionCommand, "GetHostedConfigurationVersionCommand");
|
|
2460
|
-
var GetHostedConfigurationVersionCommand = _GetHostedConfigurationVersionCommand;
|
|
2461
2514
|
|
|
2462
2515
|
// src/commands/ListApplicationsCommand.ts
|
|
2463
2516
|
|
|
2464
2517
|
|
|
2465
2518
|
|
|
2466
|
-
var
|
|
2519
|
+
var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2467
2520
|
return [
|
|
2468
2521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2469
2522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2470
2523
|
];
|
|
2471
2524
|
}).s("AmazonAppConfig", "ListApplications", {}).n("AppConfigClient", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
|
|
2525
|
+
static {
|
|
2526
|
+
__name(this, "ListApplicationsCommand");
|
|
2527
|
+
}
|
|
2472
2528
|
};
|
|
2473
|
-
__name(_ListApplicationsCommand, "ListApplicationsCommand");
|
|
2474
|
-
var ListApplicationsCommand = _ListApplicationsCommand;
|
|
2475
2529
|
|
|
2476
2530
|
// src/commands/ListConfigurationProfilesCommand.ts
|
|
2477
2531
|
|
|
2478
2532
|
|
|
2479
2533
|
|
|
2480
|
-
var
|
|
2534
|
+
var ListConfigurationProfilesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2481
2535
|
return [
|
|
2482
2536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2483
2537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2484
2538
|
];
|
|
2485
2539
|
}).s("AmazonAppConfig", "ListConfigurationProfiles", {}).n("AppConfigClient", "ListConfigurationProfilesCommand").f(void 0, void 0).ser(se_ListConfigurationProfilesCommand).de(de_ListConfigurationProfilesCommand).build() {
|
|
2540
|
+
static {
|
|
2541
|
+
__name(this, "ListConfigurationProfilesCommand");
|
|
2542
|
+
}
|
|
2486
2543
|
};
|
|
2487
|
-
__name(_ListConfigurationProfilesCommand, "ListConfigurationProfilesCommand");
|
|
2488
|
-
var ListConfigurationProfilesCommand = _ListConfigurationProfilesCommand;
|
|
2489
2544
|
|
|
2490
2545
|
// src/commands/ListDeploymentsCommand.ts
|
|
2491
2546
|
|
|
2492
2547
|
|
|
2493
2548
|
|
|
2494
|
-
var
|
|
2549
|
+
var ListDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2495
2550
|
return [
|
|
2496
2551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2497
2552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2498
2553
|
];
|
|
2499
2554
|
}).s("AmazonAppConfig", "ListDeployments", {}).n("AppConfigClient", "ListDeploymentsCommand").f(void 0, void 0).ser(se_ListDeploymentsCommand).de(de_ListDeploymentsCommand).build() {
|
|
2555
|
+
static {
|
|
2556
|
+
__name(this, "ListDeploymentsCommand");
|
|
2557
|
+
}
|
|
2500
2558
|
};
|
|
2501
|
-
__name(_ListDeploymentsCommand, "ListDeploymentsCommand");
|
|
2502
|
-
var ListDeploymentsCommand = _ListDeploymentsCommand;
|
|
2503
2559
|
|
|
2504
2560
|
// src/commands/ListDeploymentStrategiesCommand.ts
|
|
2505
2561
|
|
|
2506
2562
|
|
|
2507
2563
|
|
|
2508
|
-
var
|
|
2564
|
+
var ListDeploymentStrategiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2509
2565
|
return [
|
|
2510
2566
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2511
2567
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2512
2568
|
];
|
|
2513
2569
|
}).s("AmazonAppConfig", "ListDeploymentStrategies", {}).n("AppConfigClient", "ListDeploymentStrategiesCommand").f(void 0, void 0).ser(se_ListDeploymentStrategiesCommand).de(de_ListDeploymentStrategiesCommand).build() {
|
|
2570
|
+
static {
|
|
2571
|
+
__name(this, "ListDeploymentStrategiesCommand");
|
|
2572
|
+
}
|
|
2514
2573
|
};
|
|
2515
|
-
__name(_ListDeploymentStrategiesCommand, "ListDeploymentStrategiesCommand");
|
|
2516
|
-
var ListDeploymentStrategiesCommand = _ListDeploymentStrategiesCommand;
|
|
2517
2574
|
|
|
2518
2575
|
// src/commands/ListEnvironmentsCommand.ts
|
|
2519
2576
|
|
|
2520
2577
|
|
|
2521
2578
|
|
|
2522
|
-
var
|
|
2579
|
+
var ListEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2523
2580
|
return [
|
|
2524
2581
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2525
2582
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2526
2583
|
];
|
|
2527
2584
|
}).s("AmazonAppConfig", "ListEnvironments", {}).n("AppConfigClient", "ListEnvironmentsCommand").f(void 0, void 0).ser(se_ListEnvironmentsCommand).de(de_ListEnvironmentsCommand).build() {
|
|
2585
|
+
static {
|
|
2586
|
+
__name(this, "ListEnvironmentsCommand");
|
|
2587
|
+
}
|
|
2528
2588
|
};
|
|
2529
|
-
__name(_ListEnvironmentsCommand, "ListEnvironmentsCommand");
|
|
2530
|
-
var ListEnvironmentsCommand = _ListEnvironmentsCommand;
|
|
2531
2589
|
|
|
2532
2590
|
// src/commands/ListExtensionAssociationsCommand.ts
|
|
2533
2591
|
|
|
2534
2592
|
|
|
2535
2593
|
|
|
2536
|
-
var
|
|
2594
|
+
var ListExtensionAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2537
2595
|
return [
|
|
2538
2596
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2539
2597
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2540
2598
|
];
|
|
2541
2599
|
}).s("AmazonAppConfig", "ListExtensionAssociations", {}).n("AppConfigClient", "ListExtensionAssociationsCommand").f(void 0, void 0).ser(se_ListExtensionAssociationsCommand).de(de_ListExtensionAssociationsCommand).build() {
|
|
2600
|
+
static {
|
|
2601
|
+
__name(this, "ListExtensionAssociationsCommand");
|
|
2602
|
+
}
|
|
2542
2603
|
};
|
|
2543
|
-
__name(_ListExtensionAssociationsCommand, "ListExtensionAssociationsCommand");
|
|
2544
|
-
var ListExtensionAssociationsCommand = _ListExtensionAssociationsCommand;
|
|
2545
2604
|
|
|
2546
2605
|
// src/commands/ListExtensionsCommand.ts
|
|
2547
2606
|
|
|
2548
2607
|
|
|
2549
2608
|
|
|
2550
|
-
var
|
|
2609
|
+
var ListExtensionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2551
2610
|
return [
|
|
2552
2611
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2553
2612
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2554
2613
|
];
|
|
2555
2614
|
}).s("AmazonAppConfig", "ListExtensions", {}).n("AppConfigClient", "ListExtensionsCommand").f(void 0, void 0).ser(se_ListExtensionsCommand).de(de_ListExtensionsCommand).build() {
|
|
2615
|
+
static {
|
|
2616
|
+
__name(this, "ListExtensionsCommand");
|
|
2617
|
+
}
|
|
2556
2618
|
};
|
|
2557
|
-
__name(_ListExtensionsCommand, "ListExtensionsCommand");
|
|
2558
|
-
var ListExtensionsCommand = _ListExtensionsCommand;
|
|
2559
2619
|
|
|
2560
2620
|
// src/commands/ListHostedConfigurationVersionsCommand.ts
|
|
2561
2621
|
|
|
2562
2622
|
|
|
2563
2623
|
|
|
2564
|
-
var
|
|
2624
|
+
var ListHostedConfigurationVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2565
2625
|
return [
|
|
2566
2626
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2567
2627
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2568
2628
|
];
|
|
2569
2629
|
}).s("AmazonAppConfig", "ListHostedConfigurationVersions", {}).n("AppConfigClient", "ListHostedConfigurationVersionsCommand").f(void 0, void 0).ser(se_ListHostedConfigurationVersionsCommand).de(de_ListHostedConfigurationVersionsCommand).build() {
|
|
2630
|
+
static {
|
|
2631
|
+
__name(this, "ListHostedConfigurationVersionsCommand");
|
|
2632
|
+
}
|
|
2570
2633
|
};
|
|
2571
|
-
__name(_ListHostedConfigurationVersionsCommand, "ListHostedConfigurationVersionsCommand");
|
|
2572
|
-
var ListHostedConfigurationVersionsCommand = _ListHostedConfigurationVersionsCommand;
|
|
2573
2634
|
|
|
2574
2635
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2575
2636
|
|
|
2576
2637
|
|
|
2577
2638
|
|
|
2578
|
-
var
|
|
2639
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2579
2640
|
return [
|
|
2580
2641
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2581
2642
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2582
2643
|
];
|
|
2583
2644
|
}).s("AmazonAppConfig", "ListTagsForResource", {}).n("AppConfigClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2645
|
+
static {
|
|
2646
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2647
|
+
}
|
|
2584
2648
|
};
|
|
2585
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2586
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2587
2649
|
|
|
2588
2650
|
// src/commands/StartDeploymentCommand.ts
|
|
2589
2651
|
|
|
2590
2652
|
|
|
2591
2653
|
|
|
2592
|
-
var
|
|
2654
|
+
var StartDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2593
2655
|
return [
|
|
2594
2656
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2595
2657
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2596
2658
|
];
|
|
2597
2659
|
}).s("AmazonAppConfig", "StartDeployment", {}).n("AppConfigClient", "StartDeploymentCommand").f(void 0, void 0).ser(se_StartDeploymentCommand).de(de_StartDeploymentCommand).build() {
|
|
2660
|
+
static {
|
|
2661
|
+
__name(this, "StartDeploymentCommand");
|
|
2662
|
+
}
|
|
2598
2663
|
};
|
|
2599
|
-
__name(_StartDeploymentCommand, "StartDeploymentCommand");
|
|
2600
|
-
var StartDeploymentCommand = _StartDeploymentCommand;
|
|
2601
2664
|
|
|
2602
2665
|
// src/commands/StopDeploymentCommand.ts
|
|
2603
2666
|
|
|
2604
2667
|
|
|
2605
2668
|
|
|
2606
|
-
var
|
|
2669
|
+
var StopDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2607
2670
|
return [
|
|
2608
2671
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2609
2672
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2610
2673
|
];
|
|
2611
2674
|
}).s("AmazonAppConfig", "StopDeployment", {}).n("AppConfigClient", "StopDeploymentCommand").f(void 0, void 0).ser(se_StopDeploymentCommand).de(de_StopDeploymentCommand).build() {
|
|
2675
|
+
static {
|
|
2676
|
+
__name(this, "StopDeploymentCommand");
|
|
2677
|
+
}
|
|
2612
2678
|
};
|
|
2613
|
-
__name(_StopDeploymentCommand, "StopDeploymentCommand");
|
|
2614
|
-
var StopDeploymentCommand = _StopDeploymentCommand;
|
|
2615
2679
|
|
|
2616
2680
|
// src/commands/TagResourceCommand.ts
|
|
2617
2681
|
|
|
2618
2682
|
|
|
2619
2683
|
|
|
2620
|
-
var
|
|
2684
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2621
2685
|
return [
|
|
2622
2686
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2623
2687
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2624
2688
|
];
|
|
2625
2689
|
}).s("AmazonAppConfig", "TagResource", {}).n("AppConfigClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2690
|
+
static {
|
|
2691
|
+
__name(this, "TagResourceCommand");
|
|
2692
|
+
}
|
|
2626
2693
|
};
|
|
2627
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2628
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2629
2694
|
|
|
2630
2695
|
// src/commands/UntagResourceCommand.ts
|
|
2631
2696
|
|
|
2632
2697
|
|
|
2633
2698
|
|
|
2634
|
-
var
|
|
2699
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2635
2700
|
return [
|
|
2636
2701
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2637
2702
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2638
2703
|
];
|
|
2639
2704
|
}).s("AmazonAppConfig", "UntagResource", {}).n("AppConfigClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2705
|
+
static {
|
|
2706
|
+
__name(this, "UntagResourceCommand");
|
|
2707
|
+
}
|
|
2640
2708
|
};
|
|
2641
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2642
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2643
2709
|
|
|
2644
2710
|
// src/commands/UpdateAccountSettingsCommand.ts
|
|
2645
2711
|
|
|
2646
2712
|
|
|
2647
2713
|
|
|
2648
|
-
var
|
|
2714
|
+
var UpdateAccountSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2649
2715
|
return [
|
|
2650
2716
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2651
2717
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2652
2718
|
];
|
|
2653
2719
|
}).s("AmazonAppConfig", "UpdateAccountSettings", {}).n("AppConfigClient", "UpdateAccountSettingsCommand").f(void 0, void 0).ser(se_UpdateAccountSettingsCommand).de(de_UpdateAccountSettingsCommand).build() {
|
|
2720
|
+
static {
|
|
2721
|
+
__name(this, "UpdateAccountSettingsCommand");
|
|
2722
|
+
}
|
|
2654
2723
|
};
|
|
2655
|
-
__name(_UpdateAccountSettingsCommand, "UpdateAccountSettingsCommand");
|
|
2656
|
-
var UpdateAccountSettingsCommand = _UpdateAccountSettingsCommand;
|
|
2657
2724
|
|
|
2658
2725
|
// src/commands/UpdateApplicationCommand.ts
|
|
2659
2726
|
|
|
2660
2727
|
|
|
2661
2728
|
|
|
2662
|
-
var
|
|
2729
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2663
2730
|
return [
|
|
2664
2731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2665
2732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2666
2733
|
];
|
|
2667
2734
|
}).s("AmazonAppConfig", "UpdateApplication", {}).n("AppConfigClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
2735
|
+
static {
|
|
2736
|
+
__name(this, "UpdateApplicationCommand");
|
|
2737
|
+
}
|
|
2668
2738
|
};
|
|
2669
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
2670
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
2671
2739
|
|
|
2672
2740
|
// src/commands/UpdateConfigurationProfileCommand.ts
|
|
2673
2741
|
|
|
2674
2742
|
|
|
2675
2743
|
|
|
2676
|
-
var
|
|
2744
|
+
var UpdateConfigurationProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2677
2745
|
return [
|
|
2678
2746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2679
2747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2680
2748
|
];
|
|
2681
2749
|
}).s("AmazonAppConfig", "UpdateConfigurationProfile", {}).n("AppConfigClient", "UpdateConfigurationProfileCommand").f(UpdateConfigurationProfileRequestFilterSensitiveLog, ConfigurationProfileFilterSensitiveLog).ser(se_UpdateConfigurationProfileCommand).de(de_UpdateConfigurationProfileCommand).build() {
|
|
2750
|
+
static {
|
|
2751
|
+
__name(this, "UpdateConfigurationProfileCommand");
|
|
2752
|
+
}
|
|
2682
2753
|
};
|
|
2683
|
-
__name(_UpdateConfigurationProfileCommand, "UpdateConfigurationProfileCommand");
|
|
2684
|
-
var UpdateConfigurationProfileCommand = _UpdateConfigurationProfileCommand;
|
|
2685
2754
|
|
|
2686
2755
|
// src/commands/UpdateDeploymentStrategyCommand.ts
|
|
2687
2756
|
|
|
2688
2757
|
|
|
2689
2758
|
|
|
2690
|
-
var
|
|
2759
|
+
var UpdateDeploymentStrategyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2691
2760
|
return [
|
|
2692
2761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2693
2762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2694
2763
|
];
|
|
2695
2764
|
}).s("AmazonAppConfig", "UpdateDeploymentStrategy", {}).n("AppConfigClient", "UpdateDeploymentStrategyCommand").f(void 0, void 0).ser(se_UpdateDeploymentStrategyCommand).de(de_UpdateDeploymentStrategyCommand).build() {
|
|
2765
|
+
static {
|
|
2766
|
+
__name(this, "UpdateDeploymentStrategyCommand");
|
|
2767
|
+
}
|
|
2696
2768
|
};
|
|
2697
|
-
__name(_UpdateDeploymentStrategyCommand, "UpdateDeploymentStrategyCommand");
|
|
2698
|
-
var UpdateDeploymentStrategyCommand = _UpdateDeploymentStrategyCommand;
|
|
2699
2769
|
|
|
2700
2770
|
// src/commands/UpdateEnvironmentCommand.ts
|
|
2701
2771
|
|
|
2702
2772
|
|
|
2703
2773
|
|
|
2704
|
-
var
|
|
2774
|
+
var UpdateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2705
2775
|
return [
|
|
2706
2776
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2707
2777
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2708
2778
|
];
|
|
2709
2779
|
}).s("AmazonAppConfig", "UpdateEnvironment", {}).n("AppConfigClient", "UpdateEnvironmentCommand").f(void 0, void 0).ser(se_UpdateEnvironmentCommand).de(de_UpdateEnvironmentCommand).build() {
|
|
2780
|
+
static {
|
|
2781
|
+
__name(this, "UpdateEnvironmentCommand");
|
|
2782
|
+
}
|
|
2710
2783
|
};
|
|
2711
|
-
__name(_UpdateEnvironmentCommand, "UpdateEnvironmentCommand");
|
|
2712
|
-
var UpdateEnvironmentCommand = _UpdateEnvironmentCommand;
|
|
2713
2784
|
|
|
2714
2785
|
// src/commands/UpdateExtensionAssociationCommand.ts
|
|
2715
2786
|
|
|
2716
2787
|
|
|
2717
2788
|
|
|
2718
|
-
var
|
|
2789
|
+
var UpdateExtensionAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2719
2790
|
return [
|
|
2720
2791
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2721
2792
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2722
2793
|
];
|
|
2723
2794
|
}).s("AmazonAppConfig", "UpdateExtensionAssociation", {}).n("AppConfigClient", "UpdateExtensionAssociationCommand").f(void 0, void 0).ser(se_UpdateExtensionAssociationCommand).de(de_UpdateExtensionAssociationCommand).build() {
|
|
2795
|
+
static {
|
|
2796
|
+
__name(this, "UpdateExtensionAssociationCommand");
|
|
2797
|
+
}
|
|
2724
2798
|
};
|
|
2725
|
-
__name(_UpdateExtensionAssociationCommand, "UpdateExtensionAssociationCommand");
|
|
2726
|
-
var UpdateExtensionAssociationCommand = _UpdateExtensionAssociationCommand;
|
|
2727
2799
|
|
|
2728
2800
|
// src/commands/UpdateExtensionCommand.ts
|
|
2729
2801
|
|
|
2730
2802
|
|
|
2731
2803
|
|
|
2732
|
-
var
|
|
2804
|
+
var UpdateExtensionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2733
2805
|
return [
|
|
2734
2806
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2735
2807
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2736
2808
|
];
|
|
2737
2809
|
}).s("AmazonAppConfig", "UpdateExtension", {}).n("AppConfigClient", "UpdateExtensionCommand").f(void 0, void 0).ser(se_UpdateExtensionCommand).de(de_UpdateExtensionCommand).build() {
|
|
2810
|
+
static {
|
|
2811
|
+
__name(this, "UpdateExtensionCommand");
|
|
2812
|
+
}
|
|
2738
2813
|
};
|
|
2739
|
-
__name(_UpdateExtensionCommand, "UpdateExtensionCommand");
|
|
2740
|
-
var UpdateExtensionCommand = _UpdateExtensionCommand;
|
|
2741
2814
|
|
|
2742
2815
|
// src/commands/ValidateConfigurationCommand.ts
|
|
2743
2816
|
|
|
2744
2817
|
|
|
2745
2818
|
|
|
2746
|
-
var
|
|
2819
|
+
var ValidateConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2747
2820
|
return [
|
|
2748
2821
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2749
2822
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2750
2823
|
];
|
|
2751
2824
|
}).s("AmazonAppConfig", "ValidateConfiguration", {}).n("AppConfigClient", "ValidateConfigurationCommand").f(void 0, void 0).ser(se_ValidateConfigurationCommand).de(de_ValidateConfigurationCommand).build() {
|
|
2825
|
+
static {
|
|
2826
|
+
__name(this, "ValidateConfigurationCommand");
|
|
2827
|
+
}
|
|
2752
2828
|
};
|
|
2753
|
-
__name(_ValidateConfigurationCommand, "ValidateConfigurationCommand");
|
|
2754
|
-
var ValidateConfigurationCommand = _ValidateConfigurationCommand;
|
|
2755
2829
|
|
|
2756
2830
|
// src/AppConfig.ts
|
|
2757
2831
|
var commands = {
|
|
@@ -2801,10 +2875,11 @@ var commands = {
|
|
|
2801
2875
|
UpdateExtensionAssociationCommand,
|
|
2802
2876
|
ValidateConfigurationCommand
|
|
2803
2877
|
};
|
|
2804
|
-
var
|
|
2878
|
+
var AppConfig = class extends AppConfigClient {
|
|
2879
|
+
static {
|
|
2880
|
+
__name(this, "AppConfig");
|
|
2881
|
+
}
|
|
2805
2882
|
};
|
|
2806
|
-
__name(_AppConfig, "AppConfig");
|
|
2807
|
-
var AppConfig = _AppConfig;
|
|
2808
2883
|
(0, import_smithy_client.createAggregatedClient)(commands, AppConfig);
|
|
2809
2884
|
|
|
2810
2885
|
// src/pagination/ListApplicationsPaginator.ts
|