@aws-sdk/client-appconfig 3.928.0 → 3.930.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 +1704 -1961
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppConfigClient.js +2 -0
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateConfigurationProfileCommand.js +3 -10
- package/dist-es/commands/CreateDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -9
- package/dist-es/commands/CreateExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/CreateExtensionCommand.js +3 -9
- package/dist-es/commands/CreateHostedConfigurationVersionCommand.js +3 -10
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteConfigurationProfileCommand.js +3 -9
- package/dist-es/commands/DeleteDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/DeleteExtensionCommand.js +3 -9
- package/dist-es/commands/DeleteHostedConfigurationVersionCommand.js +3 -9
- package/dist-es/commands/GetAccountSettingsCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetConfigurationCommand.js +3 -10
- package/dist-es/commands/GetConfigurationProfileCommand.js +3 -10
- package/dist-es/commands/GetDeploymentCommand.js +3 -9
- package/dist-es/commands/GetDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/GetEnvironmentCommand.js +3 -9
- package/dist-es/commands/GetExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/GetExtensionCommand.js +3 -9
- package/dist-es/commands/GetHostedConfigurationVersionCommand.js +3 -10
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationProfilesCommand.js +3 -9
- package/dist-es/commands/ListDeploymentStrategiesCommand.js +3 -9
- package/dist-es/commands/ListDeploymentsCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -9
- package/dist-es/commands/ListExtensionAssociationsCommand.js +3 -9
- package/dist-es/commands/ListExtensionsCommand.js +3 -9
- package/dist-es/commands/ListHostedConfigurationVersionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartDeploymentCommand.js +3 -10
- package/dist-es/commands/StopDeploymentCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAccountSettingsCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateConfigurationProfileCommand.js +3 -10
- package/dist-es/commands/UpdateDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -9
- package/dist-es/commands/UpdateExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/UpdateExtensionCommand.js +3 -9
- package/dist-es/commands/ValidateConfigurationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -41
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1632 -0
- package/dist-types/AppConfigClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -33
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -23
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +163 -0
- package/package.json +35 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -1615
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -407
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -545
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
19
|
|
|
21
20
|
const resolveClientEndpointParameters = (options) => {
|
|
@@ -92,6 +91,7 @@ class AppConfigClient extends smithyClient.Client {
|
|
|
92
91
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
93
|
this.config = _config_8;
|
|
94
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
97
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,12 +111,12 @@ class AppConfigClient extends smithyClient.Client {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
class AppConfigServiceException extends smithyClient.ServiceException {
|
|
114
|
+
let AppConfigServiceException$1 = class AppConfigServiceException extends smithyClient.ServiceException {
|
|
115
115
|
constructor(options) {
|
|
116
116
|
super(options);
|
|
117
117
|
Object.setPrototypeOf(this, AppConfigServiceException.prototype);
|
|
118
118
|
}
|
|
119
|
-
}
|
|
119
|
+
};
|
|
120
120
|
|
|
121
121
|
const ActionPoint = {
|
|
122
122
|
AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK",
|
|
@@ -128,18 +128,10 @@ const ActionPoint = {
|
|
|
128
128
|
PRE_CREATE_HOSTED_CONFIGURATION_VERSION: "PRE_CREATE_HOSTED_CONFIGURATION_VERSION",
|
|
129
129
|
PRE_START_DEPLOYMENT: "PRE_START_DEPLOYMENT",
|
|
130
130
|
};
|
|
131
|
-
exports.BadRequestDetails = void 0;
|
|
132
|
-
(function (BadRequestDetails) {
|
|
133
|
-
BadRequestDetails.visit = (value, visitor) => {
|
|
134
|
-
if (value.InvalidConfiguration !== undefined)
|
|
135
|
-
return visitor.InvalidConfiguration(value.InvalidConfiguration);
|
|
136
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
137
|
-
};
|
|
138
|
-
})(exports.BadRequestDetails || (exports.BadRequestDetails = {}));
|
|
139
131
|
const BadRequestReason = {
|
|
140
132
|
INVALID_CONFIGURATION: "InvalidConfiguration",
|
|
141
133
|
};
|
|
142
|
-
class BadRequestException extends AppConfigServiceException {
|
|
134
|
+
let BadRequestException$1 = class BadRequestException extends AppConfigServiceException$1 {
|
|
143
135
|
name = "BadRequestException";
|
|
144
136
|
$fault = "client";
|
|
145
137
|
Message;
|
|
@@ -156,8 +148,8 @@ class BadRequestException extends AppConfigServiceException {
|
|
|
156
148
|
this.Reason = opts.Reason;
|
|
157
149
|
this.Details = opts.Details;
|
|
158
150
|
}
|
|
159
|
-
}
|
|
160
|
-
class InternalServerException extends AppConfigServiceException {
|
|
151
|
+
};
|
|
152
|
+
let InternalServerException$1 = class InternalServerException extends AppConfigServiceException$1 {
|
|
161
153
|
name = "InternalServerException";
|
|
162
154
|
$fault = "server";
|
|
163
155
|
Message;
|
|
@@ -170,8 +162,8 @@ class InternalServerException extends AppConfigServiceException {
|
|
|
170
162
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
171
163
|
this.Message = opts.Message;
|
|
172
164
|
}
|
|
173
|
-
}
|
|
174
|
-
class ServiceQuotaExceededException extends AppConfigServiceException {
|
|
165
|
+
};
|
|
166
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends AppConfigServiceException$1 {
|
|
175
167
|
name = "ServiceQuotaExceededException";
|
|
176
168
|
$fault = "client";
|
|
177
169
|
Message;
|
|
@@ -184,12 +176,12 @@ class ServiceQuotaExceededException extends AppConfigServiceException {
|
|
|
184
176
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
185
177
|
this.Message = opts.Message;
|
|
186
178
|
}
|
|
187
|
-
}
|
|
179
|
+
};
|
|
188
180
|
const ValidatorType = {
|
|
189
181
|
JSON_SCHEMA: "JSON_SCHEMA",
|
|
190
182
|
LAMBDA: "LAMBDA",
|
|
191
183
|
};
|
|
192
|
-
class ResourceNotFoundException extends AppConfigServiceException {
|
|
184
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppConfigServiceException$1 {
|
|
193
185
|
name = "ResourceNotFoundException";
|
|
194
186
|
$fault = "client";
|
|
195
187
|
Message;
|
|
@@ -204,7 +196,7 @@ class ResourceNotFoundException extends AppConfigServiceException {
|
|
|
204
196
|
this.Message = opts.Message;
|
|
205
197
|
this.ResourceName = opts.ResourceName;
|
|
206
198
|
}
|
|
207
|
-
}
|
|
199
|
+
};
|
|
208
200
|
const GrowthType = {
|
|
209
201
|
EXPONENTIAL: "EXPONENTIAL",
|
|
210
202
|
LINEAR: "LINEAR",
|
|
@@ -220,7 +212,7 @@ const EnvironmentState = {
|
|
|
220
212
|
ROLLED_BACK: "ROLLED_BACK",
|
|
221
213
|
ROLLING_BACK: "ROLLING_BACK",
|
|
222
214
|
};
|
|
223
|
-
class ConflictException extends AppConfigServiceException {
|
|
215
|
+
let ConflictException$1 = class ConflictException extends AppConfigServiceException$1 {
|
|
224
216
|
name = "ConflictException";
|
|
225
217
|
$fault = "client";
|
|
226
218
|
Message;
|
|
@@ -233,11 +225,11 @@ class ConflictException extends AppConfigServiceException {
|
|
|
233
225
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
234
226
|
this.Message = opts.Message;
|
|
235
227
|
}
|
|
236
|
-
}
|
|
228
|
+
};
|
|
237
229
|
const BytesMeasure = {
|
|
238
230
|
KILOBYTES: "KILOBYTES",
|
|
239
231
|
};
|
|
240
|
-
class PayloadTooLargeException extends AppConfigServiceException {
|
|
232
|
+
let PayloadTooLargeException$1 = class PayloadTooLargeException extends AppConfigServiceException$1 {
|
|
241
233
|
name = "PayloadTooLargeException";
|
|
242
234
|
$fault = "client";
|
|
243
235
|
Message;
|
|
@@ -256,7 +248,7 @@ class PayloadTooLargeException extends AppConfigServiceException {
|
|
|
256
248
|
this.Limit = opts.Limit;
|
|
257
249
|
this.Size = opts.Size;
|
|
258
250
|
}
|
|
259
|
-
}
|
|
251
|
+
};
|
|
260
252
|
const DeletionProtectionCheck = {
|
|
261
253
|
ACCOUNT_DEFAULT: "ACCOUNT_DEFAULT",
|
|
262
254
|
APPLY: "APPLY",
|
|
@@ -286,1663 +278,1642 @@ const DeploymentState = {
|
|
|
286
278
|
ROLLING_BACK: "ROLLING_BACK",
|
|
287
279
|
VALIDATING: "VALIDATING",
|
|
288
280
|
};
|
|
289
|
-
const ValidatorFilterSensitiveLog = (obj) => ({
|
|
290
|
-
...obj,
|
|
291
|
-
...(obj.Content && { Content: smithyClient.SENSITIVE_STRING }),
|
|
292
|
-
});
|
|
293
|
-
const ConfigurationProfileFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
...(obj.Validators && { Validators: obj.Validators.map((item) => ValidatorFilterSensitiveLog(item)) }),
|
|
296
|
-
});
|
|
297
|
-
const CreateConfigurationProfileRequestFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
...(obj.Validators && { Validators: obj.Validators.map((item) => ValidatorFilterSensitiveLog(item)) }),
|
|
300
|
-
});
|
|
301
|
-
const CreateHostedConfigurationVersionRequestFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
...(obj.Content && { Content: smithyClient.SENSITIVE_STRING }),
|
|
304
|
-
});
|
|
305
|
-
const HostedConfigurationVersionFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
...(obj.Content && { Content: smithyClient.SENSITIVE_STRING }),
|
|
308
|
-
});
|
|
309
|
-
const ConfigurationFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
...(obj.Content && { Content: smithyClient.SENSITIVE_STRING }),
|
|
312
|
-
});
|
|
313
|
-
const StartDeploymentRequestFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
...(obj.DynamicExtensionParameters && { DynamicExtensionParameters: smithyClient.SENSITIVE_STRING }),
|
|
316
|
-
});
|
|
317
|
-
const UpdateConfigurationProfileRequestFilterSensitiveLog = (obj) => ({
|
|
318
|
-
...obj,
|
|
319
|
-
...(obj.Validators && { Validators: obj.Validators.map((item) => ValidatorFilterSensitiveLog(item)) }),
|
|
320
|
-
});
|
|
321
281
|
|
|
322
|
-
const
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
b.m("POST").h(headers).b(body);
|
|
335
|
-
return b.build();
|
|
336
|
-
};
|
|
337
|
-
const se_CreateConfigurationProfileCommand = async (input, context) => {
|
|
338
|
-
const b = core.requestBuilder(input, context);
|
|
339
|
-
const headers = {
|
|
340
|
-
"content-type": "application/json",
|
|
341
|
-
};
|
|
342
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles");
|
|
343
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
344
|
-
let body;
|
|
345
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
346
|
-
Description: [],
|
|
347
|
-
KmsKeyIdentifier: [],
|
|
348
|
-
LocationUri: [],
|
|
349
|
-
Name: [],
|
|
350
|
-
RetrievalRoleArn: [],
|
|
351
|
-
Tags: (_) => smithyClient._json(_),
|
|
352
|
-
Type: [],
|
|
353
|
-
Validators: (_) => smithyClient._json(_),
|
|
354
|
-
}));
|
|
355
|
-
b.m("POST").h(headers).b(body);
|
|
356
|
-
return b.build();
|
|
357
|
-
};
|
|
358
|
-
const se_CreateDeploymentStrategyCommand = async (input, context) => {
|
|
359
|
-
const b = core.requestBuilder(input, context);
|
|
360
|
-
const headers = {
|
|
361
|
-
"content-type": "application/json",
|
|
362
|
-
};
|
|
363
|
-
b.bp("/deploymentstrategies");
|
|
364
|
-
let body;
|
|
365
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
366
|
-
DeploymentDurationInMinutes: [],
|
|
367
|
-
Description: [],
|
|
368
|
-
FinalBakeTimeInMinutes: [],
|
|
369
|
-
GrowthFactor: (_) => smithyClient.serializeFloat(_),
|
|
370
|
-
GrowthType: [],
|
|
371
|
-
Name: [],
|
|
372
|
-
ReplicateTo: [],
|
|
373
|
-
Tags: (_) => smithyClient._json(_),
|
|
374
|
-
}));
|
|
375
|
-
b.m("POST").h(headers).b(body);
|
|
376
|
-
return b.build();
|
|
377
|
-
};
|
|
378
|
-
const se_CreateEnvironmentCommand = async (input, context) => {
|
|
379
|
-
const b = core.requestBuilder(input, context);
|
|
380
|
-
const headers = {
|
|
381
|
-
"content-type": "application/json",
|
|
382
|
-
};
|
|
383
|
-
b.bp("/applications/{ApplicationId}/environments");
|
|
384
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
385
|
-
let body;
|
|
386
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
387
|
-
Description: [],
|
|
388
|
-
Monitors: (_) => smithyClient._json(_),
|
|
389
|
-
Name: [],
|
|
390
|
-
Tags: (_) => smithyClient._json(_),
|
|
391
|
-
}));
|
|
392
|
-
b.m("POST").h(headers).b(body);
|
|
393
|
-
return b.build();
|
|
394
|
-
};
|
|
395
|
-
const se_CreateExtensionCommand = async (input, context) => {
|
|
396
|
-
const b = core.requestBuilder(input, context);
|
|
397
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
398
|
-
"content-type": "application/json",
|
|
399
|
-
[_lvn]: [() => smithyClient.isSerializableHeaderValue(input[_LVN]), () => input[_LVN].toString()],
|
|
400
|
-
});
|
|
401
|
-
b.bp("/extensions");
|
|
402
|
-
let body;
|
|
403
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
404
|
-
Actions: (_) => smithyClient._json(_),
|
|
405
|
-
Description: [],
|
|
406
|
-
Name: [],
|
|
407
|
-
Parameters: (_) => smithyClient._json(_),
|
|
408
|
-
Tags: (_) => smithyClient._json(_),
|
|
409
|
-
}));
|
|
410
|
-
b.m("POST").h(headers).b(body);
|
|
411
|
-
return b.build();
|
|
412
|
-
};
|
|
413
|
-
const se_CreateExtensionAssociationCommand = async (input, context) => {
|
|
414
|
-
const b = core.requestBuilder(input, context);
|
|
415
|
-
const headers = {
|
|
416
|
-
"content-type": "application/json",
|
|
417
|
-
};
|
|
418
|
-
b.bp("/extensionassociations");
|
|
419
|
-
let body;
|
|
420
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
421
|
-
ExtensionIdentifier: [],
|
|
422
|
-
ExtensionVersionNumber: [],
|
|
423
|
-
Parameters: (_) => smithyClient._json(_),
|
|
424
|
-
ResourceIdentifier: [],
|
|
425
|
-
Tags: (_) => smithyClient._json(_),
|
|
426
|
-
}));
|
|
427
|
-
b.m("POST").h(headers).b(body);
|
|
428
|
-
return b.build();
|
|
429
|
-
};
|
|
430
|
-
const se_CreateHostedConfigurationVersionCommand = async (input, context) => {
|
|
431
|
-
const b = core.requestBuilder(input, context);
|
|
432
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
433
|
-
[_ct]: input[_CT] || "application/octet-stream",
|
|
434
|
-
[_d]: input[_D],
|
|
435
|
-
[_lvn]: [() => smithyClient.isSerializableHeaderValue(input[_LVN]), () => input[_LVN].toString()],
|
|
436
|
-
[_v]: input[_VL],
|
|
437
|
-
});
|
|
438
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions");
|
|
439
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
440
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
441
|
-
let body;
|
|
442
|
-
if (input.Content !== undefined) {
|
|
443
|
-
body = input.Content;
|
|
444
|
-
}
|
|
445
|
-
b.m("POST").h(headers).b(body);
|
|
446
|
-
return b.build();
|
|
447
|
-
};
|
|
448
|
-
const se_DeleteApplicationCommand = async (input, context) => {
|
|
449
|
-
const b = core.requestBuilder(input, context);
|
|
450
|
-
const headers = {};
|
|
451
|
-
b.bp("/applications/{ApplicationId}");
|
|
452
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
453
|
-
let body;
|
|
454
|
-
b.m("DELETE").h(headers).b(body);
|
|
455
|
-
return b.build();
|
|
456
|
-
};
|
|
457
|
-
const se_DeleteConfigurationProfileCommand = async (input, context) => {
|
|
458
|
-
const b = core.requestBuilder(input, context);
|
|
459
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
460
|
-
[_xadpc]: input[_DPC],
|
|
461
|
-
});
|
|
462
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}");
|
|
463
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
464
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
465
|
-
let body;
|
|
466
|
-
b.m("DELETE").h(headers).b(body);
|
|
467
|
-
return b.build();
|
|
468
|
-
};
|
|
469
|
-
const se_DeleteDeploymentStrategyCommand = async (input, context) => {
|
|
470
|
-
const b = core.requestBuilder(input, context);
|
|
471
|
-
const headers = {};
|
|
472
|
-
b.bp("/deployementstrategies/{DeploymentStrategyId}");
|
|
473
|
-
b.p("DeploymentStrategyId", () => input.DeploymentStrategyId, "{DeploymentStrategyId}", false);
|
|
474
|
-
let body;
|
|
475
|
-
b.m("DELETE").h(headers).b(body);
|
|
476
|
-
return b.build();
|
|
477
|
-
};
|
|
478
|
-
const se_DeleteEnvironmentCommand = async (input, context) => {
|
|
479
|
-
const b = core.requestBuilder(input, context);
|
|
480
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
481
|
-
[_xadpc]: input[_DPC],
|
|
482
|
-
});
|
|
483
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}");
|
|
484
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
485
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
486
|
-
let body;
|
|
487
|
-
b.m("DELETE").h(headers).b(body);
|
|
488
|
-
return b.build();
|
|
489
|
-
};
|
|
490
|
-
const se_DeleteExtensionCommand = async (input, context) => {
|
|
491
|
-
const b = core.requestBuilder(input, context);
|
|
492
|
-
const headers = {};
|
|
493
|
-
b.bp("/extensions/{ExtensionIdentifier}");
|
|
494
|
-
b.p("ExtensionIdentifier", () => input.ExtensionIdentifier, "{ExtensionIdentifier}", false);
|
|
495
|
-
const query = smithyClient.map({
|
|
496
|
-
[_ve]: [() => input.VersionNumber !== void 0, () => input[_VN].toString()],
|
|
497
|
-
});
|
|
498
|
-
let body;
|
|
499
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
500
|
-
return b.build();
|
|
501
|
-
};
|
|
502
|
-
const se_DeleteExtensionAssociationCommand = async (input, context) => {
|
|
503
|
-
const b = core.requestBuilder(input, context);
|
|
504
|
-
const headers = {};
|
|
505
|
-
b.bp("/extensionassociations/{ExtensionAssociationId}");
|
|
506
|
-
b.p("ExtensionAssociationId", () => input.ExtensionAssociationId, "{ExtensionAssociationId}", false);
|
|
507
|
-
let body;
|
|
508
|
-
b.m("DELETE").h(headers).b(body);
|
|
509
|
-
return b.build();
|
|
510
|
-
};
|
|
511
|
-
const se_DeleteHostedConfigurationVersionCommand = async (input, context) => {
|
|
512
|
-
const b = core.requestBuilder(input, context);
|
|
513
|
-
const headers = {};
|
|
514
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}");
|
|
515
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
516
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
517
|
-
b.p("VersionNumber", () => input.VersionNumber.toString(), "{VersionNumber}", false);
|
|
518
|
-
let body;
|
|
519
|
-
b.m("DELETE").h(headers).b(body);
|
|
520
|
-
return b.build();
|
|
521
|
-
};
|
|
522
|
-
const se_GetAccountSettingsCommand = async (input, context) => {
|
|
523
|
-
const b = core.requestBuilder(input, context);
|
|
524
|
-
const headers = {};
|
|
525
|
-
b.bp("/settings");
|
|
526
|
-
let body;
|
|
527
|
-
b.m("GET").h(headers).b(body);
|
|
528
|
-
return b.build();
|
|
529
|
-
};
|
|
530
|
-
const se_GetApplicationCommand = async (input, context) => {
|
|
531
|
-
const b = core.requestBuilder(input, context);
|
|
532
|
-
const headers = {};
|
|
533
|
-
b.bp("/applications/{ApplicationId}");
|
|
534
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
535
|
-
let body;
|
|
536
|
-
b.m("GET").h(headers).b(body);
|
|
537
|
-
return b.build();
|
|
538
|
-
};
|
|
539
|
-
const se_GetConfigurationCommand = async (input, context) => {
|
|
540
|
-
const b = core.requestBuilder(input, context);
|
|
541
|
-
const headers = {};
|
|
542
|
-
b.bp("/applications/{Application}/environments/{Environment}/configurations/{Configuration}");
|
|
543
|
-
b.p("Application", () => input.Application, "{Application}", false);
|
|
544
|
-
b.p("Environment", () => input.Environment, "{Environment}", false);
|
|
545
|
-
b.p("Configuration", () => input.Configuration, "{Configuration}", false);
|
|
546
|
-
const query = smithyClient.map({
|
|
547
|
-
[_ci]: [, smithyClient.expectNonNull(input[_CI], `ClientId`)],
|
|
548
|
-
[_ccv]: [, input[_CCV]],
|
|
549
|
-
});
|
|
550
|
-
let body;
|
|
551
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
552
|
-
return b.build();
|
|
553
|
-
};
|
|
554
|
-
const se_GetConfigurationProfileCommand = async (input, context) => {
|
|
555
|
-
const b = core.requestBuilder(input, context);
|
|
556
|
-
const headers = {};
|
|
557
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}");
|
|
558
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
559
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
560
|
-
let body;
|
|
561
|
-
b.m("GET").h(headers).b(body);
|
|
562
|
-
return b.build();
|
|
563
|
-
};
|
|
564
|
-
const se_GetDeploymentCommand = async (input, context) => {
|
|
565
|
-
const b = core.requestBuilder(input, context);
|
|
566
|
-
const headers = {};
|
|
567
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}");
|
|
568
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
569
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
570
|
-
b.p("DeploymentNumber", () => input.DeploymentNumber.toString(), "{DeploymentNumber}", false);
|
|
571
|
-
let body;
|
|
572
|
-
b.m("GET").h(headers).b(body);
|
|
573
|
-
return b.build();
|
|
574
|
-
};
|
|
575
|
-
const se_GetDeploymentStrategyCommand = async (input, context) => {
|
|
576
|
-
const b = core.requestBuilder(input, context);
|
|
577
|
-
const headers = {};
|
|
578
|
-
b.bp("/deploymentstrategies/{DeploymentStrategyId}");
|
|
579
|
-
b.p("DeploymentStrategyId", () => input.DeploymentStrategyId, "{DeploymentStrategyId}", false);
|
|
580
|
-
let body;
|
|
581
|
-
b.m("GET").h(headers).b(body);
|
|
582
|
-
return b.build();
|
|
583
|
-
};
|
|
584
|
-
const se_GetEnvironmentCommand = async (input, context) => {
|
|
585
|
-
const b = core.requestBuilder(input, context);
|
|
586
|
-
const headers = {};
|
|
587
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}");
|
|
588
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
589
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
590
|
-
let body;
|
|
591
|
-
b.m("GET").h(headers).b(body);
|
|
592
|
-
return b.build();
|
|
593
|
-
};
|
|
594
|
-
const se_GetExtensionCommand = async (input, context) => {
|
|
595
|
-
const b = core.requestBuilder(input, context);
|
|
596
|
-
const headers = {};
|
|
597
|
-
b.bp("/extensions/{ExtensionIdentifier}");
|
|
598
|
-
b.p("ExtensionIdentifier", () => input.ExtensionIdentifier, "{ExtensionIdentifier}", false);
|
|
599
|
-
const query = smithyClient.map({
|
|
600
|
-
[_vn]: [() => input.VersionNumber !== void 0, () => input[_VN].toString()],
|
|
601
|
-
});
|
|
602
|
-
let body;
|
|
603
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
604
|
-
return b.build();
|
|
605
|
-
};
|
|
606
|
-
const se_GetExtensionAssociationCommand = async (input, context) => {
|
|
607
|
-
const b = core.requestBuilder(input, context);
|
|
608
|
-
const headers = {};
|
|
609
|
-
b.bp("/extensionassociations/{ExtensionAssociationId}");
|
|
610
|
-
b.p("ExtensionAssociationId", () => input.ExtensionAssociationId, "{ExtensionAssociationId}", false);
|
|
611
|
-
let body;
|
|
612
|
-
b.m("GET").h(headers).b(body);
|
|
613
|
-
return b.build();
|
|
614
|
-
};
|
|
615
|
-
const se_GetHostedConfigurationVersionCommand = async (input, context) => {
|
|
616
|
-
const b = core.requestBuilder(input, context);
|
|
617
|
-
const headers = {};
|
|
618
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}");
|
|
619
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
620
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
621
|
-
b.p("VersionNumber", () => input.VersionNumber.toString(), "{VersionNumber}", false);
|
|
622
|
-
let body;
|
|
623
|
-
b.m("GET").h(headers).b(body);
|
|
624
|
-
return b.build();
|
|
625
|
-
};
|
|
626
|
-
const se_ListApplicationsCommand = async (input, context) => {
|
|
627
|
-
const b = core.requestBuilder(input, context);
|
|
628
|
-
const headers = {};
|
|
629
|
-
b.bp("/applications");
|
|
630
|
-
const query = smithyClient.map({
|
|
631
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
632
|
-
[_nt]: [, input[_NT]],
|
|
633
|
-
});
|
|
634
|
-
let body;
|
|
635
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
636
|
-
return b.build();
|
|
637
|
-
};
|
|
638
|
-
const se_ListConfigurationProfilesCommand = async (input, context) => {
|
|
639
|
-
const b = core.requestBuilder(input, context);
|
|
640
|
-
const headers = {};
|
|
641
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles");
|
|
642
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
643
|
-
const query = smithyClient.map({
|
|
644
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
645
|
-
[_nt]: [, input[_NT]],
|
|
646
|
-
[_t]: [, input[_T]],
|
|
647
|
-
});
|
|
648
|
-
let body;
|
|
649
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
650
|
-
return b.build();
|
|
651
|
-
};
|
|
652
|
-
const se_ListDeploymentsCommand = async (input, context) => {
|
|
653
|
-
const b = core.requestBuilder(input, context);
|
|
654
|
-
const headers = {};
|
|
655
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}/deployments");
|
|
656
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
657
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
658
|
-
const query = smithyClient.map({
|
|
659
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
660
|
-
[_nt]: [, input[_NT]],
|
|
661
|
-
});
|
|
662
|
-
let body;
|
|
663
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
664
|
-
return b.build();
|
|
665
|
-
};
|
|
666
|
-
const se_ListDeploymentStrategiesCommand = async (input, context) => {
|
|
667
|
-
const b = core.requestBuilder(input, context);
|
|
668
|
-
const headers = {};
|
|
669
|
-
b.bp("/deploymentstrategies");
|
|
670
|
-
const query = smithyClient.map({
|
|
671
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
672
|
-
[_nt]: [, input[_NT]],
|
|
673
|
-
});
|
|
674
|
-
let body;
|
|
675
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
676
|
-
return b.build();
|
|
677
|
-
};
|
|
678
|
-
const se_ListEnvironmentsCommand = async (input, context) => {
|
|
679
|
-
const b = core.requestBuilder(input, context);
|
|
680
|
-
const headers = {};
|
|
681
|
-
b.bp("/applications/{ApplicationId}/environments");
|
|
682
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
683
|
-
const query = smithyClient.map({
|
|
684
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
685
|
-
[_nt]: [, input[_NT]],
|
|
686
|
-
});
|
|
687
|
-
let body;
|
|
688
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
689
|
-
return b.build();
|
|
690
|
-
};
|
|
691
|
-
const se_ListExtensionAssociationsCommand = async (input, context) => {
|
|
692
|
-
const b = core.requestBuilder(input, context);
|
|
693
|
-
const headers = {};
|
|
694
|
-
b.bp("/extensionassociations");
|
|
695
|
-
const query = smithyClient.map({
|
|
696
|
-
[_ri]: [, input[_RI]],
|
|
697
|
-
[_ei]: [, input[_EI]],
|
|
698
|
-
[_evn]: [() => input.ExtensionVersionNumber !== void 0, () => input[_EVN].toString()],
|
|
699
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
700
|
-
[_nt]: [, input[_NT]],
|
|
701
|
-
});
|
|
702
|
-
let body;
|
|
703
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
704
|
-
return b.build();
|
|
705
|
-
};
|
|
706
|
-
const se_ListExtensionsCommand = async (input, context) => {
|
|
707
|
-
const b = core.requestBuilder(input, context);
|
|
708
|
-
const headers = {};
|
|
709
|
-
b.bp("/extensions");
|
|
710
|
-
const query = smithyClient.map({
|
|
711
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
712
|
-
[_nt]: [, input[_NT]],
|
|
713
|
-
[_n]: [, input[_N]],
|
|
714
|
-
});
|
|
715
|
-
let body;
|
|
716
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
717
|
-
return b.build();
|
|
718
|
-
};
|
|
719
|
-
const se_ListHostedConfigurationVersionsCommand = async (input, context) => {
|
|
720
|
-
const b = core.requestBuilder(input, context);
|
|
721
|
-
const headers = {};
|
|
722
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions");
|
|
723
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
724
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
725
|
-
const query = smithyClient.map({
|
|
726
|
-
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
727
|
-
[_nt]: [, input[_NT]],
|
|
728
|
-
[_vl]: [, input[_VL]],
|
|
729
|
-
});
|
|
730
|
-
let body;
|
|
731
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
732
|
-
return b.build();
|
|
733
|
-
};
|
|
734
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
735
|
-
const b = core.requestBuilder(input, context);
|
|
736
|
-
const headers = {};
|
|
737
|
-
b.bp("/tags/{ResourceArn}");
|
|
738
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
739
|
-
let body;
|
|
740
|
-
b.m("GET").h(headers).b(body);
|
|
741
|
-
return b.build();
|
|
742
|
-
};
|
|
743
|
-
const se_StartDeploymentCommand = async (input, context) => {
|
|
744
|
-
const b = core.requestBuilder(input, context);
|
|
745
|
-
const headers = {
|
|
746
|
-
"content-type": "application/json",
|
|
747
|
-
};
|
|
748
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}/deployments");
|
|
749
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
750
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
751
|
-
let body;
|
|
752
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
753
|
-
ConfigurationProfileId: [],
|
|
754
|
-
ConfigurationVersion: [],
|
|
755
|
-
DeploymentStrategyId: [],
|
|
756
|
-
Description: [],
|
|
757
|
-
DynamicExtensionParameters: (_) => smithyClient._json(_),
|
|
758
|
-
KmsKeyIdentifier: [],
|
|
759
|
-
Tags: (_) => smithyClient._json(_),
|
|
760
|
-
}));
|
|
761
|
-
b.m("POST").h(headers).b(body);
|
|
762
|
-
return b.build();
|
|
763
|
-
};
|
|
764
|
-
const se_StopDeploymentCommand = async (input, context) => {
|
|
765
|
-
const b = core.requestBuilder(input, context);
|
|
766
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
767
|
-
[_ar]: [() => smithyClient.isSerializableHeaderValue(input[_AR]), () => input[_AR].toString()],
|
|
768
|
-
});
|
|
769
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}");
|
|
770
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
771
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
772
|
-
b.p("DeploymentNumber", () => input.DeploymentNumber.toString(), "{DeploymentNumber}", false);
|
|
773
|
-
let body;
|
|
774
|
-
b.m("DELETE").h(headers).b(body);
|
|
775
|
-
return b.build();
|
|
776
|
-
};
|
|
777
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
778
|
-
const b = core.requestBuilder(input, context);
|
|
779
|
-
const headers = {
|
|
780
|
-
"content-type": "application/json",
|
|
781
|
-
};
|
|
782
|
-
b.bp("/tags/{ResourceArn}");
|
|
783
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
784
|
-
let body;
|
|
785
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
786
|
-
Tags: (_) => smithyClient._json(_),
|
|
787
|
-
}));
|
|
788
|
-
b.m("POST").h(headers).b(body);
|
|
789
|
-
return b.build();
|
|
790
|
-
};
|
|
791
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
792
|
-
const b = core.requestBuilder(input, context);
|
|
793
|
-
const headers = {};
|
|
794
|
-
b.bp("/tags/{ResourceArn}");
|
|
795
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
796
|
-
const query = smithyClient.map({
|
|
797
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
798
|
-
});
|
|
799
|
-
let body;
|
|
800
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
801
|
-
return b.build();
|
|
802
|
-
};
|
|
803
|
-
const se_UpdateAccountSettingsCommand = async (input, context) => {
|
|
804
|
-
const b = core.requestBuilder(input, context);
|
|
805
|
-
const headers = {
|
|
806
|
-
"content-type": "application/json",
|
|
807
|
-
};
|
|
808
|
-
b.bp("/settings");
|
|
809
|
-
let body;
|
|
810
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
811
|
-
DeletionProtection: (_) => smithyClient._json(_),
|
|
812
|
-
}));
|
|
813
|
-
b.m("PATCH").h(headers).b(body);
|
|
814
|
-
return b.build();
|
|
815
|
-
};
|
|
816
|
-
const se_UpdateApplicationCommand = async (input, context) => {
|
|
817
|
-
const b = core.requestBuilder(input, context);
|
|
818
|
-
const headers = {
|
|
819
|
-
"content-type": "application/json",
|
|
820
|
-
};
|
|
821
|
-
b.bp("/applications/{ApplicationId}");
|
|
822
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
823
|
-
let body;
|
|
824
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
825
|
-
Description: [],
|
|
826
|
-
Name: [],
|
|
827
|
-
}));
|
|
828
|
-
b.m("PATCH").h(headers).b(body);
|
|
829
|
-
return b.build();
|
|
830
|
-
};
|
|
831
|
-
const se_UpdateConfigurationProfileCommand = async (input, context) => {
|
|
832
|
-
const b = core.requestBuilder(input, context);
|
|
833
|
-
const headers = {
|
|
834
|
-
"content-type": "application/json",
|
|
835
|
-
};
|
|
836
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}");
|
|
837
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
838
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
839
|
-
let body;
|
|
840
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
841
|
-
Description: [],
|
|
842
|
-
KmsKeyIdentifier: [],
|
|
843
|
-
Name: [],
|
|
844
|
-
RetrievalRoleArn: [],
|
|
845
|
-
Validators: (_) => smithyClient._json(_),
|
|
846
|
-
}));
|
|
847
|
-
b.m("PATCH").h(headers).b(body);
|
|
848
|
-
return b.build();
|
|
849
|
-
};
|
|
850
|
-
const se_UpdateDeploymentStrategyCommand = async (input, context) => {
|
|
851
|
-
const b = core.requestBuilder(input, context);
|
|
852
|
-
const headers = {
|
|
853
|
-
"content-type": "application/json",
|
|
854
|
-
};
|
|
855
|
-
b.bp("/deploymentstrategies/{DeploymentStrategyId}");
|
|
856
|
-
b.p("DeploymentStrategyId", () => input.DeploymentStrategyId, "{DeploymentStrategyId}", false);
|
|
857
|
-
let body;
|
|
858
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
859
|
-
DeploymentDurationInMinutes: [],
|
|
860
|
-
Description: [],
|
|
861
|
-
FinalBakeTimeInMinutes: [],
|
|
862
|
-
GrowthFactor: (_) => smithyClient.serializeFloat(_),
|
|
863
|
-
GrowthType: [],
|
|
864
|
-
}));
|
|
865
|
-
b.m("PATCH").h(headers).b(body);
|
|
866
|
-
return b.build();
|
|
867
|
-
};
|
|
868
|
-
const se_UpdateEnvironmentCommand = async (input, context) => {
|
|
869
|
-
const b = core.requestBuilder(input, context);
|
|
870
|
-
const headers = {
|
|
871
|
-
"content-type": "application/json",
|
|
872
|
-
};
|
|
873
|
-
b.bp("/applications/{ApplicationId}/environments/{EnvironmentId}");
|
|
874
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
875
|
-
b.p("EnvironmentId", () => input.EnvironmentId, "{EnvironmentId}", false);
|
|
876
|
-
let body;
|
|
877
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
878
|
-
Description: [],
|
|
879
|
-
Monitors: (_) => smithyClient._json(_),
|
|
880
|
-
Name: [],
|
|
881
|
-
}));
|
|
882
|
-
b.m("PATCH").h(headers).b(body);
|
|
883
|
-
return b.build();
|
|
884
|
-
};
|
|
885
|
-
const se_UpdateExtensionCommand = async (input, context) => {
|
|
886
|
-
const b = core.requestBuilder(input, context);
|
|
887
|
-
const headers = {
|
|
888
|
-
"content-type": "application/json",
|
|
889
|
-
};
|
|
890
|
-
b.bp("/extensions/{ExtensionIdentifier}");
|
|
891
|
-
b.p("ExtensionIdentifier", () => input.ExtensionIdentifier, "{ExtensionIdentifier}", false);
|
|
892
|
-
let body;
|
|
893
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
894
|
-
Actions: (_) => smithyClient._json(_),
|
|
895
|
-
Description: [],
|
|
896
|
-
Parameters: (_) => smithyClient._json(_),
|
|
897
|
-
VersionNumber: [],
|
|
898
|
-
}));
|
|
899
|
-
b.m("PATCH").h(headers).b(body);
|
|
900
|
-
return b.build();
|
|
901
|
-
};
|
|
902
|
-
const se_UpdateExtensionAssociationCommand = async (input, context) => {
|
|
903
|
-
const b = core.requestBuilder(input, context);
|
|
904
|
-
const headers = {
|
|
905
|
-
"content-type": "application/json",
|
|
906
|
-
};
|
|
907
|
-
b.bp("/extensionassociations/{ExtensionAssociationId}");
|
|
908
|
-
b.p("ExtensionAssociationId", () => input.ExtensionAssociationId, "{ExtensionAssociationId}", false);
|
|
909
|
-
let body;
|
|
910
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
911
|
-
Parameters: (_) => smithyClient._json(_),
|
|
912
|
-
}));
|
|
913
|
-
b.m("PATCH").h(headers).b(body);
|
|
914
|
-
return b.build();
|
|
915
|
-
};
|
|
916
|
-
const se_ValidateConfigurationCommand = async (input, context) => {
|
|
917
|
-
const b = core.requestBuilder(input, context);
|
|
918
|
-
const headers = {};
|
|
919
|
-
b.bp("/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/validators");
|
|
920
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
921
|
-
b.p("ConfigurationProfileId", () => input.ConfigurationProfileId, "{ConfigurationProfileId}", false);
|
|
922
|
-
const query = smithyClient.map({
|
|
923
|
-
[_cv]: [, smithyClient.expectNonNull(input[_CV], `ConfigurationVersion`)],
|
|
924
|
-
});
|
|
925
|
-
let body;
|
|
926
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
927
|
-
return b.build();
|
|
928
|
-
};
|
|
929
|
-
const de_CreateApplicationCommand = async (output, context) => {
|
|
930
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
931
|
-
return de_CommandError(output, context);
|
|
932
|
-
}
|
|
933
|
-
const contents = smithyClient.map({
|
|
934
|
-
$metadata: deserializeMetadata(output),
|
|
935
|
-
});
|
|
936
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
937
|
-
const doc = smithyClient.take(data, {
|
|
938
|
-
Description: smithyClient.expectString,
|
|
939
|
-
Id: smithyClient.expectString,
|
|
940
|
-
Name: smithyClient.expectString,
|
|
941
|
-
});
|
|
942
|
-
Object.assign(contents, doc);
|
|
943
|
-
return contents;
|
|
944
|
-
};
|
|
945
|
-
const de_CreateConfigurationProfileCommand = async (output, context) => {
|
|
946
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
947
|
-
return de_CommandError(output, context);
|
|
948
|
-
}
|
|
949
|
-
const contents = smithyClient.map({
|
|
950
|
-
$metadata: deserializeMetadata(output),
|
|
951
|
-
});
|
|
952
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
953
|
-
const doc = smithyClient.take(data, {
|
|
954
|
-
ApplicationId: smithyClient.expectString,
|
|
955
|
-
Description: smithyClient.expectString,
|
|
956
|
-
Id: smithyClient.expectString,
|
|
957
|
-
KmsKeyArn: smithyClient.expectString,
|
|
958
|
-
KmsKeyIdentifier: smithyClient.expectString,
|
|
959
|
-
LocationUri: smithyClient.expectString,
|
|
960
|
-
Name: smithyClient.expectString,
|
|
961
|
-
RetrievalRoleArn: smithyClient.expectString,
|
|
962
|
-
Type: smithyClient.expectString,
|
|
963
|
-
Validators: smithyClient._json,
|
|
964
|
-
});
|
|
965
|
-
Object.assign(contents, doc);
|
|
966
|
-
return contents;
|
|
967
|
-
};
|
|
968
|
-
const de_CreateDeploymentStrategyCommand = async (output, context) => {
|
|
969
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
970
|
-
return de_CommandError(output, context);
|
|
971
|
-
}
|
|
972
|
-
const contents = smithyClient.map({
|
|
973
|
-
$metadata: deserializeMetadata(output),
|
|
974
|
-
});
|
|
975
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
976
|
-
const doc = smithyClient.take(data, {
|
|
977
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
978
|
-
Description: smithyClient.expectString,
|
|
979
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
980
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
981
|
-
GrowthType: smithyClient.expectString,
|
|
982
|
-
Id: smithyClient.expectString,
|
|
983
|
-
Name: smithyClient.expectString,
|
|
984
|
-
ReplicateTo: smithyClient.expectString,
|
|
985
|
-
});
|
|
986
|
-
Object.assign(contents, doc);
|
|
987
|
-
return contents;
|
|
988
|
-
};
|
|
989
|
-
const de_CreateEnvironmentCommand = async (output, context) => {
|
|
990
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
991
|
-
return de_CommandError(output, context);
|
|
992
|
-
}
|
|
993
|
-
const contents = smithyClient.map({
|
|
994
|
-
$metadata: deserializeMetadata(output),
|
|
995
|
-
});
|
|
996
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
997
|
-
const doc = smithyClient.take(data, {
|
|
998
|
-
ApplicationId: smithyClient.expectString,
|
|
999
|
-
Description: smithyClient.expectString,
|
|
1000
|
-
Id: smithyClient.expectString,
|
|
1001
|
-
Monitors: smithyClient._json,
|
|
1002
|
-
Name: smithyClient.expectString,
|
|
1003
|
-
State: smithyClient.expectString,
|
|
1004
|
-
});
|
|
1005
|
-
Object.assign(contents, doc);
|
|
1006
|
-
return contents;
|
|
1007
|
-
};
|
|
1008
|
-
const de_CreateExtensionCommand = async (output, context) => {
|
|
1009
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1010
|
-
return de_CommandError(output, context);
|
|
1011
|
-
}
|
|
1012
|
-
const contents = smithyClient.map({
|
|
1013
|
-
$metadata: deserializeMetadata(output),
|
|
1014
|
-
});
|
|
1015
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1016
|
-
const doc = smithyClient.take(data, {
|
|
1017
|
-
Actions: smithyClient._json,
|
|
1018
|
-
Arn: smithyClient.expectString,
|
|
1019
|
-
Description: smithyClient.expectString,
|
|
1020
|
-
Id: smithyClient.expectString,
|
|
1021
|
-
Name: smithyClient.expectString,
|
|
1022
|
-
Parameters: smithyClient._json,
|
|
1023
|
-
VersionNumber: smithyClient.expectInt32,
|
|
1024
|
-
});
|
|
1025
|
-
Object.assign(contents, doc);
|
|
1026
|
-
return contents;
|
|
1027
|
-
};
|
|
1028
|
-
const de_CreateExtensionAssociationCommand = async (output, context) => {
|
|
1029
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1030
|
-
return de_CommandError(output, context);
|
|
1031
|
-
}
|
|
1032
|
-
const contents = smithyClient.map({
|
|
1033
|
-
$metadata: deserializeMetadata(output),
|
|
1034
|
-
});
|
|
1035
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1036
|
-
const doc = smithyClient.take(data, {
|
|
1037
|
-
Arn: smithyClient.expectString,
|
|
1038
|
-
ExtensionArn: smithyClient.expectString,
|
|
1039
|
-
ExtensionVersionNumber: smithyClient.expectInt32,
|
|
1040
|
-
Id: smithyClient.expectString,
|
|
1041
|
-
Parameters: smithyClient._json,
|
|
1042
|
-
ResourceArn: smithyClient.expectString,
|
|
1043
|
-
});
|
|
1044
|
-
Object.assign(contents, doc);
|
|
1045
|
-
return contents;
|
|
1046
|
-
};
|
|
1047
|
-
const de_CreateHostedConfigurationVersionCommand = async (output, context) => {
|
|
1048
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1049
|
-
return de_CommandError(output, context);
|
|
1050
|
-
}
|
|
1051
|
-
const contents = smithyClient.map({
|
|
1052
|
-
$metadata: deserializeMetadata(output),
|
|
1053
|
-
[_AI]: [, output.headers[_ai]],
|
|
1054
|
-
[_CPI]: [, output.headers[_cpi]],
|
|
1055
|
-
[_VN]: [() => void 0 !== output.headers[_vn_], () => smithyClient.strictParseInt32(output.headers[_vn_])],
|
|
1056
|
-
[_D]: [, output.headers[_d]],
|
|
1057
|
-
[_CT]: [, output.headers[_ct]],
|
|
1058
|
-
[_VL]: [, output.headers[_v]],
|
|
1059
|
-
[_KKA]: [, output.headers[_k]],
|
|
1060
|
-
});
|
|
1061
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
1062
|
-
contents.Content = data;
|
|
1063
|
-
return contents;
|
|
1064
|
-
};
|
|
1065
|
-
const de_DeleteApplicationCommand = async (output, context) => {
|
|
1066
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1067
|
-
return de_CommandError(output, context);
|
|
1068
|
-
}
|
|
1069
|
-
const contents = smithyClient.map({
|
|
1070
|
-
$metadata: deserializeMetadata(output),
|
|
1071
|
-
});
|
|
1072
|
-
await smithyClient.collectBody(output.body, context);
|
|
1073
|
-
return contents;
|
|
1074
|
-
};
|
|
1075
|
-
const de_DeleteConfigurationProfileCommand = async (output, context) => {
|
|
1076
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1077
|
-
return de_CommandError(output, context);
|
|
1078
|
-
}
|
|
1079
|
-
const contents = smithyClient.map({
|
|
1080
|
-
$metadata: deserializeMetadata(output),
|
|
1081
|
-
});
|
|
1082
|
-
await smithyClient.collectBody(output.body, context);
|
|
1083
|
-
return contents;
|
|
1084
|
-
};
|
|
1085
|
-
const de_DeleteDeploymentStrategyCommand = async (output, context) => {
|
|
1086
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1087
|
-
return de_CommandError(output, context);
|
|
1088
|
-
}
|
|
1089
|
-
const contents = smithyClient.map({
|
|
1090
|
-
$metadata: deserializeMetadata(output),
|
|
1091
|
-
});
|
|
1092
|
-
await smithyClient.collectBody(output.body, context);
|
|
1093
|
-
return contents;
|
|
1094
|
-
};
|
|
1095
|
-
const de_DeleteEnvironmentCommand = async (output, context) => {
|
|
1096
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1097
|
-
return de_CommandError(output, context);
|
|
1098
|
-
}
|
|
1099
|
-
const contents = smithyClient.map({
|
|
1100
|
-
$metadata: deserializeMetadata(output),
|
|
1101
|
-
});
|
|
1102
|
-
await smithyClient.collectBody(output.body, context);
|
|
1103
|
-
return contents;
|
|
1104
|
-
};
|
|
1105
|
-
const de_DeleteExtensionCommand = async (output, context) => {
|
|
1106
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1107
|
-
return de_CommandError(output, context);
|
|
1108
|
-
}
|
|
1109
|
-
const contents = smithyClient.map({
|
|
1110
|
-
$metadata: deserializeMetadata(output),
|
|
1111
|
-
});
|
|
1112
|
-
await smithyClient.collectBody(output.body, context);
|
|
1113
|
-
return contents;
|
|
1114
|
-
};
|
|
1115
|
-
const de_DeleteExtensionAssociationCommand = async (output, context) => {
|
|
1116
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1117
|
-
return de_CommandError(output, context);
|
|
1118
|
-
}
|
|
1119
|
-
const contents = smithyClient.map({
|
|
1120
|
-
$metadata: deserializeMetadata(output),
|
|
1121
|
-
});
|
|
1122
|
-
await smithyClient.collectBody(output.body, context);
|
|
1123
|
-
return contents;
|
|
1124
|
-
};
|
|
1125
|
-
const de_DeleteHostedConfigurationVersionCommand = async (output, context) => {
|
|
1126
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1127
|
-
return de_CommandError(output, context);
|
|
1128
|
-
}
|
|
1129
|
-
const contents = smithyClient.map({
|
|
1130
|
-
$metadata: deserializeMetadata(output),
|
|
1131
|
-
});
|
|
1132
|
-
await smithyClient.collectBody(output.body, context);
|
|
1133
|
-
return contents;
|
|
1134
|
-
};
|
|
1135
|
-
const de_GetAccountSettingsCommand = async (output, context) => {
|
|
1136
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1137
|
-
return de_CommandError(output, context);
|
|
1138
|
-
}
|
|
1139
|
-
const contents = smithyClient.map({
|
|
1140
|
-
$metadata: deserializeMetadata(output),
|
|
1141
|
-
});
|
|
1142
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1143
|
-
const doc = smithyClient.take(data, {
|
|
1144
|
-
DeletionProtection: smithyClient._json,
|
|
1145
|
-
});
|
|
1146
|
-
Object.assign(contents, doc);
|
|
1147
|
-
return contents;
|
|
1148
|
-
};
|
|
1149
|
-
const de_GetApplicationCommand = async (output, context) => {
|
|
1150
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1151
|
-
return de_CommandError(output, context);
|
|
1152
|
-
}
|
|
1153
|
-
const contents = smithyClient.map({
|
|
1154
|
-
$metadata: deserializeMetadata(output),
|
|
1155
|
-
});
|
|
1156
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1157
|
-
const doc = smithyClient.take(data, {
|
|
1158
|
-
Description: smithyClient.expectString,
|
|
1159
|
-
Id: smithyClient.expectString,
|
|
1160
|
-
Name: smithyClient.expectString,
|
|
1161
|
-
});
|
|
1162
|
-
Object.assign(contents, doc);
|
|
1163
|
-
return contents;
|
|
1164
|
-
};
|
|
1165
|
-
const de_GetConfigurationCommand = async (output, context) => {
|
|
1166
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1167
|
-
return de_CommandError(output, context);
|
|
1168
|
-
}
|
|
1169
|
-
const contents = smithyClient.map({
|
|
1170
|
-
$metadata: deserializeMetadata(output),
|
|
1171
|
-
[_CV]: [, output.headers[_cv_]],
|
|
1172
|
-
[_CT]: [, output.headers[_ct]],
|
|
1173
|
-
});
|
|
1174
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
1175
|
-
contents.Content = data;
|
|
1176
|
-
return contents;
|
|
1177
|
-
};
|
|
1178
|
-
const de_GetConfigurationProfileCommand = async (output, context) => {
|
|
1179
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1180
|
-
return de_CommandError(output, context);
|
|
1181
|
-
}
|
|
1182
|
-
const contents = smithyClient.map({
|
|
1183
|
-
$metadata: deserializeMetadata(output),
|
|
1184
|
-
});
|
|
1185
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1186
|
-
const doc = smithyClient.take(data, {
|
|
1187
|
-
ApplicationId: smithyClient.expectString,
|
|
1188
|
-
Description: smithyClient.expectString,
|
|
1189
|
-
Id: smithyClient.expectString,
|
|
1190
|
-
KmsKeyArn: smithyClient.expectString,
|
|
1191
|
-
KmsKeyIdentifier: smithyClient.expectString,
|
|
1192
|
-
LocationUri: smithyClient.expectString,
|
|
1193
|
-
Name: smithyClient.expectString,
|
|
1194
|
-
RetrievalRoleArn: smithyClient.expectString,
|
|
1195
|
-
Type: smithyClient.expectString,
|
|
1196
|
-
Validators: smithyClient._json,
|
|
1197
|
-
});
|
|
1198
|
-
Object.assign(contents, doc);
|
|
1199
|
-
return contents;
|
|
1200
|
-
};
|
|
1201
|
-
const de_GetDeploymentCommand = async (output, context) => {
|
|
1202
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1203
|
-
return de_CommandError(output, context);
|
|
1204
|
-
}
|
|
1205
|
-
const contents = smithyClient.map({
|
|
1206
|
-
$metadata: deserializeMetadata(output),
|
|
1207
|
-
});
|
|
1208
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1209
|
-
const doc = smithyClient.take(data, {
|
|
1210
|
-
ApplicationId: smithyClient.expectString,
|
|
1211
|
-
AppliedExtensions: smithyClient._json,
|
|
1212
|
-
CompletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1213
|
-
ConfigurationLocationUri: smithyClient.expectString,
|
|
1214
|
-
ConfigurationName: smithyClient.expectString,
|
|
1215
|
-
ConfigurationProfileId: smithyClient.expectString,
|
|
1216
|
-
ConfigurationVersion: smithyClient.expectString,
|
|
1217
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1218
|
-
DeploymentNumber: smithyClient.expectInt32,
|
|
1219
|
-
DeploymentStrategyId: smithyClient.expectString,
|
|
1220
|
-
Description: smithyClient.expectString,
|
|
1221
|
-
EnvironmentId: smithyClient.expectString,
|
|
1222
|
-
EventLog: (_) => de_DeploymentEvents(_),
|
|
1223
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1224
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1225
|
-
GrowthType: smithyClient.expectString,
|
|
1226
|
-
KmsKeyArn: smithyClient.expectString,
|
|
1227
|
-
KmsKeyIdentifier: smithyClient.expectString,
|
|
1228
|
-
PercentageComplete: smithyClient.limitedParseFloat32,
|
|
1229
|
-
StartedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1230
|
-
State: smithyClient.expectString,
|
|
1231
|
-
VersionLabel: smithyClient.expectString,
|
|
1232
|
-
});
|
|
1233
|
-
Object.assign(contents, doc);
|
|
1234
|
-
return contents;
|
|
1235
|
-
};
|
|
1236
|
-
const de_GetDeploymentStrategyCommand = async (output, context) => {
|
|
1237
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1238
|
-
return de_CommandError(output, context);
|
|
1239
|
-
}
|
|
1240
|
-
const contents = smithyClient.map({
|
|
1241
|
-
$metadata: deserializeMetadata(output),
|
|
1242
|
-
});
|
|
1243
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1244
|
-
const doc = smithyClient.take(data, {
|
|
1245
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1246
|
-
Description: smithyClient.expectString,
|
|
1247
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1248
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1249
|
-
GrowthType: smithyClient.expectString,
|
|
1250
|
-
Id: smithyClient.expectString,
|
|
1251
|
-
Name: smithyClient.expectString,
|
|
1252
|
-
ReplicateTo: smithyClient.expectString,
|
|
1253
|
-
});
|
|
1254
|
-
Object.assign(contents, doc);
|
|
1255
|
-
return contents;
|
|
1256
|
-
};
|
|
1257
|
-
const de_GetEnvironmentCommand = async (output, context) => {
|
|
1258
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1259
|
-
return de_CommandError(output, context);
|
|
1260
|
-
}
|
|
1261
|
-
const contents = smithyClient.map({
|
|
1262
|
-
$metadata: deserializeMetadata(output),
|
|
1263
|
-
});
|
|
1264
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1265
|
-
const doc = smithyClient.take(data, {
|
|
1266
|
-
ApplicationId: smithyClient.expectString,
|
|
1267
|
-
Description: smithyClient.expectString,
|
|
1268
|
-
Id: smithyClient.expectString,
|
|
1269
|
-
Monitors: smithyClient._json,
|
|
1270
|
-
Name: smithyClient.expectString,
|
|
1271
|
-
State: smithyClient.expectString,
|
|
1272
|
-
});
|
|
1273
|
-
Object.assign(contents, doc);
|
|
1274
|
-
return contents;
|
|
1275
|
-
};
|
|
1276
|
-
const de_GetExtensionCommand = async (output, context) => {
|
|
1277
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1278
|
-
return de_CommandError(output, context);
|
|
1279
|
-
}
|
|
1280
|
-
const contents = smithyClient.map({
|
|
1281
|
-
$metadata: deserializeMetadata(output),
|
|
1282
|
-
});
|
|
1283
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1284
|
-
const doc = smithyClient.take(data, {
|
|
1285
|
-
Actions: smithyClient._json,
|
|
1286
|
-
Arn: smithyClient.expectString,
|
|
1287
|
-
Description: smithyClient.expectString,
|
|
1288
|
-
Id: smithyClient.expectString,
|
|
1289
|
-
Name: smithyClient.expectString,
|
|
1290
|
-
Parameters: smithyClient._json,
|
|
1291
|
-
VersionNumber: smithyClient.expectInt32,
|
|
1292
|
-
});
|
|
1293
|
-
Object.assign(contents, doc);
|
|
1294
|
-
return contents;
|
|
1295
|
-
};
|
|
1296
|
-
const de_GetExtensionAssociationCommand = async (output, context) => {
|
|
1297
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1298
|
-
return de_CommandError(output, context);
|
|
1299
|
-
}
|
|
1300
|
-
const contents = smithyClient.map({
|
|
1301
|
-
$metadata: deserializeMetadata(output),
|
|
1302
|
-
});
|
|
1303
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1304
|
-
const doc = smithyClient.take(data, {
|
|
1305
|
-
Arn: smithyClient.expectString,
|
|
1306
|
-
ExtensionArn: smithyClient.expectString,
|
|
1307
|
-
ExtensionVersionNumber: smithyClient.expectInt32,
|
|
1308
|
-
Id: smithyClient.expectString,
|
|
1309
|
-
Parameters: smithyClient._json,
|
|
1310
|
-
ResourceArn: smithyClient.expectString,
|
|
1311
|
-
});
|
|
1312
|
-
Object.assign(contents, doc);
|
|
1313
|
-
return contents;
|
|
1314
|
-
};
|
|
1315
|
-
const de_GetHostedConfigurationVersionCommand = async (output, context) => {
|
|
1316
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1317
|
-
return de_CommandError(output, context);
|
|
1318
|
-
}
|
|
1319
|
-
const contents = smithyClient.map({
|
|
1320
|
-
$metadata: deserializeMetadata(output),
|
|
1321
|
-
[_AI]: [, output.headers[_ai]],
|
|
1322
|
-
[_CPI]: [, output.headers[_cpi]],
|
|
1323
|
-
[_VN]: [() => void 0 !== output.headers[_vn_], () => smithyClient.strictParseInt32(output.headers[_vn_])],
|
|
1324
|
-
[_D]: [, output.headers[_d]],
|
|
1325
|
-
[_CT]: [, output.headers[_ct]],
|
|
1326
|
-
[_VL]: [, output.headers[_v]],
|
|
1327
|
-
[_KKA]: [, output.headers[_k]],
|
|
1328
|
-
});
|
|
1329
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
1330
|
-
contents.Content = data;
|
|
1331
|
-
return contents;
|
|
1332
|
-
};
|
|
1333
|
-
const de_ListApplicationsCommand = async (output, context) => {
|
|
1334
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1335
|
-
return de_CommandError(output, context);
|
|
1336
|
-
}
|
|
1337
|
-
const contents = smithyClient.map({
|
|
1338
|
-
$metadata: deserializeMetadata(output),
|
|
1339
|
-
});
|
|
1340
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1341
|
-
const doc = smithyClient.take(data, {
|
|
1342
|
-
Items: smithyClient._json,
|
|
1343
|
-
NextToken: smithyClient.expectString,
|
|
1344
|
-
});
|
|
1345
|
-
Object.assign(contents, doc);
|
|
1346
|
-
return contents;
|
|
1347
|
-
};
|
|
1348
|
-
const de_ListConfigurationProfilesCommand = async (output, context) => {
|
|
1349
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1350
|
-
return de_CommandError(output, context);
|
|
1351
|
-
}
|
|
1352
|
-
const contents = smithyClient.map({
|
|
1353
|
-
$metadata: deserializeMetadata(output),
|
|
1354
|
-
});
|
|
1355
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1356
|
-
const doc = smithyClient.take(data, {
|
|
1357
|
-
Items: smithyClient._json,
|
|
1358
|
-
NextToken: smithyClient.expectString,
|
|
1359
|
-
});
|
|
1360
|
-
Object.assign(contents, doc);
|
|
1361
|
-
return contents;
|
|
1362
|
-
};
|
|
1363
|
-
const de_ListDeploymentsCommand = async (output, context) => {
|
|
1364
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1365
|
-
return de_CommandError(output, context);
|
|
1366
|
-
}
|
|
1367
|
-
const contents = smithyClient.map({
|
|
1368
|
-
$metadata: deserializeMetadata(output),
|
|
1369
|
-
});
|
|
1370
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1371
|
-
const doc = smithyClient.take(data, {
|
|
1372
|
-
Items: (_) => de_DeploymentList(_),
|
|
1373
|
-
NextToken: smithyClient.expectString,
|
|
1374
|
-
});
|
|
1375
|
-
Object.assign(contents, doc);
|
|
1376
|
-
return contents;
|
|
1377
|
-
};
|
|
1378
|
-
const de_ListDeploymentStrategiesCommand = async (output, context) => {
|
|
1379
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1380
|
-
return de_CommandError(output, context);
|
|
1381
|
-
}
|
|
1382
|
-
const contents = smithyClient.map({
|
|
1383
|
-
$metadata: deserializeMetadata(output),
|
|
1384
|
-
});
|
|
1385
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1386
|
-
const doc = smithyClient.take(data, {
|
|
1387
|
-
Items: (_) => de_DeploymentStrategyList(_),
|
|
1388
|
-
NextToken: smithyClient.expectString,
|
|
1389
|
-
});
|
|
1390
|
-
Object.assign(contents, doc);
|
|
1391
|
-
return contents;
|
|
1392
|
-
};
|
|
1393
|
-
const de_ListEnvironmentsCommand = async (output, context) => {
|
|
1394
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1395
|
-
return de_CommandError(output, context);
|
|
1396
|
-
}
|
|
1397
|
-
const contents = smithyClient.map({
|
|
1398
|
-
$metadata: deserializeMetadata(output),
|
|
1399
|
-
});
|
|
1400
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1401
|
-
const doc = smithyClient.take(data, {
|
|
1402
|
-
Items: smithyClient._json,
|
|
1403
|
-
NextToken: smithyClient.expectString,
|
|
1404
|
-
});
|
|
1405
|
-
Object.assign(contents, doc);
|
|
1406
|
-
return contents;
|
|
1407
|
-
};
|
|
1408
|
-
const de_ListExtensionAssociationsCommand = async (output, context) => {
|
|
1409
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1410
|
-
return de_CommandError(output, context);
|
|
1411
|
-
}
|
|
1412
|
-
const contents = smithyClient.map({
|
|
1413
|
-
$metadata: deserializeMetadata(output),
|
|
1414
|
-
});
|
|
1415
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1416
|
-
const doc = smithyClient.take(data, {
|
|
1417
|
-
Items: smithyClient._json,
|
|
1418
|
-
NextToken: smithyClient.expectString,
|
|
1419
|
-
});
|
|
1420
|
-
Object.assign(contents, doc);
|
|
1421
|
-
return contents;
|
|
1422
|
-
};
|
|
1423
|
-
const de_ListExtensionsCommand = async (output, context) => {
|
|
1424
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1425
|
-
return de_CommandError(output, context);
|
|
1426
|
-
}
|
|
1427
|
-
const contents = smithyClient.map({
|
|
1428
|
-
$metadata: deserializeMetadata(output),
|
|
1429
|
-
});
|
|
1430
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1431
|
-
const doc = smithyClient.take(data, {
|
|
1432
|
-
Items: smithyClient._json,
|
|
1433
|
-
NextToken: smithyClient.expectString,
|
|
1434
|
-
});
|
|
1435
|
-
Object.assign(contents, doc);
|
|
1436
|
-
return contents;
|
|
1437
|
-
};
|
|
1438
|
-
const de_ListHostedConfigurationVersionsCommand = async (output, context) => {
|
|
1439
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1440
|
-
return de_CommandError(output, context);
|
|
1441
|
-
}
|
|
1442
|
-
const contents = smithyClient.map({
|
|
1443
|
-
$metadata: deserializeMetadata(output),
|
|
1444
|
-
});
|
|
1445
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1446
|
-
const doc = smithyClient.take(data, {
|
|
1447
|
-
Items: smithyClient._json,
|
|
1448
|
-
NextToken: smithyClient.expectString,
|
|
1449
|
-
});
|
|
1450
|
-
Object.assign(contents, doc);
|
|
1451
|
-
return contents;
|
|
1452
|
-
};
|
|
1453
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1454
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1455
|
-
return de_CommandError(output, context);
|
|
1456
|
-
}
|
|
1457
|
-
const contents = smithyClient.map({
|
|
1458
|
-
$metadata: deserializeMetadata(output),
|
|
1459
|
-
});
|
|
1460
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1461
|
-
const doc = smithyClient.take(data, {
|
|
1462
|
-
Tags: smithyClient._json,
|
|
1463
|
-
});
|
|
1464
|
-
Object.assign(contents, doc);
|
|
1465
|
-
return contents;
|
|
1466
|
-
};
|
|
1467
|
-
const de_StartDeploymentCommand = async (output, context) => {
|
|
1468
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1469
|
-
return de_CommandError(output, context);
|
|
1470
|
-
}
|
|
1471
|
-
const contents = smithyClient.map({
|
|
1472
|
-
$metadata: deserializeMetadata(output),
|
|
1473
|
-
});
|
|
1474
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1475
|
-
const doc = smithyClient.take(data, {
|
|
1476
|
-
ApplicationId: smithyClient.expectString,
|
|
1477
|
-
AppliedExtensions: smithyClient._json,
|
|
1478
|
-
CompletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1479
|
-
ConfigurationLocationUri: smithyClient.expectString,
|
|
1480
|
-
ConfigurationName: smithyClient.expectString,
|
|
1481
|
-
ConfigurationProfileId: smithyClient.expectString,
|
|
1482
|
-
ConfigurationVersion: smithyClient.expectString,
|
|
1483
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1484
|
-
DeploymentNumber: smithyClient.expectInt32,
|
|
1485
|
-
DeploymentStrategyId: smithyClient.expectString,
|
|
1486
|
-
Description: smithyClient.expectString,
|
|
1487
|
-
EnvironmentId: smithyClient.expectString,
|
|
1488
|
-
EventLog: (_) => de_DeploymentEvents(_),
|
|
1489
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1490
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1491
|
-
GrowthType: smithyClient.expectString,
|
|
1492
|
-
KmsKeyArn: smithyClient.expectString,
|
|
1493
|
-
KmsKeyIdentifier: smithyClient.expectString,
|
|
1494
|
-
PercentageComplete: smithyClient.limitedParseFloat32,
|
|
1495
|
-
StartedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1496
|
-
State: smithyClient.expectString,
|
|
1497
|
-
VersionLabel: smithyClient.expectString,
|
|
1498
|
-
});
|
|
1499
|
-
Object.assign(contents, doc);
|
|
1500
|
-
return contents;
|
|
1501
|
-
};
|
|
1502
|
-
const de_StopDeploymentCommand = async (output, context) => {
|
|
1503
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
1504
|
-
return de_CommandError(output, context);
|
|
1505
|
-
}
|
|
1506
|
-
const contents = smithyClient.map({
|
|
1507
|
-
$metadata: deserializeMetadata(output),
|
|
1508
|
-
});
|
|
1509
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1510
|
-
const doc = smithyClient.take(data, {
|
|
1511
|
-
ApplicationId: smithyClient.expectString,
|
|
1512
|
-
AppliedExtensions: smithyClient._json,
|
|
1513
|
-
CompletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1514
|
-
ConfigurationLocationUri: smithyClient.expectString,
|
|
1515
|
-
ConfigurationName: smithyClient.expectString,
|
|
1516
|
-
ConfigurationProfileId: smithyClient.expectString,
|
|
1517
|
-
ConfigurationVersion: smithyClient.expectString,
|
|
1518
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1519
|
-
DeploymentNumber: smithyClient.expectInt32,
|
|
1520
|
-
DeploymentStrategyId: smithyClient.expectString,
|
|
1521
|
-
Description: smithyClient.expectString,
|
|
1522
|
-
EnvironmentId: smithyClient.expectString,
|
|
1523
|
-
EventLog: (_) => de_DeploymentEvents(_),
|
|
1524
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1525
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1526
|
-
GrowthType: smithyClient.expectString,
|
|
1527
|
-
KmsKeyArn: smithyClient.expectString,
|
|
1528
|
-
KmsKeyIdentifier: smithyClient.expectString,
|
|
1529
|
-
PercentageComplete: smithyClient.limitedParseFloat32,
|
|
1530
|
-
StartedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1531
|
-
State: smithyClient.expectString,
|
|
1532
|
-
VersionLabel: smithyClient.expectString,
|
|
1533
|
-
});
|
|
1534
|
-
Object.assign(contents, doc);
|
|
1535
|
-
return contents;
|
|
1536
|
-
};
|
|
1537
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1538
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1539
|
-
return de_CommandError(output, context);
|
|
1540
|
-
}
|
|
1541
|
-
const contents = smithyClient.map({
|
|
1542
|
-
$metadata: deserializeMetadata(output),
|
|
1543
|
-
});
|
|
1544
|
-
await smithyClient.collectBody(output.body, context);
|
|
1545
|
-
return contents;
|
|
1546
|
-
};
|
|
1547
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1548
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1549
|
-
return de_CommandError(output, context);
|
|
1550
|
-
}
|
|
1551
|
-
const contents = smithyClient.map({
|
|
1552
|
-
$metadata: deserializeMetadata(output),
|
|
1553
|
-
});
|
|
1554
|
-
await smithyClient.collectBody(output.body, context);
|
|
1555
|
-
return contents;
|
|
1556
|
-
};
|
|
1557
|
-
const de_UpdateAccountSettingsCommand = async (output, context) => {
|
|
1558
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1559
|
-
return de_CommandError(output, context);
|
|
1560
|
-
}
|
|
1561
|
-
const contents = smithyClient.map({
|
|
1562
|
-
$metadata: deserializeMetadata(output),
|
|
1563
|
-
});
|
|
1564
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1565
|
-
const doc = smithyClient.take(data, {
|
|
1566
|
-
DeletionProtection: smithyClient._json,
|
|
1567
|
-
});
|
|
1568
|
-
Object.assign(contents, doc);
|
|
1569
|
-
return contents;
|
|
1570
|
-
};
|
|
1571
|
-
const de_UpdateApplicationCommand = async (output, context) => {
|
|
1572
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1573
|
-
return de_CommandError(output, context);
|
|
1574
|
-
}
|
|
1575
|
-
const contents = smithyClient.map({
|
|
1576
|
-
$metadata: deserializeMetadata(output),
|
|
1577
|
-
});
|
|
1578
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1579
|
-
const doc = smithyClient.take(data, {
|
|
1580
|
-
Description: smithyClient.expectString,
|
|
1581
|
-
Id: smithyClient.expectString,
|
|
1582
|
-
Name: smithyClient.expectString,
|
|
1583
|
-
});
|
|
1584
|
-
Object.assign(contents, doc);
|
|
1585
|
-
return contents;
|
|
1586
|
-
};
|
|
1587
|
-
const de_UpdateConfigurationProfileCommand = async (output, context) => {
|
|
1588
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1589
|
-
return de_CommandError(output, context);
|
|
1590
|
-
}
|
|
1591
|
-
const contents = smithyClient.map({
|
|
1592
|
-
$metadata: deserializeMetadata(output),
|
|
1593
|
-
});
|
|
1594
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1595
|
-
const doc = smithyClient.take(data, {
|
|
1596
|
-
ApplicationId: smithyClient.expectString,
|
|
1597
|
-
Description: smithyClient.expectString,
|
|
1598
|
-
Id: smithyClient.expectString,
|
|
1599
|
-
KmsKeyArn: smithyClient.expectString,
|
|
1600
|
-
KmsKeyIdentifier: smithyClient.expectString,
|
|
1601
|
-
LocationUri: smithyClient.expectString,
|
|
1602
|
-
Name: smithyClient.expectString,
|
|
1603
|
-
RetrievalRoleArn: smithyClient.expectString,
|
|
1604
|
-
Type: smithyClient.expectString,
|
|
1605
|
-
Validators: smithyClient._json,
|
|
1606
|
-
});
|
|
1607
|
-
Object.assign(contents, doc);
|
|
1608
|
-
return contents;
|
|
1609
|
-
};
|
|
1610
|
-
const de_UpdateDeploymentStrategyCommand = async (output, context) => {
|
|
1611
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1612
|
-
return de_CommandError(output, context);
|
|
1613
|
-
}
|
|
1614
|
-
const contents = smithyClient.map({
|
|
1615
|
-
$metadata: deserializeMetadata(output),
|
|
1616
|
-
});
|
|
1617
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1618
|
-
const doc = smithyClient.take(data, {
|
|
1619
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1620
|
-
Description: smithyClient.expectString,
|
|
1621
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1622
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1623
|
-
GrowthType: smithyClient.expectString,
|
|
1624
|
-
Id: smithyClient.expectString,
|
|
1625
|
-
Name: smithyClient.expectString,
|
|
1626
|
-
ReplicateTo: smithyClient.expectString,
|
|
1627
|
-
});
|
|
1628
|
-
Object.assign(contents, doc);
|
|
1629
|
-
return contents;
|
|
1630
|
-
};
|
|
1631
|
-
const de_UpdateEnvironmentCommand = async (output, context) => {
|
|
1632
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1633
|
-
return de_CommandError(output, context);
|
|
1634
|
-
}
|
|
1635
|
-
const contents = smithyClient.map({
|
|
1636
|
-
$metadata: deserializeMetadata(output),
|
|
1637
|
-
});
|
|
1638
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1639
|
-
const doc = smithyClient.take(data, {
|
|
1640
|
-
ApplicationId: smithyClient.expectString,
|
|
1641
|
-
Description: smithyClient.expectString,
|
|
1642
|
-
Id: smithyClient.expectString,
|
|
1643
|
-
Monitors: smithyClient._json,
|
|
1644
|
-
Name: smithyClient.expectString,
|
|
1645
|
-
State: smithyClient.expectString,
|
|
1646
|
-
});
|
|
1647
|
-
Object.assign(contents, doc);
|
|
1648
|
-
return contents;
|
|
1649
|
-
};
|
|
1650
|
-
const de_UpdateExtensionCommand = async (output, context) => {
|
|
1651
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1652
|
-
return de_CommandError(output, context);
|
|
1653
|
-
}
|
|
1654
|
-
const contents = smithyClient.map({
|
|
1655
|
-
$metadata: deserializeMetadata(output),
|
|
1656
|
-
});
|
|
1657
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1658
|
-
const doc = smithyClient.take(data, {
|
|
1659
|
-
Actions: smithyClient._json,
|
|
1660
|
-
Arn: smithyClient.expectString,
|
|
1661
|
-
Description: smithyClient.expectString,
|
|
1662
|
-
Id: smithyClient.expectString,
|
|
1663
|
-
Name: smithyClient.expectString,
|
|
1664
|
-
Parameters: smithyClient._json,
|
|
1665
|
-
VersionNumber: smithyClient.expectInt32,
|
|
1666
|
-
});
|
|
1667
|
-
Object.assign(contents, doc);
|
|
1668
|
-
return contents;
|
|
1669
|
-
};
|
|
1670
|
-
const de_UpdateExtensionAssociationCommand = async (output, context) => {
|
|
1671
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1672
|
-
return de_CommandError(output, context);
|
|
1673
|
-
}
|
|
1674
|
-
const contents = smithyClient.map({
|
|
1675
|
-
$metadata: deserializeMetadata(output),
|
|
1676
|
-
});
|
|
1677
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1678
|
-
const doc = smithyClient.take(data, {
|
|
1679
|
-
Arn: smithyClient.expectString,
|
|
1680
|
-
ExtensionArn: smithyClient.expectString,
|
|
1681
|
-
ExtensionVersionNumber: smithyClient.expectInt32,
|
|
1682
|
-
Id: smithyClient.expectString,
|
|
1683
|
-
Parameters: smithyClient._json,
|
|
1684
|
-
ResourceArn: smithyClient.expectString,
|
|
1685
|
-
});
|
|
1686
|
-
Object.assign(contents, doc);
|
|
1687
|
-
return contents;
|
|
1688
|
-
};
|
|
1689
|
-
const de_ValidateConfigurationCommand = async (output, context) => {
|
|
1690
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1691
|
-
return de_CommandError(output, context);
|
|
1692
|
-
}
|
|
1693
|
-
const contents = smithyClient.map({
|
|
1694
|
-
$metadata: deserializeMetadata(output),
|
|
1695
|
-
});
|
|
1696
|
-
await smithyClient.collectBody(output.body, context);
|
|
1697
|
-
return contents;
|
|
1698
|
-
};
|
|
1699
|
-
const de_CommandError = async (output, context) => {
|
|
1700
|
-
const parsedOutput = {
|
|
1701
|
-
...output,
|
|
1702
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1703
|
-
};
|
|
1704
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1705
|
-
switch (errorCode) {
|
|
1706
|
-
case "BadRequestException":
|
|
1707
|
-
case "com.amazonaws.appconfig#BadRequestException":
|
|
1708
|
-
throw await de_BadRequestExceptionRes(parsedOutput);
|
|
1709
|
-
case "InternalServerException":
|
|
1710
|
-
case "com.amazonaws.appconfig#InternalServerException":
|
|
1711
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1712
|
-
case "ServiceQuotaExceededException":
|
|
1713
|
-
case "com.amazonaws.appconfig#ServiceQuotaExceededException":
|
|
1714
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1715
|
-
case "ResourceNotFoundException":
|
|
1716
|
-
case "com.amazonaws.appconfig#ResourceNotFoundException":
|
|
1717
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1718
|
-
case "ConflictException":
|
|
1719
|
-
case "com.amazonaws.appconfig#ConflictException":
|
|
1720
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1721
|
-
case "PayloadTooLargeException":
|
|
1722
|
-
case "com.amazonaws.appconfig#PayloadTooLargeException":
|
|
1723
|
-
throw await de_PayloadTooLargeExceptionRes(parsedOutput);
|
|
1724
|
-
default:
|
|
1725
|
-
const parsedBody = parsedOutput.body;
|
|
1726
|
-
return throwDefaultError({
|
|
1727
|
-
output,
|
|
1728
|
-
parsedBody,
|
|
1729
|
-
errorCode,
|
|
1730
|
-
});
|
|
1731
|
-
}
|
|
1732
|
-
};
|
|
1733
|
-
const throwDefaultError = smithyClient.withBaseException(AppConfigServiceException);
|
|
1734
|
-
const de_BadRequestExceptionRes = async (parsedOutput, context) => {
|
|
1735
|
-
const contents = smithyClient.map({});
|
|
1736
|
-
const data = parsedOutput.body;
|
|
1737
|
-
const doc = smithyClient.take(data, {
|
|
1738
|
-
Details: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1739
|
-
Message: smithyClient.expectString,
|
|
1740
|
-
Reason: smithyClient.expectString,
|
|
1741
|
-
});
|
|
1742
|
-
Object.assign(contents, doc);
|
|
1743
|
-
const exception = new BadRequestException({
|
|
1744
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1745
|
-
...contents,
|
|
1746
|
-
});
|
|
1747
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1748
|
-
};
|
|
1749
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1750
|
-
const contents = smithyClient.map({});
|
|
1751
|
-
const data = parsedOutput.body;
|
|
1752
|
-
const doc = smithyClient.take(data, {
|
|
1753
|
-
Message: smithyClient.expectString,
|
|
1754
|
-
});
|
|
1755
|
-
Object.assign(contents, doc);
|
|
1756
|
-
const exception = new ConflictException({
|
|
1757
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1758
|
-
...contents,
|
|
1759
|
-
});
|
|
1760
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1761
|
-
};
|
|
1762
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1763
|
-
const contents = smithyClient.map({});
|
|
1764
|
-
const data = parsedOutput.body;
|
|
1765
|
-
const doc = smithyClient.take(data, {
|
|
1766
|
-
Message: smithyClient.expectString,
|
|
1767
|
-
});
|
|
1768
|
-
Object.assign(contents, doc);
|
|
1769
|
-
const exception = new InternalServerException({
|
|
1770
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1771
|
-
...contents,
|
|
1772
|
-
});
|
|
1773
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1774
|
-
};
|
|
1775
|
-
const de_PayloadTooLargeExceptionRes = async (parsedOutput, context) => {
|
|
1776
|
-
const contents = smithyClient.map({});
|
|
1777
|
-
const data = parsedOutput.body;
|
|
1778
|
-
const doc = smithyClient.take(data, {
|
|
1779
|
-
Limit: smithyClient.limitedParseFloat32,
|
|
1780
|
-
Measure: smithyClient.expectString,
|
|
1781
|
-
Message: smithyClient.expectString,
|
|
1782
|
-
Size: smithyClient.limitedParseFloat32,
|
|
1783
|
-
});
|
|
1784
|
-
Object.assign(contents, doc);
|
|
1785
|
-
const exception = new PayloadTooLargeException({
|
|
1786
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1787
|
-
...contents,
|
|
1788
|
-
});
|
|
1789
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1790
|
-
};
|
|
1791
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1792
|
-
const contents = smithyClient.map({});
|
|
1793
|
-
const data = parsedOutput.body;
|
|
1794
|
-
const doc = smithyClient.take(data, {
|
|
1795
|
-
Message: smithyClient.expectString,
|
|
1796
|
-
ResourceName: smithyClient.expectString,
|
|
1797
|
-
});
|
|
1798
|
-
Object.assign(contents, doc);
|
|
1799
|
-
const exception = new ResourceNotFoundException({
|
|
1800
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1801
|
-
...contents,
|
|
1802
|
-
});
|
|
1803
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1804
|
-
};
|
|
1805
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1806
|
-
const contents = smithyClient.map({});
|
|
1807
|
-
const data = parsedOutput.body;
|
|
1808
|
-
const doc = smithyClient.take(data, {
|
|
1809
|
-
Message: smithyClient.expectString,
|
|
1810
|
-
});
|
|
1811
|
-
Object.assign(contents, doc);
|
|
1812
|
-
const exception = new ServiceQuotaExceededException({
|
|
1813
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1814
|
-
...contents,
|
|
1815
|
-
});
|
|
1816
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1817
|
-
};
|
|
1818
|
-
const de_DeploymentEvent = (output, context) => {
|
|
1819
|
-
return smithyClient.take(output, {
|
|
1820
|
-
ActionInvocations: smithyClient._json,
|
|
1821
|
-
Description: smithyClient.expectString,
|
|
1822
|
-
EventType: smithyClient.expectString,
|
|
1823
|
-
OccurredAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1824
|
-
TriggeredBy: smithyClient.expectString,
|
|
1825
|
-
});
|
|
1826
|
-
};
|
|
1827
|
-
const de_DeploymentEvents = (output, context) => {
|
|
1828
|
-
const retVal = (output || [])
|
|
1829
|
-
.filter((e) => e != null)
|
|
1830
|
-
.map((entry) => {
|
|
1831
|
-
return de_DeploymentEvent(entry);
|
|
1832
|
-
});
|
|
1833
|
-
return retVal;
|
|
1834
|
-
};
|
|
1835
|
-
const de_DeploymentList = (output, context) => {
|
|
1836
|
-
const retVal = (output || [])
|
|
1837
|
-
.filter((e) => e != null)
|
|
1838
|
-
.map((entry) => {
|
|
1839
|
-
return de_DeploymentSummary(entry);
|
|
1840
|
-
});
|
|
1841
|
-
return retVal;
|
|
1842
|
-
};
|
|
1843
|
-
const de_DeploymentStrategy = (output, context) => {
|
|
1844
|
-
return smithyClient.take(output, {
|
|
1845
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1846
|
-
Description: smithyClient.expectString,
|
|
1847
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1848
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1849
|
-
GrowthType: smithyClient.expectString,
|
|
1850
|
-
Id: smithyClient.expectString,
|
|
1851
|
-
Name: smithyClient.expectString,
|
|
1852
|
-
ReplicateTo: smithyClient.expectString,
|
|
1853
|
-
});
|
|
1854
|
-
};
|
|
1855
|
-
const de_DeploymentStrategyList = (output, context) => {
|
|
1856
|
-
const retVal = (output || [])
|
|
1857
|
-
.filter((e) => e != null)
|
|
1858
|
-
.map((entry) => {
|
|
1859
|
-
return de_DeploymentStrategy(entry);
|
|
1860
|
-
});
|
|
1861
|
-
return retVal;
|
|
1862
|
-
};
|
|
1863
|
-
const de_DeploymentSummary = (output, context) => {
|
|
1864
|
-
return smithyClient.take(output, {
|
|
1865
|
-
CompletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1866
|
-
ConfigurationName: smithyClient.expectString,
|
|
1867
|
-
ConfigurationVersion: smithyClient.expectString,
|
|
1868
|
-
DeploymentDurationInMinutes: smithyClient.expectInt32,
|
|
1869
|
-
DeploymentNumber: smithyClient.expectInt32,
|
|
1870
|
-
FinalBakeTimeInMinutes: smithyClient.expectInt32,
|
|
1871
|
-
GrowthFactor: smithyClient.limitedParseFloat32,
|
|
1872
|
-
GrowthType: smithyClient.expectString,
|
|
1873
|
-
PercentageComplete: smithyClient.limitedParseFloat32,
|
|
1874
|
-
StartedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1875
|
-
State: smithyClient.expectString,
|
|
1876
|
-
VersionLabel: smithyClient.expectString,
|
|
1877
|
-
});
|
|
1878
|
-
};
|
|
1879
|
-
const deserializeMetadata = (output) => ({
|
|
1880
|
-
httpStatusCode: output.statusCode,
|
|
1881
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1882
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1883
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1884
|
-
});
|
|
1885
|
-
const _AI = "ApplicationId";
|
|
282
|
+
const _A = "Action";
|
|
283
|
+
const _AA = "AlarmArn";
|
|
284
|
+
const _AE = "AppliedExtension";
|
|
285
|
+
const _AEp = "AppliedExtensions";
|
|
286
|
+
const _AI = "ActionInvocation";
|
|
287
|
+
const _AI_ = "Application-Id";
|
|
288
|
+
const _AIc = "ActionInvocations";
|
|
289
|
+
const _AIp = "ApplicationId";
|
|
290
|
+
const _AL = "ActionList";
|
|
291
|
+
const _ALp = "ApplicationList";
|
|
292
|
+
const _AM = "ActionsMap";
|
|
293
|
+
const _AN = "ActionName";
|
|
1886
294
|
const _AR = "AllowRevert";
|
|
295
|
+
const _ARA = "AlarmRoleArn";
|
|
296
|
+
const _AR_ = "Allow-Revert";
|
|
297
|
+
const _AS = "AccountSettings";
|
|
298
|
+
const _Ac = "Actions";
|
|
299
|
+
const _Ap = "Application";
|
|
300
|
+
const _App = "Applications";
|
|
301
|
+
const _Ar = "Arn";
|
|
302
|
+
const _B = "Blob";
|
|
303
|
+
const _BRD = "BadRequestDetails";
|
|
304
|
+
const _BRE = "BadRequestException";
|
|
305
|
+
const _C = "Configuration";
|
|
306
|
+
const _CA = "CompletedAt";
|
|
307
|
+
const _CAR = "CreateApplicationRequest";
|
|
308
|
+
const _CAr = "CreateApplication";
|
|
309
|
+
const _CCP = "CreateConfigurationProfile";
|
|
310
|
+
const _CCPR = "CreateConfigurationProfileRequest";
|
|
1887
311
|
const _CCV = "ClientConfigurationVersion";
|
|
312
|
+
const _CDS = "CreateDeploymentStrategy";
|
|
313
|
+
const _CDSR = "CreateDeploymentStrategyRequest";
|
|
314
|
+
const _CE = "ConflictException";
|
|
315
|
+
const _CEA = "CreateExtensionAssociation";
|
|
316
|
+
const _CEAR = "CreateExtensionAssociationRequest";
|
|
317
|
+
const _CER = "CreateEnvironmentRequest";
|
|
318
|
+
const _CERr = "CreateExtensionRequest";
|
|
319
|
+
const _CEr = "CreateEnvironment";
|
|
320
|
+
const _CEre = "CreateExtension";
|
|
321
|
+
const _CHCV = "CreateHostedConfigurationVersion";
|
|
322
|
+
const _CHCVR = "CreateHostedConfigurationVersionRequest";
|
|
1888
323
|
const _CI = "ClientId";
|
|
324
|
+
const _CLU = "ConfigurationLocationUri";
|
|
325
|
+
const _CN = "ConfigurationName";
|
|
326
|
+
const _CP = "ConfigurationProfile";
|
|
1889
327
|
const _CPI = "ConfigurationProfileId";
|
|
328
|
+
const _CPI_ = "Configuration-Profile-Id";
|
|
329
|
+
const _CPS = "ConfigurationProfileSummary";
|
|
330
|
+
const _CPSL = "ConfigurationProfileSummaryList";
|
|
331
|
+
const _CPo = "ConfigurationProfiles";
|
|
1890
332
|
const _CT = "ContentType";
|
|
333
|
+
const _CT_ = "Content-Type";
|
|
1891
334
|
const _CV = "ConfigurationVersion";
|
|
335
|
+
const _CV_ = "Configuration-Version";
|
|
336
|
+
const _Co = "Content";
|
|
337
|
+
const _Con = "Constraint";
|
|
1892
338
|
const _D = "Description";
|
|
339
|
+
const _DA = "DeleteApplication";
|
|
340
|
+
const _DAR = "DeleteApplicationRequest";
|
|
341
|
+
const _DCP = "DeleteConfigurationProfile";
|
|
342
|
+
const _DCPR = "DeleteConfigurationProfileRequest";
|
|
343
|
+
const _DDIM = "DeploymentDurationInMinutes";
|
|
344
|
+
const _DDS = "DeleteDeploymentStrategy";
|
|
345
|
+
const _DDSR = "DeleteDeploymentStrategyRequest";
|
|
346
|
+
const _DE = "DeploymentEvent";
|
|
347
|
+
const _DEA = "DeleteExtensionAssociation";
|
|
348
|
+
const _DEAR = "DeleteExtensionAssociationRequest";
|
|
349
|
+
const _DEP = "DynamicExtensionParameters";
|
|
350
|
+
const _DER = "DeleteEnvironmentRequest";
|
|
351
|
+
const _DERe = "DeleteExtensionRequest";
|
|
352
|
+
const _DEe = "DeploymentEvents";
|
|
353
|
+
const _DEel = "DeleteEnvironment";
|
|
354
|
+
const _DEele = "DeleteExtension";
|
|
355
|
+
const _DHCV = "DeleteHostedConfigurationVersion";
|
|
356
|
+
const _DHCVR = "DeleteHostedConfigurationVersionRequest";
|
|
357
|
+
const _DL = "DeploymentList";
|
|
358
|
+
const _DN = "DeploymentNumber";
|
|
359
|
+
const _DP = "DeletionProtection";
|
|
1893
360
|
const _DPC = "DeletionProtectionCheck";
|
|
361
|
+
const _DPM = "DynamicParameterMap";
|
|
362
|
+
const _DPS = "DeletionProtectionSettings";
|
|
363
|
+
const _DS = "DeploymentStrategies";
|
|
364
|
+
const _DSI = "DeploymentStrategyId";
|
|
365
|
+
const _DSL = "DeploymentStrategyList";
|
|
366
|
+
const _DSe = "DeploymentStrategy";
|
|
367
|
+
const _DSep = "DeploymentSummary";
|
|
368
|
+
const _De = "Details";
|
|
369
|
+
const _Dep = "Deployment";
|
|
370
|
+
const _Depl = "Deployments";
|
|
371
|
+
const _Dy = "Dynamic";
|
|
372
|
+
const _E = "Enabled";
|
|
373
|
+
const _EA = "ExtensionAssociation";
|
|
374
|
+
const _EAI = "ExtensionAssociationId";
|
|
375
|
+
const _EAS = "ExtensionAssociationSummary";
|
|
376
|
+
const _EASx = "ExtensionAssociationSummaries";
|
|
377
|
+
const _EAx = "ExtensionArn";
|
|
378
|
+
const _EAxt = "ExtensionAssociations";
|
|
379
|
+
const _EC = "ErrorCode";
|
|
1894
380
|
const _EI = "ExtensionIdentifier";
|
|
381
|
+
const _EIn = "EnvironmentId";
|
|
382
|
+
const _EIx = "ExtensionId";
|
|
383
|
+
const _EL = "EventLog";
|
|
384
|
+
const _ELn = "EnvironmentList";
|
|
385
|
+
const _EM = "ErrorMessage";
|
|
386
|
+
const _ES = "ExtensionSummary";
|
|
387
|
+
const _ESx = "ExtensionSummaries";
|
|
388
|
+
const _ET = "EventType";
|
|
1895
389
|
const _EVN = "ExtensionVersionNumber";
|
|
390
|
+
const _En = "Environment";
|
|
391
|
+
const _Env = "Environments";
|
|
392
|
+
const _Ex = "Extension";
|
|
393
|
+
const _Ext = "Extensions";
|
|
394
|
+
const _FBTIM = "FinalBakeTimeInMinutes";
|
|
395
|
+
const _GA = "GetApplication";
|
|
396
|
+
const _GAR = "GetApplicationRequest";
|
|
397
|
+
const _GAS = "GetAccountSettings";
|
|
398
|
+
const _GC = "GetConfiguration";
|
|
399
|
+
const _GCP = "GetConfigurationProfile";
|
|
400
|
+
const _GCPR = "GetConfigurationProfileRequest";
|
|
401
|
+
const _GCR = "GetConfigurationRequest";
|
|
402
|
+
const _GD = "GetDeployment";
|
|
403
|
+
const _GDR = "GetDeploymentRequest";
|
|
404
|
+
const _GDS = "GetDeploymentStrategy";
|
|
405
|
+
const _GDSR = "GetDeploymentStrategyRequest";
|
|
406
|
+
const _GE = "GetEnvironment";
|
|
407
|
+
const _GEA = "GetExtensionAssociation";
|
|
408
|
+
const _GEAR = "GetExtensionAssociationRequest";
|
|
409
|
+
const _GER = "GetEnvironmentRequest";
|
|
410
|
+
const _GERe = "GetExtensionRequest";
|
|
411
|
+
const _GEe = "GetExtension";
|
|
412
|
+
const _GF = "GrowthFactor";
|
|
413
|
+
const _GHCV = "GetHostedConfigurationVersion";
|
|
414
|
+
const _GHCVR = "GetHostedConfigurationVersionRequest";
|
|
415
|
+
const _GT = "GrowthType";
|
|
416
|
+
const _HCV = "HostedConfigurationVersion";
|
|
417
|
+
const _HCVS = "HostedConfigurationVersionSummary";
|
|
418
|
+
const _HCVSL = "HostedConfigurationVersionSummaryList";
|
|
419
|
+
const _HCVo = "HostedConfigurationVersions";
|
|
420
|
+
const _I = "Id";
|
|
421
|
+
const _IC = "InvalidConfiguration";
|
|
422
|
+
const _ICD = "InvalidConfigurationDetail";
|
|
423
|
+
const _ICDL = "InvalidConfigurationDetailList";
|
|
424
|
+
const _II = "InvocationId";
|
|
425
|
+
const _ISE = "InternalServerException";
|
|
426
|
+
const _It = "Items";
|
|
1896
427
|
const _KKA = "KmsKeyArn";
|
|
428
|
+
const _KKI = "KmsKeyIdentifier";
|
|
429
|
+
const _L = "Location";
|
|
430
|
+
const _LA = "ListApplications";
|
|
431
|
+
const _LAR = "ListApplicationsRequest";
|
|
432
|
+
const _LCP = "ListConfigurationProfiles";
|
|
433
|
+
const _LCPR = "ListConfigurationProfilesRequest";
|
|
434
|
+
const _LD = "ListDeployments";
|
|
435
|
+
const _LDR = "ListDeploymentsRequest";
|
|
436
|
+
const _LDS = "ListDeploymentStrategies";
|
|
437
|
+
const _LDSR = "ListDeploymentStrategiesRequest";
|
|
438
|
+
const _LE = "ListEnvironments";
|
|
439
|
+
const _LEA = "ListExtensionAssociations";
|
|
440
|
+
const _LEAR = "ListExtensionAssociationsRequest";
|
|
441
|
+
const _LER = "ListEnvironmentsRequest";
|
|
442
|
+
const _LERi = "ListExtensionsRequest";
|
|
443
|
+
const _LEi = "ListExtensions";
|
|
444
|
+
const _LHCV = "ListHostedConfigurationVersions";
|
|
445
|
+
const _LHCVR = "ListHostedConfigurationVersionsRequest";
|
|
446
|
+
const _LTFR = "ListTagsForResource";
|
|
447
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
448
|
+
const _LU = "LocationUri";
|
|
1897
449
|
const _LVN = "LatestVersionNumber";
|
|
450
|
+
const _LVN_ = "Latest-Version-Number";
|
|
451
|
+
const _Li = "Limit";
|
|
452
|
+
const _M = "Message";
|
|
453
|
+
const _ML = "MonitorList";
|
|
1898
454
|
const _MR = "MaxResults";
|
|
455
|
+
const _Me = "Measure";
|
|
456
|
+
const _Mo = "Monitors";
|
|
457
|
+
const _Mon = "Monitor";
|
|
1899
458
|
const _N = "Name";
|
|
1900
459
|
const _NT = "NextToken";
|
|
460
|
+
const _OA = "OccurredAt";
|
|
461
|
+
const _P = "Parameters";
|
|
462
|
+
const _PC = "PercentageComplete";
|
|
463
|
+
const _PM = "ParameterMap";
|
|
464
|
+
const _PPIM = "ProtectionPeriodInMinutes";
|
|
465
|
+
const _PTLE = "PayloadTooLargeException";
|
|
466
|
+
const _Pa = "Parameter";
|
|
467
|
+
const _R = "Reason";
|
|
468
|
+
const _RA = "RoleArn";
|
|
469
|
+
const _RAe = "ResourceArn";
|
|
1901
470
|
const _RI = "ResourceIdentifier";
|
|
471
|
+
const _RN = "ResourceName";
|
|
472
|
+
const _RNFE = "ResourceNotFoundException";
|
|
473
|
+
const _RRA = "RetrievalRoleArn";
|
|
474
|
+
const _RT = "ReplicateTo";
|
|
475
|
+
const _RTe = "ResourceTags";
|
|
476
|
+
const _Re = "Required";
|
|
477
|
+
const _S = "State";
|
|
478
|
+
const _SA = "StartedAt";
|
|
479
|
+
const _SD = "StartDeployment";
|
|
480
|
+
const _SDR = "StartDeploymentRequest";
|
|
481
|
+
const _SDRt = "StopDeploymentRequest";
|
|
482
|
+
const _SDt = "StopDeployment";
|
|
483
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
484
|
+
const _SWLBA = "StringWithLengthBetween0And32768";
|
|
485
|
+
const _Si = "Size";
|
|
1902
486
|
const _T = "Type";
|
|
487
|
+
const _TB = "TriggeredBy";
|
|
1903
488
|
const _TK = "TagKeys";
|
|
489
|
+
const _TR = "TagResource";
|
|
490
|
+
const _TRR = "TagResourceRequest";
|
|
491
|
+
const _Ta = "Tags";
|
|
492
|
+
const _U = "Uri";
|
|
493
|
+
const _UA = "UpdateApplication";
|
|
494
|
+
const _UAR = "UpdateApplicationRequest";
|
|
495
|
+
const _UAS = "UpdateAccountSettings";
|
|
496
|
+
const _UASR = "UpdateAccountSettingsRequest";
|
|
497
|
+
const _UCP = "UpdateConfigurationProfile";
|
|
498
|
+
const _UCPR = "UpdateConfigurationProfileRequest";
|
|
499
|
+
const _UDS = "UpdateDeploymentStrategy";
|
|
500
|
+
const _UDSR = "UpdateDeploymentStrategyRequest";
|
|
501
|
+
const _UE = "UpdateEnvironment";
|
|
502
|
+
const _UEA = "UpdateExtensionAssociation";
|
|
503
|
+
const _UEAR = "UpdateExtensionAssociationRequest";
|
|
504
|
+
const _UER = "UpdateEnvironmentRequest";
|
|
505
|
+
const _UERp = "UpdateExtensionRequest";
|
|
506
|
+
const _UEp = "UpdateExtension";
|
|
507
|
+
const _UR = "UntagResource";
|
|
508
|
+
const _URR = "UntagResourceRequest";
|
|
509
|
+
const _V = "Validators";
|
|
510
|
+
const _VC = "ValidateConfiguration";
|
|
511
|
+
const _VCR = "ValidateConfigurationRequest";
|
|
1904
512
|
const _VL = "VersionLabel";
|
|
513
|
+
const _VLa = "ValidatorList";
|
|
1905
514
|
const _VN = "VersionNumber";
|
|
1906
|
-
const
|
|
1907
|
-
const
|
|
515
|
+
const _VN_ = "Version-Number";
|
|
516
|
+
const _VT = "ValidatorTypes";
|
|
517
|
+
const _Va = "Value";
|
|
518
|
+
const _Val = "Validator";
|
|
519
|
+
const _c = "client";
|
|
1908
520
|
const _ccv = "client_configuration_version";
|
|
1909
521
|
const _ci = "client_id";
|
|
1910
|
-
const _cpi = "configuration-profile-id";
|
|
1911
|
-
const _ct = "content-type";
|
|
1912
522
|
const _cv = "configuration_version";
|
|
1913
|
-
const
|
|
1914
|
-
const _d = "description";
|
|
523
|
+
const _e = "error";
|
|
1915
524
|
const _ei = "extension_identifier";
|
|
1916
525
|
const _evn = "extension_version_number";
|
|
1917
|
-
const
|
|
1918
|
-
const
|
|
526
|
+
const _h = "http";
|
|
527
|
+
const _hE = "httpError";
|
|
528
|
+
const _hH = "httpHeader";
|
|
529
|
+
const _hQ = "httpQuery";
|
|
1919
530
|
const _mr = "max_results";
|
|
1920
531
|
const _n = "name";
|
|
1921
532
|
const _nt = "next_token";
|
|
1922
533
|
const _ri = "resource_identifier";
|
|
534
|
+
const _s = "server";
|
|
535
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appconfig";
|
|
1923
536
|
const _t = "type";
|
|
1924
537
|
const _tK = "tagKeys";
|
|
1925
|
-
const _v = "
|
|
1926
|
-
const _ve = "version";
|
|
538
|
+
const _v = "version";
|
|
1927
539
|
const _vl = "version_label";
|
|
1928
540
|
const _vn = "version_number";
|
|
1929
|
-
const _vn_ = "version-number";
|
|
1930
541
|
const _xadpc = "x-amzn-deletion-protection-check";
|
|
542
|
+
const n0 = "com.amazonaws.appconfig";
|
|
543
|
+
var _Blob = [0, n0, _B, 8, 21];
|
|
544
|
+
var StringWithLengthBetween0And32768 = [0, n0, _SWLBA, 8, 0];
|
|
545
|
+
var AccountSettings = [3, n0, _AS, 0, [_DP], [() => DeletionProtectionSettings]];
|
|
546
|
+
var Action = [3, n0, _A, 0, [_N, _D, _U, _RA], [0, 0, 0, 0]];
|
|
547
|
+
var ActionInvocation = [
|
|
548
|
+
3,
|
|
549
|
+
n0,
|
|
550
|
+
_AI,
|
|
551
|
+
0,
|
|
552
|
+
[_EI, _AN, _U, _RA, _EM, _EC, _II],
|
|
553
|
+
[0, 0, 0, 0, 0, 0, 0],
|
|
554
|
+
];
|
|
555
|
+
var Application = [3, n0, _Ap, 0, [_I, _N, _D], [0, 0, 0]];
|
|
556
|
+
var Applications = [3, n0, _App, 0, [_It, _NT], [() => ApplicationList, 0]];
|
|
557
|
+
var AppliedExtension = [3, n0, _AE, 0, [_EIx, _EAI, _VN, _P], [0, 0, 1, 128 | 0]];
|
|
558
|
+
var BadRequestException = [
|
|
559
|
+
-3,
|
|
560
|
+
n0,
|
|
561
|
+
_BRE,
|
|
562
|
+
{
|
|
563
|
+
[_e]: _c,
|
|
564
|
+
[_hE]: 400,
|
|
565
|
+
},
|
|
566
|
+
[_M, _R, _De],
|
|
567
|
+
[0, 0, () => BadRequestDetails],
|
|
568
|
+
];
|
|
569
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
|
|
570
|
+
var Configuration = [
|
|
571
|
+
3,
|
|
572
|
+
n0,
|
|
573
|
+
_C,
|
|
574
|
+
0,
|
|
575
|
+
[_Co, _CV, _CT],
|
|
576
|
+
[
|
|
577
|
+
[() => _Blob, 16],
|
|
578
|
+
[
|
|
579
|
+
0,
|
|
580
|
+
{
|
|
581
|
+
[_hH]: _CV_,
|
|
582
|
+
},
|
|
583
|
+
],
|
|
584
|
+
[
|
|
585
|
+
0,
|
|
586
|
+
{
|
|
587
|
+
[_hH]: _CT_,
|
|
588
|
+
},
|
|
589
|
+
],
|
|
590
|
+
],
|
|
591
|
+
];
|
|
592
|
+
var ConfigurationProfile = [
|
|
593
|
+
3,
|
|
594
|
+
n0,
|
|
595
|
+
_CP,
|
|
596
|
+
0,
|
|
597
|
+
[_AIp, _I, _N, _D, _LU, _RRA, _V, _T, _KKA, _KKI],
|
|
598
|
+
[0, 0, 0, 0, 0, 0, [() => ValidatorList, 0], 0, 0, 0],
|
|
599
|
+
];
|
|
600
|
+
var ConfigurationProfiles = [
|
|
601
|
+
3,
|
|
602
|
+
n0,
|
|
603
|
+
_CPo,
|
|
604
|
+
0,
|
|
605
|
+
[_It, _NT],
|
|
606
|
+
[() => ConfigurationProfileSummaryList, 0],
|
|
607
|
+
];
|
|
608
|
+
var ConfigurationProfileSummary = [
|
|
609
|
+
3,
|
|
610
|
+
n0,
|
|
611
|
+
_CPS,
|
|
612
|
+
0,
|
|
613
|
+
[_AIp, _I, _N, _LU, _VT, _T],
|
|
614
|
+
[0, 0, 0, 0, 64 | 0, 0],
|
|
615
|
+
];
|
|
616
|
+
var ConflictException = [
|
|
617
|
+
-3,
|
|
618
|
+
n0,
|
|
619
|
+
_CE,
|
|
620
|
+
{
|
|
621
|
+
[_e]: _c,
|
|
622
|
+
[_hE]: 409,
|
|
623
|
+
},
|
|
624
|
+
[_M],
|
|
625
|
+
[0],
|
|
626
|
+
];
|
|
627
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
628
|
+
var CreateApplicationRequest = [3, n0, _CAR, 0, [_N, _D, _Ta], [0, 0, 128 | 0]];
|
|
629
|
+
var CreateConfigurationProfileRequest = [
|
|
630
|
+
3,
|
|
631
|
+
n0,
|
|
632
|
+
_CCPR,
|
|
633
|
+
0,
|
|
634
|
+
[_AIp, _N, _D, _LU, _RRA, _V, _Ta, _T, _KKI],
|
|
635
|
+
[[0, 1], 0, 0, 0, 0, [() => ValidatorList, 0], 128 | 0, 0, 0],
|
|
636
|
+
];
|
|
637
|
+
var CreateDeploymentStrategyRequest = [
|
|
638
|
+
3,
|
|
639
|
+
n0,
|
|
640
|
+
_CDSR,
|
|
641
|
+
0,
|
|
642
|
+
[_N, _D, _DDIM, _FBTIM, _GF, _GT, _RT, _Ta],
|
|
643
|
+
[0, 0, 1, 1, 1, 0, 0, 128 | 0],
|
|
644
|
+
];
|
|
645
|
+
var CreateEnvironmentRequest = [
|
|
646
|
+
3,
|
|
647
|
+
n0,
|
|
648
|
+
_CER,
|
|
649
|
+
0,
|
|
650
|
+
[_AIp, _N, _D, _Mo, _Ta],
|
|
651
|
+
[[0, 1], 0, 0, () => MonitorList, 128 | 0],
|
|
652
|
+
];
|
|
653
|
+
var CreateExtensionAssociationRequest = [
|
|
654
|
+
3,
|
|
655
|
+
n0,
|
|
656
|
+
_CEAR,
|
|
657
|
+
0,
|
|
658
|
+
[_EI, _EVN, _RI, _P, _Ta],
|
|
659
|
+
[0, 1, 0, 128 | 0, 128 | 0],
|
|
660
|
+
];
|
|
661
|
+
var CreateExtensionRequest = [
|
|
662
|
+
3,
|
|
663
|
+
n0,
|
|
664
|
+
_CERr,
|
|
665
|
+
0,
|
|
666
|
+
[_N, _D, _Ac, _P, _Ta, _LVN],
|
|
667
|
+
[
|
|
668
|
+
0,
|
|
669
|
+
0,
|
|
670
|
+
() => ActionsMap,
|
|
671
|
+
() => ParameterMap,
|
|
672
|
+
128 | 0,
|
|
673
|
+
[
|
|
674
|
+
1,
|
|
675
|
+
{
|
|
676
|
+
[_hH]: _LVN_,
|
|
677
|
+
},
|
|
678
|
+
],
|
|
679
|
+
],
|
|
680
|
+
];
|
|
681
|
+
var CreateHostedConfigurationVersionRequest = [
|
|
682
|
+
3,
|
|
683
|
+
n0,
|
|
684
|
+
_CHCVR,
|
|
685
|
+
0,
|
|
686
|
+
[_AIp, _CPI, _D, _Co, _CT, _LVN, _VL],
|
|
687
|
+
[
|
|
688
|
+
[0, 1],
|
|
689
|
+
[0, 1],
|
|
690
|
+
[
|
|
691
|
+
0,
|
|
692
|
+
{
|
|
693
|
+
[_hH]: _D,
|
|
694
|
+
},
|
|
695
|
+
],
|
|
696
|
+
[() => _Blob, 16],
|
|
697
|
+
[
|
|
698
|
+
0,
|
|
699
|
+
{
|
|
700
|
+
[_hH]: _CT_,
|
|
701
|
+
},
|
|
702
|
+
],
|
|
703
|
+
[
|
|
704
|
+
1,
|
|
705
|
+
{
|
|
706
|
+
[_hH]: _LVN_,
|
|
707
|
+
},
|
|
708
|
+
],
|
|
709
|
+
[
|
|
710
|
+
0,
|
|
711
|
+
{
|
|
712
|
+
[_hH]: _VL,
|
|
713
|
+
},
|
|
714
|
+
],
|
|
715
|
+
],
|
|
716
|
+
];
|
|
717
|
+
var DeleteApplicationRequest = [3, n0, _DAR, 0, [_AIp], [[0, 1]]];
|
|
718
|
+
var DeleteConfigurationProfileRequest = [
|
|
719
|
+
3,
|
|
720
|
+
n0,
|
|
721
|
+
_DCPR,
|
|
722
|
+
0,
|
|
723
|
+
[_AIp, _CPI, _DPC],
|
|
724
|
+
[
|
|
725
|
+
[0, 1],
|
|
726
|
+
[0, 1],
|
|
727
|
+
[
|
|
728
|
+
0,
|
|
729
|
+
{
|
|
730
|
+
[_hH]: _xadpc,
|
|
731
|
+
},
|
|
732
|
+
],
|
|
733
|
+
],
|
|
734
|
+
];
|
|
735
|
+
var DeleteDeploymentStrategyRequest = [3, n0, _DDSR, 0, [_DSI], [[0, 1]]];
|
|
736
|
+
var DeleteEnvironmentRequest = [
|
|
737
|
+
3,
|
|
738
|
+
n0,
|
|
739
|
+
_DER,
|
|
740
|
+
0,
|
|
741
|
+
[_EIn, _AIp, _DPC],
|
|
742
|
+
[
|
|
743
|
+
[0, 1],
|
|
744
|
+
[0, 1],
|
|
745
|
+
[
|
|
746
|
+
0,
|
|
747
|
+
{
|
|
748
|
+
[_hH]: _xadpc,
|
|
749
|
+
},
|
|
750
|
+
],
|
|
751
|
+
],
|
|
752
|
+
];
|
|
753
|
+
var DeleteExtensionAssociationRequest = [3, n0, _DEAR, 0, [_EAI], [[0, 1]]];
|
|
754
|
+
var DeleteExtensionRequest = [
|
|
755
|
+
3,
|
|
756
|
+
n0,
|
|
757
|
+
_DERe,
|
|
758
|
+
0,
|
|
759
|
+
[_EI, _VN],
|
|
760
|
+
[
|
|
761
|
+
[0, 1],
|
|
762
|
+
[
|
|
763
|
+
1,
|
|
764
|
+
{
|
|
765
|
+
[_hQ]: _v,
|
|
766
|
+
},
|
|
767
|
+
],
|
|
768
|
+
],
|
|
769
|
+
];
|
|
770
|
+
var DeleteHostedConfigurationVersionRequest = [
|
|
771
|
+
3,
|
|
772
|
+
n0,
|
|
773
|
+
_DHCVR,
|
|
774
|
+
0,
|
|
775
|
+
[_AIp, _CPI, _VN],
|
|
776
|
+
[
|
|
777
|
+
[0, 1],
|
|
778
|
+
[0, 1],
|
|
779
|
+
[1, 1],
|
|
780
|
+
],
|
|
781
|
+
];
|
|
782
|
+
var DeletionProtectionSettings = [3, n0, _DPS, 0, [_E, _PPIM], [2, 1]];
|
|
783
|
+
var Deployment = [
|
|
784
|
+
3,
|
|
785
|
+
n0,
|
|
786
|
+
_Dep,
|
|
787
|
+
0,
|
|
788
|
+
[
|
|
789
|
+
_AIp,
|
|
790
|
+
_EIn,
|
|
791
|
+
_DSI,
|
|
792
|
+
_CPI,
|
|
793
|
+
_DN,
|
|
794
|
+
_CN,
|
|
795
|
+
_CLU,
|
|
796
|
+
_CV,
|
|
797
|
+
_D,
|
|
798
|
+
_DDIM,
|
|
799
|
+
_GT,
|
|
800
|
+
_GF,
|
|
801
|
+
_FBTIM,
|
|
802
|
+
_S,
|
|
803
|
+
_EL,
|
|
804
|
+
_PC,
|
|
805
|
+
_SA,
|
|
806
|
+
_CA,
|
|
807
|
+
_AEp,
|
|
808
|
+
_KKA,
|
|
809
|
+
_KKI,
|
|
810
|
+
_VL,
|
|
811
|
+
],
|
|
812
|
+
[0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, () => DeploymentEvents, 1, 5, 5, () => AppliedExtensions, 0, 0, 0],
|
|
813
|
+
];
|
|
814
|
+
var DeploymentEvent = [
|
|
815
|
+
3,
|
|
816
|
+
n0,
|
|
817
|
+
_DE,
|
|
818
|
+
0,
|
|
819
|
+
[_ET, _TB, _D, _AIc, _OA],
|
|
820
|
+
[0, 0, 0, () => ActionInvocations, 5],
|
|
821
|
+
];
|
|
822
|
+
var Deployments = [3, n0, _Depl, 0, [_It, _NT], [() => DeploymentList, 0]];
|
|
823
|
+
var DeploymentStrategies = [3, n0, _DS, 0, [_It, _NT], [() => DeploymentStrategyList, 0]];
|
|
824
|
+
var DeploymentStrategy = [
|
|
825
|
+
3,
|
|
826
|
+
n0,
|
|
827
|
+
_DSe,
|
|
828
|
+
0,
|
|
829
|
+
[_I, _N, _D, _DDIM, _GT, _GF, _FBTIM, _RT],
|
|
830
|
+
[0, 0, 0, 1, 0, 1, 1, 0],
|
|
831
|
+
];
|
|
832
|
+
var DeploymentSummary = [
|
|
833
|
+
3,
|
|
834
|
+
n0,
|
|
835
|
+
_DSep,
|
|
836
|
+
0,
|
|
837
|
+
[_DN, _CN, _CV, _DDIM, _GT, _GF, _FBTIM, _S, _PC, _SA, _CA, _VL],
|
|
838
|
+
[1, 0, 0, 1, 0, 1, 1, 0, 1, 5, 5, 0],
|
|
839
|
+
];
|
|
840
|
+
var Environment = [
|
|
841
|
+
3,
|
|
842
|
+
n0,
|
|
843
|
+
_En,
|
|
844
|
+
0,
|
|
845
|
+
[_AIp, _I, _N, _D, _S, _Mo],
|
|
846
|
+
[0, 0, 0, 0, 0, () => MonitorList],
|
|
847
|
+
];
|
|
848
|
+
var Environments = [3, n0, _Env, 0, [_It, _NT], [() => EnvironmentList, 0]];
|
|
849
|
+
var Extension = [
|
|
850
|
+
3,
|
|
851
|
+
n0,
|
|
852
|
+
_Ex,
|
|
853
|
+
0,
|
|
854
|
+
[_I, _N, _VN, _Ar, _D, _Ac, _P],
|
|
855
|
+
[0, 0, 1, 0, 0, () => ActionsMap, () => ParameterMap],
|
|
856
|
+
];
|
|
857
|
+
var ExtensionAssociation = [
|
|
858
|
+
3,
|
|
859
|
+
n0,
|
|
860
|
+
_EA,
|
|
861
|
+
0,
|
|
862
|
+
[_I, _EAx, _RAe, _Ar, _P, _EVN],
|
|
863
|
+
[0, 0, 0, 0, 128 | 0, 1],
|
|
864
|
+
];
|
|
865
|
+
var ExtensionAssociations = [
|
|
866
|
+
3,
|
|
867
|
+
n0,
|
|
868
|
+
_EAxt,
|
|
869
|
+
0,
|
|
870
|
+
[_It, _NT],
|
|
871
|
+
[() => ExtensionAssociationSummaries, 0],
|
|
872
|
+
];
|
|
873
|
+
var ExtensionAssociationSummary = [3, n0, _EAS, 0, [_I, _EAx, _RAe], [0, 0, 0]];
|
|
874
|
+
var Extensions = [3, n0, _Ext, 0, [_It, _NT], [() => ExtensionSummaries, 0]];
|
|
875
|
+
var ExtensionSummary = [3, n0, _ES, 0, [_I, _N, _VN, _Ar, _D], [0, 0, 1, 0, 0]];
|
|
876
|
+
var GetApplicationRequest = [3, n0, _GAR, 0, [_AIp], [[0, 1]]];
|
|
877
|
+
var GetConfigurationProfileRequest = [
|
|
878
|
+
3,
|
|
879
|
+
n0,
|
|
880
|
+
_GCPR,
|
|
881
|
+
0,
|
|
882
|
+
[_AIp, _CPI],
|
|
883
|
+
[
|
|
884
|
+
[0, 1],
|
|
885
|
+
[0, 1],
|
|
886
|
+
],
|
|
887
|
+
];
|
|
888
|
+
var GetConfigurationRequest = [
|
|
889
|
+
3,
|
|
890
|
+
n0,
|
|
891
|
+
_GCR,
|
|
892
|
+
0,
|
|
893
|
+
[_Ap, _En, _C, _CI, _CCV],
|
|
894
|
+
[
|
|
895
|
+
[0, 1],
|
|
896
|
+
[0, 1],
|
|
897
|
+
[0, 1],
|
|
898
|
+
[
|
|
899
|
+
0,
|
|
900
|
+
{
|
|
901
|
+
[_hQ]: _ci,
|
|
902
|
+
},
|
|
903
|
+
],
|
|
904
|
+
[
|
|
905
|
+
0,
|
|
906
|
+
{
|
|
907
|
+
[_hQ]: _ccv,
|
|
908
|
+
},
|
|
909
|
+
],
|
|
910
|
+
],
|
|
911
|
+
];
|
|
912
|
+
var GetDeploymentRequest = [
|
|
913
|
+
3,
|
|
914
|
+
n0,
|
|
915
|
+
_GDR,
|
|
916
|
+
0,
|
|
917
|
+
[_AIp, _EIn, _DN],
|
|
918
|
+
[
|
|
919
|
+
[0, 1],
|
|
920
|
+
[0, 1],
|
|
921
|
+
[1, 1],
|
|
922
|
+
],
|
|
923
|
+
];
|
|
924
|
+
var GetDeploymentStrategyRequest = [3, n0, _GDSR, 0, [_DSI], [[0, 1]]];
|
|
925
|
+
var GetEnvironmentRequest = [
|
|
926
|
+
3,
|
|
927
|
+
n0,
|
|
928
|
+
_GER,
|
|
929
|
+
0,
|
|
930
|
+
[_AIp, _EIn],
|
|
931
|
+
[
|
|
932
|
+
[0, 1],
|
|
933
|
+
[0, 1],
|
|
934
|
+
],
|
|
935
|
+
];
|
|
936
|
+
var GetExtensionAssociationRequest = [3, n0, _GEAR, 0, [_EAI], [[0, 1]]];
|
|
937
|
+
var GetExtensionRequest = [
|
|
938
|
+
3,
|
|
939
|
+
n0,
|
|
940
|
+
_GERe,
|
|
941
|
+
0,
|
|
942
|
+
[_EI, _VN],
|
|
943
|
+
[
|
|
944
|
+
[0, 1],
|
|
945
|
+
[
|
|
946
|
+
1,
|
|
947
|
+
{
|
|
948
|
+
[_hQ]: _vn,
|
|
949
|
+
},
|
|
950
|
+
],
|
|
951
|
+
],
|
|
952
|
+
];
|
|
953
|
+
var GetHostedConfigurationVersionRequest = [
|
|
954
|
+
3,
|
|
955
|
+
n0,
|
|
956
|
+
_GHCVR,
|
|
957
|
+
0,
|
|
958
|
+
[_AIp, _CPI, _VN],
|
|
959
|
+
[
|
|
960
|
+
[0, 1],
|
|
961
|
+
[0, 1],
|
|
962
|
+
[1, 1],
|
|
963
|
+
],
|
|
964
|
+
];
|
|
965
|
+
var HostedConfigurationVersion = [
|
|
966
|
+
3,
|
|
967
|
+
n0,
|
|
968
|
+
_HCV,
|
|
969
|
+
0,
|
|
970
|
+
[_AIp, _CPI, _VN, _D, _Co, _CT, _VL, _KKA],
|
|
971
|
+
[
|
|
972
|
+
[
|
|
973
|
+
0,
|
|
974
|
+
{
|
|
975
|
+
[_hH]: _AI_,
|
|
976
|
+
},
|
|
977
|
+
],
|
|
978
|
+
[
|
|
979
|
+
0,
|
|
980
|
+
{
|
|
981
|
+
[_hH]: _CPI_,
|
|
982
|
+
},
|
|
983
|
+
],
|
|
984
|
+
[
|
|
985
|
+
1,
|
|
986
|
+
{
|
|
987
|
+
[_hH]: _VN_,
|
|
988
|
+
},
|
|
989
|
+
],
|
|
990
|
+
[
|
|
991
|
+
0,
|
|
992
|
+
{
|
|
993
|
+
[_hH]: _D,
|
|
994
|
+
},
|
|
995
|
+
],
|
|
996
|
+
[() => _Blob, 16],
|
|
997
|
+
[
|
|
998
|
+
0,
|
|
999
|
+
{
|
|
1000
|
+
[_hH]: _CT_,
|
|
1001
|
+
},
|
|
1002
|
+
],
|
|
1003
|
+
[
|
|
1004
|
+
0,
|
|
1005
|
+
{
|
|
1006
|
+
[_hH]: _VL,
|
|
1007
|
+
},
|
|
1008
|
+
],
|
|
1009
|
+
[
|
|
1010
|
+
0,
|
|
1011
|
+
{
|
|
1012
|
+
[_hH]: _KKA,
|
|
1013
|
+
},
|
|
1014
|
+
],
|
|
1015
|
+
],
|
|
1016
|
+
];
|
|
1017
|
+
var HostedConfigurationVersions = [
|
|
1018
|
+
3,
|
|
1019
|
+
n0,
|
|
1020
|
+
_HCVo,
|
|
1021
|
+
0,
|
|
1022
|
+
[_It, _NT],
|
|
1023
|
+
[() => HostedConfigurationVersionSummaryList, 0],
|
|
1024
|
+
];
|
|
1025
|
+
var HostedConfigurationVersionSummary = [
|
|
1026
|
+
3,
|
|
1027
|
+
n0,
|
|
1028
|
+
_HCVS,
|
|
1029
|
+
0,
|
|
1030
|
+
[_AIp, _CPI, _VN, _D, _CT, _VL, _KKA],
|
|
1031
|
+
[0, 0, 1, 0, 0, 0, 0],
|
|
1032
|
+
];
|
|
1033
|
+
var InternalServerException = [
|
|
1034
|
+
-3,
|
|
1035
|
+
n0,
|
|
1036
|
+
_ISE,
|
|
1037
|
+
{
|
|
1038
|
+
[_e]: _s,
|
|
1039
|
+
[_hE]: 500,
|
|
1040
|
+
},
|
|
1041
|
+
[_M],
|
|
1042
|
+
[0],
|
|
1043
|
+
];
|
|
1044
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1045
|
+
var InvalidConfigurationDetail = [
|
|
1046
|
+
3,
|
|
1047
|
+
n0,
|
|
1048
|
+
_ICD,
|
|
1049
|
+
0,
|
|
1050
|
+
[_Con, _L, _R, _T, _Va],
|
|
1051
|
+
[0, 0, 0, 0, 0],
|
|
1052
|
+
];
|
|
1053
|
+
var ListApplicationsRequest = [
|
|
1054
|
+
3,
|
|
1055
|
+
n0,
|
|
1056
|
+
_LAR,
|
|
1057
|
+
0,
|
|
1058
|
+
[_MR, _NT],
|
|
1059
|
+
[
|
|
1060
|
+
[
|
|
1061
|
+
1,
|
|
1062
|
+
{
|
|
1063
|
+
[_hQ]: _mr,
|
|
1064
|
+
},
|
|
1065
|
+
],
|
|
1066
|
+
[
|
|
1067
|
+
0,
|
|
1068
|
+
{
|
|
1069
|
+
[_hQ]: _nt,
|
|
1070
|
+
},
|
|
1071
|
+
],
|
|
1072
|
+
],
|
|
1073
|
+
];
|
|
1074
|
+
var ListConfigurationProfilesRequest = [
|
|
1075
|
+
3,
|
|
1076
|
+
n0,
|
|
1077
|
+
_LCPR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_AIp, _MR, _NT, _T],
|
|
1080
|
+
[
|
|
1081
|
+
[0, 1],
|
|
1082
|
+
[
|
|
1083
|
+
1,
|
|
1084
|
+
{
|
|
1085
|
+
[_hQ]: _mr,
|
|
1086
|
+
},
|
|
1087
|
+
],
|
|
1088
|
+
[
|
|
1089
|
+
0,
|
|
1090
|
+
{
|
|
1091
|
+
[_hQ]: _nt,
|
|
1092
|
+
},
|
|
1093
|
+
],
|
|
1094
|
+
[
|
|
1095
|
+
0,
|
|
1096
|
+
{
|
|
1097
|
+
[_hQ]: _t,
|
|
1098
|
+
},
|
|
1099
|
+
],
|
|
1100
|
+
],
|
|
1101
|
+
];
|
|
1102
|
+
var ListDeploymentsRequest = [
|
|
1103
|
+
3,
|
|
1104
|
+
n0,
|
|
1105
|
+
_LDR,
|
|
1106
|
+
0,
|
|
1107
|
+
[_AIp, _EIn, _MR, _NT],
|
|
1108
|
+
[
|
|
1109
|
+
[0, 1],
|
|
1110
|
+
[0, 1],
|
|
1111
|
+
[
|
|
1112
|
+
1,
|
|
1113
|
+
{
|
|
1114
|
+
[_hQ]: _mr,
|
|
1115
|
+
},
|
|
1116
|
+
],
|
|
1117
|
+
[
|
|
1118
|
+
0,
|
|
1119
|
+
{
|
|
1120
|
+
[_hQ]: _nt,
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
],
|
|
1124
|
+
];
|
|
1125
|
+
var ListDeploymentStrategiesRequest = [
|
|
1126
|
+
3,
|
|
1127
|
+
n0,
|
|
1128
|
+
_LDSR,
|
|
1129
|
+
0,
|
|
1130
|
+
[_MR, _NT],
|
|
1131
|
+
[
|
|
1132
|
+
[
|
|
1133
|
+
1,
|
|
1134
|
+
{
|
|
1135
|
+
[_hQ]: _mr,
|
|
1136
|
+
},
|
|
1137
|
+
],
|
|
1138
|
+
[
|
|
1139
|
+
0,
|
|
1140
|
+
{
|
|
1141
|
+
[_hQ]: _nt,
|
|
1142
|
+
},
|
|
1143
|
+
],
|
|
1144
|
+
],
|
|
1145
|
+
];
|
|
1146
|
+
var ListEnvironmentsRequest = [
|
|
1147
|
+
3,
|
|
1148
|
+
n0,
|
|
1149
|
+
_LER,
|
|
1150
|
+
0,
|
|
1151
|
+
[_AIp, _MR, _NT],
|
|
1152
|
+
[
|
|
1153
|
+
[0, 1],
|
|
1154
|
+
[
|
|
1155
|
+
1,
|
|
1156
|
+
{
|
|
1157
|
+
[_hQ]: _mr,
|
|
1158
|
+
},
|
|
1159
|
+
],
|
|
1160
|
+
[
|
|
1161
|
+
0,
|
|
1162
|
+
{
|
|
1163
|
+
[_hQ]: _nt,
|
|
1164
|
+
},
|
|
1165
|
+
],
|
|
1166
|
+
],
|
|
1167
|
+
];
|
|
1168
|
+
var ListExtensionAssociationsRequest = [
|
|
1169
|
+
3,
|
|
1170
|
+
n0,
|
|
1171
|
+
_LEAR,
|
|
1172
|
+
0,
|
|
1173
|
+
[_RI, _EI, _EVN, _MR, _NT],
|
|
1174
|
+
[
|
|
1175
|
+
[
|
|
1176
|
+
0,
|
|
1177
|
+
{
|
|
1178
|
+
[_hQ]: _ri,
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
[
|
|
1182
|
+
0,
|
|
1183
|
+
{
|
|
1184
|
+
[_hQ]: _ei,
|
|
1185
|
+
},
|
|
1186
|
+
],
|
|
1187
|
+
[
|
|
1188
|
+
1,
|
|
1189
|
+
{
|
|
1190
|
+
[_hQ]: _evn,
|
|
1191
|
+
},
|
|
1192
|
+
],
|
|
1193
|
+
[
|
|
1194
|
+
1,
|
|
1195
|
+
{
|
|
1196
|
+
[_hQ]: _mr,
|
|
1197
|
+
},
|
|
1198
|
+
],
|
|
1199
|
+
[
|
|
1200
|
+
0,
|
|
1201
|
+
{
|
|
1202
|
+
[_hQ]: _nt,
|
|
1203
|
+
},
|
|
1204
|
+
],
|
|
1205
|
+
],
|
|
1206
|
+
];
|
|
1207
|
+
var ListExtensionsRequest = [
|
|
1208
|
+
3,
|
|
1209
|
+
n0,
|
|
1210
|
+
_LERi,
|
|
1211
|
+
0,
|
|
1212
|
+
[_MR, _NT, _N],
|
|
1213
|
+
[
|
|
1214
|
+
[
|
|
1215
|
+
1,
|
|
1216
|
+
{
|
|
1217
|
+
[_hQ]: _mr,
|
|
1218
|
+
},
|
|
1219
|
+
],
|
|
1220
|
+
[
|
|
1221
|
+
0,
|
|
1222
|
+
{
|
|
1223
|
+
[_hQ]: _nt,
|
|
1224
|
+
},
|
|
1225
|
+
],
|
|
1226
|
+
[
|
|
1227
|
+
0,
|
|
1228
|
+
{
|
|
1229
|
+
[_hQ]: _n,
|
|
1230
|
+
},
|
|
1231
|
+
],
|
|
1232
|
+
],
|
|
1233
|
+
];
|
|
1234
|
+
var ListHostedConfigurationVersionsRequest = [
|
|
1235
|
+
3,
|
|
1236
|
+
n0,
|
|
1237
|
+
_LHCVR,
|
|
1238
|
+
0,
|
|
1239
|
+
[_AIp, _CPI, _MR, _NT, _VL],
|
|
1240
|
+
[
|
|
1241
|
+
[0, 1],
|
|
1242
|
+
[0, 1],
|
|
1243
|
+
[
|
|
1244
|
+
1,
|
|
1245
|
+
{
|
|
1246
|
+
[_hQ]: _mr,
|
|
1247
|
+
},
|
|
1248
|
+
],
|
|
1249
|
+
[
|
|
1250
|
+
0,
|
|
1251
|
+
{
|
|
1252
|
+
[_hQ]: _nt,
|
|
1253
|
+
},
|
|
1254
|
+
],
|
|
1255
|
+
[
|
|
1256
|
+
0,
|
|
1257
|
+
{
|
|
1258
|
+
[_hQ]: _vl,
|
|
1259
|
+
},
|
|
1260
|
+
],
|
|
1261
|
+
],
|
|
1262
|
+
];
|
|
1263
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
1264
|
+
var Monitor = [3, n0, _Mon, 0, [_AA, _ARA], [0, 0]];
|
|
1265
|
+
var Parameter = [3, n0, _Pa, 0, [_D, _Re, _Dy], [0, 2, 2]];
|
|
1266
|
+
var PayloadTooLargeException = [
|
|
1267
|
+
-3,
|
|
1268
|
+
n0,
|
|
1269
|
+
_PTLE,
|
|
1270
|
+
{
|
|
1271
|
+
[_e]: _c,
|
|
1272
|
+
[_hE]: 413,
|
|
1273
|
+
},
|
|
1274
|
+
[_M, _Me, _Li, _Si],
|
|
1275
|
+
[0, 0, 1, 1],
|
|
1276
|
+
];
|
|
1277
|
+
schema.TypeRegistry.for(n0).registerError(PayloadTooLargeException, PayloadTooLargeException$1);
|
|
1278
|
+
var ResourceNotFoundException = [
|
|
1279
|
+
-3,
|
|
1280
|
+
n0,
|
|
1281
|
+
_RNFE,
|
|
1282
|
+
{
|
|
1283
|
+
[_e]: _c,
|
|
1284
|
+
[_hE]: 404,
|
|
1285
|
+
},
|
|
1286
|
+
[_M, _RN],
|
|
1287
|
+
[0, 0],
|
|
1288
|
+
];
|
|
1289
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1290
|
+
var ResourceTags = [3, n0, _RTe, 0, [_Ta], [128 | 0]];
|
|
1291
|
+
var ServiceQuotaExceededException = [
|
|
1292
|
+
-3,
|
|
1293
|
+
n0,
|
|
1294
|
+
_SQEE,
|
|
1295
|
+
{
|
|
1296
|
+
[_e]: _c,
|
|
1297
|
+
[_hE]: 402,
|
|
1298
|
+
},
|
|
1299
|
+
[_M],
|
|
1300
|
+
[0],
|
|
1301
|
+
];
|
|
1302
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1303
|
+
var StartDeploymentRequest = [
|
|
1304
|
+
3,
|
|
1305
|
+
n0,
|
|
1306
|
+
_SDR,
|
|
1307
|
+
0,
|
|
1308
|
+
[_AIp, _EIn, _DSI, _CPI, _CV, _D, _Ta, _KKI, _DEP],
|
|
1309
|
+
[[0, 1], [0, 1], 0, 0, 0, 0, 128 | 0, 0, [() => DynamicParameterMap, 0]],
|
|
1310
|
+
];
|
|
1311
|
+
var StopDeploymentRequest = [
|
|
1312
|
+
3,
|
|
1313
|
+
n0,
|
|
1314
|
+
_SDRt,
|
|
1315
|
+
0,
|
|
1316
|
+
[_AIp, _EIn, _DN, _AR],
|
|
1317
|
+
[
|
|
1318
|
+
[0, 1],
|
|
1319
|
+
[0, 1],
|
|
1320
|
+
[1, 1],
|
|
1321
|
+
[
|
|
1322
|
+
2,
|
|
1323
|
+
{
|
|
1324
|
+
[_hH]: _AR_,
|
|
1325
|
+
},
|
|
1326
|
+
],
|
|
1327
|
+
],
|
|
1328
|
+
];
|
|
1329
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RAe, _Ta], [[0, 1], 128 | 0]];
|
|
1330
|
+
var UntagResourceRequest = [
|
|
1331
|
+
3,
|
|
1332
|
+
n0,
|
|
1333
|
+
_URR,
|
|
1334
|
+
0,
|
|
1335
|
+
[_RAe, _TK],
|
|
1336
|
+
[
|
|
1337
|
+
[0, 1],
|
|
1338
|
+
[
|
|
1339
|
+
64 | 0,
|
|
1340
|
+
{
|
|
1341
|
+
[_hQ]: _tK,
|
|
1342
|
+
},
|
|
1343
|
+
],
|
|
1344
|
+
],
|
|
1345
|
+
];
|
|
1346
|
+
var UpdateAccountSettingsRequest = [
|
|
1347
|
+
3,
|
|
1348
|
+
n0,
|
|
1349
|
+
_UASR,
|
|
1350
|
+
0,
|
|
1351
|
+
[_DP],
|
|
1352
|
+
[() => DeletionProtectionSettings],
|
|
1353
|
+
];
|
|
1354
|
+
var UpdateApplicationRequest = [3, n0, _UAR, 0, [_AIp, _N, _D], [[0, 1], 0, 0]];
|
|
1355
|
+
var UpdateConfigurationProfileRequest = [
|
|
1356
|
+
3,
|
|
1357
|
+
n0,
|
|
1358
|
+
_UCPR,
|
|
1359
|
+
0,
|
|
1360
|
+
[_AIp, _CPI, _N, _D, _RRA, _V, _KKI],
|
|
1361
|
+
[[0, 1], [0, 1], 0, 0, 0, [() => ValidatorList, 0], 0],
|
|
1362
|
+
];
|
|
1363
|
+
var UpdateDeploymentStrategyRequest = [
|
|
1364
|
+
3,
|
|
1365
|
+
n0,
|
|
1366
|
+
_UDSR,
|
|
1367
|
+
0,
|
|
1368
|
+
[_DSI, _D, _DDIM, _FBTIM, _GF, _GT],
|
|
1369
|
+
[[0, 1], 0, 1, 1, 1, 0],
|
|
1370
|
+
];
|
|
1371
|
+
var UpdateEnvironmentRequest = [
|
|
1372
|
+
3,
|
|
1373
|
+
n0,
|
|
1374
|
+
_UER,
|
|
1375
|
+
0,
|
|
1376
|
+
[_AIp, _EIn, _N, _D, _Mo],
|
|
1377
|
+
[[0, 1], [0, 1], 0, 0, () => MonitorList],
|
|
1378
|
+
];
|
|
1379
|
+
var UpdateExtensionAssociationRequest = [3, n0, _UEAR, 0, [_EAI, _P], [[0, 1], 128 | 0]];
|
|
1380
|
+
var UpdateExtensionRequest = [
|
|
1381
|
+
3,
|
|
1382
|
+
n0,
|
|
1383
|
+
_UERp,
|
|
1384
|
+
0,
|
|
1385
|
+
[_EI, _D, _Ac, _P, _VN],
|
|
1386
|
+
[[0, 1], 0, () => ActionsMap, () => ParameterMap, 1],
|
|
1387
|
+
];
|
|
1388
|
+
var ValidateConfigurationRequest = [
|
|
1389
|
+
3,
|
|
1390
|
+
n0,
|
|
1391
|
+
_VCR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_AIp, _CPI, _CV],
|
|
1394
|
+
[
|
|
1395
|
+
[0, 1],
|
|
1396
|
+
[0, 1],
|
|
1397
|
+
[
|
|
1398
|
+
0,
|
|
1399
|
+
{
|
|
1400
|
+
[_hQ]: _cv,
|
|
1401
|
+
},
|
|
1402
|
+
],
|
|
1403
|
+
],
|
|
1404
|
+
];
|
|
1405
|
+
var Validator = [
|
|
1406
|
+
3,
|
|
1407
|
+
n0,
|
|
1408
|
+
_Val,
|
|
1409
|
+
0,
|
|
1410
|
+
[_T, _Co],
|
|
1411
|
+
[0, [() => StringWithLengthBetween0And32768, 0]],
|
|
1412
|
+
];
|
|
1413
|
+
var __Unit = "unit";
|
|
1414
|
+
var AppConfigServiceException = [-3, _sm, "AppConfigServiceException", 0, [], []];
|
|
1415
|
+
schema.TypeRegistry.for(_sm).registerError(AppConfigServiceException, AppConfigServiceException$1);
|
|
1416
|
+
var ActionInvocations = [1, n0, _AIc, 0, () => ActionInvocation];
|
|
1417
|
+
var ActionList = [1, n0, _AL, 0, () => Action];
|
|
1418
|
+
var ApplicationList = [1, n0, _ALp, 0, () => Application];
|
|
1419
|
+
var AppliedExtensions = [1, n0, _AEp, 0, () => AppliedExtension];
|
|
1420
|
+
var ConfigurationProfileSummaryList = [1, n0, _CPSL, 0, () => ConfigurationProfileSummary];
|
|
1421
|
+
var DeploymentEvents = [1, n0, _DEe, 0, () => DeploymentEvent];
|
|
1422
|
+
var DeploymentList = [1, n0, _DL, 0, () => DeploymentSummary];
|
|
1423
|
+
var DeploymentStrategyList = [1, n0, _DSL, 0, () => DeploymentStrategy];
|
|
1424
|
+
var EnvironmentList = [1, n0, _ELn, 0, () => Environment];
|
|
1425
|
+
var ExtensionAssociationSummaries = [1, n0, _EASx, 0, () => ExtensionAssociationSummary];
|
|
1426
|
+
var ExtensionSummaries = [1, n0, _ESx, 0, () => ExtensionSummary];
|
|
1427
|
+
var HostedConfigurationVersionSummaryList = [
|
|
1428
|
+
1,
|
|
1429
|
+
n0,
|
|
1430
|
+
_HCVSL,
|
|
1431
|
+
0,
|
|
1432
|
+
() => HostedConfigurationVersionSummary,
|
|
1433
|
+
];
|
|
1434
|
+
var InvalidConfigurationDetailList = [1, n0, _ICDL, 0, () => InvalidConfigurationDetail];
|
|
1435
|
+
var MonitorList = [1, n0, _ML, 0, () => Monitor];
|
|
1436
|
+
var ValidatorList = [1, n0, _VLa, 0, [() => Validator, 0]];
|
|
1437
|
+
var ActionsMap = [2, n0, _AM, 0, 0, () => ActionList];
|
|
1438
|
+
var DynamicParameterMap = [2, n0, _DPM, 8, 0, 0];
|
|
1439
|
+
var ParameterMap = [2, n0, _PM, 0, 0, () => Parameter];
|
|
1440
|
+
var BadRequestDetails = [3, n0, _BRD, 0, [_IC], [() => InvalidConfigurationDetailList]];
|
|
1441
|
+
var CreateApplication = [
|
|
1442
|
+
9,
|
|
1443
|
+
n0,
|
|
1444
|
+
_CAr,
|
|
1445
|
+
{
|
|
1446
|
+
[_h]: ["POST", "/applications", 201],
|
|
1447
|
+
},
|
|
1448
|
+
() => CreateApplicationRequest,
|
|
1449
|
+
() => Application,
|
|
1450
|
+
];
|
|
1451
|
+
var CreateConfigurationProfile = [
|
|
1452
|
+
9,
|
|
1453
|
+
n0,
|
|
1454
|
+
_CCP,
|
|
1455
|
+
{
|
|
1456
|
+
[_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles", 201],
|
|
1457
|
+
},
|
|
1458
|
+
() => CreateConfigurationProfileRequest,
|
|
1459
|
+
() => ConfigurationProfile,
|
|
1460
|
+
];
|
|
1461
|
+
var CreateDeploymentStrategy = [
|
|
1462
|
+
9,
|
|
1463
|
+
n0,
|
|
1464
|
+
_CDS,
|
|
1465
|
+
{
|
|
1466
|
+
[_h]: ["POST", "/deploymentstrategies", 201],
|
|
1467
|
+
},
|
|
1468
|
+
() => CreateDeploymentStrategyRequest,
|
|
1469
|
+
() => DeploymentStrategy,
|
|
1470
|
+
];
|
|
1471
|
+
var CreateEnvironment = [
|
|
1472
|
+
9,
|
|
1473
|
+
n0,
|
|
1474
|
+
_CEr,
|
|
1475
|
+
{
|
|
1476
|
+
[_h]: ["POST", "/applications/{ApplicationId}/environments", 201],
|
|
1477
|
+
},
|
|
1478
|
+
() => CreateEnvironmentRequest,
|
|
1479
|
+
() => Environment,
|
|
1480
|
+
];
|
|
1481
|
+
var CreateExtension = [
|
|
1482
|
+
9,
|
|
1483
|
+
n0,
|
|
1484
|
+
_CEre,
|
|
1485
|
+
{
|
|
1486
|
+
[_h]: ["POST", "/extensions", 201],
|
|
1487
|
+
},
|
|
1488
|
+
() => CreateExtensionRequest,
|
|
1489
|
+
() => Extension,
|
|
1490
|
+
];
|
|
1491
|
+
var CreateExtensionAssociation = [
|
|
1492
|
+
9,
|
|
1493
|
+
n0,
|
|
1494
|
+
_CEA,
|
|
1495
|
+
{
|
|
1496
|
+
[_h]: ["POST", "/extensionassociations", 201],
|
|
1497
|
+
},
|
|
1498
|
+
() => CreateExtensionAssociationRequest,
|
|
1499
|
+
() => ExtensionAssociation,
|
|
1500
|
+
];
|
|
1501
|
+
var CreateHostedConfigurationVersion = [
|
|
1502
|
+
9,
|
|
1503
|
+
n0,
|
|
1504
|
+
_CHCV,
|
|
1505
|
+
{
|
|
1506
|
+
[_h]: [
|
|
1507
|
+
"POST",
|
|
1508
|
+
"/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions",
|
|
1509
|
+
201,
|
|
1510
|
+
],
|
|
1511
|
+
},
|
|
1512
|
+
() => CreateHostedConfigurationVersionRequest,
|
|
1513
|
+
() => HostedConfigurationVersion,
|
|
1514
|
+
];
|
|
1515
|
+
var DeleteApplication = [
|
|
1516
|
+
9,
|
|
1517
|
+
n0,
|
|
1518
|
+
_DA,
|
|
1519
|
+
{
|
|
1520
|
+
[_h]: ["DELETE", "/applications/{ApplicationId}", 204],
|
|
1521
|
+
},
|
|
1522
|
+
() => DeleteApplicationRequest,
|
|
1523
|
+
() => __Unit,
|
|
1524
|
+
];
|
|
1525
|
+
var DeleteConfigurationProfile = [
|
|
1526
|
+
9,
|
|
1527
|
+
n0,
|
|
1528
|
+
_DCP,
|
|
1529
|
+
{
|
|
1530
|
+
[_h]: ["DELETE", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 204],
|
|
1531
|
+
},
|
|
1532
|
+
() => DeleteConfigurationProfileRequest,
|
|
1533
|
+
() => __Unit,
|
|
1534
|
+
];
|
|
1535
|
+
var DeleteDeploymentStrategy = [
|
|
1536
|
+
9,
|
|
1537
|
+
n0,
|
|
1538
|
+
_DDS,
|
|
1539
|
+
{
|
|
1540
|
+
[_h]: ["DELETE", "/deployementstrategies/{DeploymentStrategyId}", 204],
|
|
1541
|
+
},
|
|
1542
|
+
() => DeleteDeploymentStrategyRequest,
|
|
1543
|
+
() => __Unit,
|
|
1544
|
+
];
|
|
1545
|
+
var DeleteEnvironment = [
|
|
1546
|
+
9,
|
|
1547
|
+
n0,
|
|
1548
|
+
_DEel,
|
|
1549
|
+
{
|
|
1550
|
+
[_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}", 204],
|
|
1551
|
+
},
|
|
1552
|
+
() => DeleteEnvironmentRequest,
|
|
1553
|
+
() => __Unit,
|
|
1554
|
+
];
|
|
1555
|
+
var DeleteExtension = [
|
|
1556
|
+
9,
|
|
1557
|
+
n0,
|
|
1558
|
+
_DEele,
|
|
1559
|
+
{
|
|
1560
|
+
[_h]: ["DELETE", "/extensions/{ExtensionIdentifier}", 204],
|
|
1561
|
+
},
|
|
1562
|
+
() => DeleteExtensionRequest,
|
|
1563
|
+
() => __Unit,
|
|
1564
|
+
];
|
|
1565
|
+
var DeleteExtensionAssociation = [
|
|
1566
|
+
9,
|
|
1567
|
+
n0,
|
|
1568
|
+
_DEA,
|
|
1569
|
+
{
|
|
1570
|
+
[_h]: ["DELETE", "/extensionassociations/{ExtensionAssociationId}", 204],
|
|
1571
|
+
},
|
|
1572
|
+
() => DeleteExtensionAssociationRequest,
|
|
1573
|
+
() => __Unit,
|
|
1574
|
+
];
|
|
1575
|
+
var DeleteHostedConfigurationVersion = [
|
|
1576
|
+
9,
|
|
1577
|
+
n0,
|
|
1578
|
+
_DHCV,
|
|
1579
|
+
{
|
|
1580
|
+
[_h]: [
|
|
1581
|
+
"DELETE",
|
|
1582
|
+
"/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}",
|
|
1583
|
+
204,
|
|
1584
|
+
],
|
|
1585
|
+
},
|
|
1586
|
+
() => DeleteHostedConfigurationVersionRequest,
|
|
1587
|
+
() => __Unit,
|
|
1588
|
+
];
|
|
1589
|
+
var GetAccountSettings = [
|
|
1590
|
+
9,
|
|
1591
|
+
n0,
|
|
1592
|
+
_GAS,
|
|
1593
|
+
{
|
|
1594
|
+
[_h]: ["GET", "/settings", 200],
|
|
1595
|
+
},
|
|
1596
|
+
() => __Unit,
|
|
1597
|
+
() => AccountSettings,
|
|
1598
|
+
];
|
|
1599
|
+
var GetApplication = [
|
|
1600
|
+
9,
|
|
1601
|
+
n0,
|
|
1602
|
+
_GA,
|
|
1603
|
+
{
|
|
1604
|
+
[_h]: ["GET", "/applications/{ApplicationId}", 200],
|
|
1605
|
+
},
|
|
1606
|
+
() => GetApplicationRequest,
|
|
1607
|
+
() => Application,
|
|
1608
|
+
];
|
|
1609
|
+
var GetConfiguration = [
|
|
1610
|
+
9,
|
|
1611
|
+
n0,
|
|
1612
|
+
_GC,
|
|
1613
|
+
{
|
|
1614
|
+
[_h]: ["GET", "/applications/{Application}/environments/{Environment}/configurations/{Configuration}", 200],
|
|
1615
|
+
},
|
|
1616
|
+
() => GetConfigurationRequest,
|
|
1617
|
+
() => Configuration,
|
|
1618
|
+
];
|
|
1619
|
+
var GetConfigurationProfile = [
|
|
1620
|
+
9,
|
|
1621
|
+
n0,
|
|
1622
|
+
_GCP,
|
|
1623
|
+
{
|
|
1624
|
+
[_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 200],
|
|
1625
|
+
},
|
|
1626
|
+
() => GetConfigurationProfileRequest,
|
|
1627
|
+
() => ConfigurationProfile,
|
|
1628
|
+
];
|
|
1629
|
+
var GetDeployment = [
|
|
1630
|
+
9,
|
|
1631
|
+
n0,
|
|
1632
|
+
_GD,
|
|
1633
|
+
{
|
|
1634
|
+
[_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 200],
|
|
1635
|
+
},
|
|
1636
|
+
() => GetDeploymentRequest,
|
|
1637
|
+
() => Deployment,
|
|
1638
|
+
];
|
|
1639
|
+
var GetDeploymentStrategy = [
|
|
1640
|
+
9,
|
|
1641
|
+
n0,
|
|
1642
|
+
_GDS,
|
|
1643
|
+
{
|
|
1644
|
+
[_h]: ["GET", "/deploymentstrategies/{DeploymentStrategyId}", 200],
|
|
1645
|
+
},
|
|
1646
|
+
() => GetDeploymentStrategyRequest,
|
|
1647
|
+
() => DeploymentStrategy,
|
|
1648
|
+
];
|
|
1649
|
+
var GetEnvironment = [
|
|
1650
|
+
9,
|
|
1651
|
+
n0,
|
|
1652
|
+
_GE,
|
|
1653
|
+
{
|
|
1654
|
+
[_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200],
|
|
1655
|
+
},
|
|
1656
|
+
() => GetEnvironmentRequest,
|
|
1657
|
+
() => Environment,
|
|
1658
|
+
];
|
|
1659
|
+
var GetExtension = [
|
|
1660
|
+
9,
|
|
1661
|
+
n0,
|
|
1662
|
+
_GEe,
|
|
1663
|
+
{
|
|
1664
|
+
[_h]: ["GET", "/extensions/{ExtensionIdentifier}", 200],
|
|
1665
|
+
},
|
|
1666
|
+
() => GetExtensionRequest,
|
|
1667
|
+
() => Extension,
|
|
1668
|
+
];
|
|
1669
|
+
var GetExtensionAssociation = [
|
|
1670
|
+
9,
|
|
1671
|
+
n0,
|
|
1672
|
+
_GEA,
|
|
1673
|
+
{
|
|
1674
|
+
[_h]: ["GET", "/extensionassociations/{ExtensionAssociationId}", 200],
|
|
1675
|
+
},
|
|
1676
|
+
() => GetExtensionAssociationRequest,
|
|
1677
|
+
() => ExtensionAssociation,
|
|
1678
|
+
];
|
|
1679
|
+
var GetHostedConfigurationVersion = [
|
|
1680
|
+
9,
|
|
1681
|
+
n0,
|
|
1682
|
+
_GHCV,
|
|
1683
|
+
{
|
|
1684
|
+
[_h]: [
|
|
1685
|
+
"GET",
|
|
1686
|
+
"/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}",
|
|
1687
|
+
200,
|
|
1688
|
+
],
|
|
1689
|
+
},
|
|
1690
|
+
() => GetHostedConfigurationVersionRequest,
|
|
1691
|
+
() => HostedConfigurationVersion,
|
|
1692
|
+
];
|
|
1693
|
+
var ListApplications = [
|
|
1694
|
+
9,
|
|
1695
|
+
n0,
|
|
1696
|
+
_LA,
|
|
1697
|
+
{
|
|
1698
|
+
[_h]: ["GET", "/applications", 200],
|
|
1699
|
+
},
|
|
1700
|
+
() => ListApplicationsRequest,
|
|
1701
|
+
() => Applications,
|
|
1702
|
+
];
|
|
1703
|
+
var ListConfigurationProfiles = [
|
|
1704
|
+
9,
|
|
1705
|
+
n0,
|
|
1706
|
+
_LCP,
|
|
1707
|
+
{
|
|
1708
|
+
[_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles", 200],
|
|
1709
|
+
},
|
|
1710
|
+
() => ListConfigurationProfilesRequest,
|
|
1711
|
+
() => ConfigurationProfiles,
|
|
1712
|
+
];
|
|
1713
|
+
var ListDeployments = [
|
|
1714
|
+
9,
|
|
1715
|
+
n0,
|
|
1716
|
+
_LD,
|
|
1717
|
+
{
|
|
1718
|
+
[_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 200],
|
|
1719
|
+
},
|
|
1720
|
+
() => ListDeploymentsRequest,
|
|
1721
|
+
() => Deployments,
|
|
1722
|
+
];
|
|
1723
|
+
var ListDeploymentStrategies = [
|
|
1724
|
+
9,
|
|
1725
|
+
n0,
|
|
1726
|
+
_LDS,
|
|
1727
|
+
{
|
|
1728
|
+
[_h]: ["GET", "/deploymentstrategies", 200],
|
|
1729
|
+
},
|
|
1730
|
+
() => ListDeploymentStrategiesRequest,
|
|
1731
|
+
() => DeploymentStrategies,
|
|
1732
|
+
];
|
|
1733
|
+
var ListEnvironments = [
|
|
1734
|
+
9,
|
|
1735
|
+
n0,
|
|
1736
|
+
_LE,
|
|
1737
|
+
{
|
|
1738
|
+
[_h]: ["GET", "/applications/{ApplicationId}/environments", 200],
|
|
1739
|
+
},
|
|
1740
|
+
() => ListEnvironmentsRequest,
|
|
1741
|
+
() => Environments,
|
|
1742
|
+
];
|
|
1743
|
+
var ListExtensionAssociations = [
|
|
1744
|
+
9,
|
|
1745
|
+
n0,
|
|
1746
|
+
_LEA,
|
|
1747
|
+
{
|
|
1748
|
+
[_h]: ["GET", "/extensionassociations", 200],
|
|
1749
|
+
},
|
|
1750
|
+
() => ListExtensionAssociationsRequest,
|
|
1751
|
+
() => ExtensionAssociations,
|
|
1752
|
+
];
|
|
1753
|
+
var ListExtensions = [
|
|
1754
|
+
9,
|
|
1755
|
+
n0,
|
|
1756
|
+
_LEi,
|
|
1757
|
+
{
|
|
1758
|
+
[_h]: ["GET", "/extensions", 200],
|
|
1759
|
+
},
|
|
1760
|
+
() => ListExtensionsRequest,
|
|
1761
|
+
() => Extensions,
|
|
1762
|
+
];
|
|
1763
|
+
var ListHostedConfigurationVersions = [
|
|
1764
|
+
9,
|
|
1765
|
+
n0,
|
|
1766
|
+
_LHCV,
|
|
1767
|
+
{
|
|
1768
|
+
[_h]: [
|
|
1769
|
+
"GET",
|
|
1770
|
+
"/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions",
|
|
1771
|
+
200,
|
|
1772
|
+
],
|
|
1773
|
+
},
|
|
1774
|
+
() => ListHostedConfigurationVersionsRequest,
|
|
1775
|
+
() => HostedConfigurationVersions,
|
|
1776
|
+
];
|
|
1777
|
+
var ListTagsForResource = [
|
|
1778
|
+
9,
|
|
1779
|
+
n0,
|
|
1780
|
+
_LTFR,
|
|
1781
|
+
{
|
|
1782
|
+
[_h]: ["GET", "/tags/{ResourceArn}", 200],
|
|
1783
|
+
},
|
|
1784
|
+
() => ListTagsForResourceRequest,
|
|
1785
|
+
() => ResourceTags,
|
|
1786
|
+
];
|
|
1787
|
+
var StartDeployment = [
|
|
1788
|
+
9,
|
|
1789
|
+
n0,
|
|
1790
|
+
_SD,
|
|
1791
|
+
{
|
|
1792
|
+
[_h]: ["POST", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 201],
|
|
1793
|
+
},
|
|
1794
|
+
() => StartDeploymentRequest,
|
|
1795
|
+
() => Deployment,
|
|
1796
|
+
];
|
|
1797
|
+
var StopDeployment = [
|
|
1798
|
+
9,
|
|
1799
|
+
n0,
|
|
1800
|
+
_SDt,
|
|
1801
|
+
{
|
|
1802
|
+
[_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 202],
|
|
1803
|
+
},
|
|
1804
|
+
() => StopDeploymentRequest,
|
|
1805
|
+
() => Deployment,
|
|
1806
|
+
];
|
|
1807
|
+
var TagResource = [
|
|
1808
|
+
9,
|
|
1809
|
+
n0,
|
|
1810
|
+
_TR,
|
|
1811
|
+
{
|
|
1812
|
+
[_h]: ["POST", "/tags/{ResourceArn}", 204],
|
|
1813
|
+
},
|
|
1814
|
+
() => TagResourceRequest,
|
|
1815
|
+
() => __Unit,
|
|
1816
|
+
];
|
|
1817
|
+
var UntagResource = [
|
|
1818
|
+
9,
|
|
1819
|
+
n0,
|
|
1820
|
+
_UR,
|
|
1821
|
+
{
|
|
1822
|
+
[_h]: ["DELETE", "/tags/{ResourceArn}", 204],
|
|
1823
|
+
},
|
|
1824
|
+
() => UntagResourceRequest,
|
|
1825
|
+
() => __Unit,
|
|
1826
|
+
];
|
|
1827
|
+
var UpdateAccountSettings = [
|
|
1828
|
+
9,
|
|
1829
|
+
n0,
|
|
1830
|
+
_UAS,
|
|
1831
|
+
{
|
|
1832
|
+
[_h]: ["PATCH", "/settings", 200],
|
|
1833
|
+
},
|
|
1834
|
+
() => UpdateAccountSettingsRequest,
|
|
1835
|
+
() => AccountSettings,
|
|
1836
|
+
];
|
|
1837
|
+
var UpdateApplication = [
|
|
1838
|
+
9,
|
|
1839
|
+
n0,
|
|
1840
|
+
_UA,
|
|
1841
|
+
{
|
|
1842
|
+
[_h]: ["PATCH", "/applications/{ApplicationId}", 200],
|
|
1843
|
+
},
|
|
1844
|
+
() => UpdateApplicationRequest,
|
|
1845
|
+
() => Application,
|
|
1846
|
+
];
|
|
1847
|
+
var UpdateConfigurationProfile = [
|
|
1848
|
+
9,
|
|
1849
|
+
n0,
|
|
1850
|
+
_UCP,
|
|
1851
|
+
{
|
|
1852
|
+
[_h]: ["PATCH", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 200],
|
|
1853
|
+
},
|
|
1854
|
+
() => UpdateConfigurationProfileRequest,
|
|
1855
|
+
() => ConfigurationProfile,
|
|
1856
|
+
];
|
|
1857
|
+
var UpdateDeploymentStrategy = [
|
|
1858
|
+
9,
|
|
1859
|
+
n0,
|
|
1860
|
+
_UDS,
|
|
1861
|
+
{
|
|
1862
|
+
[_h]: ["PATCH", "/deploymentstrategies/{DeploymentStrategyId}", 200],
|
|
1863
|
+
},
|
|
1864
|
+
() => UpdateDeploymentStrategyRequest,
|
|
1865
|
+
() => DeploymentStrategy,
|
|
1866
|
+
];
|
|
1867
|
+
var UpdateEnvironment = [
|
|
1868
|
+
9,
|
|
1869
|
+
n0,
|
|
1870
|
+
_UE,
|
|
1871
|
+
{
|
|
1872
|
+
[_h]: ["PATCH", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200],
|
|
1873
|
+
},
|
|
1874
|
+
() => UpdateEnvironmentRequest,
|
|
1875
|
+
() => Environment,
|
|
1876
|
+
];
|
|
1877
|
+
var UpdateExtension = [
|
|
1878
|
+
9,
|
|
1879
|
+
n0,
|
|
1880
|
+
_UEp,
|
|
1881
|
+
{
|
|
1882
|
+
[_h]: ["PATCH", "/extensions/{ExtensionIdentifier}", 200],
|
|
1883
|
+
},
|
|
1884
|
+
() => UpdateExtensionRequest,
|
|
1885
|
+
() => Extension,
|
|
1886
|
+
];
|
|
1887
|
+
var UpdateExtensionAssociation = [
|
|
1888
|
+
9,
|
|
1889
|
+
n0,
|
|
1890
|
+
_UEA,
|
|
1891
|
+
{
|
|
1892
|
+
[_h]: ["PATCH", "/extensionassociations/{ExtensionAssociationId}", 200],
|
|
1893
|
+
},
|
|
1894
|
+
() => UpdateExtensionAssociationRequest,
|
|
1895
|
+
() => ExtensionAssociation,
|
|
1896
|
+
];
|
|
1897
|
+
var ValidateConfiguration = [
|
|
1898
|
+
9,
|
|
1899
|
+
n0,
|
|
1900
|
+
_VC,
|
|
1901
|
+
{
|
|
1902
|
+
[_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/validators", 204],
|
|
1903
|
+
},
|
|
1904
|
+
() => ValidateConfigurationRequest,
|
|
1905
|
+
() => __Unit,
|
|
1906
|
+
];
|
|
1931
1907
|
|
|
1932
1908
|
class CreateApplicationCommand extends smithyClient.Command
|
|
1933
1909
|
.classBuilder()
|
|
1934
1910
|
.ep(commonParams)
|
|
1935
1911
|
.m(function (Command, cs, config, o) {
|
|
1936
|
-
return [
|
|
1937
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1938
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1939
|
-
];
|
|
1912
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1940
1913
|
})
|
|
1941
1914
|
.s("AmazonAppConfig", "CreateApplication", {})
|
|
1942
1915
|
.n("AppConfigClient", "CreateApplicationCommand")
|
|
1943
|
-
.
|
|
1944
|
-
.ser(se_CreateApplicationCommand)
|
|
1945
|
-
.de(de_CreateApplicationCommand)
|
|
1916
|
+
.sc(CreateApplication)
|
|
1946
1917
|
.build() {
|
|
1947
1918
|
}
|
|
1948
1919
|
|
|
@@ -1950,16 +1921,11 @@ class CreateConfigurationProfileCommand extends smithyClient.Command
|
|
|
1950
1921
|
.classBuilder()
|
|
1951
1922
|
.ep(commonParams)
|
|
1952
1923
|
.m(function (Command, cs, config, o) {
|
|
1953
|
-
return [
|
|
1954
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1955
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1956
|
-
];
|
|
1924
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1957
1925
|
})
|
|
1958
1926
|
.s("AmazonAppConfig", "CreateConfigurationProfile", {})
|
|
1959
1927
|
.n("AppConfigClient", "CreateConfigurationProfileCommand")
|
|
1960
|
-
.
|
|
1961
|
-
.ser(se_CreateConfigurationProfileCommand)
|
|
1962
|
-
.de(de_CreateConfigurationProfileCommand)
|
|
1928
|
+
.sc(CreateConfigurationProfile)
|
|
1963
1929
|
.build() {
|
|
1964
1930
|
}
|
|
1965
1931
|
|
|
@@ -1967,16 +1933,11 @@ class CreateDeploymentStrategyCommand extends smithyClient.Command
|
|
|
1967
1933
|
.classBuilder()
|
|
1968
1934
|
.ep(commonParams)
|
|
1969
1935
|
.m(function (Command, cs, config, o) {
|
|
1970
|
-
return [
|
|
1971
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1972
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1973
|
-
];
|
|
1936
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1974
1937
|
})
|
|
1975
1938
|
.s("AmazonAppConfig", "CreateDeploymentStrategy", {})
|
|
1976
1939
|
.n("AppConfigClient", "CreateDeploymentStrategyCommand")
|
|
1977
|
-
.
|
|
1978
|
-
.ser(se_CreateDeploymentStrategyCommand)
|
|
1979
|
-
.de(de_CreateDeploymentStrategyCommand)
|
|
1940
|
+
.sc(CreateDeploymentStrategy)
|
|
1980
1941
|
.build() {
|
|
1981
1942
|
}
|
|
1982
1943
|
|
|
@@ -1984,16 +1945,11 @@ class CreateEnvironmentCommand extends smithyClient.Command
|
|
|
1984
1945
|
.classBuilder()
|
|
1985
1946
|
.ep(commonParams)
|
|
1986
1947
|
.m(function (Command, cs, config, o) {
|
|
1987
|
-
return [
|
|
1988
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1989
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1990
|
-
];
|
|
1948
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1991
1949
|
})
|
|
1992
1950
|
.s("AmazonAppConfig", "CreateEnvironment", {})
|
|
1993
1951
|
.n("AppConfigClient", "CreateEnvironmentCommand")
|
|
1994
|
-
.
|
|
1995
|
-
.ser(se_CreateEnvironmentCommand)
|
|
1996
|
-
.de(de_CreateEnvironmentCommand)
|
|
1952
|
+
.sc(CreateEnvironment)
|
|
1997
1953
|
.build() {
|
|
1998
1954
|
}
|
|
1999
1955
|
|
|
@@ -2001,16 +1957,11 @@ class CreateExtensionAssociationCommand extends smithyClient.Command
|
|
|
2001
1957
|
.classBuilder()
|
|
2002
1958
|
.ep(commonParams)
|
|
2003
1959
|
.m(function (Command, cs, config, o) {
|
|
2004
|
-
return [
|
|
2005
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2006
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2007
|
-
];
|
|
1960
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2008
1961
|
})
|
|
2009
1962
|
.s("AmazonAppConfig", "CreateExtensionAssociation", {})
|
|
2010
1963
|
.n("AppConfigClient", "CreateExtensionAssociationCommand")
|
|
2011
|
-
.
|
|
2012
|
-
.ser(se_CreateExtensionAssociationCommand)
|
|
2013
|
-
.de(de_CreateExtensionAssociationCommand)
|
|
1964
|
+
.sc(CreateExtensionAssociation)
|
|
2014
1965
|
.build() {
|
|
2015
1966
|
}
|
|
2016
1967
|
|
|
@@ -2018,16 +1969,11 @@ class CreateExtensionCommand extends smithyClient.Command
|
|
|
2018
1969
|
.classBuilder()
|
|
2019
1970
|
.ep(commonParams)
|
|
2020
1971
|
.m(function (Command, cs, config, o) {
|
|
2021
|
-
return [
|
|
2022
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2023
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2024
|
-
];
|
|
1972
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2025
1973
|
})
|
|
2026
1974
|
.s("AmazonAppConfig", "CreateExtension", {})
|
|
2027
1975
|
.n("AppConfigClient", "CreateExtensionCommand")
|
|
2028
|
-
.
|
|
2029
|
-
.ser(se_CreateExtensionCommand)
|
|
2030
|
-
.de(de_CreateExtensionCommand)
|
|
1976
|
+
.sc(CreateExtension)
|
|
2031
1977
|
.build() {
|
|
2032
1978
|
}
|
|
2033
1979
|
|
|
@@ -2035,16 +1981,11 @@ class CreateHostedConfigurationVersionCommand extends smithyClient.Command
|
|
|
2035
1981
|
.classBuilder()
|
|
2036
1982
|
.ep(commonParams)
|
|
2037
1983
|
.m(function (Command, cs, config, o) {
|
|
2038
|
-
return [
|
|
2039
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2040
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2041
|
-
];
|
|
1984
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2042
1985
|
})
|
|
2043
1986
|
.s("AmazonAppConfig", "CreateHostedConfigurationVersion", {})
|
|
2044
1987
|
.n("AppConfigClient", "CreateHostedConfigurationVersionCommand")
|
|
2045
|
-
.
|
|
2046
|
-
.ser(se_CreateHostedConfigurationVersionCommand)
|
|
2047
|
-
.de(de_CreateHostedConfigurationVersionCommand)
|
|
1988
|
+
.sc(CreateHostedConfigurationVersion)
|
|
2048
1989
|
.build() {
|
|
2049
1990
|
}
|
|
2050
1991
|
|
|
@@ -2052,16 +1993,11 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
2052
1993
|
.classBuilder()
|
|
2053
1994
|
.ep(commonParams)
|
|
2054
1995
|
.m(function (Command, cs, config, o) {
|
|
2055
|
-
return [
|
|
2056
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2057
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2058
|
-
];
|
|
1996
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2059
1997
|
})
|
|
2060
1998
|
.s("AmazonAppConfig", "DeleteApplication", {})
|
|
2061
1999
|
.n("AppConfigClient", "DeleteApplicationCommand")
|
|
2062
|
-
.
|
|
2063
|
-
.ser(se_DeleteApplicationCommand)
|
|
2064
|
-
.de(de_DeleteApplicationCommand)
|
|
2000
|
+
.sc(DeleteApplication)
|
|
2065
2001
|
.build() {
|
|
2066
2002
|
}
|
|
2067
2003
|
|
|
@@ -2069,16 +2005,11 @@ class DeleteConfigurationProfileCommand extends smithyClient.Command
|
|
|
2069
2005
|
.classBuilder()
|
|
2070
2006
|
.ep(commonParams)
|
|
2071
2007
|
.m(function (Command, cs, config, o) {
|
|
2072
|
-
return [
|
|
2073
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2074
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2075
|
-
];
|
|
2008
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2076
2009
|
})
|
|
2077
2010
|
.s("AmazonAppConfig", "DeleteConfigurationProfile", {})
|
|
2078
2011
|
.n("AppConfigClient", "DeleteConfigurationProfileCommand")
|
|
2079
|
-
.
|
|
2080
|
-
.ser(se_DeleteConfigurationProfileCommand)
|
|
2081
|
-
.de(de_DeleteConfigurationProfileCommand)
|
|
2012
|
+
.sc(DeleteConfigurationProfile)
|
|
2082
2013
|
.build() {
|
|
2083
2014
|
}
|
|
2084
2015
|
|
|
@@ -2086,16 +2017,11 @@ class DeleteDeploymentStrategyCommand extends smithyClient.Command
|
|
|
2086
2017
|
.classBuilder()
|
|
2087
2018
|
.ep(commonParams)
|
|
2088
2019
|
.m(function (Command, cs, config, o) {
|
|
2089
|
-
return [
|
|
2090
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2091
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2092
|
-
];
|
|
2020
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2093
2021
|
})
|
|
2094
2022
|
.s("AmazonAppConfig", "DeleteDeploymentStrategy", {})
|
|
2095
2023
|
.n("AppConfigClient", "DeleteDeploymentStrategyCommand")
|
|
2096
|
-
.
|
|
2097
|
-
.ser(se_DeleteDeploymentStrategyCommand)
|
|
2098
|
-
.de(de_DeleteDeploymentStrategyCommand)
|
|
2024
|
+
.sc(DeleteDeploymentStrategy)
|
|
2099
2025
|
.build() {
|
|
2100
2026
|
}
|
|
2101
2027
|
|
|
@@ -2103,16 +2029,11 @@ class DeleteEnvironmentCommand extends smithyClient.Command
|
|
|
2103
2029
|
.classBuilder()
|
|
2104
2030
|
.ep(commonParams)
|
|
2105
2031
|
.m(function (Command, cs, config, o) {
|
|
2106
|
-
return [
|
|
2107
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2108
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2109
|
-
];
|
|
2032
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2110
2033
|
})
|
|
2111
2034
|
.s("AmazonAppConfig", "DeleteEnvironment", {})
|
|
2112
2035
|
.n("AppConfigClient", "DeleteEnvironmentCommand")
|
|
2113
|
-
.
|
|
2114
|
-
.ser(se_DeleteEnvironmentCommand)
|
|
2115
|
-
.de(de_DeleteEnvironmentCommand)
|
|
2036
|
+
.sc(DeleteEnvironment)
|
|
2116
2037
|
.build() {
|
|
2117
2038
|
}
|
|
2118
2039
|
|
|
@@ -2120,16 +2041,11 @@ class DeleteExtensionAssociationCommand extends smithyClient.Command
|
|
|
2120
2041
|
.classBuilder()
|
|
2121
2042
|
.ep(commonParams)
|
|
2122
2043
|
.m(function (Command, cs, config, o) {
|
|
2123
|
-
return [
|
|
2124
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2125
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2126
|
-
];
|
|
2044
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2127
2045
|
})
|
|
2128
2046
|
.s("AmazonAppConfig", "DeleteExtensionAssociation", {})
|
|
2129
2047
|
.n("AppConfigClient", "DeleteExtensionAssociationCommand")
|
|
2130
|
-
.
|
|
2131
|
-
.ser(se_DeleteExtensionAssociationCommand)
|
|
2132
|
-
.de(de_DeleteExtensionAssociationCommand)
|
|
2048
|
+
.sc(DeleteExtensionAssociation)
|
|
2133
2049
|
.build() {
|
|
2134
2050
|
}
|
|
2135
2051
|
|
|
@@ -2137,16 +2053,11 @@ class DeleteExtensionCommand extends smithyClient.Command
|
|
|
2137
2053
|
.classBuilder()
|
|
2138
2054
|
.ep(commonParams)
|
|
2139
2055
|
.m(function (Command, cs, config, o) {
|
|
2140
|
-
return [
|
|
2141
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2142
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2143
|
-
];
|
|
2056
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2144
2057
|
})
|
|
2145
2058
|
.s("AmazonAppConfig", "DeleteExtension", {})
|
|
2146
2059
|
.n("AppConfigClient", "DeleteExtensionCommand")
|
|
2147
|
-
.
|
|
2148
|
-
.ser(se_DeleteExtensionCommand)
|
|
2149
|
-
.de(de_DeleteExtensionCommand)
|
|
2060
|
+
.sc(DeleteExtension)
|
|
2150
2061
|
.build() {
|
|
2151
2062
|
}
|
|
2152
2063
|
|
|
@@ -2154,16 +2065,11 @@ class DeleteHostedConfigurationVersionCommand extends smithyClient.Command
|
|
|
2154
2065
|
.classBuilder()
|
|
2155
2066
|
.ep(commonParams)
|
|
2156
2067
|
.m(function (Command, cs, config, o) {
|
|
2157
|
-
return [
|
|
2158
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2159
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2160
|
-
];
|
|
2068
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2161
2069
|
})
|
|
2162
2070
|
.s("AmazonAppConfig", "DeleteHostedConfigurationVersion", {})
|
|
2163
2071
|
.n("AppConfigClient", "DeleteHostedConfigurationVersionCommand")
|
|
2164
|
-
.
|
|
2165
|
-
.ser(se_DeleteHostedConfigurationVersionCommand)
|
|
2166
|
-
.de(de_DeleteHostedConfigurationVersionCommand)
|
|
2072
|
+
.sc(DeleteHostedConfigurationVersion)
|
|
2167
2073
|
.build() {
|
|
2168
2074
|
}
|
|
2169
2075
|
|
|
@@ -2171,16 +2077,11 @@ class GetAccountSettingsCommand extends smithyClient.Command
|
|
|
2171
2077
|
.classBuilder()
|
|
2172
2078
|
.ep(commonParams)
|
|
2173
2079
|
.m(function (Command, cs, config, o) {
|
|
2174
|
-
return [
|
|
2175
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2176
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2177
|
-
];
|
|
2080
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2178
2081
|
})
|
|
2179
2082
|
.s("AmazonAppConfig", "GetAccountSettings", {})
|
|
2180
2083
|
.n("AppConfigClient", "GetAccountSettingsCommand")
|
|
2181
|
-
.
|
|
2182
|
-
.ser(se_GetAccountSettingsCommand)
|
|
2183
|
-
.de(de_GetAccountSettingsCommand)
|
|
2084
|
+
.sc(GetAccountSettings)
|
|
2184
2085
|
.build() {
|
|
2185
2086
|
}
|
|
2186
2087
|
|
|
@@ -2188,16 +2089,11 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
2188
2089
|
.classBuilder()
|
|
2189
2090
|
.ep(commonParams)
|
|
2190
2091
|
.m(function (Command, cs, config, o) {
|
|
2191
|
-
return [
|
|
2192
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2193
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2194
|
-
];
|
|
2092
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2195
2093
|
})
|
|
2196
2094
|
.s("AmazonAppConfig", "GetApplication", {})
|
|
2197
2095
|
.n("AppConfigClient", "GetApplicationCommand")
|
|
2198
|
-
.
|
|
2199
|
-
.ser(se_GetApplicationCommand)
|
|
2200
|
-
.de(de_GetApplicationCommand)
|
|
2096
|
+
.sc(GetApplication)
|
|
2201
2097
|
.build() {
|
|
2202
2098
|
}
|
|
2203
2099
|
|
|
@@ -2205,16 +2101,11 @@ class GetConfigurationCommand extends smithyClient.Command
|
|
|
2205
2101
|
.classBuilder()
|
|
2206
2102
|
.ep(commonParams)
|
|
2207
2103
|
.m(function (Command, cs, config, o) {
|
|
2208
|
-
return [
|
|
2209
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2210
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2211
|
-
];
|
|
2104
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2212
2105
|
})
|
|
2213
2106
|
.s("AmazonAppConfig", "GetConfiguration", {})
|
|
2214
2107
|
.n("AppConfigClient", "GetConfigurationCommand")
|
|
2215
|
-
.
|
|
2216
|
-
.ser(se_GetConfigurationCommand)
|
|
2217
|
-
.de(de_GetConfigurationCommand)
|
|
2108
|
+
.sc(GetConfiguration)
|
|
2218
2109
|
.build() {
|
|
2219
2110
|
}
|
|
2220
2111
|
|
|
@@ -2222,16 +2113,11 @@ class GetConfigurationProfileCommand extends smithyClient.Command
|
|
|
2222
2113
|
.classBuilder()
|
|
2223
2114
|
.ep(commonParams)
|
|
2224
2115
|
.m(function (Command, cs, config, o) {
|
|
2225
|
-
return [
|
|
2226
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2227
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2228
|
-
];
|
|
2116
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2229
2117
|
})
|
|
2230
2118
|
.s("AmazonAppConfig", "GetConfigurationProfile", {})
|
|
2231
2119
|
.n("AppConfigClient", "GetConfigurationProfileCommand")
|
|
2232
|
-
.
|
|
2233
|
-
.ser(se_GetConfigurationProfileCommand)
|
|
2234
|
-
.de(de_GetConfigurationProfileCommand)
|
|
2120
|
+
.sc(GetConfigurationProfile)
|
|
2235
2121
|
.build() {
|
|
2236
2122
|
}
|
|
2237
2123
|
|
|
@@ -2239,16 +2125,11 @@ class GetDeploymentCommand extends smithyClient.Command
|
|
|
2239
2125
|
.classBuilder()
|
|
2240
2126
|
.ep(commonParams)
|
|
2241
2127
|
.m(function (Command, cs, config, o) {
|
|
2242
|
-
return [
|
|
2243
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2244
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2245
|
-
];
|
|
2128
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2246
2129
|
})
|
|
2247
2130
|
.s("AmazonAppConfig", "GetDeployment", {})
|
|
2248
2131
|
.n("AppConfigClient", "GetDeploymentCommand")
|
|
2249
|
-
.
|
|
2250
|
-
.ser(se_GetDeploymentCommand)
|
|
2251
|
-
.de(de_GetDeploymentCommand)
|
|
2132
|
+
.sc(GetDeployment)
|
|
2252
2133
|
.build() {
|
|
2253
2134
|
}
|
|
2254
2135
|
|
|
@@ -2256,16 +2137,11 @@ class GetDeploymentStrategyCommand extends smithyClient.Command
|
|
|
2256
2137
|
.classBuilder()
|
|
2257
2138
|
.ep(commonParams)
|
|
2258
2139
|
.m(function (Command, cs, config, o) {
|
|
2259
|
-
return [
|
|
2260
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2261
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2262
|
-
];
|
|
2140
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2263
2141
|
})
|
|
2264
2142
|
.s("AmazonAppConfig", "GetDeploymentStrategy", {})
|
|
2265
2143
|
.n("AppConfigClient", "GetDeploymentStrategyCommand")
|
|
2266
|
-
.
|
|
2267
|
-
.ser(se_GetDeploymentStrategyCommand)
|
|
2268
|
-
.de(de_GetDeploymentStrategyCommand)
|
|
2144
|
+
.sc(GetDeploymentStrategy)
|
|
2269
2145
|
.build() {
|
|
2270
2146
|
}
|
|
2271
2147
|
|
|
@@ -2273,16 +2149,11 @@ class GetEnvironmentCommand extends smithyClient.Command
|
|
|
2273
2149
|
.classBuilder()
|
|
2274
2150
|
.ep(commonParams)
|
|
2275
2151
|
.m(function (Command, cs, config, o) {
|
|
2276
|
-
return [
|
|
2277
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2278
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2279
|
-
];
|
|
2152
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2280
2153
|
})
|
|
2281
2154
|
.s("AmazonAppConfig", "GetEnvironment", {})
|
|
2282
2155
|
.n("AppConfigClient", "GetEnvironmentCommand")
|
|
2283
|
-
.
|
|
2284
|
-
.ser(se_GetEnvironmentCommand)
|
|
2285
|
-
.de(de_GetEnvironmentCommand)
|
|
2156
|
+
.sc(GetEnvironment)
|
|
2286
2157
|
.build() {
|
|
2287
2158
|
}
|
|
2288
2159
|
|
|
@@ -2290,16 +2161,11 @@ class GetExtensionAssociationCommand extends smithyClient.Command
|
|
|
2290
2161
|
.classBuilder()
|
|
2291
2162
|
.ep(commonParams)
|
|
2292
2163
|
.m(function (Command, cs, config, o) {
|
|
2293
|
-
return [
|
|
2294
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2295
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2296
|
-
];
|
|
2164
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2297
2165
|
})
|
|
2298
2166
|
.s("AmazonAppConfig", "GetExtensionAssociation", {})
|
|
2299
2167
|
.n("AppConfigClient", "GetExtensionAssociationCommand")
|
|
2300
|
-
.
|
|
2301
|
-
.ser(se_GetExtensionAssociationCommand)
|
|
2302
|
-
.de(de_GetExtensionAssociationCommand)
|
|
2168
|
+
.sc(GetExtensionAssociation)
|
|
2303
2169
|
.build() {
|
|
2304
2170
|
}
|
|
2305
2171
|
|
|
@@ -2307,16 +2173,11 @@ class GetExtensionCommand extends smithyClient.Command
|
|
|
2307
2173
|
.classBuilder()
|
|
2308
2174
|
.ep(commonParams)
|
|
2309
2175
|
.m(function (Command, cs, config, o) {
|
|
2310
|
-
return [
|
|
2311
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2312
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2313
|
-
];
|
|
2176
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2314
2177
|
})
|
|
2315
2178
|
.s("AmazonAppConfig", "GetExtension", {})
|
|
2316
2179
|
.n("AppConfigClient", "GetExtensionCommand")
|
|
2317
|
-
.
|
|
2318
|
-
.ser(se_GetExtensionCommand)
|
|
2319
|
-
.de(de_GetExtensionCommand)
|
|
2180
|
+
.sc(GetExtension)
|
|
2320
2181
|
.build() {
|
|
2321
2182
|
}
|
|
2322
2183
|
|
|
@@ -2324,16 +2185,11 @@ class GetHostedConfigurationVersionCommand extends smithyClient.Command
|
|
|
2324
2185
|
.classBuilder()
|
|
2325
2186
|
.ep(commonParams)
|
|
2326
2187
|
.m(function (Command, cs, config, o) {
|
|
2327
|
-
return [
|
|
2328
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2329
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2330
|
-
];
|
|
2188
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2331
2189
|
})
|
|
2332
2190
|
.s("AmazonAppConfig", "GetHostedConfigurationVersion", {})
|
|
2333
2191
|
.n("AppConfigClient", "GetHostedConfigurationVersionCommand")
|
|
2334
|
-
.
|
|
2335
|
-
.ser(se_GetHostedConfigurationVersionCommand)
|
|
2336
|
-
.de(de_GetHostedConfigurationVersionCommand)
|
|
2192
|
+
.sc(GetHostedConfigurationVersion)
|
|
2337
2193
|
.build() {
|
|
2338
2194
|
}
|
|
2339
2195
|
|
|
@@ -2341,16 +2197,11 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
2341
2197
|
.classBuilder()
|
|
2342
2198
|
.ep(commonParams)
|
|
2343
2199
|
.m(function (Command, cs, config, o) {
|
|
2344
|
-
return [
|
|
2345
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2346
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2347
|
-
];
|
|
2200
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2348
2201
|
})
|
|
2349
2202
|
.s("AmazonAppConfig", "ListApplications", {})
|
|
2350
2203
|
.n("AppConfigClient", "ListApplicationsCommand")
|
|
2351
|
-
.
|
|
2352
|
-
.ser(se_ListApplicationsCommand)
|
|
2353
|
-
.de(de_ListApplicationsCommand)
|
|
2204
|
+
.sc(ListApplications)
|
|
2354
2205
|
.build() {
|
|
2355
2206
|
}
|
|
2356
2207
|
|
|
@@ -2358,16 +2209,11 @@ class ListConfigurationProfilesCommand extends smithyClient.Command
|
|
|
2358
2209
|
.classBuilder()
|
|
2359
2210
|
.ep(commonParams)
|
|
2360
2211
|
.m(function (Command, cs, config, o) {
|
|
2361
|
-
return [
|
|
2362
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2363
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2364
|
-
];
|
|
2212
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2365
2213
|
})
|
|
2366
2214
|
.s("AmazonAppConfig", "ListConfigurationProfiles", {})
|
|
2367
2215
|
.n("AppConfigClient", "ListConfigurationProfilesCommand")
|
|
2368
|
-
.
|
|
2369
|
-
.ser(se_ListConfigurationProfilesCommand)
|
|
2370
|
-
.de(de_ListConfigurationProfilesCommand)
|
|
2216
|
+
.sc(ListConfigurationProfiles)
|
|
2371
2217
|
.build() {
|
|
2372
2218
|
}
|
|
2373
2219
|
|
|
@@ -2375,16 +2221,11 @@ class ListDeploymentsCommand extends smithyClient.Command
|
|
|
2375
2221
|
.classBuilder()
|
|
2376
2222
|
.ep(commonParams)
|
|
2377
2223
|
.m(function (Command, cs, config, o) {
|
|
2378
|
-
return [
|
|
2379
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2380
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2381
|
-
];
|
|
2224
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2382
2225
|
})
|
|
2383
2226
|
.s("AmazonAppConfig", "ListDeployments", {})
|
|
2384
2227
|
.n("AppConfigClient", "ListDeploymentsCommand")
|
|
2385
|
-
.
|
|
2386
|
-
.ser(se_ListDeploymentsCommand)
|
|
2387
|
-
.de(de_ListDeploymentsCommand)
|
|
2228
|
+
.sc(ListDeployments)
|
|
2388
2229
|
.build() {
|
|
2389
2230
|
}
|
|
2390
2231
|
|
|
@@ -2392,16 +2233,11 @@ class ListDeploymentStrategiesCommand extends smithyClient.Command
|
|
|
2392
2233
|
.classBuilder()
|
|
2393
2234
|
.ep(commonParams)
|
|
2394
2235
|
.m(function (Command, cs, config, o) {
|
|
2395
|
-
return [
|
|
2396
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2397
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2398
|
-
];
|
|
2236
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2399
2237
|
})
|
|
2400
2238
|
.s("AmazonAppConfig", "ListDeploymentStrategies", {})
|
|
2401
2239
|
.n("AppConfigClient", "ListDeploymentStrategiesCommand")
|
|
2402
|
-
.
|
|
2403
|
-
.ser(se_ListDeploymentStrategiesCommand)
|
|
2404
|
-
.de(de_ListDeploymentStrategiesCommand)
|
|
2240
|
+
.sc(ListDeploymentStrategies)
|
|
2405
2241
|
.build() {
|
|
2406
2242
|
}
|
|
2407
2243
|
|
|
@@ -2409,16 +2245,11 @@ class ListEnvironmentsCommand extends smithyClient.Command
|
|
|
2409
2245
|
.classBuilder()
|
|
2410
2246
|
.ep(commonParams)
|
|
2411
2247
|
.m(function (Command, cs, config, o) {
|
|
2412
|
-
return [
|
|
2413
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2414
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2415
|
-
];
|
|
2248
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2416
2249
|
})
|
|
2417
2250
|
.s("AmazonAppConfig", "ListEnvironments", {})
|
|
2418
2251
|
.n("AppConfigClient", "ListEnvironmentsCommand")
|
|
2419
|
-
.
|
|
2420
|
-
.ser(se_ListEnvironmentsCommand)
|
|
2421
|
-
.de(de_ListEnvironmentsCommand)
|
|
2252
|
+
.sc(ListEnvironments)
|
|
2422
2253
|
.build() {
|
|
2423
2254
|
}
|
|
2424
2255
|
|
|
@@ -2426,16 +2257,11 @@ class ListExtensionAssociationsCommand extends smithyClient.Command
|
|
|
2426
2257
|
.classBuilder()
|
|
2427
2258
|
.ep(commonParams)
|
|
2428
2259
|
.m(function (Command, cs, config, o) {
|
|
2429
|
-
return [
|
|
2430
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2431
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2432
|
-
];
|
|
2260
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2433
2261
|
})
|
|
2434
2262
|
.s("AmazonAppConfig", "ListExtensionAssociations", {})
|
|
2435
2263
|
.n("AppConfigClient", "ListExtensionAssociationsCommand")
|
|
2436
|
-
.
|
|
2437
|
-
.ser(se_ListExtensionAssociationsCommand)
|
|
2438
|
-
.de(de_ListExtensionAssociationsCommand)
|
|
2264
|
+
.sc(ListExtensionAssociations)
|
|
2439
2265
|
.build() {
|
|
2440
2266
|
}
|
|
2441
2267
|
|
|
@@ -2443,16 +2269,11 @@ class ListExtensionsCommand extends smithyClient.Command
|
|
|
2443
2269
|
.classBuilder()
|
|
2444
2270
|
.ep(commonParams)
|
|
2445
2271
|
.m(function (Command, cs, config, o) {
|
|
2446
|
-
return [
|
|
2447
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2448
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2449
|
-
];
|
|
2272
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2450
2273
|
})
|
|
2451
2274
|
.s("AmazonAppConfig", "ListExtensions", {})
|
|
2452
2275
|
.n("AppConfigClient", "ListExtensionsCommand")
|
|
2453
|
-
.
|
|
2454
|
-
.ser(se_ListExtensionsCommand)
|
|
2455
|
-
.de(de_ListExtensionsCommand)
|
|
2276
|
+
.sc(ListExtensions)
|
|
2456
2277
|
.build() {
|
|
2457
2278
|
}
|
|
2458
2279
|
|
|
@@ -2460,16 +2281,11 @@ class ListHostedConfigurationVersionsCommand extends smithyClient.Command
|
|
|
2460
2281
|
.classBuilder()
|
|
2461
2282
|
.ep(commonParams)
|
|
2462
2283
|
.m(function (Command, cs, config, o) {
|
|
2463
|
-
return [
|
|
2464
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2465
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2466
|
-
];
|
|
2284
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2467
2285
|
})
|
|
2468
2286
|
.s("AmazonAppConfig", "ListHostedConfigurationVersions", {})
|
|
2469
2287
|
.n("AppConfigClient", "ListHostedConfigurationVersionsCommand")
|
|
2470
|
-
.
|
|
2471
|
-
.ser(se_ListHostedConfigurationVersionsCommand)
|
|
2472
|
-
.de(de_ListHostedConfigurationVersionsCommand)
|
|
2288
|
+
.sc(ListHostedConfigurationVersions)
|
|
2473
2289
|
.build() {
|
|
2474
2290
|
}
|
|
2475
2291
|
|
|
@@ -2477,16 +2293,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2477
2293
|
.classBuilder()
|
|
2478
2294
|
.ep(commonParams)
|
|
2479
2295
|
.m(function (Command, cs, config, o) {
|
|
2480
|
-
return [
|
|
2481
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2482
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2483
|
-
];
|
|
2296
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2484
2297
|
})
|
|
2485
2298
|
.s("AmazonAppConfig", "ListTagsForResource", {})
|
|
2486
2299
|
.n("AppConfigClient", "ListTagsForResourceCommand")
|
|
2487
|
-
.
|
|
2488
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2489
|
-
.de(de_ListTagsForResourceCommand)
|
|
2300
|
+
.sc(ListTagsForResource)
|
|
2490
2301
|
.build() {
|
|
2491
2302
|
}
|
|
2492
2303
|
|
|
@@ -2494,16 +2305,11 @@ class StartDeploymentCommand extends smithyClient.Command
|
|
|
2494
2305
|
.classBuilder()
|
|
2495
2306
|
.ep(commonParams)
|
|
2496
2307
|
.m(function (Command, cs, config, o) {
|
|
2497
|
-
return [
|
|
2498
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2499
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2500
|
-
];
|
|
2308
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2501
2309
|
})
|
|
2502
2310
|
.s("AmazonAppConfig", "StartDeployment", {})
|
|
2503
2311
|
.n("AppConfigClient", "StartDeploymentCommand")
|
|
2504
|
-
.
|
|
2505
|
-
.ser(se_StartDeploymentCommand)
|
|
2506
|
-
.de(de_StartDeploymentCommand)
|
|
2312
|
+
.sc(StartDeployment)
|
|
2507
2313
|
.build() {
|
|
2508
2314
|
}
|
|
2509
2315
|
|
|
@@ -2511,16 +2317,11 @@ class StopDeploymentCommand extends smithyClient.Command
|
|
|
2511
2317
|
.classBuilder()
|
|
2512
2318
|
.ep(commonParams)
|
|
2513
2319
|
.m(function (Command, cs, config, o) {
|
|
2514
|
-
return [
|
|
2515
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2516
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2517
|
-
];
|
|
2320
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2518
2321
|
})
|
|
2519
2322
|
.s("AmazonAppConfig", "StopDeployment", {})
|
|
2520
2323
|
.n("AppConfigClient", "StopDeploymentCommand")
|
|
2521
|
-
.
|
|
2522
|
-
.ser(se_StopDeploymentCommand)
|
|
2523
|
-
.de(de_StopDeploymentCommand)
|
|
2324
|
+
.sc(StopDeployment)
|
|
2524
2325
|
.build() {
|
|
2525
2326
|
}
|
|
2526
2327
|
|
|
@@ -2528,16 +2329,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2528
2329
|
.classBuilder()
|
|
2529
2330
|
.ep(commonParams)
|
|
2530
2331
|
.m(function (Command, cs, config, o) {
|
|
2531
|
-
return [
|
|
2532
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2533
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2534
|
-
];
|
|
2332
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2535
2333
|
})
|
|
2536
2334
|
.s("AmazonAppConfig", "TagResource", {})
|
|
2537
2335
|
.n("AppConfigClient", "TagResourceCommand")
|
|
2538
|
-
.
|
|
2539
|
-
.ser(se_TagResourceCommand)
|
|
2540
|
-
.de(de_TagResourceCommand)
|
|
2336
|
+
.sc(TagResource)
|
|
2541
2337
|
.build() {
|
|
2542
2338
|
}
|
|
2543
2339
|
|
|
@@ -2545,16 +2341,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2545
2341
|
.classBuilder()
|
|
2546
2342
|
.ep(commonParams)
|
|
2547
2343
|
.m(function (Command, cs, config, o) {
|
|
2548
|
-
return [
|
|
2549
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2550
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2551
|
-
];
|
|
2344
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2552
2345
|
})
|
|
2553
2346
|
.s("AmazonAppConfig", "UntagResource", {})
|
|
2554
2347
|
.n("AppConfigClient", "UntagResourceCommand")
|
|
2555
|
-
.
|
|
2556
|
-
.ser(se_UntagResourceCommand)
|
|
2557
|
-
.de(de_UntagResourceCommand)
|
|
2348
|
+
.sc(UntagResource)
|
|
2558
2349
|
.build() {
|
|
2559
2350
|
}
|
|
2560
2351
|
|
|
@@ -2562,16 +2353,11 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
2562
2353
|
.classBuilder()
|
|
2563
2354
|
.ep(commonParams)
|
|
2564
2355
|
.m(function (Command, cs, config, o) {
|
|
2565
|
-
return [
|
|
2566
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2567
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2568
|
-
];
|
|
2356
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2569
2357
|
})
|
|
2570
2358
|
.s("AmazonAppConfig", "UpdateAccountSettings", {})
|
|
2571
2359
|
.n("AppConfigClient", "UpdateAccountSettingsCommand")
|
|
2572
|
-
.
|
|
2573
|
-
.ser(se_UpdateAccountSettingsCommand)
|
|
2574
|
-
.de(de_UpdateAccountSettingsCommand)
|
|
2360
|
+
.sc(UpdateAccountSettings)
|
|
2575
2361
|
.build() {
|
|
2576
2362
|
}
|
|
2577
2363
|
|
|
@@ -2579,16 +2365,11 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
2579
2365
|
.classBuilder()
|
|
2580
2366
|
.ep(commonParams)
|
|
2581
2367
|
.m(function (Command, cs, config, o) {
|
|
2582
|
-
return [
|
|
2583
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2584
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2585
|
-
];
|
|
2368
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2586
2369
|
})
|
|
2587
2370
|
.s("AmazonAppConfig", "UpdateApplication", {})
|
|
2588
2371
|
.n("AppConfigClient", "UpdateApplicationCommand")
|
|
2589
|
-
.
|
|
2590
|
-
.ser(se_UpdateApplicationCommand)
|
|
2591
|
-
.de(de_UpdateApplicationCommand)
|
|
2372
|
+
.sc(UpdateApplication)
|
|
2592
2373
|
.build() {
|
|
2593
2374
|
}
|
|
2594
2375
|
|
|
@@ -2596,16 +2377,11 @@ class UpdateConfigurationProfileCommand extends smithyClient.Command
|
|
|
2596
2377
|
.classBuilder()
|
|
2597
2378
|
.ep(commonParams)
|
|
2598
2379
|
.m(function (Command, cs, config, o) {
|
|
2599
|
-
return [
|
|
2600
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2601
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2602
|
-
];
|
|
2380
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2603
2381
|
})
|
|
2604
2382
|
.s("AmazonAppConfig", "UpdateConfigurationProfile", {})
|
|
2605
2383
|
.n("AppConfigClient", "UpdateConfigurationProfileCommand")
|
|
2606
|
-
.
|
|
2607
|
-
.ser(se_UpdateConfigurationProfileCommand)
|
|
2608
|
-
.de(de_UpdateConfigurationProfileCommand)
|
|
2384
|
+
.sc(UpdateConfigurationProfile)
|
|
2609
2385
|
.build() {
|
|
2610
2386
|
}
|
|
2611
2387
|
|
|
@@ -2613,16 +2389,11 @@ class UpdateDeploymentStrategyCommand extends smithyClient.Command
|
|
|
2613
2389
|
.classBuilder()
|
|
2614
2390
|
.ep(commonParams)
|
|
2615
2391
|
.m(function (Command, cs, config, o) {
|
|
2616
|
-
return [
|
|
2617
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2618
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2619
|
-
];
|
|
2392
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2620
2393
|
})
|
|
2621
2394
|
.s("AmazonAppConfig", "UpdateDeploymentStrategy", {})
|
|
2622
2395
|
.n("AppConfigClient", "UpdateDeploymentStrategyCommand")
|
|
2623
|
-
.
|
|
2624
|
-
.ser(se_UpdateDeploymentStrategyCommand)
|
|
2625
|
-
.de(de_UpdateDeploymentStrategyCommand)
|
|
2396
|
+
.sc(UpdateDeploymentStrategy)
|
|
2626
2397
|
.build() {
|
|
2627
2398
|
}
|
|
2628
2399
|
|
|
@@ -2630,16 +2401,11 @@ class UpdateEnvironmentCommand extends smithyClient.Command
|
|
|
2630
2401
|
.classBuilder()
|
|
2631
2402
|
.ep(commonParams)
|
|
2632
2403
|
.m(function (Command, cs, config, o) {
|
|
2633
|
-
return [
|
|
2634
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2635
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2636
|
-
];
|
|
2404
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2637
2405
|
})
|
|
2638
2406
|
.s("AmazonAppConfig", "UpdateEnvironment", {})
|
|
2639
2407
|
.n("AppConfigClient", "UpdateEnvironmentCommand")
|
|
2640
|
-
.
|
|
2641
|
-
.ser(se_UpdateEnvironmentCommand)
|
|
2642
|
-
.de(de_UpdateEnvironmentCommand)
|
|
2408
|
+
.sc(UpdateEnvironment)
|
|
2643
2409
|
.build() {
|
|
2644
2410
|
}
|
|
2645
2411
|
|
|
@@ -2647,16 +2413,11 @@ class UpdateExtensionAssociationCommand extends smithyClient.Command
|
|
|
2647
2413
|
.classBuilder()
|
|
2648
2414
|
.ep(commonParams)
|
|
2649
2415
|
.m(function (Command, cs, config, o) {
|
|
2650
|
-
return [
|
|
2651
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2652
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2653
|
-
];
|
|
2416
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2654
2417
|
})
|
|
2655
2418
|
.s("AmazonAppConfig", "UpdateExtensionAssociation", {})
|
|
2656
2419
|
.n("AppConfigClient", "UpdateExtensionAssociationCommand")
|
|
2657
|
-
.
|
|
2658
|
-
.ser(se_UpdateExtensionAssociationCommand)
|
|
2659
|
-
.de(de_UpdateExtensionAssociationCommand)
|
|
2420
|
+
.sc(UpdateExtensionAssociation)
|
|
2660
2421
|
.build() {
|
|
2661
2422
|
}
|
|
2662
2423
|
|
|
@@ -2664,16 +2425,11 @@ class UpdateExtensionCommand extends smithyClient.Command
|
|
|
2664
2425
|
.classBuilder()
|
|
2665
2426
|
.ep(commonParams)
|
|
2666
2427
|
.m(function (Command, cs, config, o) {
|
|
2667
|
-
return [
|
|
2668
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2669
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2670
|
-
];
|
|
2428
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2671
2429
|
})
|
|
2672
2430
|
.s("AmazonAppConfig", "UpdateExtension", {})
|
|
2673
2431
|
.n("AppConfigClient", "UpdateExtensionCommand")
|
|
2674
|
-
.
|
|
2675
|
-
.ser(se_UpdateExtensionCommand)
|
|
2676
|
-
.de(de_UpdateExtensionCommand)
|
|
2432
|
+
.sc(UpdateExtension)
|
|
2677
2433
|
.build() {
|
|
2678
2434
|
}
|
|
2679
2435
|
|
|
@@ -2681,16 +2437,11 @@ class ValidateConfigurationCommand extends smithyClient.Command
|
|
|
2681
2437
|
.classBuilder()
|
|
2682
2438
|
.ep(commonParams)
|
|
2683
2439
|
.m(function (Command, cs, config, o) {
|
|
2684
|
-
return [
|
|
2685
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2686
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2687
|
-
];
|
|
2440
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2688
2441
|
})
|
|
2689
2442
|
.s("AmazonAppConfig", "ValidateConfiguration", {})
|
|
2690
2443
|
.n("AppConfigClient", "ValidateConfigurationCommand")
|
|
2691
|
-
.
|
|
2692
|
-
.ser(se_ValidateConfigurationCommand)
|
|
2693
|
-
.de(de_ValidateConfigurationCommand)
|
|
2444
|
+
.sc(ValidateConfiguration)
|
|
2694
2445
|
.build() {
|
|
2695
2446
|
}
|
|
2696
2447
|
|
|
@@ -2868,22 +2619,18 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2868
2619
|
exports.ActionPoint = ActionPoint;
|
|
2869
2620
|
exports.AppConfig = AppConfig;
|
|
2870
2621
|
exports.AppConfigClient = AppConfigClient;
|
|
2871
|
-
exports.AppConfigServiceException = AppConfigServiceException;
|
|
2872
|
-
exports.BadRequestException = BadRequestException;
|
|
2622
|
+
exports.AppConfigServiceException = AppConfigServiceException$1;
|
|
2623
|
+
exports.BadRequestException = BadRequestException$1;
|
|
2873
2624
|
exports.BadRequestReason = BadRequestReason;
|
|
2874
2625
|
exports.BytesMeasure = BytesMeasure;
|
|
2875
|
-
exports.
|
|
2876
|
-
exports.ConfigurationProfileFilterSensitiveLog = ConfigurationProfileFilterSensitiveLog;
|
|
2877
|
-
exports.ConflictException = ConflictException;
|
|
2626
|
+
exports.ConflictException = ConflictException$1;
|
|
2878
2627
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
2879
2628
|
exports.CreateConfigurationProfileCommand = CreateConfigurationProfileCommand;
|
|
2880
|
-
exports.CreateConfigurationProfileRequestFilterSensitiveLog = CreateConfigurationProfileRequestFilterSensitiveLog;
|
|
2881
2629
|
exports.CreateDeploymentStrategyCommand = CreateDeploymentStrategyCommand;
|
|
2882
2630
|
exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
|
|
2883
2631
|
exports.CreateExtensionAssociationCommand = CreateExtensionAssociationCommand;
|
|
2884
2632
|
exports.CreateExtensionCommand = CreateExtensionCommand;
|
|
2885
2633
|
exports.CreateHostedConfigurationVersionCommand = CreateHostedConfigurationVersionCommand;
|
|
2886
|
-
exports.CreateHostedConfigurationVersionRequestFilterSensitiveLog = CreateHostedConfigurationVersionRequestFilterSensitiveLog;
|
|
2887
2634
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
2888
2635
|
exports.DeleteConfigurationProfileCommand = DeleteConfigurationProfileCommand;
|
|
2889
2636
|
exports.DeleteDeploymentStrategyCommand = DeleteDeploymentStrategyCommand;
|
|
@@ -2906,8 +2653,7 @@ exports.GetExtensionAssociationCommand = GetExtensionAssociationCommand;
|
|
|
2906
2653
|
exports.GetExtensionCommand = GetExtensionCommand;
|
|
2907
2654
|
exports.GetHostedConfigurationVersionCommand = GetHostedConfigurationVersionCommand;
|
|
2908
2655
|
exports.GrowthType = GrowthType;
|
|
2909
|
-
exports.
|
|
2910
|
-
exports.InternalServerException = InternalServerException;
|
|
2656
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2911
2657
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
2912
2658
|
exports.ListConfigurationProfilesCommand = ListConfigurationProfilesCommand;
|
|
2913
2659
|
exports.ListDeploymentStrategiesCommand = ListDeploymentStrategiesCommand;
|
|
@@ -2917,12 +2663,11 @@ exports.ListExtensionAssociationsCommand = ListExtensionAssociationsCommand;
|
|
|
2917
2663
|
exports.ListExtensionsCommand = ListExtensionsCommand;
|
|
2918
2664
|
exports.ListHostedConfigurationVersionsCommand = ListHostedConfigurationVersionsCommand;
|
|
2919
2665
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2920
|
-
exports.PayloadTooLargeException = PayloadTooLargeException;
|
|
2666
|
+
exports.PayloadTooLargeException = PayloadTooLargeException$1;
|
|
2921
2667
|
exports.ReplicateTo = ReplicateTo;
|
|
2922
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2923
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2668
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2669
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2924
2670
|
exports.StartDeploymentCommand = StartDeploymentCommand;
|
|
2925
|
-
exports.StartDeploymentRequestFilterSensitiveLog = StartDeploymentRequestFilterSensitiveLog;
|
|
2926
2671
|
exports.StopDeploymentCommand = StopDeploymentCommand;
|
|
2927
2672
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2928
2673
|
exports.TriggeredBy = TriggeredBy;
|
|
@@ -2930,13 +2675,11 @@ exports.UntagResourceCommand = UntagResourceCommand;
|
|
|
2930
2675
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
2931
2676
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
2932
2677
|
exports.UpdateConfigurationProfileCommand = UpdateConfigurationProfileCommand;
|
|
2933
|
-
exports.UpdateConfigurationProfileRequestFilterSensitiveLog = UpdateConfigurationProfileRequestFilterSensitiveLog;
|
|
2934
2678
|
exports.UpdateDeploymentStrategyCommand = UpdateDeploymentStrategyCommand;
|
|
2935
2679
|
exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
|
|
2936
2680
|
exports.UpdateExtensionAssociationCommand = UpdateExtensionAssociationCommand;
|
|
2937
2681
|
exports.UpdateExtensionCommand = UpdateExtensionCommand;
|
|
2938
2682
|
exports.ValidateConfigurationCommand = ValidateConfigurationCommand;
|
|
2939
|
-
exports.ValidatorFilterSensitiveLog = ValidatorFilterSensitiveLog;
|
|
2940
2683
|
exports.ValidatorType = ValidatorType;
|
|
2941
2684
|
exports.paginateListApplications = paginateListApplications;
|
|
2942
2685
|
exports.paginateListConfigurationProfiles = paginateListConfigurationProfiles;
|