@aws-sdk/client-cloudcontrol 3.927.0 → 3.929.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 +593 -747
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/CloudControlClient.js +2 -0
- package/dist-es/commands/CancelResourceRequestCommand.js +3 -10
- package/dist-es/commands/CreateResourceCommand.js +3 -10
- package/dist-es/commands/DeleteResourceCommand.js +3 -10
- package/dist-es/commands/GetResourceCommand.js +3 -10
- package/dist-es/commands/GetResourceRequestStatusCommand.js +3 -10
- package/dist-es/commands/ListResourceRequestsCommand.js +3 -10
- package/dist-es/commands/ListResourcesCommand.js +3 -10
- package/dist-es/commands/UpdateResourceCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -59
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +514 -0
- package/dist-types/CloudControlClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -52
- 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 +1 -0
- package/dist-types/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/CloudControlClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -39
- 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 +64 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -561
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -74
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -101
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,9 +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
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
var utilWaiter = require('@smithy/util-waiter');
|
|
21
19
|
|
|
22
20
|
const resolveClientEndpointParameters = (options) => {
|
|
@@ -93,6 +91,7 @@ class CloudControlClient extends smithyClient.Client {
|
|
|
93
91
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
94
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
95
93
|
this.config = _config_8;
|
|
94
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
98
97
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -112,14 +111,14 @@ class CloudControlClient extends smithyClient.Client {
|
|
|
112
111
|
}
|
|
113
112
|
}
|
|
114
113
|
|
|
115
|
-
class CloudControlServiceException extends smithyClient.ServiceException {
|
|
114
|
+
let CloudControlServiceException$1 = class CloudControlServiceException extends smithyClient.ServiceException {
|
|
116
115
|
constructor(options) {
|
|
117
116
|
super(options);
|
|
118
117
|
Object.setPrototypeOf(this, CloudControlServiceException.prototype);
|
|
119
118
|
}
|
|
120
|
-
}
|
|
119
|
+
};
|
|
121
120
|
|
|
122
|
-
class AlreadyExistsException extends CloudControlServiceException {
|
|
121
|
+
let AlreadyExistsException$1 = class AlreadyExistsException extends CloudControlServiceException$1 {
|
|
123
122
|
name = "AlreadyExistsException";
|
|
124
123
|
$fault = "client";
|
|
125
124
|
Message;
|
|
@@ -132,7 +131,7 @@ class AlreadyExistsException extends CloudControlServiceException {
|
|
|
132
131
|
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
133
132
|
this.Message = opts.Message;
|
|
134
133
|
}
|
|
135
|
-
}
|
|
134
|
+
};
|
|
136
135
|
const HandlerErrorCode = {
|
|
137
136
|
ACCESS_DENIED: "AccessDenied",
|
|
138
137
|
ALREADY_EXISTS: "AlreadyExists",
|
|
@@ -164,7 +163,7 @@ const OperationStatus = {
|
|
|
164
163
|
PENDING: "PENDING",
|
|
165
164
|
SUCCESS: "SUCCESS",
|
|
166
165
|
};
|
|
167
|
-
class ConcurrentModificationException extends CloudControlServiceException {
|
|
166
|
+
let ConcurrentModificationException$1 = class ConcurrentModificationException extends CloudControlServiceException$1 {
|
|
168
167
|
name = "ConcurrentModificationException";
|
|
169
168
|
$fault = "server";
|
|
170
169
|
Message;
|
|
@@ -177,8 +176,8 @@ class ConcurrentModificationException extends CloudControlServiceException {
|
|
|
177
176
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
178
177
|
this.Message = opts.Message;
|
|
179
178
|
}
|
|
180
|
-
}
|
|
181
|
-
class RequestTokenNotFoundException extends CloudControlServiceException {
|
|
179
|
+
};
|
|
180
|
+
let RequestTokenNotFoundException$1 = class RequestTokenNotFoundException extends CloudControlServiceException$1 {
|
|
182
181
|
name = "RequestTokenNotFoundException";
|
|
183
182
|
$fault = "client";
|
|
184
183
|
Message;
|
|
@@ -191,8 +190,8 @@ class RequestTokenNotFoundException extends CloudControlServiceException {
|
|
|
191
190
|
Object.setPrototypeOf(this, RequestTokenNotFoundException.prototype);
|
|
192
191
|
this.Message = opts.Message;
|
|
193
192
|
}
|
|
194
|
-
}
|
|
195
|
-
class ClientTokenConflictException extends CloudControlServiceException {
|
|
193
|
+
};
|
|
194
|
+
let ClientTokenConflictException$1 = class ClientTokenConflictException extends CloudControlServiceException$1 {
|
|
196
195
|
name = "ClientTokenConflictException";
|
|
197
196
|
$fault = "client";
|
|
198
197
|
Message;
|
|
@@ -205,8 +204,8 @@ class ClientTokenConflictException extends CloudControlServiceException {
|
|
|
205
204
|
Object.setPrototypeOf(this, ClientTokenConflictException.prototype);
|
|
206
205
|
this.Message = opts.Message;
|
|
207
206
|
}
|
|
208
|
-
}
|
|
209
|
-
class ConcurrentOperationException extends CloudControlServiceException {
|
|
207
|
+
};
|
|
208
|
+
let ConcurrentOperationException$1 = class ConcurrentOperationException extends CloudControlServiceException$1 {
|
|
210
209
|
name = "ConcurrentOperationException";
|
|
211
210
|
$fault = "client";
|
|
212
211
|
Message;
|
|
@@ -219,8 +218,8 @@ class ConcurrentOperationException extends CloudControlServiceException {
|
|
|
219
218
|
Object.setPrototypeOf(this, ConcurrentOperationException.prototype);
|
|
220
219
|
this.Message = opts.Message;
|
|
221
220
|
}
|
|
222
|
-
}
|
|
223
|
-
class GeneralServiceException extends CloudControlServiceException {
|
|
221
|
+
};
|
|
222
|
+
let GeneralServiceException$1 = class GeneralServiceException extends CloudControlServiceException$1 {
|
|
224
223
|
name = "GeneralServiceException";
|
|
225
224
|
$fault = "client";
|
|
226
225
|
Message;
|
|
@@ -233,8 +232,8 @@ class GeneralServiceException extends CloudControlServiceException {
|
|
|
233
232
|
Object.setPrototypeOf(this, GeneralServiceException.prototype);
|
|
234
233
|
this.Message = opts.Message;
|
|
235
234
|
}
|
|
236
|
-
}
|
|
237
|
-
class HandlerFailureException extends CloudControlServiceException {
|
|
235
|
+
};
|
|
236
|
+
let HandlerFailureException$1 = class HandlerFailureException extends CloudControlServiceException$1 {
|
|
238
237
|
name = "HandlerFailureException";
|
|
239
238
|
$fault = "server";
|
|
240
239
|
Message;
|
|
@@ -247,8 +246,8 @@ class HandlerFailureException extends CloudControlServiceException {
|
|
|
247
246
|
Object.setPrototypeOf(this, HandlerFailureException.prototype);
|
|
248
247
|
this.Message = opts.Message;
|
|
249
248
|
}
|
|
250
|
-
}
|
|
251
|
-
class HandlerInternalFailureException extends CloudControlServiceException {
|
|
249
|
+
};
|
|
250
|
+
let HandlerInternalFailureException$1 = class HandlerInternalFailureException extends CloudControlServiceException$1 {
|
|
252
251
|
name = "HandlerInternalFailureException";
|
|
253
252
|
$fault = "server";
|
|
254
253
|
Message;
|
|
@@ -261,8 +260,8 @@ class HandlerInternalFailureException extends CloudControlServiceException {
|
|
|
261
260
|
Object.setPrototypeOf(this, HandlerInternalFailureException.prototype);
|
|
262
261
|
this.Message = opts.Message;
|
|
263
262
|
}
|
|
264
|
-
}
|
|
265
|
-
class InvalidCredentialsException extends CloudControlServiceException {
|
|
263
|
+
};
|
|
264
|
+
let InvalidCredentialsException$1 = class InvalidCredentialsException extends CloudControlServiceException$1 {
|
|
266
265
|
name = "InvalidCredentialsException";
|
|
267
266
|
$fault = "client";
|
|
268
267
|
Message;
|
|
@@ -275,8 +274,8 @@ class InvalidCredentialsException extends CloudControlServiceException {
|
|
|
275
274
|
Object.setPrototypeOf(this, InvalidCredentialsException.prototype);
|
|
276
275
|
this.Message = opts.Message;
|
|
277
276
|
}
|
|
278
|
-
}
|
|
279
|
-
class InvalidRequestException extends CloudControlServiceException {
|
|
277
|
+
};
|
|
278
|
+
let InvalidRequestException$1 = class InvalidRequestException extends CloudControlServiceException$1 {
|
|
280
279
|
name = "InvalidRequestException";
|
|
281
280
|
$fault = "client";
|
|
282
281
|
Message;
|
|
@@ -289,8 +288,8 @@ class InvalidRequestException extends CloudControlServiceException {
|
|
|
289
288
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
290
289
|
this.Message = opts.Message;
|
|
291
290
|
}
|
|
292
|
-
}
|
|
293
|
-
class NetworkFailureException extends CloudControlServiceException {
|
|
291
|
+
};
|
|
292
|
+
let NetworkFailureException$1 = class NetworkFailureException extends CloudControlServiceException$1 {
|
|
294
293
|
name = "NetworkFailureException";
|
|
295
294
|
$fault = "server";
|
|
296
295
|
Message;
|
|
@@ -303,8 +302,8 @@ class NetworkFailureException extends CloudControlServiceException {
|
|
|
303
302
|
Object.setPrototypeOf(this, NetworkFailureException.prototype);
|
|
304
303
|
this.Message = opts.Message;
|
|
305
304
|
}
|
|
306
|
-
}
|
|
307
|
-
class NotStabilizedException extends CloudControlServiceException {
|
|
305
|
+
};
|
|
306
|
+
let NotStabilizedException$1 = class NotStabilizedException extends CloudControlServiceException$1 {
|
|
308
307
|
name = "NotStabilizedException";
|
|
309
308
|
$fault = "client";
|
|
310
309
|
Message;
|
|
@@ -317,8 +316,8 @@ class NotStabilizedException extends CloudControlServiceException {
|
|
|
317
316
|
Object.setPrototypeOf(this, NotStabilizedException.prototype);
|
|
318
317
|
this.Message = opts.Message;
|
|
319
318
|
}
|
|
320
|
-
}
|
|
321
|
-
class NotUpdatableException extends CloudControlServiceException {
|
|
319
|
+
};
|
|
320
|
+
let NotUpdatableException$1 = class NotUpdatableException extends CloudControlServiceException$1 {
|
|
322
321
|
name = "NotUpdatableException";
|
|
323
322
|
$fault = "client";
|
|
324
323
|
Message;
|
|
@@ -331,8 +330,8 @@ class NotUpdatableException extends CloudControlServiceException {
|
|
|
331
330
|
Object.setPrototypeOf(this, NotUpdatableException.prototype);
|
|
332
331
|
this.Message = opts.Message;
|
|
333
332
|
}
|
|
334
|
-
}
|
|
335
|
-
class PrivateTypeException extends CloudControlServiceException {
|
|
333
|
+
};
|
|
334
|
+
let PrivateTypeException$1 = class PrivateTypeException extends CloudControlServiceException$1 {
|
|
336
335
|
name = "PrivateTypeException";
|
|
337
336
|
$fault = "client";
|
|
338
337
|
Message;
|
|
@@ -345,8 +344,8 @@ class PrivateTypeException extends CloudControlServiceException {
|
|
|
345
344
|
Object.setPrototypeOf(this, PrivateTypeException.prototype);
|
|
346
345
|
this.Message = opts.Message;
|
|
347
346
|
}
|
|
348
|
-
}
|
|
349
|
-
class ResourceConflictException extends CloudControlServiceException {
|
|
347
|
+
};
|
|
348
|
+
let ResourceConflictException$1 = class ResourceConflictException extends CloudControlServiceException$1 {
|
|
350
349
|
name = "ResourceConflictException";
|
|
351
350
|
$fault = "client";
|
|
352
351
|
Message;
|
|
@@ -359,8 +358,8 @@ class ResourceConflictException extends CloudControlServiceException {
|
|
|
359
358
|
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
360
359
|
this.Message = opts.Message;
|
|
361
360
|
}
|
|
362
|
-
}
|
|
363
|
-
class ResourceNotFoundException extends CloudControlServiceException {
|
|
361
|
+
};
|
|
362
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends CloudControlServiceException$1 {
|
|
364
363
|
name = "ResourceNotFoundException";
|
|
365
364
|
$fault = "client";
|
|
366
365
|
Message;
|
|
@@ -373,8 +372,8 @@ class ResourceNotFoundException extends CloudControlServiceException {
|
|
|
373
372
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
374
373
|
this.Message = opts.Message;
|
|
375
374
|
}
|
|
376
|
-
}
|
|
377
|
-
class ServiceInternalErrorException extends CloudControlServiceException {
|
|
375
|
+
};
|
|
376
|
+
let ServiceInternalErrorException$1 = class ServiceInternalErrorException extends CloudControlServiceException$1 {
|
|
378
377
|
name = "ServiceInternalErrorException";
|
|
379
378
|
$fault = "server";
|
|
380
379
|
Message;
|
|
@@ -387,8 +386,8 @@ class ServiceInternalErrorException extends CloudControlServiceException {
|
|
|
387
386
|
Object.setPrototypeOf(this, ServiceInternalErrorException.prototype);
|
|
388
387
|
this.Message = opts.Message;
|
|
389
388
|
}
|
|
390
|
-
}
|
|
391
|
-
class ServiceLimitExceededException extends CloudControlServiceException {
|
|
389
|
+
};
|
|
390
|
+
let ServiceLimitExceededException$1 = class ServiceLimitExceededException extends CloudControlServiceException$1 {
|
|
392
391
|
name = "ServiceLimitExceededException";
|
|
393
392
|
$fault = "client";
|
|
394
393
|
Message;
|
|
@@ -401,8 +400,8 @@ class ServiceLimitExceededException extends CloudControlServiceException {
|
|
|
401
400
|
Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
|
|
402
401
|
this.Message = opts.Message;
|
|
403
402
|
}
|
|
404
|
-
}
|
|
405
|
-
class ThrottlingException extends CloudControlServiceException {
|
|
403
|
+
};
|
|
404
|
+
let ThrottlingException$1 = class ThrottlingException extends CloudControlServiceException$1 {
|
|
406
405
|
name = "ThrottlingException";
|
|
407
406
|
$fault = "client";
|
|
408
407
|
Message;
|
|
@@ -415,8 +414,8 @@ class ThrottlingException extends CloudControlServiceException {
|
|
|
415
414
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
416
415
|
this.Message = opts.Message;
|
|
417
416
|
}
|
|
418
|
-
}
|
|
419
|
-
class TypeNotFoundException extends CloudControlServiceException {
|
|
417
|
+
};
|
|
418
|
+
let TypeNotFoundException$1 = class TypeNotFoundException extends CloudControlServiceException$1 {
|
|
420
419
|
name = "TypeNotFoundException";
|
|
421
420
|
$fault = "client";
|
|
422
421
|
Message;
|
|
@@ -429,8 +428,8 @@ class TypeNotFoundException extends CloudControlServiceException {
|
|
|
429
428
|
Object.setPrototypeOf(this, TypeNotFoundException.prototype);
|
|
430
429
|
this.Message = opts.Message;
|
|
431
430
|
}
|
|
432
|
-
}
|
|
433
|
-
class UnsupportedActionException extends CloudControlServiceException {
|
|
431
|
+
};
|
|
432
|
+
let UnsupportedActionException$1 = class UnsupportedActionException extends CloudControlServiceException$1 {
|
|
434
433
|
name = "UnsupportedActionException";
|
|
435
434
|
$fault = "client";
|
|
436
435
|
Message;
|
|
@@ -443,632 +442,527 @@ class UnsupportedActionException extends CloudControlServiceException {
|
|
|
443
442
|
Object.setPrototypeOf(this, UnsupportedActionException.prototype);
|
|
444
443
|
this.Message = opts.Message;
|
|
445
444
|
}
|
|
446
|
-
}
|
|
447
|
-
const ProgressEventFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
...(obj.ResourceModel && { ResourceModel: smithyClient.SENSITIVE_STRING }),
|
|
450
|
-
});
|
|
451
|
-
const CancelResourceRequestOutputFilterSensitiveLog = (obj) => ({
|
|
452
|
-
...obj,
|
|
453
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
454
|
-
});
|
|
455
|
-
const CreateResourceInputFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
...(obj.DesiredState && { DesiredState: smithyClient.SENSITIVE_STRING }),
|
|
458
|
-
});
|
|
459
|
-
const CreateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
460
|
-
...obj,
|
|
461
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
462
|
-
});
|
|
463
|
-
const DeleteResourceOutputFilterSensitiveLog = (obj) => ({
|
|
464
|
-
...obj,
|
|
465
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
466
|
-
});
|
|
467
|
-
const ResourceDescriptionFilterSensitiveLog = (obj) => ({
|
|
468
|
-
...obj,
|
|
469
|
-
...(obj.Properties && { Properties: smithyClient.SENSITIVE_STRING }),
|
|
470
|
-
});
|
|
471
|
-
const GetResourceOutputFilterSensitiveLog = (obj) => ({
|
|
472
|
-
...obj,
|
|
473
|
-
...(obj.ResourceDescription && {
|
|
474
|
-
ResourceDescription: ResourceDescriptionFilterSensitiveLog(obj.ResourceDescription),
|
|
475
|
-
}),
|
|
476
|
-
});
|
|
477
|
-
const GetResourceRequestStatusOutputFilterSensitiveLog = (obj) => ({
|
|
478
|
-
...obj,
|
|
479
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
480
|
-
});
|
|
481
|
-
const ListResourceRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
482
|
-
...obj,
|
|
483
|
-
...(obj.ResourceRequestStatusSummaries && {
|
|
484
|
-
ResourceRequestStatusSummaries: obj.ResourceRequestStatusSummaries.map((item) => ProgressEventFilterSensitiveLog(item)),
|
|
485
|
-
}),
|
|
486
|
-
});
|
|
487
|
-
const ListResourcesInputFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
...(obj.ResourceModel && { ResourceModel: smithyClient.SENSITIVE_STRING }),
|
|
490
|
-
});
|
|
491
|
-
const ListResourcesOutputFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
...(obj.ResourceDescriptions && {
|
|
494
|
-
ResourceDescriptions: obj.ResourceDescriptions.map((item) => ResourceDescriptionFilterSensitiveLog(item)),
|
|
495
|
-
}),
|
|
496
|
-
});
|
|
497
|
-
const UpdateResourceInputFilterSensitiveLog = (obj) => ({
|
|
498
|
-
...obj,
|
|
499
|
-
...(obj.PatchDocument && { PatchDocument: smithyClient.SENSITIVE_STRING }),
|
|
500
|
-
});
|
|
501
|
-
const UpdateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
502
|
-
...obj,
|
|
503
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
504
|
-
});
|
|
505
|
-
|
|
506
|
-
const se_CancelResourceRequestCommand = async (input, context) => {
|
|
507
|
-
const headers = sharedHeaders("CancelResourceRequest");
|
|
508
|
-
let body;
|
|
509
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
510
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
511
|
-
};
|
|
512
|
-
const se_CreateResourceCommand = async (input, context) => {
|
|
513
|
-
const headers = sharedHeaders("CreateResource");
|
|
514
|
-
let body;
|
|
515
|
-
body = JSON.stringify(se_CreateResourceInput(input));
|
|
516
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
517
|
-
};
|
|
518
|
-
const se_DeleteResourceCommand = async (input, context) => {
|
|
519
|
-
const headers = sharedHeaders("DeleteResource");
|
|
520
|
-
let body;
|
|
521
|
-
body = JSON.stringify(se_DeleteResourceInput(input));
|
|
522
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
523
|
-
};
|
|
524
|
-
const se_GetResourceCommand = async (input, context) => {
|
|
525
|
-
const headers = sharedHeaders("GetResource");
|
|
526
|
-
let body;
|
|
527
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
528
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
529
|
-
};
|
|
530
|
-
const se_GetResourceRequestStatusCommand = async (input, context) => {
|
|
531
|
-
const headers = sharedHeaders("GetResourceRequestStatus");
|
|
532
|
-
let body;
|
|
533
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
534
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
535
|
-
};
|
|
536
|
-
const se_ListResourceRequestsCommand = async (input, context) => {
|
|
537
|
-
const headers = sharedHeaders("ListResourceRequests");
|
|
538
|
-
let body;
|
|
539
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
540
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
541
|
-
};
|
|
542
|
-
const se_ListResourcesCommand = async (input, context) => {
|
|
543
|
-
const headers = sharedHeaders("ListResources");
|
|
544
|
-
let body;
|
|
545
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
546
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
547
445
|
};
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
const
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
const
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
const
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
const
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
const
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
const
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
const
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
446
|
+
|
|
447
|
+
const _AEE = "AlreadyExistsException";
|
|
448
|
+
const _CME = "ConcurrentModificationException";
|
|
449
|
+
const _COE = "ConcurrentOperationException";
|
|
450
|
+
const _CR = "CreateResource";
|
|
451
|
+
const _CRI = "CreateResourceInput";
|
|
452
|
+
const _CRO = "CreateResourceOutput";
|
|
453
|
+
const _CRR = "CancelResourceRequest";
|
|
454
|
+
const _CRRI = "CancelResourceRequestInput";
|
|
455
|
+
const _CRRO = "CancelResourceRequestOutput";
|
|
456
|
+
const _CT = "ClientToken";
|
|
457
|
+
const _CTCE = "ClientTokenConflictException";
|
|
458
|
+
const _DR = "DeleteResource";
|
|
459
|
+
const _DRI = "DeleteResourceInput";
|
|
460
|
+
const _DRO = "DeleteResourceOutput";
|
|
461
|
+
const _DS = "DesiredState";
|
|
462
|
+
const _EC = "ErrorCode";
|
|
463
|
+
const _ET = "EventTime";
|
|
464
|
+
const _FM = "FailureMode";
|
|
465
|
+
const _GR = "GetResource";
|
|
466
|
+
const _GRI = "GetResourceInput";
|
|
467
|
+
const _GRO = "GetResourceOutput";
|
|
468
|
+
const _GRRS = "GetResourceRequestStatus";
|
|
469
|
+
const _GRRSI = "GetResourceRequestStatusInput";
|
|
470
|
+
const _GRRSO = "GetResourceRequestStatusOutput";
|
|
471
|
+
const _GSE = "GeneralServiceException";
|
|
472
|
+
const _HET = "HookEventTime";
|
|
473
|
+
const _HFE = "HandlerFailureException";
|
|
474
|
+
const _HIFE = "HandlerInternalFailureException";
|
|
475
|
+
const _HPE = "HooksProgressEvent";
|
|
476
|
+
const _HPEo = "HookProgressEvent";
|
|
477
|
+
const _HRT = "HooksRequestToken";
|
|
478
|
+
const _HS = "HookStatus";
|
|
479
|
+
const _HSM = "HookStatusMessage";
|
|
480
|
+
const _HTA = "HookTypeArn";
|
|
481
|
+
const _HTN = "HookTypeName";
|
|
482
|
+
const _HTVI = "HookTypeVersionId";
|
|
483
|
+
const _I = "Identifier";
|
|
484
|
+
const _ICE = "InvalidCredentialsException";
|
|
485
|
+
const _IP = "InvocationPoint";
|
|
486
|
+
const _IRE = "InvalidRequestException";
|
|
487
|
+
const _LR = "ListResources";
|
|
488
|
+
const _LRI = "ListResourcesInput";
|
|
489
|
+
const _LRO = "ListResourcesOutput";
|
|
490
|
+
const _LRR = "ListResourceRequests";
|
|
491
|
+
const _LRRI = "ListResourceRequestsInput";
|
|
492
|
+
const _LRRO = "ListResourceRequestsOutput";
|
|
493
|
+
const _M = "Message";
|
|
494
|
+
const _MR = "MaxResults";
|
|
495
|
+
const _NFE = "NetworkFailureException";
|
|
496
|
+
const _NSE = "NotStabilizedException";
|
|
497
|
+
const _NT = "NextToken";
|
|
498
|
+
const _NUE = "NotUpdatableException";
|
|
499
|
+
const _O = "Operation";
|
|
500
|
+
const _OS = "OperationStatus";
|
|
501
|
+
const _OSp = "OperationStatuses";
|
|
502
|
+
const _Op = "Operations";
|
|
503
|
+
const _P = "Properties";
|
|
504
|
+
const _PD = "PatchDocument";
|
|
505
|
+
const _PE = "ProgressEvent";
|
|
506
|
+
const _PTE = "PrivateTypeException";
|
|
507
|
+
const _RA = "RoleArn";
|
|
508
|
+
const _RAe = "RetryAfter";
|
|
509
|
+
const _RCE = "ResourceConflictException";
|
|
510
|
+
const _RD = "ResourceDescription";
|
|
511
|
+
const _RDe = "ResourceDescriptions";
|
|
512
|
+
const _RM = "ResourceModel";
|
|
513
|
+
const _RNFE = "ResourceNotFoundException";
|
|
514
|
+
const _RRSF = "ResourceRequestStatusFilter";
|
|
515
|
+
const _RRSS = "ResourceRequestStatusSummaries";
|
|
516
|
+
const _RT = "RequestToken";
|
|
517
|
+
const _RTNFE = "RequestTokenNotFoundException";
|
|
518
|
+
const _SIEE = "ServiceInternalErrorException";
|
|
519
|
+
const _SLEE = "ServiceLimitExceededException";
|
|
520
|
+
const _SM = "StatusMessage";
|
|
521
|
+
const _TE = "ThrottlingException";
|
|
522
|
+
const _TN = "TypeName";
|
|
523
|
+
const _TNFE = "TypeNotFoundException";
|
|
524
|
+
const _TVI = "TypeVersionId";
|
|
525
|
+
const _UAE = "UnsupportedActionException";
|
|
526
|
+
const _UR = "UpdateResource";
|
|
527
|
+
const _URI = "UpdateResourceInput";
|
|
528
|
+
const _URO = "UpdateResourceOutput";
|
|
529
|
+
const _aQE = "awsQueryError";
|
|
530
|
+
const _c = "client";
|
|
531
|
+
const _e = "error";
|
|
532
|
+
const _hE = "httpError";
|
|
533
|
+
const _s = "server";
|
|
534
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudcontrol";
|
|
535
|
+
const n0 = "com.amazonaws.cloudcontrol";
|
|
536
|
+
var PatchDocument = [0, n0, _PD, 8, 0];
|
|
537
|
+
var Properties = [0, n0, _P, 8, 0];
|
|
538
|
+
var AlreadyExistsException = [
|
|
539
|
+
-3,
|
|
540
|
+
n0,
|
|
541
|
+
_AEE,
|
|
542
|
+
{
|
|
543
|
+
[_e]: _c,
|
|
544
|
+
[_hE]: 400,
|
|
545
|
+
[_aQE]: [`AlreadyExistsException`, 400],
|
|
546
|
+
},
|
|
547
|
+
[_M],
|
|
548
|
+
[0],
|
|
549
|
+
];
|
|
550
|
+
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException, AlreadyExistsException$1);
|
|
551
|
+
var CancelResourceRequestInput = [3, n0, _CRRI, 0, [_RT], [0]];
|
|
552
|
+
var CancelResourceRequestOutput = [3, n0, _CRRO, 0, [_PE], [[() => ProgressEvent, 0]]];
|
|
553
|
+
var ClientTokenConflictException = [
|
|
554
|
+
-3,
|
|
555
|
+
n0,
|
|
556
|
+
_CTCE,
|
|
557
|
+
{
|
|
558
|
+
[_e]: _c,
|
|
559
|
+
[_hE]: 409,
|
|
560
|
+
[_aQE]: [`ClientTokenConflictException`, 409],
|
|
561
|
+
},
|
|
562
|
+
[_M],
|
|
563
|
+
[0],
|
|
564
|
+
];
|
|
565
|
+
schema.TypeRegistry.for(n0).registerError(ClientTokenConflictException, ClientTokenConflictException$1);
|
|
566
|
+
var ConcurrentModificationException = [
|
|
567
|
+
-3,
|
|
568
|
+
n0,
|
|
569
|
+
_CME,
|
|
570
|
+
{
|
|
571
|
+
[_e]: _s,
|
|
572
|
+
[_hE]: 500,
|
|
573
|
+
[_aQE]: [`ConcurrentModificationException`, 500],
|
|
574
|
+
},
|
|
575
|
+
[_M],
|
|
576
|
+
[0],
|
|
577
|
+
];
|
|
578
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
|
|
579
|
+
var ConcurrentOperationException = [
|
|
580
|
+
-3,
|
|
581
|
+
n0,
|
|
582
|
+
_COE,
|
|
583
|
+
{
|
|
584
|
+
[_e]: _c,
|
|
585
|
+
[_hE]: 409,
|
|
586
|
+
[_aQE]: [`ConcurrentOperationException`, 409],
|
|
587
|
+
},
|
|
588
|
+
[_M],
|
|
589
|
+
[0],
|
|
590
|
+
];
|
|
591
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentOperationException, ConcurrentOperationException$1);
|
|
592
|
+
var CreateResourceInput = [
|
|
593
|
+
3,
|
|
594
|
+
n0,
|
|
595
|
+
_CRI,
|
|
596
|
+
0,
|
|
597
|
+
[_TN, _TVI, _RA, _CT, _DS],
|
|
598
|
+
[0, 0, 0, [0, 4], [() => Properties, 0]],
|
|
599
|
+
];
|
|
600
|
+
var CreateResourceOutput = [3, n0, _CRO, 0, [_PE], [[() => ProgressEvent, 0]]];
|
|
601
|
+
var DeleteResourceInput = [
|
|
602
|
+
3,
|
|
603
|
+
n0,
|
|
604
|
+
_DRI,
|
|
605
|
+
0,
|
|
606
|
+
[_TN, _TVI, _RA, _CT, _I],
|
|
607
|
+
[0, 0, 0, [0, 4], 0],
|
|
608
|
+
];
|
|
609
|
+
var DeleteResourceOutput = [3, n0, _DRO, 0, [_PE], [[() => ProgressEvent, 0]]];
|
|
610
|
+
var GeneralServiceException = [
|
|
611
|
+
-3,
|
|
612
|
+
n0,
|
|
613
|
+
_GSE,
|
|
614
|
+
{
|
|
615
|
+
[_e]: _c,
|
|
616
|
+
[_hE]: 400,
|
|
617
|
+
[_aQE]: [`GeneralServiceException`, 400],
|
|
618
|
+
},
|
|
619
|
+
[_M],
|
|
620
|
+
[0],
|
|
621
|
+
];
|
|
622
|
+
schema.TypeRegistry.for(n0).registerError(GeneralServiceException, GeneralServiceException$1);
|
|
623
|
+
var GetResourceInput = [3, n0, _GRI, 0, [_TN, _TVI, _RA, _I], [0, 0, 0, 0]];
|
|
624
|
+
var GetResourceOutput = [3, n0, _GRO, 0, [_TN, _RD], [0, [() => ResourceDescription, 0]]];
|
|
625
|
+
var GetResourceRequestStatusInput = [3, n0, _GRRSI, 0, [_RT], [0]];
|
|
626
|
+
var GetResourceRequestStatusOutput = [
|
|
627
|
+
3,
|
|
628
|
+
n0,
|
|
629
|
+
_GRRSO,
|
|
630
|
+
0,
|
|
631
|
+
[_PE, _HPE],
|
|
632
|
+
[[() => ProgressEvent, 0], () => HooksProgressEvent],
|
|
633
|
+
];
|
|
634
|
+
var HandlerFailureException = [
|
|
635
|
+
-3,
|
|
636
|
+
n0,
|
|
637
|
+
_HFE,
|
|
638
|
+
{
|
|
639
|
+
[_e]: _s,
|
|
640
|
+
[_hE]: 502,
|
|
641
|
+
[_aQE]: [`HandlerFailureException`, 502],
|
|
642
|
+
},
|
|
643
|
+
[_M],
|
|
644
|
+
[0],
|
|
645
|
+
];
|
|
646
|
+
schema.TypeRegistry.for(n0).registerError(HandlerFailureException, HandlerFailureException$1);
|
|
647
|
+
var HandlerInternalFailureException = [
|
|
648
|
+
-3,
|
|
649
|
+
n0,
|
|
650
|
+
_HIFE,
|
|
651
|
+
{
|
|
652
|
+
[_e]: _s,
|
|
653
|
+
[_hE]: 502,
|
|
654
|
+
[_aQE]: [`HandlerInternalFailureException`, 502],
|
|
655
|
+
},
|
|
656
|
+
[_M],
|
|
657
|
+
[0],
|
|
658
|
+
];
|
|
659
|
+
schema.TypeRegistry.for(n0).registerError(HandlerInternalFailureException, HandlerInternalFailureException$1);
|
|
660
|
+
var HookProgressEvent = [
|
|
661
|
+
3,
|
|
662
|
+
n0,
|
|
663
|
+
_HPEo,
|
|
664
|
+
0,
|
|
665
|
+
[_HTN, _HTVI, _HTA, _IP, _HS, _HET, _HSM, _FM],
|
|
666
|
+
[0, 0, 0, 0, 0, 4, 0, 0],
|
|
667
|
+
];
|
|
668
|
+
var InvalidCredentialsException = [
|
|
669
|
+
-3,
|
|
670
|
+
n0,
|
|
671
|
+
_ICE,
|
|
672
|
+
{
|
|
673
|
+
[_e]: _c,
|
|
674
|
+
[_hE]: 401,
|
|
675
|
+
[_aQE]: [`InvalidCredentialsException`, 401],
|
|
676
|
+
},
|
|
677
|
+
[_M],
|
|
678
|
+
[0],
|
|
679
|
+
];
|
|
680
|
+
schema.TypeRegistry.for(n0).registerError(InvalidCredentialsException, InvalidCredentialsException$1);
|
|
681
|
+
var InvalidRequestException = [
|
|
682
|
+
-3,
|
|
683
|
+
n0,
|
|
684
|
+
_IRE,
|
|
685
|
+
{
|
|
686
|
+
[_e]: _c,
|
|
687
|
+
[_hE]: 400,
|
|
688
|
+
[_aQE]: [`InvalidRequestException`, 400],
|
|
689
|
+
},
|
|
690
|
+
[_M],
|
|
691
|
+
[0],
|
|
692
|
+
];
|
|
693
|
+
schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
|
|
694
|
+
var ListResourceRequestsInput = [
|
|
695
|
+
3,
|
|
696
|
+
n0,
|
|
697
|
+
_LRRI,
|
|
698
|
+
0,
|
|
699
|
+
[_MR, _NT, _RRSF],
|
|
700
|
+
[1, 0, () => ResourceRequestStatusFilter],
|
|
701
|
+
];
|
|
702
|
+
var ListResourceRequestsOutput = [
|
|
703
|
+
3,
|
|
704
|
+
n0,
|
|
705
|
+
_LRRO,
|
|
706
|
+
0,
|
|
707
|
+
[_RRSS, _NT],
|
|
708
|
+
[[() => ResourceRequestStatusSummaries, 0], 0],
|
|
709
|
+
];
|
|
710
|
+
var ListResourcesInput = [
|
|
711
|
+
3,
|
|
712
|
+
n0,
|
|
713
|
+
_LRI,
|
|
714
|
+
0,
|
|
715
|
+
[_TN, _TVI, _RA, _NT, _MR, _RM],
|
|
716
|
+
[0, 0, 0, 0, 1, [() => Properties, 0]],
|
|
717
|
+
];
|
|
718
|
+
var ListResourcesOutput = [
|
|
719
|
+
3,
|
|
720
|
+
n0,
|
|
721
|
+
_LRO,
|
|
722
|
+
0,
|
|
723
|
+
[_TN, _RDe, _NT],
|
|
724
|
+
[0, [() => ResourceDescriptions, 0], 0],
|
|
725
|
+
];
|
|
726
|
+
var NetworkFailureException = [
|
|
727
|
+
-3,
|
|
728
|
+
n0,
|
|
729
|
+
_NFE,
|
|
730
|
+
{
|
|
731
|
+
[_e]: _s,
|
|
732
|
+
[_hE]: 502,
|
|
733
|
+
[_aQE]: [`NetworkFailureException`, 502],
|
|
734
|
+
},
|
|
735
|
+
[_M],
|
|
736
|
+
[0],
|
|
737
|
+
];
|
|
738
|
+
schema.TypeRegistry.for(n0).registerError(NetworkFailureException, NetworkFailureException$1);
|
|
739
|
+
var NotStabilizedException = [
|
|
740
|
+
-3,
|
|
741
|
+
n0,
|
|
742
|
+
_NSE,
|
|
743
|
+
{
|
|
744
|
+
[_e]: _c,
|
|
745
|
+
[_hE]: 400,
|
|
746
|
+
[_aQE]: [`NotStabilizedException`, 400],
|
|
747
|
+
},
|
|
748
|
+
[_M],
|
|
749
|
+
[0],
|
|
750
|
+
];
|
|
751
|
+
schema.TypeRegistry.for(n0).registerError(NotStabilizedException, NotStabilizedException$1);
|
|
752
|
+
var NotUpdatableException = [
|
|
753
|
+
-3,
|
|
754
|
+
n0,
|
|
755
|
+
_NUE,
|
|
756
|
+
{
|
|
757
|
+
[_e]: _c,
|
|
758
|
+
[_hE]: 400,
|
|
759
|
+
[_aQE]: [`NotUpdatableException`, 400],
|
|
760
|
+
},
|
|
761
|
+
[_M],
|
|
762
|
+
[0],
|
|
763
|
+
];
|
|
764
|
+
schema.TypeRegistry.for(n0).registerError(NotUpdatableException, NotUpdatableException$1);
|
|
765
|
+
var PrivateTypeException = [
|
|
766
|
+
-3,
|
|
767
|
+
n0,
|
|
768
|
+
_PTE,
|
|
769
|
+
{
|
|
770
|
+
[_e]: _c,
|
|
771
|
+
[_hE]: 400,
|
|
772
|
+
[_aQE]: [`PrivateTypeException`, 400],
|
|
773
|
+
},
|
|
774
|
+
[_M],
|
|
775
|
+
[0],
|
|
776
|
+
];
|
|
777
|
+
schema.TypeRegistry.for(n0).registerError(PrivateTypeException, PrivateTypeException$1);
|
|
778
|
+
var ProgressEvent = [
|
|
779
|
+
3,
|
|
780
|
+
n0,
|
|
781
|
+
_PE,
|
|
782
|
+
0,
|
|
783
|
+
[_TN, _I, _RT, _HRT, _O, _OS, _ET, _RM, _SM, _EC, _RAe],
|
|
784
|
+
[0, 0, 0, 0, 0, 0, 4, [() => Properties, 0], 0, 0, 4],
|
|
785
|
+
];
|
|
786
|
+
var RequestTokenNotFoundException = [
|
|
787
|
+
-3,
|
|
788
|
+
n0,
|
|
789
|
+
_RTNFE,
|
|
790
|
+
{
|
|
791
|
+
[_e]: _c,
|
|
792
|
+
[_hE]: 404,
|
|
793
|
+
[_aQE]: [`RequestTokenNotFoundException`, 404],
|
|
794
|
+
},
|
|
795
|
+
[_M],
|
|
796
|
+
[0],
|
|
797
|
+
];
|
|
798
|
+
schema.TypeRegistry.for(n0).registerError(RequestTokenNotFoundException, RequestTokenNotFoundException$1);
|
|
799
|
+
var ResourceConflictException = [
|
|
800
|
+
-3,
|
|
801
|
+
n0,
|
|
802
|
+
_RCE,
|
|
803
|
+
{
|
|
804
|
+
[_e]: _c,
|
|
805
|
+
[_hE]: 409,
|
|
806
|
+
[_aQE]: [`ResourceConflictException`, 409],
|
|
807
|
+
},
|
|
808
|
+
[_M],
|
|
809
|
+
[0],
|
|
810
|
+
];
|
|
811
|
+
schema.TypeRegistry.for(n0).registerError(ResourceConflictException, ResourceConflictException$1);
|
|
812
|
+
var ResourceDescription = [3, n0, _RD, 0, [_I, _P], [0, [() => Properties, 0]]];
|
|
813
|
+
var ResourceNotFoundException = [
|
|
814
|
+
-3,
|
|
815
|
+
n0,
|
|
816
|
+
_RNFE,
|
|
817
|
+
{
|
|
818
|
+
[_e]: _c,
|
|
819
|
+
[_hE]: 404,
|
|
820
|
+
[_aQE]: [`ResourceNotFoundException`, 404],
|
|
821
|
+
},
|
|
822
|
+
[_M],
|
|
823
|
+
[0],
|
|
824
|
+
];
|
|
825
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
826
|
+
var ResourceRequestStatusFilter = [3, n0, _RRSF, 0, [_Op, _OSp], [64 | 0, 64 | 0]];
|
|
827
|
+
var ServiceInternalErrorException = [
|
|
828
|
+
-3,
|
|
829
|
+
n0,
|
|
830
|
+
_SIEE,
|
|
831
|
+
{
|
|
832
|
+
[_e]: _s,
|
|
833
|
+
[_hE]: 502,
|
|
834
|
+
[_aQE]: [`ServiceInternalErrorException`, 502],
|
|
835
|
+
},
|
|
836
|
+
[_M],
|
|
837
|
+
[0],
|
|
838
|
+
];
|
|
839
|
+
schema.TypeRegistry.for(n0).registerError(ServiceInternalErrorException, ServiceInternalErrorException$1);
|
|
840
|
+
var ServiceLimitExceededException = [
|
|
841
|
+
-3,
|
|
842
|
+
n0,
|
|
843
|
+
_SLEE,
|
|
844
|
+
{
|
|
845
|
+
[_e]: _c,
|
|
846
|
+
[_hE]: 400,
|
|
847
|
+
[_aQE]: [`ServiceLimitExceededException`, 400],
|
|
848
|
+
},
|
|
849
|
+
[_M],
|
|
850
|
+
[0],
|
|
851
|
+
];
|
|
852
|
+
schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException, ServiceLimitExceededException$1);
|
|
853
|
+
var ThrottlingException = [
|
|
854
|
+
-3,
|
|
855
|
+
n0,
|
|
856
|
+
_TE,
|
|
857
|
+
{
|
|
858
|
+
[_e]: _c,
|
|
859
|
+
[_hE]: 429,
|
|
860
|
+
[_aQE]: [`ThrottlingException`, 429],
|
|
861
|
+
},
|
|
862
|
+
[_M],
|
|
863
|
+
[0],
|
|
864
|
+
];
|
|
865
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
866
|
+
var TypeNotFoundException = [
|
|
867
|
+
-3,
|
|
868
|
+
n0,
|
|
869
|
+
_TNFE,
|
|
870
|
+
{
|
|
871
|
+
[_e]: _c,
|
|
872
|
+
[_hE]: 404,
|
|
873
|
+
[_aQE]: [`TypeNotFoundException`, 404],
|
|
874
|
+
},
|
|
875
|
+
[_M],
|
|
876
|
+
[0],
|
|
877
|
+
];
|
|
878
|
+
schema.TypeRegistry.for(n0).registerError(TypeNotFoundException, TypeNotFoundException$1);
|
|
879
|
+
var UnsupportedActionException = [
|
|
880
|
+
-3,
|
|
881
|
+
n0,
|
|
882
|
+
_UAE,
|
|
883
|
+
{
|
|
884
|
+
[_e]: _c,
|
|
885
|
+
[_hE]: 405,
|
|
886
|
+
[_aQE]: [`UnsupportedActionException`, 405],
|
|
887
|
+
},
|
|
888
|
+
[_M],
|
|
889
|
+
[0],
|
|
890
|
+
];
|
|
891
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedActionException, UnsupportedActionException$1);
|
|
892
|
+
var UpdateResourceInput = [
|
|
893
|
+
3,
|
|
894
|
+
n0,
|
|
895
|
+
_URI,
|
|
896
|
+
0,
|
|
897
|
+
[_TN, _TVI, _RA, _CT, _I, _PD],
|
|
898
|
+
[0, 0, 0, [0, 4], 0, [() => PatchDocument, 0]],
|
|
899
|
+
];
|
|
900
|
+
var UpdateResourceOutput = [3, n0, _URO, 0, [_PE], [[() => ProgressEvent, 0]]];
|
|
901
|
+
var CloudControlServiceException = [-3, _sm, "CloudControlServiceException", 0, [], []];
|
|
902
|
+
schema.TypeRegistry.for(_sm).registerError(CloudControlServiceException, CloudControlServiceException$1);
|
|
903
|
+
var HooksProgressEvent = [1, n0, _HPE, 0, () => HookProgressEvent];
|
|
904
|
+
var ResourceDescriptions = [1, n0, _RDe, 0, [() => ResourceDescription, 0]];
|
|
905
|
+
var ResourceRequestStatusSummaries = [1, n0, _RRSS, 0, [() => ProgressEvent, 0]];
|
|
906
|
+
var CancelResourceRequest = [
|
|
907
|
+
9,
|
|
908
|
+
n0,
|
|
909
|
+
_CRR,
|
|
910
|
+
2,
|
|
911
|
+
() => CancelResourceRequestInput,
|
|
912
|
+
() => CancelResourceRequestOutput,
|
|
913
|
+
];
|
|
914
|
+
var CreateResource = [
|
|
915
|
+
9,
|
|
916
|
+
n0,
|
|
917
|
+
_CR,
|
|
918
|
+
0,
|
|
919
|
+
() => CreateResourceInput,
|
|
920
|
+
() => CreateResourceOutput,
|
|
921
|
+
];
|
|
922
|
+
var DeleteResource = [
|
|
923
|
+
9,
|
|
924
|
+
n0,
|
|
925
|
+
_DR,
|
|
926
|
+
0,
|
|
927
|
+
() => DeleteResourceInput,
|
|
928
|
+
() => DeleteResourceOutput,
|
|
929
|
+
];
|
|
930
|
+
var GetResource = [9, n0, _GR, 0, () => GetResourceInput, () => GetResourceOutput];
|
|
931
|
+
var GetResourceRequestStatus = [
|
|
932
|
+
9,
|
|
933
|
+
n0,
|
|
934
|
+
_GRRS,
|
|
935
|
+
0,
|
|
936
|
+
() => GetResourceRequestStatusInput,
|
|
937
|
+
() => GetResourceRequestStatusOutput,
|
|
938
|
+
];
|
|
939
|
+
var ListResourceRequests = [
|
|
940
|
+
9,
|
|
941
|
+
n0,
|
|
942
|
+
_LRR,
|
|
943
|
+
0,
|
|
944
|
+
() => ListResourceRequestsInput,
|
|
945
|
+
() => ListResourceRequestsOutput,
|
|
946
|
+
];
|
|
947
|
+
var ListResources = [9, n0, _LR, 0, () => ListResourcesInput, () => ListResourcesOutput];
|
|
948
|
+
var UpdateResource = [
|
|
949
|
+
9,
|
|
950
|
+
n0,
|
|
951
|
+
_UR,
|
|
952
|
+
0,
|
|
953
|
+
() => UpdateResourceInput,
|
|
954
|
+
() => UpdateResourceOutput,
|
|
955
|
+
];
|
|
1057
956
|
|
|
1058
957
|
class CancelResourceRequestCommand extends smithyClient.Command
|
|
1059
958
|
.classBuilder()
|
|
1060
959
|
.ep(commonParams)
|
|
1061
960
|
.m(function (Command, cs, config, o) {
|
|
1062
|
-
return [
|
|
1063
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1064
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1065
|
-
];
|
|
961
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1066
962
|
})
|
|
1067
963
|
.s("CloudApiService", "CancelResourceRequest", {})
|
|
1068
964
|
.n("CloudControlClient", "CancelResourceRequestCommand")
|
|
1069
|
-
.
|
|
1070
|
-
.ser(se_CancelResourceRequestCommand)
|
|
1071
|
-
.de(de_CancelResourceRequestCommand)
|
|
965
|
+
.sc(CancelResourceRequest)
|
|
1072
966
|
.build() {
|
|
1073
967
|
}
|
|
1074
968
|
|
|
@@ -1076,16 +970,11 @@ class CreateResourceCommand extends smithyClient.Command
|
|
|
1076
970
|
.classBuilder()
|
|
1077
971
|
.ep(commonParams)
|
|
1078
972
|
.m(function (Command, cs, config, o) {
|
|
1079
|
-
return [
|
|
1080
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1081
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1082
|
-
];
|
|
973
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1083
974
|
})
|
|
1084
975
|
.s("CloudApiService", "CreateResource", {})
|
|
1085
976
|
.n("CloudControlClient", "CreateResourceCommand")
|
|
1086
|
-
.
|
|
1087
|
-
.ser(se_CreateResourceCommand)
|
|
1088
|
-
.de(de_CreateResourceCommand)
|
|
977
|
+
.sc(CreateResource)
|
|
1089
978
|
.build() {
|
|
1090
979
|
}
|
|
1091
980
|
|
|
@@ -1093,16 +982,11 @@ class DeleteResourceCommand extends smithyClient.Command
|
|
|
1093
982
|
.classBuilder()
|
|
1094
983
|
.ep(commonParams)
|
|
1095
984
|
.m(function (Command, cs, config, o) {
|
|
1096
|
-
return [
|
|
1097
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1098
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1099
|
-
];
|
|
985
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1100
986
|
})
|
|
1101
987
|
.s("CloudApiService", "DeleteResource", {})
|
|
1102
988
|
.n("CloudControlClient", "DeleteResourceCommand")
|
|
1103
|
-
.
|
|
1104
|
-
.ser(se_DeleteResourceCommand)
|
|
1105
|
-
.de(de_DeleteResourceCommand)
|
|
989
|
+
.sc(DeleteResource)
|
|
1106
990
|
.build() {
|
|
1107
991
|
}
|
|
1108
992
|
|
|
@@ -1110,16 +994,11 @@ class GetResourceCommand extends smithyClient.Command
|
|
|
1110
994
|
.classBuilder()
|
|
1111
995
|
.ep(commonParams)
|
|
1112
996
|
.m(function (Command, cs, config, o) {
|
|
1113
|
-
return [
|
|
1114
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1115
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1116
|
-
];
|
|
997
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1117
998
|
})
|
|
1118
999
|
.s("CloudApiService", "GetResource", {})
|
|
1119
1000
|
.n("CloudControlClient", "GetResourceCommand")
|
|
1120
|
-
.
|
|
1121
|
-
.ser(se_GetResourceCommand)
|
|
1122
|
-
.de(de_GetResourceCommand)
|
|
1001
|
+
.sc(GetResource)
|
|
1123
1002
|
.build() {
|
|
1124
1003
|
}
|
|
1125
1004
|
|
|
@@ -1127,16 +1006,11 @@ class GetResourceRequestStatusCommand extends smithyClient.Command
|
|
|
1127
1006
|
.classBuilder()
|
|
1128
1007
|
.ep(commonParams)
|
|
1129
1008
|
.m(function (Command, cs, config, o) {
|
|
1130
|
-
return [
|
|
1131
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1132
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1133
|
-
];
|
|
1009
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1134
1010
|
})
|
|
1135
1011
|
.s("CloudApiService", "GetResourceRequestStatus", {})
|
|
1136
1012
|
.n("CloudControlClient", "GetResourceRequestStatusCommand")
|
|
1137
|
-
.
|
|
1138
|
-
.ser(se_GetResourceRequestStatusCommand)
|
|
1139
|
-
.de(de_GetResourceRequestStatusCommand)
|
|
1013
|
+
.sc(GetResourceRequestStatus)
|
|
1140
1014
|
.build() {
|
|
1141
1015
|
}
|
|
1142
1016
|
|
|
@@ -1144,16 +1018,11 @@ class ListResourceRequestsCommand extends smithyClient.Command
|
|
|
1144
1018
|
.classBuilder()
|
|
1145
1019
|
.ep(commonParams)
|
|
1146
1020
|
.m(function (Command, cs, config, o) {
|
|
1147
|
-
return [
|
|
1148
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1149
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1150
|
-
];
|
|
1021
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1151
1022
|
})
|
|
1152
1023
|
.s("CloudApiService", "ListResourceRequests", {})
|
|
1153
1024
|
.n("CloudControlClient", "ListResourceRequestsCommand")
|
|
1154
|
-
.
|
|
1155
|
-
.ser(se_ListResourceRequestsCommand)
|
|
1156
|
-
.de(de_ListResourceRequestsCommand)
|
|
1025
|
+
.sc(ListResourceRequests)
|
|
1157
1026
|
.build() {
|
|
1158
1027
|
}
|
|
1159
1028
|
|
|
@@ -1161,16 +1030,11 @@ class ListResourcesCommand extends smithyClient.Command
|
|
|
1161
1030
|
.classBuilder()
|
|
1162
1031
|
.ep(commonParams)
|
|
1163
1032
|
.m(function (Command, cs, config, o) {
|
|
1164
|
-
return [
|
|
1165
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1166
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1167
|
-
];
|
|
1033
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1168
1034
|
})
|
|
1169
1035
|
.s("CloudApiService", "ListResources", {})
|
|
1170
1036
|
.n("CloudControlClient", "ListResourcesCommand")
|
|
1171
|
-
.
|
|
1172
|
-
.ser(se_ListResourcesCommand)
|
|
1173
|
-
.de(de_ListResourcesCommand)
|
|
1037
|
+
.sc(ListResources)
|
|
1174
1038
|
.build() {
|
|
1175
1039
|
}
|
|
1176
1040
|
|
|
@@ -1178,16 +1042,11 @@ class UpdateResourceCommand extends smithyClient.Command
|
|
|
1178
1042
|
.classBuilder()
|
|
1179
1043
|
.ep(commonParams)
|
|
1180
1044
|
.m(function (Command, cs, config, o) {
|
|
1181
|
-
return [
|
|
1182
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1183
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1184
|
-
];
|
|
1045
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1185
1046
|
})
|
|
1186
1047
|
.s("CloudApiService", "UpdateResource", {})
|
|
1187
1048
|
.n("CloudControlClient", "UpdateResourceCommand")
|
|
1188
|
-
.
|
|
1189
|
-
.ser(se_UpdateResourceCommand)
|
|
1190
|
-
.de(de_UpdateResourceCommand)
|
|
1049
|
+
.sc(UpdateResource)
|
|
1191
1050
|
.build() {
|
|
1192
1051
|
}
|
|
1193
1052
|
|
|
@@ -1265,54 +1124,41 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1265
1124
|
enumerable: true,
|
|
1266
1125
|
get: function () { return smithyClient.Client; }
|
|
1267
1126
|
});
|
|
1268
|
-
exports.AlreadyExistsException = AlreadyExistsException;
|
|
1127
|
+
exports.AlreadyExistsException = AlreadyExistsException$1;
|
|
1269
1128
|
exports.CancelResourceRequestCommand = CancelResourceRequestCommand;
|
|
1270
|
-
exports.
|
|
1271
|
-
exports.ClientTokenConflictException = ClientTokenConflictException;
|
|
1129
|
+
exports.ClientTokenConflictException = ClientTokenConflictException$1;
|
|
1272
1130
|
exports.CloudControl = CloudControl;
|
|
1273
1131
|
exports.CloudControlClient = CloudControlClient;
|
|
1274
|
-
exports.CloudControlServiceException = CloudControlServiceException;
|
|
1275
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1276
|
-
exports.ConcurrentOperationException = ConcurrentOperationException;
|
|
1132
|
+
exports.CloudControlServiceException = CloudControlServiceException$1;
|
|
1133
|
+
exports.ConcurrentModificationException = ConcurrentModificationException$1;
|
|
1134
|
+
exports.ConcurrentOperationException = ConcurrentOperationException$1;
|
|
1277
1135
|
exports.CreateResourceCommand = CreateResourceCommand;
|
|
1278
|
-
exports.CreateResourceInputFilterSensitiveLog = CreateResourceInputFilterSensitiveLog;
|
|
1279
|
-
exports.CreateResourceOutputFilterSensitiveLog = CreateResourceOutputFilterSensitiveLog;
|
|
1280
1136
|
exports.DeleteResourceCommand = DeleteResourceCommand;
|
|
1281
|
-
exports.
|
|
1282
|
-
exports.GeneralServiceException = GeneralServiceException;
|
|
1137
|
+
exports.GeneralServiceException = GeneralServiceException$1;
|
|
1283
1138
|
exports.GetResourceCommand = GetResourceCommand;
|
|
1284
|
-
exports.GetResourceOutputFilterSensitiveLog = GetResourceOutputFilterSensitiveLog;
|
|
1285
1139
|
exports.GetResourceRequestStatusCommand = GetResourceRequestStatusCommand;
|
|
1286
|
-
exports.GetResourceRequestStatusOutputFilterSensitiveLog = GetResourceRequestStatusOutputFilterSensitiveLog;
|
|
1287
1140
|
exports.HandlerErrorCode = HandlerErrorCode;
|
|
1288
|
-
exports.HandlerFailureException = HandlerFailureException;
|
|
1289
|
-
exports.HandlerInternalFailureException = HandlerInternalFailureException;
|
|
1290
|
-
exports.InvalidCredentialsException = InvalidCredentialsException;
|
|
1291
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
1141
|
+
exports.HandlerFailureException = HandlerFailureException$1;
|
|
1142
|
+
exports.HandlerInternalFailureException = HandlerInternalFailureException$1;
|
|
1143
|
+
exports.InvalidCredentialsException = InvalidCredentialsException$1;
|
|
1144
|
+
exports.InvalidRequestException = InvalidRequestException$1;
|
|
1292
1145
|
exports.ListResourceRequestsCommand = ListResourceRequestsCommand;
|
|
1293
|
-
exports.ListResourceRequestsOutputFilterSensitiveLog = ListResourceRequestsOutputFilterSensitiveLog;
|
|
1294
1146
|
exports.ListResourcesCommand = ListResourcesCommand;
|
|
1295
|
-
exports.
|
|
1296
|
-
exports.
|
|
1297
|
-
exports.
|
|
1298
|
-
exports.NotStabilizedException = NotStabilizedException;
|
|
1299
|
-
exports.NotUpdatableException = NotUpdatableException;
|
|
1147
|
+
exports.NetworkFailureException = NetworkFailureException$1;
|
|
1148
|
+
exports.NotStabilizedException = NotStabilizedException$1;
|
|
1149
|
+
exports.NotUpdatableException = NotUpdatableException$1;
|
|
1300
1150
|
exports.Operation = Operation;
|
|
1301
1151
|
exports.OperationStatus = OperationStatus;
|
|
1302
|
-
exports.PrivateTypeException = PrivateTypeException;
|
|
1303
|
-
exports.
|
|
1304
|
-
exports.
|
|
1305
|
-
exports.
|
|
1306
|
-
exports.
|
|
1307
|
-
exports.
|
|
1308
|
-
exports.
|
|
1309
|
-
exports.
|
|
1310
|
-
exports.
|
|
1311
|
-
exports.TypeNotFoundException = TypeNotFoundException;
|
|
1312
|
-
exports.UnsupportedActionException = UnsupportedActionException;
|
|
1152
|
+
exports.PrivateTypeException = PrivateTypeException$1;
|
|
1153
|
+
exports.RequestTokenNotFoundException = RequestTokenNotFoundException$1;
|
|
1154
|
+
exports.ResourceConflictException = ResourceConflictException$1;
|
|
1155
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1156
|
+
exports.ServiceInternalErrorException = ServiceInternalErrorException$1;
|
|
1157
|
+
exports.ServiceLimitExceededException = ServiceLimitExceededException$1;
|
|
1158
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1159
|
+
exports.TypeNotFoundException = TypeNotFoundException$1;
|
|
1160
|
+
exports.UnsupportedActionException = UnsupportedActionException$1;
|
|
1313
1161
|
exports.UpdateResourceCommand = UpdateResourceCommand;
|
|
1314
|
-
exports.UpdateResourceInputFilterSensitiveLog = UpdateResourceInputFilterSensitiveLog;
|
|
1315
|
-
exports.UpdateResourceOutputFilterSensitiveLog = UpdateResourceOutputFilterSensitiveLog;
|
|
1316
1162
|
exports.paginateListResourceRequests = paginateListResourceRequests;
|
|
1317
1163
|
exports.paginateListResources = paginateListResources;
|
|
1318
1164
|
exports.waitForResourceRequestSuccess = waitForResourceRequestSuccess;
|