@aws-sdk/client-tnb 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 +1439 -1635
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/TnbClient.js +2 -0
- package/dist-es/commands/CancelSolNetworkOperationCommand.js +3 -9
- package/dist-es/commands/CreateSolFunctionPackageCommand.js +3 -10
- package/dist-es/commands/CreateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/CreateSolNetworkPackageCommand.js +3 -10
- package/dist-es/commands/DeleteSolFunctionPackageCommand.js +3 -9
- package/dist-es/commands/DeleteSolNetworkInstanceCommand.js +3 -9
- package/dist-es/commands/DeleteSolNetworkPackageCommand.js +3 -9
- package/dist-es/commands/GetSolFunctionInstanceCommand.js +3 -10
- package/dist-es/commands/GetSolFunctionPackageCommand.js +3 -10
- package/dist-es/commands/GetSolFunctionPackageContentCommand.js +3 -9
- package/dist-es/commands/GetSolFunctionPackageDescriptorCommand.js +3 -9
- package/dist-es/commands/GetSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/GetSolNetworkOperationCommand.js +3 -10
- package/dist-es/commands/GetSolNetworkPackageCommand.js +3 -10
- package/dist-es/commands/GetSolNetworkPackageContentCommand.js +3 -9
- package/dist-es/commands/GetSolNetworkPackageDescriptorCommand.js +3 -9
- package/dist-es/commands/InstantiateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/ListSolFunctionInstancesCommand.js +3 -9
- package/dist-es/commands/ListSolFunctionPackagesCommand.js +3 -9
- package/dist-es/commands/ListSolNetworkInstancesCommand.js +3 -9
- package/dist-es/commands/ListSolNetworkOperationsCommand.js +3 -9
- package/dist-es/commands/ListSolNetworkPackagesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/PutSolFunctionPackageContentCommand.js +3 -10
- package/dist-es/commands/PutSolNetworkPackageContentCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/TerminateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateSolFunctionPackageCommand.js +3 -9
- package/dist-es/commands/UpdateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/UpdateSolNetworkPackageCommand.js +3 -9
- package/dist-es/commands/ValidateSolFunctionPackageContentCommand.js +3 -10
- package/dist-es/commands/ValidateSolNetworkPackageContentCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -93
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1364 -0
- package/dist-types/TnbClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -92
- 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 +152 -0
- package/dist-types/ts3.4/TnbClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -69
- 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 +159 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -1280
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -299
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -401
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
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class TnbClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class TnbClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class TnbServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let TnbServiceException$1 = class TnbServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, TnbServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends TnbServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends TnbServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ class AccessDeniedException extends TnbServiceException {
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends TnbServiceException {
|
|
131
|
+
};
|
|
132
|
+
let InternalServerException$1 = class InternalServerException extends TnbServiceException$1 {
|
|
133
133
|
name = "InternalServerException";
|
|
134
134
|
$fault = "server";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ class InternalServerException extends TnbServiceException {
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends TnbServiceException {
|
|
143
|
+
};
|
|
144
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends TnbServiceException$1 {
|
|
145
145
|
name = "ResourceNotFoundException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ class ResourceNotFoundException extends TnbServiceException {
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
class ThrottlingException extends TnbServiceException {
|
|
155
|
+
};
|
|
156
|
+
let ThrottlingException$1 = class ThrottlingException extends TnbServiceException$1 {
|
|
157
157
|
name = "ThrottlingException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ class ThrottlingException extends TnbServiceException {
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends TnbServiceException {
|
|
167
|
+
};
|
|
168
|
+
let ValidationException$1 = class ValidationException extends TnbServiceException$1 {
|
|
169
169
|
name = "ValidationException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,7 +176,7 @@ class ValidationException extends TnbServiceException {
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
179
|
+
};
|
|
180
180
|
const OnboardingState = {
|
|
181
181
|
CREATED: "CREATED",
|
|
182
182
|
ERROR: "ERROR",
|
|
@@ -190,7 +190,7 @@ const UsageState = {
|
|
|
190
190
|
IN_USE: "IN_USE",
|
|
191
191
|
NOT_IN_USE: "NOT_IN_USE",
|
|
192
192
|
};
|
|
193
|
-
class ServiceQuotaExceededException extends TnbServiceException {
|
|
193
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends TnbServiceException$1 {
|
|
194
194
|
name = "ServiceQuotaExceededException";
|
|
195
195
|
$fault = "client";
|
|
196
196
|
constructor(opts) {
|
|
@@ -201,7 +201,7 @@ class ServiceQuotaExceededException extends TnbServiceException {
|
|
|
201
201
|
});
|
|
202
202
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
203
203
|
}
|
|
204
|
-
}
|
|
204
|
+
};
|
|
205
205
|
const NsdOnboardingState = {
|
|
206
206
|
CREATED: "CREATED",
|
|
207
207
|
ERROR: "ERROR",
|
|
@@ -267,1388 +267,1375 @@ const UpdateSolNetworkType = {
|
|
|
267
267
|
MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION",
|
|
268
268
|
UPDATE_NS: "UPDATE_NS",
|
|
269
269
|
};
|
|
270
|
-
const CreateSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
273
|
-
});
|
|
274
|
-
const CreateSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
275
|
-
...obj,
|
|
276
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
277
|
-
});
|
|
278
|
-
const CreateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
281
|
-
});
|
|
282
|
-
const CreateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
285
|
-
});
|
|
286
|
-
const CreateSolNetworkPackageInputFilterSensitiveLog = (obj) => ({
|
|
287
|
-
...obj,
|
|
288
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
289
|
-
});
|
|
290
|
-
const CreateSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
293
|
-
});
|
|
294
|
-
const GetSolFunctionInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
297
|
-
});
|
|
298
|
-
const GetSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
301
|
-
});
|
|
302
|
-
const GetSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
305
|
-
});
|
|
306
|
-
const GetSolNetworkOperationOutputFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
309
|
-
});
|
|
310
|
-
const GetSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
313
|
-
});
|
|
314
|
-
const InstantiateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
317
|
-
});
|
|
318
|
-
const InstantiateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
321
|
-
});
|
|
322
|
-
const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
325
|
-
});
|
|
326
|
-
const PutSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
...(obj.file && { file: smithyClient.SENSITIVE_STRING }),
|
|
329
|
-
});
|
|
330
|
-
const PutSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
...(obj.file && { file: smithyClient.SENSITIVE_STRING }),
|
|
333
|
-
});
|
|
334
|
-
const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
337
|
-
});
|
|
338
|
-
const TerminateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
341
|
-
});
|
|
342
|
-
const TerminateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
345
|
-
});
|
|
346
|
-
const UpdateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
347
|
-
...obj,
|
|
348
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
349
|
-
});
|
|
350
|
-
const UpdateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
353
|
-
});
|
|
354
|
-
const ValidateSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
...(obj.file && { file: smithyClient.SENSITIVE_STRING }),
|
|
357
|
-
});
|
|
358
|
-
const ValidateSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
359
|
-
...obj,
|
|
360
|
-
...(obj.file && { file: smithyClient.SENSITIVE_STRING }),
|
|
361
|
-
});
|
|
362
270
|
|
|
363
|
-
const
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
const
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
const
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
const
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
const
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
const
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
const
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
const
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
const
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
const
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
const
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
const
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
const
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
const
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
const
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
b.m("GET").h(headers).b(body);
|
|
517
|
-
return b.build();
|
|
518
|
-
};
|
|
519
|
-
const se_GetSolNetworkPackageDescriptorCommand = async (input, context) => {
|
|
520
|
-
const b = core.requestBuilder(input, context);
|
|
521
|
-
const headers = {};
|
|
522
|
-
b.bp("/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd");
|
|
523
|
-
b.p("nsdInfoId", () => input.nsdInfoId, "{nsdInfoId}", false);
|
|
524
|
-
let body;
|
|
525
|
-
b.m("GET").h(headers).b(body);
|
|
526
|
-
return b.build();
|
|
527
|
-
};
|
|
528
|
-
const se_InstantiateSolNetworkInstanceCommand = async (input, context) => {
|
|
529
|
-
const b = core.requestBuilder(input, context);
|
|
530
|
-
const headers = {
|
|
531
|
-
"content-type": "application/json",
|
|
532
|
-
};
|
|
533
|
-
b.bp("/sol/nslcm/v1/ns_instances/{nsInstanceId}/instantiate");
|
|
534
|
-
b.p("nsInstanceId", () => input.nsInstanceId, "{nsInstanceId}", false);
|
|
535
|
-
const query = smithyClient.map({
|
|
536
|
-
[_dr]: [() => input.dryRun !== void 0, () => input[_dR].toString()],
|
|
537
|
-
});
|
|
538
|
-
let body;
|
|
539
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
540
|
-
additionalParamsForNs: (_) => se_Document(_),
|
|
541
|
-
tags: (_) => smithyClient._json(_),
|
|
542
|
-
}));
|
|
543
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
544
|
-
return b.build();
|
|
545
|
-
};
|
|
546
|
-
const se_ListSolFunctionInstancesCommand = async (input, context) => {
|
|
547
|
-
const b = core.requestBuilder(input, context);
|
|
548
|
-
const headers = {};
|
|
549
|
-
b.bp("/sol/vnflcm/v1/vnf_instances");
|
|
550
|
-
const query = smithyClient.map({
|
|
551
|
-
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
552
|
-
[_nom]: [, input[_nT]],
|
|
553
|
-
});
|
|
554
|
-
let body;
|
|
555
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
556
|
-
return b.build();
|
|
557
|
-
};
|
|
558
|
-
const se_ListSolFunctionPackagesCommand = async (input, context) => {
|
|
559
|
-
const b = core.requestBuilder(input, context);
|
|
560
|
-
const headers = {};
|
|
561
|
-
b.bp("/sol/vnfpkgm/v1/vnf_packages");
|
|
562
|
-
const query = smithyClient.map({
|
|
563
|
-
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
564
|
-
[_nom]: [, input[_nT]],
|
|
565
|
-
});
|
|
566
|
-
let body;
|
|
567
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
568
|
-
return b.build();
|
|
569
|
-
};
|
|
570
|
-
const se_ListSolNetworkInstancesCommand = async (input, context) => {
|
|
571
|
-
const b = core.requestBuilder(input, context);
|
|
572
|
-
const headers = {};
|
|
573
|
-
b.bp("/sol/nslcm/v1/ns_instances");
|
|
574
|
-
const query = smithyClient.map({
|
|
575
|
-
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
576
|
-
[_nom]: [, input[_nT]],
|
|
577
|
-
});
|
|
578
|
-
let body;
|
|
579
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
580
|
-
return b.build();
|
|
581
|
-
};
|
|
582
|
-
const se_ListSolNetworkOperationsCommand = async (input, context) => {
|
|
583
|
-
const b = core.requestBuilder(input, context);
|
|
584
|
-
const headers = {};
|
|
585
|
-
b.bp("/sol/nslcm/v1/ns_lcm_op_occs");
|
|
586
|
-
const query = smithyClient.map({
|
|
587
|
-
[_nII]: [, input[_nII]],
|
|
588
|
-
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
589
|
-
[_nom]: [, input[_nT]],
|
|
590
|
-
});
|
|
591
|
-
let body;
|
|
592
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
593
|
-
return b.build();
|
|
594
|
-
};
|
|
595
|
-
const se_ListSolNetworkPackagesCommand = async (input, context) => {
|
|
596
|
-
const b = core.requestBuilder(input, context);
|
|
597
|
-
const headers = {};
|
|
598
|
-
b.bp("/sol/nsd/v1/ns_descriptors");
|
|
599
|
-
const query = smithyClient.map({
|
|
600
|
-
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
601
|
-
[_nom]: [, input[_nT]],
|
|
602
|
-
});
|
|
603
|
-
let body;
|
|
604
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
605
|
-
return b.build();
|
|
606
|
-
};
|
|
607
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
608
|
-
const b = core.requestBuilder(input, context);
|
|
609
|
-
const headers = {};
|
|
610
|
-
b.bp("/tags/{resourceArn}");
|
|
611
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
612
|
-
let body;
|
|
613
|
-
b.m("GET").h(headers).b(body);
|
|
614
|
-
return b.build();
|
|
615
|
-
};
|
|
616
|
-
const se_PutSolFunctionPackageContentCommand = async (input, context) => {
|
|
617
|
-
const b = core.requestBuilder(input, context);
|
|
618
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
619
|
-
[_ct]: input[_cT] || "application/octet-stream",
|
|
620
|
-
});
|
|
621
|
-
b.bp("/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}/package_content");
|
|
622
|
-
b.p("vnfPkgId", () => input.vnfPkgId, "{vnfPkgId}", false);
|
|
623
|
-
let body;
|
|
624
|
-
if (input.file !== undefined) {
|
|
625
|
-
body = input.file;
|
|
626
|
-
}
|
|
627
|
-
b.m("PUT").h(headers).b(body);
|
|
628
|
-
return b.build();
|
|
629
|
-
};
|
|
630
|
-
const se_PutSolNetworkPackageContentCommand = async (input, context) => {
|
|
631
|
-
const b = core.requestBuilder(input, context);
|
|
632
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
633
|
-
[_ct]: input[_cT] || "application/octet-stream",
|
|
634
|
-
});
|
|
635
|
-
b.bp("/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd_content");
|
|
636
|
-
b.p("nsdInfoId", () => input.nsdInfoId, "{nsdInfoId}", false);
|
|
637
|
-
let body;
|
|
638
|
-
if (input.file !== undefined) {
|
|
639
|
-
body = input.file;
|
|
640
|
-
}
|
|
641
|
-
b.m("PUT").h(headers).b(body);
|
|
642
|
-
return b.build();
|
|
643
|
-
};
|
|
644
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
645
|
-
const b = core.requestBuilder(input, context);
|
|
646
|
-
const headers = {
|
|
647
|
-
"content-type": "application/json",
|
|
648
|
-
};
|
|
649
|
-
b.bp("/tags/{resourceArn}");
|
|
650
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
651
|
-
let body;
|
|
652
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
653
|
-
tags: (_) => smithyClient._json(_),
|
|
654
|
-
}));
|
|
655
|
-
b.m("POST").h(headers).b(body);
|
|
656
|
-
return b.build();
|
|
657
|
-
};
|
|
658
|
-
const se_TerminateSolNetworkInstanceCommand = async (input, context) => {
|
|
659
|
-
const b = core.requestBuilder(input, context);
|
|
660
|
-
const headers = {
|
|
661
|
-
"content-type": "application/json",
|
|
662
|
-
};
|
|
663
|
-
b.bp("/sol/nslcm/v1/ns_instances/{nsInstanceId}/terminate");
|
|
664
|
-
b.p("nsInstanceId", () => input.nsInstanceId, "{nsInstanceId}", false);
|
|
665
|
-
let body;
|
|
666
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
667
|
-
tags: (_) => smithyClient._json(_),
|
|
668
|
-
}));
|
|
669
|
-
b.m("POST").h(headers).b(body);
|
|
670
|
-
return b.build();
|
|
671
|
-
};
|
|
672
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
673
|
-
const b = core.requestBuilder(input, context);
|
|
674
|
-
const headers = {};
|
|
675
|
-
b.bp("/tags/{resourceArn}");
|
|
676
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
677
|
-
const query = smithyClient.map({
|
|
678
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
679
|
-
});
|
|
680
|
-
let body;
|
|
681
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
682
|
-
return b.build();
|
|
683
|
-
};
|
|
684
|
-
const se_UpdateSolFunctionPackageCommand = async (input, context) => {
|
|
685
|
-
const b = core.requestBuilder(input, context);
|
|
686
|
-
const headers = {
|
|
687
|
-
"content-type": "application/json",
|
|
688
|
-
};
|
|
689
|
-
b.bp("/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}");
|
|
690
|
-
b.p("vnfPkgId", () => input.vnfPkgId, "{vnfPkgId}", false);
|
|
691
|
-
let body;
|
|
692
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
693
|
-
operationalState: [],
|
|
694
|
-
}));
|
|
695
|
-
b.m("PATCH").h(headers).b(body);
|
|
696
|
-
return b.build();
|
|
697
|
-
};
|
|
698
|
-
const se_UpdateSolNetworkInstanceCommand = async (input, context) => {
|
|
699
|
-
const b = core.requestBuilder(input, context);
|
|
700
|
-
const headers = {
|
|
701
|
-
"content-type": "application/json",
|
|
702
|
-
};
|
|
703
|
-
b.bp("/sol/nslcm/v1/ns_instances/{nsInstanceId}/update");
|
|
704
|
-
b.p("nsInstanceId", () => input.nsInstanceId, "{nsInstanceId}", false);
|
|
705
|
-
let body;
|
|
706
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
707
|
-
modifyVnfInfoData: (_) => se_UpdateSolNetworkModify(_),
|
|
708
|
-
tags: (_) => smithyClient._json(_),
|
|
709
|
-
updateNs: (_) => se_UpdateSolNetworkServiceData(_),
|
|
710
|
-
updateType: [],
|
|
711
|
-
}));
|
|
712
|
-
b.m("POST").h(headers).b(body);
|
|
713
|
-
return b.build();
|
|
714
|
-
};
|
|
715
|
-
const se_UpdateSolNetworkPackageCommand = async (input, context) => {
|
|
716
|
-
const b = core.requestBuilder(input, context);
|
|
717
|
-
const headers = {
|
|
718
|
-
"content-type": "application/json",
|
|
719
|
-
};
|
|
720
|
-
b.bp("/sol/nsd/v1/ns_descriptors/{nsdInfoId}");
|
|
721
|
-
b.p("nsdInfoId", () => input.nsdInfoId, "{nsdInfoId}", false);
|
|
722
|
-
let body;
|
|
723
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
724
|
-
nsdOperationalState: [],
|
|
725
|
-
}));
|
|
726
|
-
b.m("PATCH").h(headers).b(body);
|
|
727
|
-
return b.build();
|
|
728
|
-
};
|
|
729
|
-
const se_ValidateSolFunctionPackageContentCommand = async (input, context) => {
|
|
730
|
-
const b = core.requestBuilder(input, context);
|
|
731
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
732
|
-
[_ct]: input[_cT] || "application/octet-stream",
|
|
733
|
-
});
|
|
734
|
-
b.bp("/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}/package_content/validate");
|
|
735
|
-
b.p("vnfPkgId", () => input.vnfPkgId, "{vnfPkgId}", false);
|
|
736
|
-
let body;
|
|
737
|
-
if (input.file !== undefined) {
|
|
738
|
-
body = input.file;
|
|
739
|
-
}
|
|
740
|
-
b.m("PUT").h(headers).b(body);
|
|
741
|
-
return b.build();
|
|
742
|
-
};
|
|
743
|
-
const se_ValidateSolNetworkPackageContentCommand = async (input, context) => {
|
|
744
|
-
const b = core.requestBuilder(input, context);
|
|
745
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
746
|
-
[_ct]: input[_cT] || "application/octet-stream",
|
|
747
|
-
});
|
|
748
|
-
b.bp("/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd_content/validate");
|
|
749
|
-
b.p("nsdInfoId", () => input.nsdInfoId, "{nsdInfoId}", false);
|
|
750
|
-
let body;
|
|
751
|
-
if (input.file !== undefined) {
|
|
752
|
-
body = input.file;
|
|
753
|
-
}
|
|
754
|
-
b.m("PUT").h(headers).b(body);
|
|
755
|
-
return b.build();
|
|
756
|
-
};
|
|
757
|
-
const de_CancelSolNetworkOperationCommand = async (output, context) => {
|
|
758
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
759
|
-
return de_CommandError(output, context);
|
|
760
|
-
}
|
|
761
|
-
const contents = smithyClient.map({
|
|
762
|
-
$metadata: deserializeMetadata(output),
|
|
763
|
-
});
|
|
764
|
-
await smithyClient.collectBody(output.body, context);
|
|
765
|
-
return contents;
|
|
766
|
-
};
|
|
767
|
-
const de_CreateSolFunctionPackageCommand = async (output, context) => {
|
|
768
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
769
|
-
return de_CommandError(output, context);
|
|
770
|
-
}
|
|
771
|
-
const contents = smithyClient.map({
|
|
772
|
-
$metadata: deserializeMetadata(output),
|
|
773
|
-
});
|
|
774
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
775
|
-
const doc = smithyClient.take(data, {
|
|
776
|
-
arn: smithyClient.expectString,
|
|
777
|
-
id: smithyClient.expectString,
|
|
778
|
-
onboardingState: smithyClient.expectString,
|
|
779
|
-
operationalState: smithyClient.expectString,
|
|
780
|
-
tags: smithyClient._json,
|
|
781
|
-
usageState: smithyClient.expectString,
|
|
782
|
-
});
|
|
783
|
-
Object.assign(contents, doc);
|
|
784
|
-
return contents;
|
|
785
|
-
};
|
|
786
|
-
const de_CreateSolNetworkInstanceCommand = async (output, context) => {
|
|
787
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
788
|
-
return de_CommandError(output, context);
|
|
789
|
-
}
|
|
790
|
-
const contents = smithyClient.map({
|
|
791
|
-
$metadata: deserializeMetadata(output),
|
|
792
|
-
});
|
|
793
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
794
|
-
const doc = smithyClient.take(data, {
|
|
795
|
-
arn: smithyClient.expectString,
|
|
796
|
-
id: smithyClient.expectString,
|
|
797
|
-
nsInstanceName: smithyClient.expectString,
|
|
798
|
-
nsdInfoId: smithyClient.expectString,
|
|
799
|
-
tags: smithyClient._json,
|
|
800
|
-
});
|
|
801
|
-
Object.assign(contents, doc);
|
|
802
|
-
return contents;
|
|
803
|
-
};
|
|
804
|
-
const de_CreateSolNetworkPackageCommand = async (output, context) => {
|
|
805
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
806
|
-
return de_CommandError(output, context);
|
|
807
|
-
}
|
|
808
|
-
const contents = smithyClient.map({
|
|
809
|
-
$metadata: deserializeMetadata(output),
|
|
810
|
-
});
|
|
811
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
812
|
-
const doc = smithyClient.take(data, {
|
|
813
|
-
arn: smithyClient.expectString,
|
|
814
|
-
id: smithyClient.expectString,
|
|
815
|
-
nsdOnboardingState: smithyClient.expectString,
|
|
816
|
-
nsdOperationalState: smithyClient.expectString,
|
|
817
|
-
nsdUsageState: smithyClient.expectString,
|
|
818
|
-
tags: smithyClient._json,
|
|
819
|
-
});
|
|
820
|
-
Object.assign(contents, doc);
|
|
821
|
-
return contents;
|
|
822
|
-
};
|
|
823
|
-
const de_DeleteSolFunctionPackageCommand = async (output, context) => {
|
|
824
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
825
|
-
return de_CommandError(output, context);
|
|
826
|
-
}
|
|
827
|
-
const contents = smithyClient.map({
|
|
828
|
-
$metadata: deserializeMetadata(output),
|
|
829
|
-
});
|
|
830
|
-
await smithyClient.collectBody(output.body, context);
|
|
831
|
-
return contents;
|
|
832
|
-
};
|
|
833
|
-
const de_DeleteSolNetworkInstanceCommand = async (output, context) => {
|
|
834
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
835
|
-
return de_CommandError(output, context);
|
|
836
|
-
}
|
|
837
|
-
const contents = smithyClient.map({
|
|
838
|
-
$metadata: deserializeMetadata(output),
|
|
839
|
-
});
|
|
840
|
-
await smithyClient.collectBody(output.body, context);
|
|
841
|
-
return contents;
|
|
842
|
-
};
|
|
843
|
-
const de_DeleteSolNetworkPackageCommand = async (output, context) => {
|
|
844
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
845
|
-
return de_CommandError(output, context);
|
|
846
|
-
}
|
|
847
|
-
const contents = smithyClient.map({
|
|
848
|
-
$metadata: deserializeMetadata(output),
|
|
849
|
-
});
|
|
850
|
-
await smithyClient.collectBody(output.body, context);
|
|
851
|
-
return contents;
|
|
852
|
-
};
|
|
853
|
-
const de_GetSolFunctionInstanceCommand = async (output, context) => {
|
|
854
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
855
|
-
return de_CommandError(output, context);
|
|
856
|
-
}
|
|
857
|
-
const contents = smithyClient.map({
|
|
858
|
-
$metadata: deserializeMetadata(output),
|
|
859
|
-
});
|
|
860
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
861
|
-
const doc = smithyClient.take(data, {
|
|
862
|
-
arn: smithyClient.expectString,
|
|
863
|
-
id: smithyClient.expectString,
|
|
864
|
-
instantiatedVnfInfo: smithyClient._json,
|
|
865
|
-
instantiationState: smithyClient.expectString,
|
|
866
|
-
metadata: (_) => de_GetSolFunctionInstanceMetadata(_),
|
|
867
|
-
nsInstanceId: smithyClient.expectString,
|
|
868
|
-
tags: smithyClient._json,
|
|
869
|
-
vnfPkgId: smithyClient.expectString,
|
|
870
|
-
vnfProductName: smithyClient.expectString,
|
|
871
|
-
vnfProvider: smithyClient.expectString,
|
|
872
|
-
vnfdId: smithyClient.expectString,
|
|
873
|
-
vnfdVersion: smithyClient.expectString,
|
|
874
|
-
});
|
|
875
|
-
Object.assign(contents, doc);
|
|
876
|
-
return contents;
|
|
877
|
-
};
|
|
878
|
-
const de_GetSolFunctionPackageCommand = async (output, context) => {
|
|
879
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
880
|
-
return de_CommandError(output, context);
|
|
881
|
-
}
|
|
882
|
-
const contents = smithyClient.map({
|
|
883
|
-
$metadata: deserializeMetadata(output),
|
|
884
|
-
});
|
|
885
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
886
|
-
const doc = smithyClient.take(data, {
|
|
887
|
-
arn: smithyClient.expectString,
|
|
888
|
-
id: smithyClient.expectString,
|
|
889
|
-
metadata: (_) => de_GetSolFunctionPackageMetadata(_),
|
|
890
|
-
onboardingState: smithyClient.expectString,
|
|
891
|
-
operationalState: smithyClient.expectString,
|
|
892
|
-
tags: smithyClient._json,
|
|
893
|
-
usageState: smithyClient.expectString,
|
|
894
|
-
vnfProductName: smithyClient.expectString,
|
|
895
|
-
vnfProvider: smithyClient.expectString,
|
|
896
|
-
vnfdId: smithyClient.expectString,
|
|
897
|
-
vnfdVersion: smithyClient.expectString,
|
|
898
|
-
});
|
|
899
|
-
Object.assign(contents, doc);
|
|
900
|
-
return contents;
|
|
901
|
-
};
|
|
902
|
-
const de_GetSolFunctionPackageContentCommand = async (output, context) => {
|
|
903
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
904
|
-
return de_CommandError(output, context);
|
|
905
|
-
}
|
|
906
|
-
const contents = smithyClient.map({
|
|
907
|
-
$metadata: deserializeMetadata(output),
|
|
908
|
-
[_cT]: [, output.headers[_ct]],
|
|
909
|
-
});
|
|
910
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
911
|
-
contents.packageContent = data;
|
|
912
|
-
return contents;
|
|
913
|
-
};
|
|
914
|
-
const de_GetSolFunctionPackageDescriptorCommand = async (output, context) => {
|
|
915
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
916
|
-
return de_CommandError(output, context);
|
|
917
|
-
}
|
|
918
|
-
const contents = smithyClient.map({
|
|
919
|
-
$metadata: deserializeMetadata(output),
|
|
920
|
-
[_cT]: [, output.headers[_ct]],
|
|
921
|
-
});
|
|
922
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
923
|
-
contents.vnfd = data;
|
|
924
|
-
return contents;
|
|
925
|
-
};
|
|
926
|
-
const de_GetSolNetworkInstanceCommand = async (output, context) => {
|
|
927
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
928
|
-
return de_CommandError(output, context);
|
|
929
|
-
}
|
|
930
|
-
const contents = smithyClient.map({
|
|
931
|
-
$metadata: deserializeMetadata(output),
|
|
932
|
-
});
|
|
933
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
934
|
-
const doc = smithyClient.take(data, {
|
|
935
|
-
arn: smithyClient.expectString,
|
|
936
|
-
id: smithyClient.expectString,
|
|
937
|
-
lcmOpInfo: smithyClient._json,
|
|
938
|
-
metadata: (_) => de_GetSolNetworkInstanceMetadata(_),
|
|
939
|
-
nsInstanceDescription: smithyClient.expectString,
|
|
940
|
-
nsInstanceName: smithyClient.expectString,
|
|
941
|
-
nsState: smithyClient.expectString,
|
|
942
|
-
nsdId: smithyClient.expectString,
|
|
943
|
-
nsdInfoId: smithyClient.expectString,
|
|
944
|
-
tags: smithyClient._json,
|
|
945
|
-
});
|
|
946
|
-
Object.assign(contents, doc);
|
|
947
|
-
return contents;
|
|
948
|
-
};
|
|
949
|
-
const de_GetSolNetworkOperationCommand = async (output, context) => {
|
|
950
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
951
|
-
return de_CommandError(output, context);
|
|
952
|
-
}
|
|
953
|
-
const contents = smithyClient.map({
|
|
954
|
-
$metadata: deserializeMetadata(output),
|
|
955
|
-
});
|
|
956
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
957
|
-
const doc = smithyClient.take(data, {
|
|
958
|
-
arn: smithyClient.expectString,
|
|
959
|
-
error: smithyClient._json,
|
|
960
|
-
id: smithyClient.expectString,
|
|
961
|
-
lcmOperationType: smithyClient.expectString,
|
|
962
|
-
metadata: (_) => de_GetSolNetworkOperationMetadata(_),
|
|
963
|
-
nsInstanceId: smithyClient.expectString,
|
|
964
|
-
operationState: smithyClient.expectString,
|
|
965
|
-
tags: smithyClient._json,
|
|
966
|
-
tasks: (_) => de_GetSolNetworkOperationTasksList(_),
|
|
967
|
-
updateType: smithyClient.expectString,
|
|
968
|
-
});
|
|
969
|
-
Object.assign(contents, doc);
|
|
970
|
-
return contents;
|
|
971
|
-
};
|
|
972
|
-
const de_GetSolNetworkPackageCommand = async (output, context) => {
|
|
973
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
974
|
-
return de_CommandError(output, context);
|
|
975
|
-
}
|
|
976
|
-
const contents = smithyClient.map({
|
|
977
|
-
$metadata: deserializeMetadata(output),
|
|
978
|
-
});
|
|
979
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
980
|
-
const doc = smithyClient.take(data, {
|
|
981
|
-
arn: smithyClient.expectString,
|
|
982
|
-
id: smithyClient.expectString,
|
|
983
|
-
metadata: (_) => de_GetSolNetworkPackageMetadata(_),
|
|
984
|
-
nsdId: smithyClient.expectString,
|
|
985
|
-
nsdName: smithyClient.expectString,
|
|
986
|
-
nsdOnboardingState: smithyClient.expectString,
|
|
987
|
-
nsdOperationalState: smithyClient.expectString,
|
|
988
|
-
nsdUsageState: smithyClient.expectString,
|
|
989
|
-
nsdVersion: smithyClient.expectString,
|
|
990
|
-
tags: smithyClient._json,
|
|
991
|
-
vnfPkgIds: smithyClient._json,
|
|
992
|
-
});
|
|
993
|
-
Object.assign(contents, doc);
|
|
994
|
-
return contents;
|
|
995
|
-
};
|
|
996
|
-
const de_GetSolNetworkPackageContentCommand = async (output, context) => {
|
|
997
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
998
|
-
return de_CommandError(output, context);
|
|
999
|
-
}
|
|
1000
|
-
const contents = smithyClient.map({
|
|
1001
|
-
$metadata: deserializeMetadata(output),
|
|
1002
|
-
[_cT]: [, output.headers[_ct]],
|
|
1003
|
-
});
|
|
1004
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
1005
|
-
contents.nsdContent = data;
|
|
1006
|
-
return contents;
|
|
1007
|
-
};
|
|
1008
|
-
const de_GetSolNetworkPackageDescriptorCommand = async (output, context) => {
|
|
1009
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1010
|
-
return de_CommandError(output, context);
|
|
1011
|
-
}
|
|
1012
|
-
const contents = smithyClient.map({
|
|
1013
|
-
$metadata: deserializeMetadata(output),
|
|
1014
|
-
[_cT]: [, output.headers[_ct]],
|
|
1015
|
-
});
|
|
1016
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
1017
|
-
contents.nsd = data;
|
|
1018
|
-
return contents;
|
|
1019
|
-
};
|
|
1020
|
-
const de_InstantiateSolNetworkInstanceCommand = async (output, context) => {
|
|
1021
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1022
|
-
return de_CommandError(output, context);
|
|
1023
|
-
}
|
|
1024
|
-
const contents = smithyClient.map({
|
|
1025
|
-
$metadata: deserializeMetadata(output),
|
|
1026
|
-
});
|
|
1027
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1028
|
-
const doc = smithyClient.take(data, {
|
|
1029
|
-
nsLcmOpOccId: smithyClient.expectString,
|
|
1030
|
-
tags: smithyClient._json,
|
|
1031
|
-
});
|
|
1032
|
-
Object.assign(contents, doc);
|
|
1033
|
-
return contents;
|
|
1034
|
-
};
|
|
1035
|
-
const de_ListSolFunctionInstancesCommand = async (output, context) => {
|
|
1036
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1037
|
-
return de_CommandError(output, context);
|
|
1038
|
-
}
|
|
1039
|
-
const contents = smithyClient.map({
|
|
1040
|
-
$metadata: deserializeMetadata(output),
|
|
1041
|
-
});
|
|
1042
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1043
|
-
const doc = smithyClient.take(data, {
|
|
1044
|
-
functionInstances: (_) => de_ListSolFunctionInstanceResources(_),
|
|
1045
|
-
nextToken: smithyClient.expectString,
|
|
1046
|
-
});
|
|
1047
|
-
Object.assign(contents, doc);
|
|
1048
|
-
return contents;
|
|
1049
|
-
};
|
|
1050
|
-
const de_ListSolFunctionPackagesCommand = async (output, context) => {
|
|
1051
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1052
|
-
return de_CommandError(output, context);
|
|
1053
|
-
}
|
|
1054
|
-
const contents = smithyClient.map({
|
|
1055
|
-
$metadata: deserializeMetadata(output),
|
|
1056
|
-
});
|
|
1057
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1058
|
-
const doc = smithyClient.take(data, {
|
|
1059
|
-
functionPackages: (_) => de_ListSolFunctionPackageResources(_),
|
|
1060
|
-
nextToken: smithyClient.expectString,
|
|
1061
|
-
});
|
|
1062
|
-
Object.assign(contents, doc);
|
|
1063
|
-
return contents;
|
|
1064
|
-
};
|
|
1065
|
-
const de_ListSolNetworkInstancesCommand = async (output, context) => {
|
|
1066
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1067
|
-
return de_CommandError(output, context);
|
|
1068
|
-
}
|
|
1069
|
-
const contents = smithyClient.map({
|
|
1070
|
-
$metadata: deserializeMetadata(output),
|
|
1071
|
-
});
|
|
1072
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1073
|
-
const doc = smithyClient.take(data, {
|
|
1074
|
-
networkInstances: (_) => de_ListSolNetworkInstanceResources(_),
|
|
1075
|
-
nextToken: smithyClient.expectString,
|
|
1076
|
-
});
|
|
1077
|
-
Object.assign(contents, doc);
|
|
1078
|
-
return contents;
|
|
1079
|
-
};
|
|
1080
|
-
const de_ListSolNetworkOperationsCommand = async (output, context) => {
|
|
1081
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1082
|
-
return de_CommandError(output, context);
|
|
1083
|
-
}
|
|
1084
|
-
const contents = smithyClient.map({
|
|
1085
|
-
$metadata: deserializeMetadata(output),
|
|
1086
|
-
});
|
|
1087
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1088
|
-
const doc = smithyClient.take(data, {
|
|
1089
|
-
networkOperations: (_) => de_ListSolNetworkOperationsResources(_),
|
|
1090
|
-
nextToken: smithyClient.expectString,
|
|
1091
|
-
});
|
|
1092
|
-
Object.assign(contents, doc);
|
|
1093
|
-
return contents;
|
|
1094
|
-
};
|
|
1095
|
-
const de_ListSolNetworkPackagesCommand = async (output, context) => {
|
|
1096
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1097
|
-
return de_CommandError(output, context);
|
|
1098
|
-
}
|
|
1099
|
-
const contents = smithyClient.map({
|
|
1100
|
-
$metadata: deserializeMetadata(output),
|
|
1101
|
-
});
|
|
1102
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1103
|
-
const doc = smithyClient.take(data, {
|
|
1104
|
-
networkPackages: (_) => de_ListSolNetworkPackageResources(_),
|
|
1105
|
-
nextToken: smithyClient.expectString,
|
|
1106
|
-
});
|
|
1107
|
-
Object.assign(contents, doc);
|
|
1108
|
-
return contents;
|
|
1109
|
-
};
|
|
1110
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1111
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1112
|
-
return de_CommandError(output, context);
|
|
1113
|
-
}
|
|
1114
|
-
const contents = smithyClient.map({
|
|
1115
|
-
$metadata: deserializeMetadata(output),
|
|
1116
|
-
});
|
|
1117
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1118
|
-
const doc = smithyClient.take(data, {
|
|
1119
|
-
tags: smithyClient._json,
|
|
1120
|
-
});
|
|
1121
|
-
Object.assign(contents, doc);
|
|
1122
|
-
return contents;
|
|
1123
|
-
};
|
|
1124
|
-
const de_PutSolFunctionPackageContentCommand = async (output, context) => {
|
|
1125
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
1126
|
-
return de_CommandError(output, context);
|
|
1127
|
-
}
|
|
1128
|
-
const contents = smithyClient.map({
|
|
1129
|
-
$metadata: deserializeMetadata(output),
|
|
1130
|
-
});
|
|
1131
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1132
|
-
const doc = smithyClient.take(data, {
|
|
1133
|
-
id: smithyClient.expectString,
|
|
1134
|
-
metadata: smithyClient._json,
|
|
1135
|
-
vnfProductName: smithyClient.expectString,
|
|
1136
|
-
vnfProvider: smithyClient.expectString,
|
|
1137
|
-
vnfdId: smithyClient.expectString,
|
|
1138
|
-
vnfdVersion: smithyClient.expectString,
|
|
1139
|
-
});
|
|
1140
|
-
Object.assign(contents, doc);
|
|
1141
|
-
return contents;
|
|
1142
|
-
};
|
|
1143
|
-
const de_PutSolNetworkPackageContentCommand = async (output, context) => {
|
|
1144
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1145
|
-
return de_CommandError(output, context);
|
|
1146
|
-
}
|
|
1147
|
-
const contents = smithyClient.map({
|
|
1148
|
-
$metadata: deserializeMetadata(output),
|
|
1149
|
-
});
|
|
1150
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1151
|
-
const doc = smithyClient.take(data, {
|
|
1152
|
-
arn: smithyClient.expectString,
|
|
1153
|
-
id: smithyClient.expectString,
|
|
1154
|
-
metadata: smithyClient._json,
|
|
1155
|
-
nsdId: smithyClient.expectString,
|
|
1156
|
-
nsdName: smithyClient.expectString,
|
|
1157
|
-
nsdVersion: smithyClient.expectString,
|
|
1158
|
-
vnfPkgIds: smithyClient._json,
|
|
1159
|
-
});
|
|
1160
|
-
Object.assign(contents, doc);
|
|
1161
|
-
return contents;
|
|
1162
|
-
};
|
|
1163
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1164
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1165
|
-
return de_CommandError(output, context);
|
|
1166
|
-
}
|
|
1167
|
-
const contents = smithyClient.map({
|
|
1168
|
-
$metadata: deserializeMetadata(output),
|
|
1169
|
-
});
|
|
1170
|
-
await smithyClient.collectBody(output.body, context);
|
|
1171
|
-
return contents;
|
|
1172
|
-
};
|
|
1173
|
-
const de_TerminateSolNetworkInstanceCommand = async (output, context) => {
|
|
1174
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1175
|
-
return de_CommandError(output, context);
|
|
1176
|
-
}
|
|
1177
|
-
const contents = smithyClient.map({
|
|
1178
|
-
$metadata: deserializeMetadata(output),
|
|
1179
|
-
});
|
|
1180
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1181
|
-
const doc = smithyClient.take(data, {
|
|
1182
|
-
nsLcmOpOccId: smithyClient.expectString,
|
|
1183
|
-
tags: smithyClient._json,
|
|
1184
|
-
});
|
|
1185
|
-
Object.assign(contents, doc);
|
|
1186
|
-
return contents;
|
|
1187
|
-
};
|
|
1188
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1189
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1190
|
-
return de_CommandError(output, context);
|
|
1191
|
-
}
|
|
1192
|
-
const contents = smithyClient.map({
|
|
1193
|
-
$metadata: deserializeMetadata(output),
|
|
1194
|
-
});
|
|
1195
|
-
await smithyClient.collectBody(output.body, context);
|
|
1196
|
-
return contents;
|
|
1197
|
-
};
|
|
1198
|
-
const de_UpdateSolFunctionPackageCommand = async (output, context) => {
|
|
1199
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1200
|
-
return de_CommandError(output, context);
|
|
1201
|
-
}
|
|
1202
|
-
const contents = smithyClient.map({
|
|
1203
|
-
$metadata: deserializeMetadata(output),
|
|
1204
|
-
});
|
|
1205
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1206
|
-
const doc = smithyClient.take(data, {
|
|
1207
|
-
operationalState: smithyClient.expectString,
|
|
1208
|
-
});
|
|
1209
|
-
Object.assign(contents, doc);
|
|
1210
|
-
return contents;
|
|
1211
|
-
};
|
|
1212
|
-
const de_UpdateSolNetworkInstanceCommand = async (output, context) => {
|
|
1213
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1214
|
-
return de_CommandError(output, context);
|
|
1215
|
-
}
|
|
1216
|
-
const contents = smithyClient.map({
|
|
1217
|
-
$metadata: deserializeMetadata(output),
|
|
1218
|
-
});
|
|
1219
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1220
|
-
const doc = smithyClient.take(data, {
|
|
1221
|
-
nsLcmOpOccId: smithyClient.expectString,
|
|
1222
|
-
tags: smithyClient._json,
|
|
1223
|
-
});
|
|
1224
|
-
Object.assign(contents, doc);
|
|
1225
|
-
return contents;
|
|
1226
|
-
};
|
|
1227
|
-
const de_UpdateSolNetworkPackageCommand = async (output, context) => {
|
|
1228
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1229
|
-
return de_CommandError(output, context);
|
|
1230
|
-
}
|
|
1231
|
-
const contents = smithyClient.map({
|
|
1232
|
-
$metadata: deserializeMetadata(output),
|
|
1233
|
-
});
|
|
1234
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1235
|
-
const doc = smithyClient.take(data, {
|
|
1236
|
-
nsdOperationalState: smithyClient.expectString,
|
|
1237
|
-
});
|
|
1238
|
-
Object.assign(contents, doc);
|
|
1239
|
-
return contents;
|
|
1240
|
-
};
|
|
1241
|
-
const de_ValidateSolFunctionPackageContentCommand = async (output, context) => {
|
|
1242
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
1243
|
-
return de_CommandError(output, context);
|
|
1244
|
-
}
|
|
1245
|
-
const contents = smithyClient.map({
|
|
1246
|
-
$metadata: deserializeMetadata(output),
|
|
1247
|
-
});
|
|
1248
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1249
|
-
const doc = smithyClient.take(data, {
|
|
1250
|
-
id: smithyClient.expectString,
|
|
1251
|
-
metadata: smithyClient._json,
|
|
1252
|
-
vnfProductName: smithyClient.expectString,
|
|
1253
|
-
vnfProvider: smithyClient.expectString,
|
|
1254
|
-
vnfdId: smithyClient.expectString,
|
|
1255
|
-
vnfdVersion: smithyClient.expectString,
|
|
1256
|
-
});
|
|
1257
|
-
Object.assign(contents, doc);
|
|
1258
|
-
return contents;
|
|
1259
|
-
};
|
|
1260
|
-
const de_ValidateSolNetworkPackageContentCommand = async (output, context) => {
|
|
1261
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1262
|
-
return de_CommandError(output, context);
|
|
1263
|
-
}
|
|
1264
|
-
const contents = smithyClient.map({
|
|
1265
|
-
$metadata: deserializeMetadata(output),
|
|
1266
|
-
});
|
|
1267
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1268
|
-
const doc = smithyClient.take(data, {
|
|
1269
|
-
arn: smithyClient.expectString,
|
|
1270
|
-
id: smithyClient.expectString,
|
|
1271
|
-
metadata: smithyClient._json,
|
|
1272
|
-
nsdId: smithyClient.expectString,
|
|
1273
|
-
nsdName: smithyClient.expectString,
|
|
1274
|
-
nsdVersion: smithyClient.expectString,
|
|
1275
|
-
vnfPkgIds: smithyClient._json,
|
|
1276
|
-
});
|
|
1277
|
-
Object.assign(contents, doc);
|
|
1278
|
-
return contents;
|
|
1279
|
-
};
|
|
1280
|
-
const de_CommandError = async (output, context) => {
|
|
1281
|
-
const parsedOutput = {
|
|
1282
|
-
...output,
|
|
1283
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1284
|
-
};
|
|
1285
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1286
|
-
switch (errorCode) {
|
|
1287
|
-
case "AccessDeniedException":
|
|
1288
|
-
case "com.amazonaws.tnb#AccessDeniedException":
|
|
1289
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1290
|
-
case "InternalServerException":
|
|
1291
|
-
case "com.amazonaws.tnb#InternalServerException":
|
|
1292
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1293
|
-
case "ResourceNotFoundException":
|
|
1294
|
-
case "com.amazonaws.tnb#ResourceNotFoundException":
|
|
1295
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1296
|
-
case "ThrottlingException":
|
|
1297
|
-
case "com.amazonaws.tnb#ThrottlingException":
|
|
1298
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1299
|
-
case "ValidationException":
|
|
1300
|
-
case "com.amazonaws.tnb#ValidationException":
|
|
1301
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1302
|
-
case "ServiceQuotaExceededException":
|
|
1303
|
-
case "com.amazonaws.tnb#ServiceQuotaExceededException":
|
|
1304
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1305
|
-
default:
|
|
1306
|
-
const parsedBody = parsedOutput.body;
|
|
1307
|
-
return throwDefaultError({
|
|
1308
|
-
output,
|
|
1309
|
-
parsedBody,
|
|
1310
|
-
errorCode,
|
|
1311
|
-
});
|
|
1312
|
-
}
|
|
1313
|
-
};
|
|
1314
|
-
const throwDefaultError = smithyClient.withBaseException(TnbServiceException);
|
|
1315
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1316
|
-
const contents = smithyClient.map({});
|
|
1317
|
-
const data = parsedOutput.body;
|
|
1318
|
-
const doc = smithyClient.take(data, {
|
|
1319
|
-
message: smithyClient.expectString,
|
|
1320
|
-
});
|
|
1321
|
-
Object.assign(contents, doc);
|
|
1322
|
-
const exception = new AccessDeniedException({
|
|
1323
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1324
|
-
...contents,
|
|
1325
|
-
});
|
|
1326
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1327
|
-
};
|
|
1328
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1329
|
-
const contents = smithyClient.map({});
|
|
1330
|
-
const data = parsedOutput.body;
|
|
1331
|
-
const doc = smithyClient.take(data, {
|
|
1332
|
-
message: smithyClient.expectString,
|
|
1333
|
-
});
|
|
1334
|
-
Object.assign(contents, doc);
|
|
1335
|
-
const exception = new InternalServerException({
|
|
1336
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1337
|
-
...contents,
|
|
1338
|
-
});
|
|
1339
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1340
|
-
};
|
|
1341
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1342
|
-
const contents = smithyClient.map({});
|
|
1343
|
-
const data = parsedOutput.body;
|
|
1344
|
-
const doc = smithyClient.take(data, {
|
|
1345
|
-
message: smithyClient.expectString,
|
|
1346
|
-
});
|
|
1347
|
-
Object.assign(contents, doc);
|
|
1348
|
-
const exception = new ResourceNotFoundException({
|
|
1349
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1350
|
-
...contents,
|
|
1351
|
-
});
|
|
1352
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1353
|
-
};
|
|
1354
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1355
|
-
const contents = smithyClient.map({});
|
|
1356
|
-
const data = parsedOutput.body;
|
|
1357
|
-
const doc = smithyClient.take(data, {
|
|
1358
|
-
message: smithyClient.expectString,
|
|
1359
|
-
});
|
|
1360
|
-
Object.assign(contents, doc);
|
|
1361
|
-
const exception = new ServiceQuotaExceededException({
|
|
1362
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1363
|
-
...contents,
|
|
1364
|
-
});
|
|
1365
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1366
|
-
};
|
|
1367
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1368
|
-
const contents = smithyClient.map({});
|
|
1369
|
-
const data = parsedOutput.body;
|
|
1370
|
-
const doc = smithyClient.take(data, {
|
|
1371
|
-
message: smithyClient.expectString,
|
|
1372
|
-
});
|
|
1373
|
-
Object.assign(contents, doc);
|
|
1374
|
-
const exception = new ThrottlingException({
|
|
1375
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1376
|
-
...contents,
|
|
1377
|
-
});
|
|
1378
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1379
|
-
};
|
|
1380
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1381
|
-
const contents = smithyClient.map({});
|
|
1382
|
-
const data = parsedOutput.body;
|
|
1383
|
-
const doc = smithyClient.take(data, {
|
|
1384
|
-
message: smithyClient.expectString,
|
|
1385
|
-
});
|
|
1386
|
-
Object.assign(contents, doc);
|
|
1387
|
-
const exception = new ValidationException({
|
|
1388
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1389
|
-
...contents,
|
|
1390
|
-
});
|
|
1391
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1392
|
-
};
|
|
1393
|
-
const se_UpdateSolNetworkModify = (input, context) => {
|
|
1394
|
-
return smithyClient.take(input, {
|
|
1395
|
-
vnfConfigurableProperties: (_) => se_Document(_),
|
|
1396
|
-
vnfInstanceId: [],
|
|
1397
|
-
});
|
|
1398
|
-
};
|
|
1399
|
-
const se_UpdateSolNetworkServiceData = (input, context) => {
|
|
1400
|
-
return smithyClient.take(input, {
|
|
1401
|
-
additionalParamsForNs: (_) => se_Document(_),
|
|
1402
|
-
nsdInfoId: [],
|
|
1403
|
-
});
|
|
1404
|
-
};
|
|
1405
|
-
const se_Document = (input, context) => {
|
|
1406
|
-
return input;
|
|
1407
|
-
};
|
|
1408
|
-
const de_GetSolFunctionInstanceMetadata = (output, context) => {
|
|
1409
|
-
return smithyClient.take(output, {
|
|
1410
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1411
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1412
|
-
});
|
|
1413
|
-
};
|
|
1414
|
-
const de_GetSolFunctionPackageMetadata = (output, context) => {
|
|
1415
|
-
return smithyClient.take(output, {
|
|
1416
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1417
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1418
|
-
vnfd: smithyClient._json,
|
|
1419
|
-
});
|
|
1420
|
-
};
|
|
1421
|
-
const de_GetSolNetworkInstanceMetadata = (output, context) => {
|
|
1422
|
-
return smithyClient.take(output, {
|
|
1423
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1424
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1425
|
-
});
|
|
1426
|
-
};
|
|
1427
|
-
const de_GetSolNetworkOperationMetadata = (output, context) => {
|
|
1428
|
-
return smithyClient.take(output, {
|
|
1429
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1430
|
-
instantiateMetadata: (_) => de_InstantiateMetadata(_),
|
|
1431
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1432
|
-
modifyVnfInfoMetadata: (_) => de_ModifyVnfInfoMetadata(_),
|
|
1433
|
-
updateNsMetadata: (_) => de_UpdateNsMetadata(_),
|
|
1434
|
-
});
|
|
1435
|
-
};
|
|
1436
|
-
const de_GetSolNetworkOperationTaskDetails = (output, context) => {
|
|
1437
|
-
return smithyClient.take(output, {
|
|
1438
|
-
taskContext: smithyClient._json,
|
|
1439
|
-
taskEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1440
|
-
taskErrorDetails: smithyClient._json,
|
|
1441
|
-
taskName: smithyClient.expectString,
|
|
1442
|
-
taskStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1443
|
-
taskStatus: smithyClient.expectString,
|
|
1444
|
-
});
|
|
1445
|
-
};
|
|
1446
|
-
const de_GetSolNetworkOperationTasksList = (output, context) => {
|
|
1447
|
-
const retVal = (output || [])
|
|
1448
|
-
.filter((e) => e != null)
|
|
1449
|
-
.map((entry) => {
|
|
1450
|
-
return de_GetSolNetworkOperationTaskDetails(entry);
|
|
1451
|
-
});
|
|
1452
|
-
return retVal;
|
|
1453
|
-
};
|
|
1454
|
-
const de_GetSolNetworkPackageMetadata = (output, context) => {
|
|
1455
|
-
return smithyClient.take(output, {
|
|
1456
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1457
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1458
|
-
nsd: smithyClient._json,
|
|
1459
|
-
});
|
|
1460
|
-
};
|
|
1461
|
-
const de_InstantiateMetadata = (output, context) => {
|
|
1462
|
-
return smithyClient.take(output, {
|
|
1463
|
-
additionalParamsForNs: (_) => de_Document(_),
|
|
1464
|
-
nsdInfoId: smithyClient.expectString,
|
|
1465
|
-
});
|
|
1466
|
-
};
|
|
1467
|
-
const de_ListSolFunctionInstanceInfo = (output, context) => {
|
|
1468
|
-
return smithyClient.take(output, {
|
|
1469
|
-
arn: smithyClient.expectString,
|
|
1470
|
-
id: smithyClient.expectString,
|
|
1471
|
-
instantiatedVnfInfo: smithyClient._json,
|
|
1472
|
-
instantiationState: smithyClient.expectString,
|
|
1473
|
-
metadata: (_) => de_ListSolFunctionInstanceMetadata(_),
|
|
1474
|
-
nsInstanceId: smithyClient.expectString,
|
|
1475
|
-
vnfPkgId: smithyClient.expectString,
|
|
1476
|
-
vnfPkgName: smithyClient.expectString,
|
|
1477
|
-
});
|
|
1478
|
-
};
|
|
1479
|
-
const de_ListSolFunctionInstanceMetadata = (output, context) => {
|
|
1480
|
-
return smithyClient.take(output, {
|
|
1481
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1482
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1483
|
-
});
|
|
1484
|
-
};
|
|
1485
|
-
const de_ListSolFunctionInstanceResources = (output, context) => {
|
|
1486
|
-
const retVal = (output || [])
|
|
1487
|
-
.filter((e) => e != null)
|
|
1488
|
-
.map((entry) => {
|
|
1489
|
-
return de_ListSolFunctionInstanceInfo(entry);
|
|
1490
|
-
});
|
|
1491
|
-
return retVal;
|
|
1492
|
-
};
|
|
1493
|
-
const de_ListSolFunctionPackageInfo = (output, context) => {
|
|
1494
|
-
return smithyClient.take(output, {
|
|
1495
|
-
arn: smithyClient.expectString,
|
|
1496
|
-
id: smithyClient.expectString,
|
|
1497
|
-
metadata: (_) => de_ListSolFunctionPackageMetadata(_),
|
|
1498
|
-
onboardingState: smithyClient.expectString,
|
|
1499
|
-
operationalState: smithyClient.expectString,
|
|
1500
|
-
usageState: smithyClient.expectString,
|
|
1501
|
-
vnfProductName: smithyClient.expectString,
|
|
1502
|
-
vnfProvider: smithyClient.expectString,
|
|
1503
|
-
vnfdId: smithyClient.expectString,
|
|
1504
|
-
vnfdVersion: smithyClient.expectString,
|
|
1505
|
-
});
|
|
1506
|
-
};
|
|
1507
|
-
const de_ListSolFunctionPackageMetadata = (output, context) => {
|
|
1508
|
-
return smithyClient.take(output, {
|
|
1509
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1510
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1511
|
-
});
|
|
1512
|
-
};
|
|
1513
|
-
const de_ListSolFunctionPackageResources = (output, context) => {
|
|
1514
|
-
const retVal = (output || [])
|
|
1515
|
-
.filter((e) => e != null)
|
|
1516
|
-
.map((entry) => {
|
|
1517
|
-
return de_ListSolFunctionPackageInfo(entry);
|
|
1518
|
-
});
|
|
1519
|
-
return retVal;
|
|
1520
|
-
};
|
|
1521
|
-
const de_ListSolNetworkInstanceInfo = (output, context) => {
|
|
1522
|
-
return smithyClient.take(output, {
|
|
1523
|
-
arn: smithyClient.expectString,
|
|
1524
|
-
id: smithyClient.expectString,
|
|
1525
|
-
metadata: (_) => de_ListSolNetworkInstanceMetadata(_),
|
|
1526
|
-
nsInstanceDescription: smithyClient.expectString,
|
|
1527
|
-
nsInstanceName: smithyClient.expectString,
|
|
1528
|
-
nsState: smithyClient.expectString,
|
|
1529
|
-
nsdId: smithyClient.expectString,
|
|
1530
|
-
nsdInfoId: smithyClient.expectString,
|
|
1531
|
-
});
|
|
1532
|
-
};
|
|
1533
|
-
const de_ListSolNetworkInstanceMetadata = (output, context) => {
|
|
1534
|
-
return smithyClient.take(output, {
|
|
1535
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1536
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1537
|
-
});
|
|
1538
|
-
};
|
|
1539
|
-
const de_ListSolNetworkInstanceResources = (output, context) => {
|
|
1540
|
-
const retVal = (output || [])
|
|
1541
|
-
.filter((e) => e != null)
|
|
1542
|
-
.map((entry) => {
|
|
1543
|
-
return de_ListSolNetworkInstanceInfo(entry);
|
|
1544
|
-
});
|
|
1545
|
-
return retVal;
|
|
1546
|
-
};
|
|
1547
|
-
const de_ListSolNetworkOperationsInfo = (output, context) => {
|
|
1548
|
-
return smithyClient.take(output, {
|
|
1549
|
-
arn: smithyClient.expectString,
|
|
1550
|
-
error: smithyClient._json,
|
|
1551
|
-
id: smithyClient.expectString,
|
|
1552
|
-
lcmOperationType: smithyClient.expectString,
|
|
1553
|
-
metadata: (_) => de_ListSolNetworkOperationsMetadata(_),
|
|
1554
|
-
nsInstanceId: smithyClient.expectString,
|
|
1555
|
-
operationState: smithyClient.expectString,
|
|
1556
|
-
updateType: smithyClient.expectString,
|
|
1557
|
-
});
|
|
1558
|
-
};
|
|
1559
|
-
const de_ListSolNetworkOperationsMetadata = (output, context) => {
|
|
1560
|
-
return smithyClient.take(output, {
|
|
1561
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1562
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1563
|
-
nsdInfoId: smithyClient.expectString,
|
|
1564
|
-
vnfInstanceId: smithyClient.expectString,
|
|
1565
|
-
});
|
|
1566
|
-
};
|
|
1567
|
-
const de_ListSolNetworkOperationsResources = (output, context) => {
|
|
1568
|
-
const retVal = (output || [])
|
|
1569
|
-
.filter((e) => e != null)
|
|
1570
|
-
.map((entry) => {
|
|
1571
|
-
return de_ListSolNetworkOperationsInfo(entry);
|
|
1572
|
-
});
|
|
1573
|
-
return retVal;
|
|
1574
|
-
};
|
|
1575
|
-
const de_ListSolNetworkPackageInfo = (output, context) => {
|
|
1576
|
-
return smithyClient.take(output, {
|
|
1577
|
-
arn: smithyClient.expectString,
|
|
1578
|
-
id: smithyClient.expectString,
|
|
1579
|
-
metadata: (_) => de_ListSolNetworkPackageMetadata(_),
|
|
1580
|
-
nsdDesigner: smithyClient.expectString,
|
|
1581
|
-
nsdId: smithyClient.expectString,
|
|
1582
|
-
nsdInvariantId: smithyClient.expectString,
|
|
1583
|
-
nsdName: smithyClient.expectString,
|
|
1584
|
-
nsdOnboardingState: smithyClient.expectString,
|
|
1585
|
-
nsdOperationalState: smithyClient.expectString,
|
|
1586
|
-
nsdUsageState: smithyClient.expectString,
|
|
1587
|
-
nsdVersion: smithyClient.expectString,
|
|
1588
|
-
vnfPkgIds: smithyClient._json,
|
|
1589
|
-
});
|
|
1590
|
-
};
|
|
1591
|
-
const de_ListSolNetworkPackageMetadata = (output, context) => {
|
|
1592
|
-
return smithyClient.take(output, {
|
|
1593
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1594
|
-
lastModified: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1595
|
-
});
|
|
1596
|
-
};
|
|
1597
|
-
const de_ListSolNetworkPackageResources = (output, context) => {
|
|
1598
|
-
const retVal = (output || [])
|
|
1599
|
-
.filter((e) => e != null)
|
|
1600
|
-
.map((entry) => {
|
|
1601
|
-
return de_ListSolNetworkPackageInfo(entry);
|
|
1602
|
-
});
|
|
1603
|
-
return retVal;
|
|
1604
|
-
};
|
|
1605
|
-
const de_ModifyVnfInfoMetadata = (output, context) => {
|
|
1606
|
-
return smithyClient.take(output, {
|
|
1607
|
-
vnfConfigurableProperties: (_) => de_Document(_),
|
|
1608
|
-
vnfInstanceId: smithyClient.expectString,
|
|
1609
|
-
});
|
|
1610
|
-
};
|
|
1611
|
-
const de_UpdateNsMetadata = (output, context) => {
|
|
1612
|
-
return smithyClient.take(output, {
|
|
1613
|
-
additionalParamsForNs: (_) => de_Document(_),
|
|
1614
|
-
nsdInfoId: smithyClient.expectString,
|
|
1615
|
-
});
|
|
1616
|
-
};
|
|
1617
|
-
const de_Document = (output, context) => {
|
|
1618
|
-
return output;
|
|
1619
|
-
};
|
|
1620
|
-
const deserializeMetadata = (output) => ({
|
|
1621
|
-
httpStatusCode: output.statusCode,
|
|
1622
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1623
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1624
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1625
|
-
});
|
|
1626
|
-
const _a = "accept";
|
|
271
|
+
const _A = "Accept";
|
|
272
|
+
const _ADE = "AccessDeniedException";
|
|
273
|
+
const _CSFP = "CreateSolFunctionPackage";
|
|
274
|
+
const _CSFPI = "CreateSolFunctionPackageInput";
|
|
275
|
+
const _CSFPO = "CreateSolFunctionPackageOutput";
|
|
276
|
+
const _CSNI = "CreateSolNetworkInstance";
|
|
277
|
+
const _CSNII = "CreateSolNetworkInstanceInput";
|
|
278
|
+
const _CSNIO = "CreateSolNetworkInstanceOutput";
|
|
279
|
+
const _CSNO = "CancelSolNetworkOperation";
|
|
280
|
+
const _CSNOI = "CancelSolNetworkOperationInput";
|
|
281
|
+
const _CSNP = "CreateSolNetworkPackage";
|
|
282
|
+
const _CSNPI = "CreateSolNetworkPackageInput";
|
|
283
|
+
const _CSNPO = "CreateSolNetworkPackageOutput";
|
|
284
|
+
const _CT = "Content-Type";
|
|
285
|
+
const _DSFP = "DeleteSolFunctionPackage";
|
|
286
|
+
const _DSFPI = "DeleteSolFunctionPackageInput";
|
|
287
|
+
const _DSNI = "DeleteSolNetworkInstance";
|
|
288
|
+
const _DSNII = "DeleteSolNetworkInstanceInput";
|
|
289
|
+
const _DSNP = "DeleteSolNetworkPackage";
|
|
290
|
+
const _DSNPI = "DeleteSolNetworkPackageInput";
|
|
291
|
+
const _EI = "ErrorInfo";
|
|
292
|
+
const _FAM = "FunctionArtifactMeta";
|
|
293
|
+
const _GSFI = "GetSolFunctionInstance";
|
|
294
|
+
const _GSFII = "GetSolFunctionInstanceInput";
|
|
295
|
+
const _GSFIM = "GetSolFunctionInstanceMetadata";
|
|
296
|
+
const _GSFIO = "GetSolFunctionInstanceOutput";
|
|
297
|
+
const _GSFP = "GetSolFunctionPackage";
|
|
298
|
+
const _GSFPC = "GetSolFunctionPackageContent";
|
|
299
|
+
const _GSFPCI = "GetSolFunctionPackageContentInput";
|
|
300
|
+
const _GSFPCO = "GetSolFunctionPackageContentOutput";
|
|
301
|
+
const _GSFPD = "GetSolFunctionPackageDescriptor";
|
|
302
|
+
const _GSFPDI = "GetSolFunctionPackageDescriptorInput";
|
|
303
|
+
const _GSFPDO = "GetSolFunctionPackageDescriptorOutput";
|
|
304
|
+
const _GSFPI = "GetSolFunctionPackageInput";
|
|
305
|
+
const _GSFPM = "GetSolFunctionPackageMetadata";
|
|
306
|
+
const _GSFPO = "GetSolFunctionPackageOutput";
|
|
307
|
+
const _GSIVI = "GetSolInstantiatedVnfInfo";
|
|
308
|
+
const _GSNI = "GetSolNetworkInstance";
|
|
309
|
+
const _GSNII = "GetSolNetworkInstanceInput";
|
|
310
|
+
const _GSNIM = "GetSolNetworkInstanceMetadata";
|
|
311
|
+
const _GSNIO = "GetSolNetworkInstanceOutput";
|
|
312
|
+
const _GSNO = "GetSolNetworkOperation";
|
|
313
|
+
const _GSNOI = "GetSolNetworkOperationInput";
|
|
314
|
+
const _GSNOM = "GetSolNetworkOperationMetadata";
|
|
315
|
+
const _GSNOO = "GetSolNetworkOperationOutput";
|
|
316
|
+
const _GSNOTD = "GetSolNetworkOperationTaskDetails";
|
|
317
|
+
const _GSNOTL = "GetSolNetworkOperationTasksList";
|
|
318
|
+
const _GSNP = "GetSolNetworkPackage";
|
|
319
|
+
const _GSNPC = "GetSolNetworkPackageContent";
|
|
320
|
+
const _GSNPCI = "GetSolNetworkPackageContentInput";
|
|
321
|
+
const _GSNPCO = "GetSolNetworkPackageContentOutput";
|
|
322
|
+
const _GSNPD = "GetSolNetworkPackageDescriptor";
|
|
323
|
+
const _GSNPDI = "GetSolNetworkPackageDescriptorInput";
|
|
324
|
+
const _GSNPDO = "GetSolNetworkPackageDescriptorOutput";
|
|
325
|
+
const _GSNPI = "GetSolNetworkPackageInput";
|
|
326
|
+
const _GSNPM = "GetSolNetworkPackageMetadata";
|
|
327
|
+
const _GSNPO = "GetSolNetworkPackageOutput";
|
|
328
|
+
const _GSVI = "GetSolVnfInfo";
|
|
329
|
+
const _GSVRI = "GetSolVnfcResourceInfo";
|
|
330
|
+
const _GSVRIL = "GetSolVnfcResourceInfoList";
|
|
331
|
+
const _GSVRIM = "GetSolVnfcResourceInfoMetadata";
|
|
332
|
+
const _IM = "InstantiateMetadata";
|
|
333
|
+
const _ISE = "InternalServerException";
|
|
334
|
+
const _ISNI = "InstantiateSolNetworkInstance";
|
|
335
|
+
const _ISNII = "InstantiateSolNetworkInstanceInput";
|
|
336
|
+
const _ISNIO = "InstantiateSolNetworkInstanceOutput";
|
|
337
|
+
const _LOI = "LcmOperationInfo";
|
|
338
|
+
const _LSFI = "ListSolFunctionInstances";
|
|
339
|
+
const _LSFII = "ListSolFunctionInstanceInfo";
|
|
340
|
+
const _LSFIIi = "ListSolFunctionInstancesInput";
|
|
341
|
+
const _LSFIM = "ListSolFunctionInstanceMetadata";
|
|
342
|
+
const _LSFIO = "ListSolFunctionInstancesOutput";
|
|
343
|
+
const _LSFIR = "ListSolFunctionInstanceResources";
|
|
344
|
+
const _LSFP = "ListSolFunctionPackages";
|
|
345
|
+
const _LSFPI = "ListSolFunctionPackageInfo";
|
|
346
|
+
const _LSFPIi = "ListSolFunctionPackagesInput";
|
|
347
|
+
const _LSFPM = "ListSolFunctionPackageMetadata";
|
|
348
|
+
const _LSFPO = "ListSolFunctionPackagesOutput";
|
|
349
|
+
const _LSFPR = "ListSolFunctionPackageResources";
|
|
350
|
+
const _LSNI = "ListSolNetworkInstances";
|
|
351
|
+
const _LSNII = "ListSolNetworkInstanceInfo";
|
|
352
|
+
const _LSNIIi = "ListSolNetworkInstancesInput";
|
|
353
|
+
const _LSNIM = "ListSolNetworkInstanceMetadata";
|
|
354
|
+
const _LSNIO = "ListSolNetworkInstancesOutput";
|
|
355
|
+
const _LSNIR = "ListSolNetworkInstanceResources";
|
|
356
|
+
const _LSNO = "ListSolNetworkOperations";
|
|
357
|
+
const _LSNOI = "ListSolNetworkOperationsInfo";
|
|
358
|
+
const _LSNOIi = "ListSolNetworkOperationsInput";
|
|
359
|
+
const _LSNOM = "ListSolNetworkOperationsMetadata";
|
|
360
|
+
const _LSNOO = "ListSolNetworkOperationsOutput";
|
|
361
|
+
const _LSNOR = "ListSolNetworkOperationsResources";
|
|
362
|
+
const _LSNP = "ListSolNetworkPackages";
|
|
363
|
+
const _LSNPI = "ListSolNetworkPackageInfo";
|
|
364
|
+
const _LSNPIi = "ListSolNetworkPackagesInput";
|
|
365
|
+
const _LSNPM = "ListSolNetworkPackageMetadata";
|
|
366
|
+
const _LSNPO = "ListSolNetworkPackagesOutput";
|
|
367
|
+
const _LSNPR = "ListSolNetworkPackageResources";
|
|
368
|
+
const _LTFR = "ListTagsForResource";
|
|
369
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
370
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
371
|
+
const _MVIM = "ModifyVnfInfoMetadata";
|
|
372
|
+
const _NAM = "NetworkArtifactMeta";
|
|
373
|
+
const _OL = "OverrideList";
|
|
374
|
+
const _PD = "ProblemDetails";
|
|
375
|
+
const _PSFPC = "PutSolFunctionPackageContent";
|
|
376
|
+
const _PSFPCI = "PutSolFunctionPackageContentInput";
|
|
377
|
+
const _PSFPCM = "PutSolFunctionPackageContentMetadata";
|
|
378
|
+
const _PSFPCO = "PutSolFunctionPackageContentOutput";
|
|
379
|
+
const _PSNPC = "PutSolNetworkPackageContent";
|
|
380
|
+
const _PSNPCI = "PutSolNetworkPackageContentInput";
|
|
381
|
+
const _PSNPCM = "PutSolNetworkPackageContentMetadata";
|
|
382
|
+
const _PSNPCO = "PutSolNetworkPackageContentOutput";
|
|
383
|
+
const _RNFE = "ResourceNotFoundException";
|
|
384
|
+
const _SB = "SensitiveBlob";
|
|
385
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
386
|
+
const _TE = "ThrottlingException";
|
|
387
|
+
const _TM = "TagMap";
|
|
388
|
+
const _TO = "ToscaOverride";
|
|
389
|
+
const _TR = "TagResource";
|
|
390
|
+
const _TRI = "TagResourceInput";
|
|
391
|
+
const _TRO = "TagResourceOutput";
|
|
392
|
+
const _TSNI = "TerminateSolNetworkInstance";
|
|
393
|
+
const _TSNII = "TerminateSolNetworkInstanceInput";
|
|
394
|
+
const _TSNIO = "TerminateSolNetworkInstanceOutput";
|
|
395
|
+
const _UNM = "UpdateNsMetadata";
|
|
396
|
+
const _UR = "UntagResource";
|
|
397
|
+
const _URI = "UntagResourceInput";
|
|
398
|
+
const _URO = "UntagResourceOutput";
|
|
399
|
+
const _USFP = "UpdateSolFunctionPackage";
|
|
400
|
+
const _USFPI = "UpdateSolFunctionPackageInput";
|
|
401
|
+
const _USFPO = "UpdateSolFunctionPackageOutput";
|
|
402
|
+
const _USNI = "UpdateSolNetworkInstance";
|
|
403
|
+
const _USNII = "UpdateSolNetworkInstanceInput";
|
|
404
|
+
const _USNIO = "UpdateSolNetworkInstanceOutput";
|
|
405
|
+
const _USNM = "UpdateSolNetworkModify";
|
|
406
|
+
const _USNP = "UpdateSolNetworkPackage";
|
|
407
|
+
const _USNPI = "UpdateSolNetworkPackageInput";
|
|
408
|
+
const _USNPO = "UpdateSolNetworkPackageOutput";
|
|
409
|
+
const _USNSD = "UpdateSolNetworkServiceData";
|
|
410
|
+
const _VE = "ValidationException";
|
|
411
|
+
const _VSFPC = "ValidateSolFunctionPackageContent";
|
|
412
|
+
const _VSFPCI = "ValidateSolFunctionPackageContentInput";
|
|
413
|
+
const _VSFPCM = "ValidateSolFunctionPackageContentMetadata";
|
|
414
|
+
const _VSFPCO = "ValidateSolFunctionPackageContentOutput";
|
|
415
|
+
const _VSNPC = "ValidateSolNetworkPackageContent";
|
|
416
|
+
const _VSNPCI = "ValidateSolNetworkPackageContentInput";
|
|
417
|
+
const _VSNPCM = "ValidateSolNetworkPackageContentMetadata";
|
|
418
|
+
const _VSNPCO = "ValidateSolNetworkPackageContentOutput";
|
|
419
|
+
const _a = "arn";
|
|
420
|
+
const _aPFN = "additionalParamsForNs";
|
|
421
|
+
const _ac = "accept";
|
|
422
|
+
const _c = "client";
|
|
423
|
+
const _cA = "createdAt";
|
|
1627
424
|
const _cT = "contentType";
|
|
1628
|
-
const
|
|
425
|
+
const _ca = "cause";
|
|
426
|
+
const _cl = "cluster";
|
|
427
|
+
const _d = "details";
|
|
1629
428
|
const _dR = "dryRun";
|
|
429
|
+
const _dV = "defaultValue";
|
|
430
|
+
const _de = "detail";
|
|
1630
431
|
const _dr = "dry_run";
|
|
432
|
+
const _e = "error";
|
|
433
|
+
const _f = "file";
|
|
434
|
+
const _fI = "functionInstances";
|
|
435
|
+
const _fP = "functionPackages";
|
|
436
|
+
const _h = "http";
|
|
437
|
+
const _hC = "helmChart";
|
|
438
|
+
const _hE = "httpError";
|
|
439
|
+
const _hH = "httpHeader";
|
|
440
|
+
const _hQ = "httpQuery";
|
|
441
|
+
const _i = "id";
|
|
442
|
+
const _iM = "instantiateMetadata";
|
|
443
|
+
const _iS = "instantiationState";
|
|
444
|
+
const _iVI = "instantiatedVnfInfo";
|
|
445
|
+
const _lM = "lastModified";
|
|
446
|
+
const _lOI = "lcmOpInfo";
|
|
447
|
+
const _lOT = "lcmOperationType";
|
|
448
|
+
const _m = "message";
|
|
1631
449
|
const _mR = "maxResults";
|
|
450
|
+
const _mVID = "modifyVnfInfoData";
|
|
451
|
+
const _mVIM = "modifyVnfInfoMetadata";
|
|
452
|
+
const _me = "metadata";
|
|
1632
453
|
const _mr = "max_results";
|
|
1633
|
-
const
|
|
454
|
+
const _n = "nsd";
|
|
455
|
+
const _nC = "nsdContent";
|
|
456
|
+
const _nD = "nsDescription";
|
|
457
|
+
const _nDs = "nsdDesigner";
|
|
458
|
+
const _nG = "nodeGroup";
|
|
459
|
+
const _nI = "nsdId";
|
|
460
|
+
const _nID = "nsInstanceDescription";
|
|
461
|
+
const _nII = "nsdInfoId";
|
|
462
|
+
const _nIIs = "nsInstanceId";
|
|
463
|
+
const _nIIsd = "nsdInvariantId";
|
|
464
|
+
const _nIN = "nsInstanceName";
|
|
465
|
+
const _nIe = "networkInstances";
|
|
466
|
+
const _nLOOI = "nsLcmOpOccId";
|
|
467
|
+
const _nN = "nsName";
|
|
468
|
+
const _nNs = "nsdName";
|
|
469
|
+
const _nO = "networkOperations";
|
|
470
|
+
const _nOS = "nsdOnboardingState";
|
|
471
|
+
const _nOSs = "nsdOperationalState";
|
|
472
|
+
const _nP = "networkPackages";
|
|
473
|
+
const _nS = "nsState";
|
|
1634
474
|
const _nT = "nextToken";
|
|
475
|
+
const _nUS = "nsdUsageState";
|
|
476
|
+
const _nV = "nsdVersion";
|
|
477
|
+
const _na = "name";
|
|
1635
478
|
const _nom = "nextpage_opaque_marker";
|
|
479
|
+
const _o = "overrides";
|
|
480
|
+
const _oS = "onboardingState";
|
|
481
|
+
const _oSp = "operationalState";
|
|
482
|
+
const _oSpe = "operationState";
|
|
483
|
+
const _pC = "packageContent";
|
|
484
|
+
const _rA = "resourceArn";
|
|
485
|
+
const _s = "server";
|
|
486
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.tnb";
|
|
487
|
+
const _t = "tags";
|
|
488
|
+
const _tC = "taskContext";
|
|
489
|
+
const _tED = "taskErrorDetails";
|
|
490
|
+
const _tET = "taskEndTime";
|
|
1636
491
|
const _tK = "tagKeys";
|
|
492
|
+
const _tN = "taskName";
|
|
493
|
+
const _tS = "taskStatus";
|
|
494
|
+
const _tST = "taskStartTime";
|
|
495
|
+
const _ta = "tasks";
|
|
496
|
+
const _ti = "title";
|
|
497
|
+
const _uN = "updateNs";
|
|
498
|
+
const _uNM = "updateNsMetadata";
|
|
499
|
+
const _uS = "usageState";
|
|
500
|
+
const _uT = "updateType";
|
|
501
|
+
const _v = "vnfd";
|
|
502
|
+
const _vCP = "vnfConfigurableProperties";
|
|
503
|
+
const _vI = "vnfdId";
|
|
504
|
+
const _vII = "vnfInstanceId";
|
|
505
|
+
const _vP = "vnfProvider";
|
|
506
|
+
const _vPI = "vnfPkgId";
|
|
507
|
+
const _vPIn = "vnfPkgIds";
|
|
508
|
+
const _vPN = "vnfProductName";
|
|
509
|
+
const _vPNn = "vnfPkgName";
|
|
510
|
+
const _vRI = "vnfcResourceInfo";
|
|
511
|
+
const _vS = "vnfState";
|
|
512
|
+
const _vV = "vnfdVersion";
|
|
513
|
+
const n0 = "com.amazonaws.tnb";
|
|
514
|
+
var SensitiveBlob = [0, n0, _SB, 8, 21];
|
|
515
|
+
var AccessDeniedException = [
|
|
516
|
+
-3,
|
|
517
|
+
n0,
|
|
518
|
+
_ADE,
|
|
519
|
+
{
|
|
520
|
+
[_e]: _c,
|
|
521
|
+
[_hE]: 403,
|
|
522
|
+
},
|
|
523
|
+
[_m],
|
|
524
|
+
[0],
|
|
525
|
+
];
|
|
526
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
527
|
+
var CancelSolNetworkOperationInput = [3, n0, _CSNOI, 0, [_nLOOI], [[0, 1]]];
|
|
528
|
+
var CreateSolFunctionPackageInput = [3, n0, _CSFPI, 0, [_t], [[() => TagMap, 0]]];
|
|
529
|
+
var CreateSolFunctionPackageOutput = [
|
|
530
|
+
3,
|
|
531
|
+
n0,
|
|
532
|
+
_CSFPO,
|
|
533
|
+
0,
|
|
534
|
+
[_i, _a, _oS, _oSp, _uS, _t],
|
|
535
|
+
[0, 0, 0, 0, 0, [() => TagMap, 0]],
|
|
536
|
+
];
|
|
537
|
+
var CreateSolNetworkInstanceInput = [
|
|
538
|
+
3,
|
|
539
|
+
n0,
|
|
540
|
+
_CSNII,
|
|
541
|
+
0,
|
|
542
|
+
[_nII, _nN, _nD, _t],
|
|
543
|
+
[0, 0, 0, [() => TagMap, 0]],
|
|
544
|
+
];
|
|
545
|
+
var CreateSolNetworkInstanceOutput = [
|
|
546
|
+
3,
|
|
547
|
+
n0,
|
|
548
|
+
_CSNIO,
|
|
549
|
+
0,
|
|
550
|
+
[_i, _a, _nII, _nIN, _t],
|
|
551
|
+
[0, 0, 0, 0, [() => TagMap, 0]],
|
|
552
|
+
];
|
|
553
|
+
var CreateSolNetworkPackageInput = [3, n0, _CSNPI, 0, [_t], [[() => TagMap, 0]]];
|
|
554
|
+
var CreateSolNetworkPackageOutput = [
|
|
555
|
+
3,
|
|
556
|
+
n0,
|
|
557
|
+
_CSNPO,
|
|
558
|
+
0,
|
|
559
|
+
[_i, _a, _nOS, _nOSs, _nUS, _t],
|
|
560
|
+
[0, 0, 0, 0, 0, [() => TagMap, 0]],
|
|
561
|
+
];
|
|
562
|
+
var DeleteSolFunctionPackageInput = [3, n0, _DSFPI, 0, [_vPI], [[0, 1]]];
|
|
563
|
+
var DeleteSolNetworkInstanceInput = [3, n0, _DSNII, 0, [_nIIs], [[0, 1]]];
|
|
564
|
+
var DeleteSolNetworkPackageInput = [3, n0, _DSNPI, 0, [_nII], [[0, 1]]];
|
|
565
|
+
var ErrorInfo = [3, n0, _EI, 0, [_ca, _d], [0, 0]];
|
|
566
|
+
var FunctionArtifactMeta = [3, n0, _FAM, 0, [_o], [() => OverrideList]];
|
|
567
|
+
var GetSolFunctionInstanceInput = [3, n0, _GSFII, 0, [_vII], [[0, 1]]];
|
|
568
|
+
var GetSolFunctionInstanceMetadata = [3, n0, _GSFIM, 0, [_cA, _lM], [5, 5]];
|
|
569
|
+
var GetSolFunctionInstanceOutput = [
|
|
570
|
+
3,
|
|
571
|
+
n0,
|
|
572
|
+
_GSFIO,
|
|
573
|
+
0,
|
|
574
|
+
[_i, _a, _nIIs, _vPI, _vI, _vP, _vPN, _vV, _iS, _iVI, _me, _t],
|
|
575
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => GetSolVnfInfo, () => GetSolFunctionInstanceMetadata, [() => TagMap, 0]],
|
|
576
|
+
];
|
|
577
|
+
var GetSolFunctionPackageContentInput = [
|
|
578
|
+
3,
|
|
579
|
+
n0,
|
|
580
|
+
_GSFPCI,
|
|
581
|
+
0,
|
|
582
|
+
[_vPI, _ac],
|
|
583
|
+
[
|
|
584
|
+
[0, 1],
|
|
585
|
+
[
|
|
586
|
+
0,
|
|
587
|
+
{
|
|
588
|
+
[_hH]: _A,
|
|
589
|
+
},
|
|
590
|
+
],
|
|
591
|
+
],
|
|
592
|
+
];
|
|
593
|
+
var GetSolFunctionPackageContentOutput = [
|
|
594
|
+
3,
|
|
595
|
+
n0,
|
|
596
|
+
_GSFPCO,
|
|
597
|
+
0,
|
|
598
|
+
[_cT, _pC],
|
|
599
|
+
[
|
|
600
|
+
[
|
|
601
|
+
0,
|
|
602
|
+
{
|
|
603
|
+
[_hH]: _CT,
|
|
604
|
+
},
|
|
605
|
+
],
|
|
606
|
+
[21, 16],
|
|
607
|
+
],
|
|
608
|
+
];
|
|
609
|
+
var GetSolFunctionPackageDescriptorInput = [
|
|
610
|
+
3,
|
|
611
|
+
n0,
|
|
612
|
+
_GSFPDI,
|
|
613
|
+
0,
|
|
614
|
+
[_vPI, _ac],
|
|
615
|
+
[
|
|
616
|
+
[0, 1],
|
|
617
|
+
[
|
|
618
|
+
0,
|
|
619
|
+
{
|
|
620
|
+
[_hH]: _A,
|
|
621
|
+
},
|
|
622
|
+
],
|
|
623
|
+
],
|
|
624
|
+
];
|
|
625
|
+
var GetSolFunctionPackageDescriptorOutput = [
|
|
626
|
+
3,
|
|
627
|
+
n0,
|
|
628
|
+
_GSFPDO,
|
|
629
|
+
0,
|
|
630
|
+
[_cT, _v],
|
|
631
|
+
[
|
|
632
|
+
[
|
|
633
|
+
0,
|
|
634
|
+
{
|
|
635
|
+
[_hH]: _CT,
|
|
636
|
+
},
|
|
637
|
+
],
|
|
638
|
+
[21, 16],
|
|
639
|
+
],
|
|
640
|
+
];
|
|
641
|
+
var GetSolFunctionPackageInput = [3, n0, _GSFPI, 0, [_vPI], [[0, 1]]];
|
|
642
|
+
var GetSolFunctionPackageMetadata = [
|
|
643
|
+
3,
|
|
644
|
+
n0,
|
|
645
|
+
_GSFPM,
|
|
646
|
+
0,
|
|
647
|
+
[_v, _cA, _lM],
|
|
648
|
+
[() => FunctionArtifactMeta, 5, 5],
|
|
649
|
+
];
|
|
650
|
+
var GetSolFunctionPackageOutput = [
|
|
651
|
+
3,
|
|
652
|
+
n0,
|
|
653
|
+
_GSFPO,
|
|
654
|
+
0,
|
|
655
|
+
[_i, _a, _oS, _oSp, _uS, _vI, _vP, _vPN, _vV, _me, _t],
|
|
656
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => GetSolFunctionPackageMetadata, [() => TagMap, 0]],
|
|
657
|
+
];
|
|
658
|
+
var GetSolInstantiatedVnfInfo = [3, n0, _GSIVI, 0, [_vS], [0]];
|
|
659
|
+
var GetSolNetworkInstanceInput = [3, n0, _GSNII, 0, [_nIIs], [[0, 1]]];
|
|
660
|
+
var GetSolNetworkInstanceMetadata = [3, n0, _GSNIM, 0, [_cA, _lM], [5, 5]];
|
|
661
|
+
var GetSolNetworkInstanceOutput = [
|
|
662
|
+
3,
|
|
663
|
+
n0,
|
|
664
|
+
_GSNIO,
|
|
665
|
+
0,
|
|
666
|
+
[_i, _a, _nIN, _nID, _nI, _nII, _nS, _lOI, _me, _t],
|
|
667
|
+
[0, 0, 0, 0, 0, 0, 0, () => LcmOperationInfo, () => GetSolNetworkInstanceMetadata, [() => TagMap, 0]],
|
|
668
|
+
];
|
|
669
|
+
var GetSolNetworkOperationInput = [3, n0, _GSNOI, 0, [_nLOOI], [[0, 1]]];
|
|
670
|
+
var GetSolNetworkOperationMetadata = [
|
|
671
|
+
3,
|
|
672
|
+
n0,
|
|
673
|
+
_GSNOM,
|
|
674
|
+
0,
|
|
675
|
+
[_uNM, _mVIM, _iM, _cA, _lM],
|
|
676
|
+
[() => UpdateNsMetadata, () => ModifyVnfInfoMetadata, () => InstantiateMetadata, 5, 5],
|
|
677
|
+
];
|
|
678
|
+
var GetSolNetworkOperationOutput = [
|
|
679
|
+
3,
|
|
680
|
+
n0,
|
|
681
|
+
_GSNOO,
|
|
682
|
+
0,
|
|
683
|
+
[_i, _a, _oSpe, _nIIs, _lOT, _uT, _e, _me, _ta, _t],
|
|
684
|
+
[
|
|
685
|
+
0,
|
|
686
|
+
0,
|
|
687
|
+
0,
|
|
688
|
+
0,
|
|
689
|
+
0,
|
|
690
|
+
0,
|
|
691
|
+
() => ProblemDetails,
|
|
692
|
+
() => GetSolNetworkOperationMetadata,
|
|
693
|
+
() => GetSolNetworkOperationTasksList,
|
|
694
|
+
[() => TagMap, 0],
|
|
695
|
+
],
|
|
696
|
+
];
|
|
697
|
+
var GetSolNetworkOperationTaskDetails = [
|
|
698
|
+
3,
|
|
699
|
+
n0,
|
|
700
|
+
_GSNOTD,
|
|
701
|
+
0,
|
|
702
|
+
[_tN, _tC, _tED, _tS, _tST, _tET],
|
|
703
|
+
[0, 128 | 0, () => ErrorInfo, 0, 5, 5],
|
|
704
|
+
];
|
|
705
|
+
var GetSolNetworkPackageContentInput = [
|
|
706
|
+
3,
|
|
707
|
+
n0,
|
|
708
|
+
_GSNPCI,
|
|
709
|
+
0,
|
|
710
|
+
[_nII, _ac],
|
|
711
|
+
[
|
|
712
|
+
[0, 1],
|
|
713
|
+
[
|
|
714
|
+
0,
|
|
715
|
+
{
|
|
716
|
+
[_hH]: _A,
|
|
717
|
+
},
|
|
718
|
+
],
|
|
719
|
+
],
|
|
720
|
+
];
|
|
721
|
+
var GetSolNetworkPackageContentOutput = [
|
|
722
|
+
3,
|
|
723
|
+
n0,
|
|
724
|
+
_GSNPCO,
|
|
725
|
+
0,
|
|
726
|
+
[_cT, _nC],
|
|
727
|
+
[
|
|
728
|
+
[
|
|
729
|
+
0,
|
|
730
|
+
{
|
|
731
|
+
[_hH]: _CT,
|
|
732
|
+
},
|
|
733
|
+
],
|
|
734
|
+
[21, 16],
|
|
735
|
+
],
|
|
736
|
+
];
|
|
737
|
+
var GetSolNetworkPackageDescriptorInput = [3, n0, _GSNPDI, 0, [_nII], [[0, 1]]];
|
|
738
|
+
var GetSolNetworkPackageDescriptorOutput = [
|
|
739
|
+
3,
|
|
740
|
+
n0,
|
|
741
|
+
_GSNPDO,
|
|
742
|
+
0,
|
|
743
|
+
[_cT, _n],
|
|
744
|
+
[
|
|
745
|
+
[
|
|
746
|
+
0,
|
|
747
|
+
{
|
|
748
|
+
[_hH]: _CT,
|
|
749
|
+
},
|
|
750
|
+
],
|
|
751
|
+
[21, 16],
|
|
752
|
+
],
|
|
753
|
+
];
|
|
754
|
+
var GetSolNetworkPackageInput = [3, n0, _GSNPI, 0, [_nII], [[0, 1]]];
|
|
755
|
+
var GetSolNetworkPackageMetadata = [
|
|
756
|
+
3,
|
|
757
|
+
n0,
|
|
758
|
+
_GSNPM,
|
|
759
|
+
0,
|
|
760
|
+
[_n, _cA, _lM],
|
|
761
|
+
[() => NetworkArtifactMeta, 5, 5],
|
|
762
|
+
];
|
|
763
|
+
var GetSolNetworkPackageOutput = [
|
|
764
|
+
3,
|
|
765
|
+
n0,
|
|
766
|
+
_GSNPO,
|
|
767
|
+
0,
|
|
768
|
+
[_i, _a, _nOS, _nOSs, _nUS, _nI, _nNs, _nV, _vPIn, _me, _t],
|
|
769
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, () => GetSolNetworkPackageMetadata, [() => TagMap, 0]],
|
|
770
|
+
];
|
|
771
|
+
var GetSolVnfcResourceInfo = [
|
|
772
|
+
3,
|
|
773
|
+
n0,
|
|
774
|
+
_GSVRI,
|
|
775
|
+
0,
|
|
776
|
+
[_me],
|
|
777
|
+
[() => GetSolVnfcResourceInfoMetadata],
|
|
778
|
+
];
|
|
779
|
+
var GetSolVnfcResourceInfoMetadata = [3, n0, _GSVRIM, 0, [_nG, _cl, _hC], [0, 0, 0]];
|
|
780
|
+
var GetSolVnfInfo = [3, n0, _GSVI, 0, [_vS, _vRI], [0, () => GetSolVnfcResourceInfoList]];
|
|
781
|
+
var InstantiateMetadata = [3, n0, _IM, 0, [_nII, _aPFN], [0, 15]];
|
|
782
|
+
var InstantiateSolNetworkInstanceInput = [
|
|
783
|
+
3,
|
|
784
|
+
n0,
|
|
785
|
+
_ISNII,
|
|
786
|
+
0,
|
|
787
|
+
[_nIIs, _dR, _aPFN, _t],
|
|
788
|
+
[
|
|
789
|
+
[0, 1],
|
|
790
|
+
[
|
|
791
|
+
2,
|
|
792
|
+
{
|
|
793
|
+
[_hQ]: _dr,
|
|
794
|
+
},
|
|
795
|
+
],
|
|
796
|
+
15,
|
|
797
|
+
[() => TagMap, 0],
|
|
798
|
+
],
|
|
799
|
+
];
|
|
800
|
+
var InstantiateSolNetworkInstanceOutput = [
|
|
801
|
+
3,
|
|
802
|
+
n0,
|
|
803
|
+
_ISNIO,
|
|
804
|
+
0,
|
|
805
|
+
[_nLOOI, _t],
|
|
806
|
+
[0, [() => TagMap, 0]],
|
|
807
|
+
];
|
|
808
|
+
var InternalServerException = [
|
|
809
|
+
-3,
|
|
810
|
+
n0,
|
|
811
|
+
_ISE,
|
|
812
|
+
{
|
|
813
|
+
[_e]: _s,
|
|
814
|
+
[_hE]: 500,
|
|
815
|
+
},
|
|
816
|
+
[_m],
|
|
817
|
+
[0],
|
|
818
|
+
];
|
|
819
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
820
|
+
var LcmOperationInfo = [3, n0, _LOI, 0, [_nLOOI], [0]];
|
|
821
|
+
var ListSolFunctionInstanceInfo = [
|
|
822
|
+
3,
|
|
823
|
+
n0,
|
|
824
|
+
_LSFII,
|
|
825
|
+
0,
|
|
826
|
+
[_i, _a, _nIIs, _vPI, _vPNn, _iS, _iVI, _me],
|
|
827
|
+
[0, 0, 0, 0, 0, 0, () => GetSolInstantiatedVnfInfo, () => ListSolFunctionInstanceMetadata],
|
|
828
|
+
];
|
|
829
|
+
var ListSolFunctionInstanceMetadata = [3, n0, _LSFIM, 0, [_cA, _lM], [5, 5]];
|
|
830
|
+
var ListSolFunctionInstancesInput = [
|
|
831
|
+
3,
|
|
832
|
+
n0,
|
|
833
|
+
_LSFIIi,
|
|
834
|
+
0,
|
|
835
|
+
[_mR, _nT],
|
|
836
|
+
[
|
|
837
|
+
[
|
|
838
|
+
1,
|
|
839
|
+
{
|
|
840
|
+
[_hQ]: _mr,
|
|
841
|
+
},
|
|
842
|
+
],
|
|
843
|
+
[
|
|
844
|
+
0,
|
|
845
|
+
{
|
|
846
|
+
[_hQ]: _nom,
|
|
847
|
+
},
|
|
848
|
+
],
|
|
849
|
+
],
|
|
850
|
+
];
|
|
851
|
+
var ListSolFunctionInstancesOutput = [
|
|
852
|
+
3,
|
|
853
|
+
n0,
|
|
854
|
+
_LSFIO,
|
|
855
|
+
0,
|
|
856
|
+
[_nT, _fI],
|
|
857
|
+
[0, () => ListSolFunctionInstanceResources],
|
|
858
|
+
];
|
|
859
|
+
var ListSolFunctionPackageInfo = [
|
|
860
|
+
3,
|
|
861
|
+
n0,
|
|
862
|
+
_LSFPI,
|
|
863
|
+
0,
|
|
864
|
+
[_i, _a, _oS, _oSp, _uS, _vI, _vP, _vPN, _vV, _me],
|
|
865
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => ListSolFunctionPackageMetadata],
|
|
866
|
+
];
|
|
867
|
+
var ListSolFunctionPackageMetadata = [3, n0, _LSFPM, 0, [_cA, _lM], [5, 5]];
|
|
868
|
+
var ListSolFunctionPackagesInput = [
|
|
869
|
+
3,
|
|
870
|
+
n0,
|
|
871
|
+
_LSFPIi,
|
|
872
|
+
0,
|
|
873
|
+
[_mR, _nT],
|
|
874
|
+
[
|
|
875
|
+
[
|
|
876
|
+
1,
|
|
877
|
+
{
|
|
878
|
+
[_hQ]: _mr,
|
|
879
|
+
},
|
|
880
|
+
],
|
|
881
|
+
[
|
|
882
|
+
0,
|
|
883
|
+
{
|
|
884
|
+
[_hQ]: _nom,
|
|
885
|
+
},
|
|
886
|
+
],
|
|
887
|
+
],
|
|
888
|
+
];
|
|
889
|
+
var ListSolFunctionPackagesOutput = [
|
|
890
|
+
3,
|
|
891
|
+
n0,
|
|
892
|
+
_LSFPO,
|
|
893
|
+
0,
|
|
894
|
+
[_nT, _fP],
|
|
895
|
+
[0, () => ListSolFunctionPackageResources],
|
|
896
|
+
];
|
|
897
|
+
var ListSolNetworkInstanceInfo = [
|
|
898
|
+
3,
|
|
899
|
+
n0,
|
|
900
|
+
_LSNII,
|
|
901
|
+
0,
|
|
902
|
+
[_i, _a, _nIN, _nID, _nI, _nII, _nS, _me],
|
|
903
|
+
[0, 0, 0, 0, 0, 0, 0, () => ListSolNetworkInstanceMetadata],
|
|
904
|
+
];
|
|
905
|
+
var ListSolNetworkInstanceMetadata = [3, n0, _LSNIM, 0, [_cA, _lM], [5, 5]];
|
|
906
|
+
var ListSolNetworkInstancesInput = [
|
|
907
|
+
3,
|
|
908
|
+
n0,
|
|
909
|
+
_LSNIIi,
|
|
910
|
+
0,
|
|
911
|
+
[_mR, _nT],
|
|
912
|
+
[
|
|
913
|
+
[
|
|
914
|
+
1,
|
|
915
|
+
{
|
|
916
|
+
[_hQ]: _mr,
|
|
917
|
+
},
|
|
918
|
+
],
|
|
919
|
+
[
|
|
920
|
+
0,
|
|
921
|
+
{
|
|
922
|
+
[_hQ]: _nom,
|
|
923
|
+
},
|
|
924
|
+
],
|
|
925
|
+
],
|
|
926
|
+
];
|
|
927
|
+
var ListSolNetworkInstancesOutput = [
|
|
928
|
+
3,
|
|
929
|
+
n0,
|
|
930
|
+
_LSNIO,
|
|
931
|
+
0,
|
|
932
|
+
[_nT, _nIe],
|
|
933
|
+
[0, () => ListSolNetworkInstanceResources],
|
|
934
|
+
];
|
|
935
|
+
var ListSolNetworkOperationsInfo = [
|
|
936
|
+
3,
|
|
937
|
+
n0,
|
|
938
|
+
_LSNOI,
|
|
939
|
+
0,
|
|
940
|
+
[_i, _a, _oSpe, _nIIs, _lOT, _uT, _e, _me],
|
|
941
|
+
[0, 0, 0, 0, 0, 0, () => ProblemDetails, () => ListSolNetworkOperationsMetadata],
|
|
942
|
+
];
|
|
943
|
+
var ListSolNetworkOperationsInput = [
|
|
944
|
+
3,
|
|
945
|
+
n0,
|
|
946
|
+
_LSNOIi,
|
|
947
|
+
0,
|
|
948
|
+
[_nIIs, _mR, _nT],
|
|
949
|
+
[
|
|
950
|
+
[
|
|
951
|
+
0,
|
|
952
|
+
{
|
|
953
|
+
[_hQ]: _nIIs,
|
|
954
|
+
},
|
|
955
|
+
],
|
|
956
|
+
[
|
|
957
|
+
1,
|
|
958
|
+
{
|
|
959
|
+
[_hQ]: _mr,
|
|
960
|
+
},
|
|
961
|
+
],
|
|
962
|
+
[
|
|
963
|
+
0,
|
|
964
|
+
{
|
|
965
|
+
[_hQ]: _nom,
|
|
966
|
+
},
|
|
967
|
+
],
|
|
968
|
+
],
|
|
969
|
+
];
|
|
970
|
+
var ListSolNetworkOperationsMetadata = [
|
|
971
|
+
3,
|
|
972
|
+
n0,
|
|
973
|
+
_LSNOM,
|
|
974
|
+
0,
|
|
975
|
+
[_nII, _vII, _cA, _lM],
|
|
976
|
+
[0, 0, 5, 5],
|
|
977
|
+
];
|
|
978
|
+
var ListSolNetworkOperationsOutput = [
|
|
979
|
+
3,
|
|
980
|
+
n0,
|
|
981
|
+
_LSNOO,
|
|
982
|
+
0,
|
|
983
|
+
[_nT, _nO],
|
|
984
|
+
[0, () => ListSolNetworkOperationsResources],
|
|
985
|
+
];
|
|
986
|
+
var ListSolNetworkPackageInfo = [
|
|
987
|
+
3,
|
|
988
|
+
n0,
|
|
989
|
+
_LSNPI,
|
|
990
|
+
0,
|
|
991
|
+
[_i, _a, _nOS, _nOSs, _nUS, _nI, _nNs, _nV, _nDs, _nIIsd, _vPIn, _me],
|
|
992
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, () => ListSolNetworkPackageMetadata],
|
|
993
|
+
];
|
|
994
|
+
var ListSolNetworkPackageMetadata = [3, n0, _LSNPM, 0, [_cA, _lM], [5, 5]];
|
|
995
|
+
var ListSolNetworkPackagesInput = [
|
|
996
|
+
3,
|
|
997
|
+
n0,
|
|
998
|
+
_LSNPIi,
|
|
999
|
+
0,
|
|
1000
|
+
[_mR, _nT],
|
|
1001
|
+
[
|
|
1002
|
+
[
|
|
1003
|
+
1,
|
|
1004
|
+
{
|
|
1005
|
+
[_hQ]: _mr,
|
|
1006
|
+
},
|
|
1007
|
+
],
|
|
1008
|
+
[
|
|
1009
|
+
0,
|
|
1010
|
+
{
|
|
1011
|
+
[_hQ]: _nom,
|
|
1012
|
+
},
|
|
1013
|
+
],
|
|
1014
|
+
],
|
|
1015
|
+
];
|
|
1016
|
+
var ListSolNetworkPackagesOutput = [
|
|
1017
|
+
3,
|
|
1018
|
+
n0,
|
|
1019
|
+
_LSNPO,
|
|
1020
|
+
0,
|
|
1021
|
+
[_nT, _nP],
|
|
1022
|
+
[0, () => ListSolNetworkPackageResources],
|
|
1023
|
+
];
|
|
1024
|
+
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rA], [[0, 1]]];
|
|
1025
|
+
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_t], [[() => TagMap, 0]]];
|
|
1026
|
+
var ModifyVnfInfoMetadata = [3, n0, _MVIM, 0, [_vII, _vCP], [0, 15]];
|
|
1027
|
+
var NetworkArtifactMeta = [3, n0, _NAM, 0, [_o], [() => OverrideList]];
|
|
1028
|
+
var ProblemDetails = [3, n0, _PD, 0, [_de, _ti], [0, 0]];
|
|
1029
|
+
var PutSolFunctionPackageContentInput = [
|
|
1030
|
+
3,
|
|
1031
|
+
n0,
|
|
1032
|
+
_PSFPCI,
|
|
1033
|
+
0,
|
|
1034
|
+
[_vPI, _cT, _f],
|
|
1035
|
+
[
|
|
1036
|
+
[0, 1],
|
|
1037
|
+
[
|
|
1038
|
+
0,
|
|
1039
|
+
{
|
|
1040
|
+
[_hH]: _CT,
|
|
1041
|
+
},
|
|
1042
|
+
],
|
|
1043
|
+
[() => SensitiveBlob, 16],
|
|
1044
|
+
],
|
|
1045
|
+
];
|
|
1046
|
+
var PutSolFunctionPackageContentMetadata = [
|
|
1047
|
+
3,
|
|
1048
|
+
n0,
|
|
1049
|
+
_PSFPCM,
|
|
1050
|
+
0,
|
|
1051
|
+
[_v],
|
|
1052
|
+
[() => FunctionArtifactMeta],
|
|
1053
|
+
];
|
|
1054
|
+
var PutSolFunctionPackageContentOutput = [
|
|
1055
|
+
3,
|
|
1056
|
+
n0,
|
|
1057
|
+
_PSFPCO,
|
|
1058
|
+
0,
|
|
1059
|
+
[_i, _vI, _vPN, _vP, _vV, _me],
|
|
1060
|
+
[0, 0, 0, 0, 0, () => PutSolFunctionPackageContentMetadata],
|
|
1061
|
+
];
|
|
1062
|
+
var PutSolNetworkPackageContentInput = [
|
|
1063
|
+
3,
|
|
1064
|
+
n0,
|
|
1065
|
+
_PSNPCI,
|
|
1066
|
+
0,
|
|
1067
|
+
[_nII, _cT, _f],
|
|
1068
|
+
[
|
|
1069
|
+
[0, 1],
|
|
1070
|
+
[
|
|
1071
|
+
0,
|
|
1072
|
+
{
|
|
1073
|
+
[_hH]: _CT,
|
|
1074
|
+
},
|
|
1075
|
+
],
|
|
1076
|
+
[() => SensitiveBlob, 16],
|
|
1077
|
+
],
|
|
1078
|
+
];
|
|
1079
|
+
var PutSolNetworkPackageContentMetadata = [
|
|
1080
|
+
3,
|
|
1081
|
+
n0,
|
|
1082
|
+
_PSNPCM,
|
|
1083
|
+
0,
|
|
1084
|
+
[_n],
|
|
1085
|
+
[() => NetworkArtifactMeta],
|
|
1086
|
+
];
|
|
1087
|
+
var PutSolNetworkPackageContentOutput = [
|
|
1088
|
+
3,
|
|
1089
|
+
n0,
|
|
1090
|
+
_PSNPCO,
|
|
1091
|
+
0,
|
|
1092
|
+
[_i, _a, _nI, _nNs, _nV, _vPIn, _me],
|
|
1093
|
+
[0, 0, 0, 0, 0, 64 | 0, () => PutSolNetworkPackageContentMetadata],
|
|
1094
|
+
];
|
|
1095
|
+
var ResourceNotFoundException = [
|
|
1096
|
+
-3,
|
|
1097
|
+
n0,
|
|
1098
|
+
_RNFE,
|
|
1099
|
+
{
|
|
1100
|
+
[_e]: _c,
|
|
1101
|
+
[_hE]: 404,
|
|
1102
|
+
},
|
|
1103
|
+
[_m],
|
|
1104
|
+
[0],
|
|
1105
|
+
];
|
|
1106
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1107
|
+
var ServiceQuotaExceededException = [
|
|
1108
|
+
-3,
|
|
1109
|
+
n0,
|
|
1110
|
+
_SQEE,
|
|
1111
|
+
{
|
|
1112
|
+
[_e]: _c,
|
|
1113
|
+
[_hE]: 402,
|
|
1114
|
+
},
|
|
1115
|
+
[_m],
|
|
1116
|
+
[0],
|
|
1117
|
+
];
|
|
1118
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1119
|
+
var TagResourceInput = [
|
|
1120
|
+
3,
|
|
1121
|
+
n0,
|
|
1122
|
+
_TRI,
|
|
1123
|
+
0,
|
|
1124
|
+
[_rA, _t],
|
|
1125
|
+
[
|
|
1126
|
+
[0, 1],
|
|
1127
|
+
[() => TagMap, 0],
|
|
1128
|
+
],
|
|
1129
|
+
];
|
|
1130
|
+
var TagResourceOutput = [3, n0, _TRO, 0, [], []];
|
|
1131
|
+
var TerminateSolNetworkInstanceInput = [
|
|
1132
|
+
3,
|
|
1133
|
+
n0,
|
|
1134
|
+
_TSNII,
|
|
1135
|
+
0,
|
|
1136
|
+
[_nIIs, _t],
|
|
1137
|
+
[
|
|
1138
|
+
[0, 1],
|
|
1139
|
+
[() => TagMap, 0],
|
|
1140
|
+
],
|
|
1141
|
+
];
|
|
1142
|
+
var TerminateSolNetworkInstanceOutput = [
|
|
1143
|
+
3,
|
|
1144
|
+
n0,
|
|
1145
|
+
_TSNIO,
|
|
1146
|
+
0,
|
|
1147
|
+
[_nLOOI, _t],
|
|
1148
|
+
[0, [() => TagMap, 0]],
|
|
1149
|
+
];
|
|
1150
|
+
var ThrottlingException = [
|
|
1151
|
+
-3,
|
|
1152
|
+
n0,
|
|
1153
|
+
_TE,
|
|
1154
|
+
{
|
|
1155
|
+
[_e]: _c,
|
|
1156
|
+
[_hE]: 429,
|
|
1157
|
+
},
|
|
1158
|
+
[_m],
|
|
1159
|
+
[0],
|
|
1160
|
+
];
|
|
1161
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1162
|
+
var ToscaOverride = [3, n0, _TO, 0, [_na, _dV], [0, 0]];
|
|
1163
|
+
var UntagResourceInput = [
|
|
1164
|
+
3,
|
|
1165
|
+
n0,
|
|
1166
|
+
_URI,
|
|
1167
|
+
0,
|
|
1168
|
+
[_rA, _tK],
|
|
1169
|
+
[
|
|
1170
|
+
[0, 1],
|
|
1171
|
+
[
|
|
1172
|
+
64 | 0,
|
|
1173
|
+
{
|
|
1174
|
+
[_hQ]: _tK,
|
|
1175
|
+
},
|
|
1176
|
+
],
|
|
1177
|
+
],
|
|
1178
|
+
];
|
|
1179
|
+
var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
1180
|
+
var UpdateNsMetadata = [3, n0, _UNM, 0, [_nII, _aPFN], [0, 15]];
|
|
1181
|
+
var UpdateSolFunctionPackageInput = [3, n0, _USFPI, 0, [_vPI, _oSp], [[0, 1], 0]];
|
|
1182
|
+
var UpdateSolFunctionPackageOutput = [3, n0, _USFPO, 0, [_oSp], [0]];
|
|
1183
|
+
var UpdateSolNetworkInstanceInput = [
|
|
1184
|
+
3,
|
|
1185
|
+
n0,
|
|
1186
|
+
_USNII,
|
|
1187
|
+
0,
|
|
1188
|
+
[_nIIs, _uT, _mVID, _uN, _t],
|
|
1189
|
+
[[0, 1], 0, () => UpdateSolNetworkModify, () => UpdateSolNetworkServiceData, [() => TagMap, 0]],
|
|
1190
|
+
];
|
|
1191
|
+
var UpdateSolNetworkInstanceOutput = [
|
|
1192
|
+
3,
|
|
1193
|
+
n0,
|
|
1194
|
+
_USNIO,
|
|
1195
|
+
0,
|
|
1196
|
+
[_nLOOI, _t],
|
|
1197
|
+
[0, [() => TagMap, 0]],
|
|
1198
|
+
];
|
|
1199
|
+
var UpdateSolNetworkModify = [3, n0, _USNM, 0, [_vII, _vCP], [0, 15]];
|
|
1200
|
+
var UpdateSolNetworkPackageInput = [3, n0, _USNPI, 0, [_nII, _nOSs], [[0, 1], 0]];
|
|
1201
|
+
var UpdateSolNetworkPackageOutput = [3, n0, _USNPO, 0, [_nOSs], [0]];
|
|
1202
|
+
var UpdateSolNetworkServiceData = [3, n0, _USNSD, 0, [_nII, _aPFN], [0, 15]];
|
|
1203
|
+
var ValidateSolFunctionPackageContentInput = [
|
|
1204
|
+
3,
|
|
1205
|
+
n0,
|
|
1206
|
+
_VSFPCI,
|
|
1207
|
+
0,
|
|
1208
|
+
[_vPI, _cT, _f],
|
|
1209
|
+
[
|
|
1210
|
+
[0, 1],
|
|
1211
|
+
[
|
|
1212
|
+
0,
|
|
1213
|
+
{
|
|
1214
|
+
[_hH]: _CT,
|
|
1215
|
+
},
|
|
1216
|
+
],
|
|
1217
|
+
[() => SensitiveBlob, 16],
|
|
1218
|
+
],
|
|
1219
|
+
];
|
|
1220
|
+
var ValidateSolFunctionPackageContentMetadata = [
|
|
1221
|
+
3,
|
|
1222
|
+
n0,
|
|
1223
|
+
_VSFPCM,
|
|
1224
|
+
0,
|
|
1225
|
+
[_v],
|
|
1226
|
+
[() => FunctionArtifactMeta],
|
|
1227
|
+
];
|
|
1228
|
+
var ValidateSolFunctionPackageContentOutput = [
|
|
1229
|
+
3,
|
|
1230
|
+
n0,
|
|
1231
|
+
_VSFPCO,
|
|
1232
|
+
0,
|
|
1233
|
+
[_i, _vI, _vPN, _vP, _vV, _me],
|
|
1234
|
+
[0, 0, 0, 0, 0, () => ValidateSolFunctionPackageContentMetadata],
|
|
1235
|
+
];
|
|
1236
|
+
var ValidateSolNetworkPackageContentInput = [
|
|
1237
|
+
3,
|
|
1238
|
+
n0,
|
|
1239
|
+
_VSNPCI,
|
|
1240
|
+
0,
|
|
1241
|
+
[_nII, _cT, _f],
|
|
1242
|
+
[
|
|
1243
|
+
[0, 1],
|
|
1244
|
+
[
|
|
1245
|
+
0,
|
|
1246
|
+
{
|
|
1247
|
+
[_hH]: _CT,
|
|
1248
|
+
},
|
|
1249
|
+
],
|
|
1250
|
+
[() => SensitiveBlob, 16],
|
|
1251
|
+
],
|
|
1252
|
+
];
|
|
1253
|
+
var ValidateSolNetworkPackageContentMetadata = [
|
|
1254
|
+
3,
|
|
1255
|
+
n0,
|
|
1256
|
+
_VSNPCM,
|
|
1257
|
+
0,
|
|
1258
|
+
[_n],
|
|
1259
|
+
[() => NetworkArtifactMeta],
|
|
1260
|
+
];
|
|
1261
|
+
var ValidateSolNetworkPackageContentOutput = [
|
|
1262
|
+
3,
|
|
1263
|
+
n0,
|
|
1264
|
+
_VSNPCO,
|
|
1265
|
+
0,
|
|
1266
|
+
[_i, _a, _nI, _nNs, _nV, _vPIn, _me],
|
|
1267
|
+
[0, 0, 0, 0, 0, 64 | 0, () => ValidateSolNetworkPackageContentMetadata],
|
|
1268
|
+
];
|
|
1269
|
+
var ValidationException = [
|
|
1270
|
+
-3,
|
|
1271
|
+
n0,
|
|
1272
|
+
_VE,
|
|
1273
|
+
{
|
|
1274
|
+
[_e]: _c,
|
|
1275
|
+
[_hE]: 400,
|
|
1276
|
+
},
|
|
1277
|
+
[_m],
|
|
1278
|
+
[0],
|
|
1279
|
+
];
|
|
1280
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1281
|
+
var __Unit = "unit";
|
|
1282
|
+
var TnbServiceException = [-3, _sm, "TnbServiceException", 0, [], []];
|
|
1283
|
+
schema.TypeRegistry.for(_sm).registerError(TnbServiceException, TnbServiceException$1);
|
|
1284
|
+
var GetSolNetworkOperationTasksList = [
|
|
1285
|
+
1,
|
|
1286
|
+
n0,
|
|
1287
|
+
_GSNOTL,
|
|
1288
|
+
0,
|
|
1289
|
+
() => GetSolNetworkOperationTaskDetails,
|
|
1290
|
+
];
|
|
1291
|
+
var GetSolVnfcResourceInfoList = [1, n0, _GSVRIL, 0, () => GetSolVnfcResourceInfo];
|
|
1292
|
+
var ListSolFunctionInstanceResources = [1, n0, _LSFIR, 0, () => ListSolFunctionInstanceInfo];
|
|
1293
|
+
var ListSolFunctionPackageResources = [1, n0, _LSFPR, 0, () => ListSolFunctionPackageInfo];
|
|
1294
|
+
var ListSolNetworkInstanceResources = [1, n0, _LSNIR, 0, () => ListSolNetworkInstanceInfo];
|
|
1295
|
+
var ListSolNetworkOperationsResources = [1, n0, _LSNOR, 0, () => ListSolNetworkOperationsInfo];
|
|
1296
|
+
var ListSolNetworkPackageResources = [1, n0, _LSNPR, 0, () => ListSolNetworkPackageInfo];
|
|
1297
|
+
var OverrideList = [1, n0, _OL, 0, () => ToscaOverride];
|
|
1298
|
+
var TagMap = [2, n0, _TM, 8, 0, 0];
|
|
1299
|
+
var CancelSolNetworkOperation = [
|
|
1300
|
+
9,
|
|
1301
|
+
n0,
|
|
1302
|
+
_CSNO,
|
|
1303
|
+
{
|
|
1304
|
+
[_h]: ["POST", "/sol/nslcm/v1/ns_lcm_op_occs/{nsLcmOpOccId}/cancel", 202],
|
|
1305
|
+
},
|
|
1306
|
+
() => CancelSolNetworkOperationInput,
|
|
1307
|
+
() => __Unit,
|
|
1308
|
+
];
|
|
1309
|
+
var CreateSolFunctionPackage = [
|
|
1310
|
+
9,
|
|
1311
|
+
n0,
|
|
1312
|
+
_CSFP,
|
|
1313
|
+
{
|
|
1314
|
+
[_h]: ["POST", "/sol/vnfpkgm/v1/vnf_packages", 201],
|
|
1315
|
+
},
|
|
1316
|
+
() => CreateSolFunctionPackageInput,
|
|
1317
|
+
() => CreateSolFunctionPackageOutput,
|
|
1318
|
+
];
|
|
1319
|
+
var CreateSolNetworkInstance = [
|
|
1320
|
+
9,
|
|
1321
|
+
n0,
|
|
1322
|
+
_CSNI,
|
|
1323
|
+
{
|
|
1324
|
+
[_h]: ["POST", "/sol/nslcm/v1/ns_instances", 201],
|
|
1325
|
+
},
|
|
1326
|
+
() => CreateSolNetworkInstanceInput,
|
|
1327
|
+
() => CreateSolNetworkInstanceOutput,
|
|
1328
|
+
];
|
|
1329
|
+
var CreateSolNetworkPackage = [
|
|
1330
|
+
9,
|
|
1331
|
+
n0,
|
|
1332
|
+
_CSNP,
|
|
1333
|
+
{
|
|
1334
|
+
[_h]: ["POST", "/sol/nsd/v1/ns_descriptors", 201],
|
|
1335
|
+
},
|
|
1336
|
+
() => CreateSolNetworkPackageInput,
|
|
1337
|
+
() => CreateSolNetworkPackageOutput,
|
|
1338
|
+
];
|
|
1339
|
+
var DeleteSolFunctionPackage = [
|
|
1340
|
+
9,
|
|
1341
|
+
n0,
|
|
1342
|
+
_DSFP,
|
|
1343
|
+
{
|
|
1344
|
+
[_h]: ["DELETE", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}", 204],
|
|
1345
|
+
},
|
|
1346
|
+
() => DeleteSolFunctionPackageInput,
|
|
1347
|
+
() => __Unit,
|
|
1348
|
+
];
|
|
1349
|
+
var DeleteSolNetworkInstance = [
|
|
1350
|
+
9,
|
|
1351
|
+
n0,
|
|
1352
|
+
_DSNI,
|
|
1353
|
+
{
|
|
1354
|
+
[_h]: ["DELETE", "/sol/nslcm/v1/ns_instances/{nsInstanceId}", 204],
|
|
1355
|
+
},
|
|
1356
|
+
() => DeleteSolNetworkInstanceInput,
|
|
1357
|
+
() => __Unit,
|
|
1358
|
+
];
|
|
1359
|
+
var DeleteSolNetworkPackage = [
|
|
1360
|
+
9,
|
|
1361
|
+
n0,
|
|
1362
|
+
_DSNP,
|
|
1363
|
+
{
|
|
1364
|
+
[_h]: ["DELETE", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}", 204],
|
|
1365
|
+
},
|
|
1366
|
+
() => DeleteSolNetworkPackageInput,
|
|
1367
|
+
() => __Unit,
|
|
1368
|
+
];
|
|
1369
|
+
var GetSolFunctionInstance = [
|
|
1370
|
+
9,
|
|
1371
|
+
n0,
|
|
1372
|
+
_GSFI,
|
|
1373
|
+
{
|
|
1374
|
+
[_h]: ["GET", "/sol/vnflcm/v1/vnf_instances/{vnfInstanceId}", 200],
|
|
1375
|
+
},
|
|
1376
|
+
() => GetSolFunctionInstanceInput,
|
|
1377
|
+
() => GetSolFunctionInstanceOutput,
|
|
1378
|
+
];
|
|
1379
|
+
var GetSolFunctionPackage = [
|
|
1380
|
+
9,
|
|
1381
|
+
n0,
|
|
1382
|
+
_GSFP,
|
|
1383
|
+
{
|
|
1384
|
+
[_h]: ["GET", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}", 200],
|
|
1385
|
+
},
|
|
1386
|
+
() => GetSolFunctionPackageInput,
|
|
1387
|
+
() => GetSolFunctionPackageOutput,
|
|
1388
|
+
];
|
|
1389
|
+
var GetSolFunctionPackageContent = [
|
|
1390
|
+
9,
|
|
1391
|
+
n0,
|
|
1392
|
+
_GSFPC,
|
|
1393
|
+
{
|
|
1394
|
+
[_h]: ["GET", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}/package_content", 200],
|
|
1395
|
+
},
|
|
1396
|
+
() => GetSolFunctionPackageContentInput,
|
|
1397
|
+
() => GetSolFunctionPackageContentOutput,
|
|
1398
|
+
];
|
|
1399
|
+
var GetSolFunctionPackageDescriptor = [
|
|
1400
|
+
9,
|
|
1401
|
+
n0,
|
|
1402
|
+
_GSFPD,
|
|
1403
|
+
{
|
|
1404
|
+
[_h]: ["GET", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}/vnfd", 200],
|
|
1405
|
+
},
|
|
1406
|
+
() => GetSolFunctionPackageDescriptorInput,
|
|
1407
|
+
() => GetSolFunctionPackageDescriptorOutput,
|
|
1408
|
+
];
|
|
1409
|
+
var GetSolNetworkInstance = [
|
|
1410
|
+
9,
|
|
1411
|
+
n0,
|
|
1412
|
+
_GSNI,
|
|
1413
|
+
{
|
|
1414
|
+
[_h]: ["GET", "/sol/nslcm/v1/ns_instances/{nsInstanceId}", 200],
|
|
1415
|
+
},
|
|
1416
|
+
() => GetSolNetworkInstanceInput,
|
|
1417
|
+
() => GetSolNetworkInstanceOutput,
|
|
1418
|
+
];
|
|
1419
|
+
var GetSolNetworkOperation = [
|
|
1420
|
+
9,
|
|
1421
|
+
n0,
|
|
1422
|
+
_GSNO,
|
|
1423
|
+
{
|
|
1424
|
+
[_h]: ["GET", "/sol/nslcm/v1/ns_lcm_op_occs/{nsLcmOpOccId}", 200],
|
|
1425
|
+
},
|
|
1426
|
+
() => GetSolNetworkOperationInput,
|
|
1427
|
+
() => GetSolNetworkOperationOutput,
|
|
1428
|
+
];
|
|
1429
|
+
var GetSolNetworkPackage = [
|
|
1430
|
+
9,
|
|
1431
|
+
n0,
|
|
1432
|
+
_GSNP,
|
|
1433
|
+
{
|
|
1434
|
+
[_h]: ["GET", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}", 200],
|
|
1435
|
+
},
|
|
1436
|
+
() => GetSolNetworkPackageInput,
|
|
1437
|
+
() => GetSolNetworkPackageOutput,
|
|
1438
|
+
];
|
|
1439
|
+
var GetSolNetworkPackageContent = [
|
|
1440
|
+
9,
|
|
1441
|
+
n0,
|
|
1442
|
+
_GSNPC,
|
|
1443
|
+
{
|
|
1444
|
+
[_h]: ["GET", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd_content", 200],
|
|
1445
|
+
},
|
|
1446
|
+
() => GetSolNetworkPackageContentInput,
|
|
1447
|
+
() => GetSolNetworkPackageContentOutput,
|
|
1448
|
+
];
|
|
1449
|
+
var GetSolNetworkPackageDescriptor = [
|
|
1450
|
+
9,
|
|
1451
|
+
n0,
|
|
1452
|
+
_GSNPD,
|
|
1453
|
+
{
|
|
1454
|
+
[_h]: ["GET", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd", 200],
|
|
1455
|
+
},
|
|
1456
|
+
() => GetSolNetworkPackageDescriptorInput,
|
|
1457
|
+
() => GetSolNetworkPackageDescriptorOutput,
|
|
1458
|
+
];
|
|
1459
|
+
var InstantiateSolNetworkInstance = [
|
|
1460
|
+
9,
|
|
1461
|
+
n0,
|
|
1462
|
+
_ISNI,
|
|
1463
|
+
{
|
|
1464
|
+
[_h]: ["POST", "/sol/nslcm/v1/ns_instances/{nsInstanceId}/instantiate", 201],
|
|
1465
|
+
},
|
|
1466
|
+
() => InstantiateSolNetworkInstanceInput,
|
|
1467
|
+
() => InstantiateSolNetworkInstanceOutput,
|
|
1468
|
+
];
|
|
1469
|
+
var ListSolFunctionInstances = [
|
|
1470
|
+
9,
|
|
1471
|
+
n0,
|
|
1472
|
+
_LSFI,
|
|
1473
|
+
{
|
|
1474
|
+
[_h]: ["GET", "/sol/vnflcm/v1/vnf_instances", 200],
|
|
1475
|
+
},
|
|
1476
|
+
() => ListSolFunctionInstancesInput,
|
|
1477
|
+
() => ListSolFunctionInstancesOutput,
|
|
1478
|
+
];
|
|
1479
|
+
var ListSolFunctionPackages = [
|
|
1480
|
+
9,
|
|
1481
|
+
n0,
|
|
1482
|
+
_LSFP,
|
|
1483
|
+
{
|
|
1484
|
+
[_h]: ["GET", "/sol/vnfpkgm/v1/vnf_packages", 200],
|
|
1485
|
+
},
|
|
1486
|
+
() => ListSolFunctionPackagesInput,
|
|
1487
|
+
() => ListSolFunctionPackagesOutput,
|
|
1488
|
+
];
|
|
1489
|
+
var ListSolNetworkInstances = [
|
|
1490
|
+
9,
|
|
1491
|
+
n0,
|
|
1492
|
+
_LSNI,
|
|
1493
|
+
{
|
|
1494
|
+
[_h]: ["GET", "/sol/nslcm/v1/ns_instances", 200],
|
|
1495
|
+
},
|
|
1496
|
+
() => ListSolNetworkInstancesInput,
|
|
1497
|
+
() => ListSolNetworkInstancesOutput,
|
|
1498
|
+
];
|
|
1499
|
+
var ListSolNetworkOperations = [
|
|
1500
|
+
9,
|
|
1501
|
+
n0,
|
|
1502
|
+
_LSNO,
|
|
1503
|
+
{
|
|
1504
|
+
[_h]: ["GET", "/sol/nslcm/v1/ns_lcm_op_occs", 200],
|
|
1505
|
+
},
|
|
1506
|
+
() => ListSolNetworkOperationsInput,
|
|
1507
|
+
() => ListSolNetworkOperationsOutput,
|
|
1508
|
+
];
|
|
1509
|
+
var ListSolNetworkPackages = [
|
|
1510
|
+
9,
|
|
1511
|
+
n0,
|
|
1512
|
+
_LSNP,
|
|
1513
|
+
{
|
|
1514
|
+
[_h]: ["GET", "/sol/nsd/v1/ns_descriptors", 200],
|
|
1515
|
+
},
|
|
1516
|
+
() => ListSolNetworkPackagesInput,
|
|
1517
|
+
() => ListSolNetworkPackagesOutput,
|
|
1518
|
+
];
|
|
1519
|
+
var ListTagsForResource = [
|
|
1520
|
+
9,
|
|
1521
|
+
n0,
|
|
1522
|
+
_LTFR,
|
|
1523
|
+
{
|
|
1524
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1525
|
+
},
|
|
1526
|
+
() => ListTagsForResourceInput,
|
|
1527
|
+
() => ListTagsForResourceOutput,
|
|
1528
|
+
];
|
|
1529
|
+
var PutSolFunctionPackageContent = [
|
|
1530
|
+
9,
|
|
1531
|
+
n0,
|
|
1532
|
+
_PSFPC,
|
|
1533
|
+
{
|
|
1534
|
+
[_h]: ["PUT", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}/package_content", 202],
|
|
1535
|
+
},
|
|
1536
|
+
() => PutSolFunctionPackageContentInput,
|
|
1537
|
+
() => PutSolFunctionPackageContentOutput,
|
|
1538
|
+
];
|
|
1539
|
+
var PutSolNetworkPackageContent = [
|
|
1540
|
+
9,
|
|
1541
|
+
n0,
|
|
1542
|
+
_PSNPC,
|
|
1543
|
+
{
|
|
1544
|
+
[_h]: ["PUT", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd_content", 200],
|
|
1545
|
+
},
|
|
1546
|
+
() => PutSolNetworkPackageContentInput,
|
|
1547
|
+
() => PutSolNetworkPackageContentOutput,
|
|
1548
|
+
];
|
|
1549
|
+
var TagResource = [
|
|
1550
|
+
9,
|
|
1551
|
+
n0,
|
|
1552
|
+
_TR,
|
|
1553
|
+
{
|
|
1554
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1555
|
+
},
|
|
1556
|
+
() => TagResourceInput,
|
|
1557
|
+
() => TagResourceOutput,
|
|
1558
|
+
];
|
|
1559
|
+
var TerminateSolNetworkInstance = [
|
|
1560
|
+
9,
|
|
1561
|
+
n0,
|
|
1562
|
+
_TSNI,
|
|
1563
|
+
{
|
|
1564
|
+
[_h]: ["POST", "/sol/nslcm/v1/ns_instances/{nsInstanceId}/terminate", 201],
|
|
1565
|
+
},
|
|
1566
|
+
() => TerminateSolNetworkInstanceInput,
|
|
1567
|
+
() => TerminateSolNetworkInstanceOutput,
|
|
1568
|
+
];
|
|
1569
|
+
var UntagResource = [
|
|
1570
|
+
9,
|
|
1571
|
+
n0,
|
|
1572
|
+
_UR,
|
|
1573
|
+
{
|
|
1574
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1575
|
+
},
|
|
1576
|
+
() => UntagResourceInput,
|
|
1577
|
+
() => UntagResourceOutput,
|
|
1578
|
+
];
|
|
1579
|
+
var UpdateSolFunctionPackage = [
|
|
1580
|
+
9,
|
|
1581
|
+
n0,
|
|
1582
|
+
_USFP,
|
|
1583
|
+
{
|
|
1584
|
+
[_h]: ["PATCH", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}", 200],
|
|
1585
|
+
},
|
|
1586
|
+
() => UpdateSolFunctionPackageInput,
|
|
1587
|
+
() => UpdateSolFunctionPackageOutput,
|
|
1588
|
+
];
|
|
1589
|
+
var UpdateSolNetworkInstance = [
|
|
1590
|
+
9,
|
|
1591
|
+
n0,
|
|
1592
|
+
_USNI,
|
|
1593
|
+
{
|
|
1594
|
+
[_h]: ["POST", "/sol/nslcm/v1/ns_instances/{nsInstanceId}/update", 201],
|
|
1595
|
+
},
|
|
1596
|
+
() => UpdateSolNetworkInstanceInput,
|
|
1597
|
+
() => UpdateSolNetworkInstanceOutput,
|
|
1598
|
+
];
|
|
1599
|
+
var UpdateSolNetworkPackage = [
|
|
1600
|
+
9,
|
|
1601
|
+
n0,
|
|
1602
|
+
_USNP,
|
|
1603
|
+
{
|
|
1604
|
+
[_h]: ["PATCH", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}", 200],
|
|
1605
|
+
},
|
|
1606
|
+
() => UpdateSolNetworkPackageInput,
|
|
1607
|
+
() => UpdateSolNetworkPackageOutput,
|
|
1608
|
+
];
|
|
1609
|
+
var ValidateSolFunctionPackageContent = [
|
|
1610
|
+
9,
|
|
1611
|
+
n0,
|
|
1612
|
+
_VSFPC,
|
|
1613
|
+
{
|
|
1614
|
+
[_h]: ["PUT", "/sol/vnfpkgm/v1/vnf_packages/{vnfPkgId}/package_content/validate", 202],
|
|
1615
|
+
},
|
|
1616
|
+
() => ValidateSolFunctionPackageContentInput,
|
|
1617
|
+
() => ValidateSolFunctionPackageContentOutput,
|
|
1618
|
+
];
|
|
1619
|
+
var ValidateSolNetworkPackageContent = [
|
|
1620
|
+
9,
|
|
1621
|
+
n0,
|
|
1622
|
+
_VSNPC,
|
|
1623
|
+
{
|
|
1624
|
+
[_h]: ["PUT", "/sol/nsd/v1/ns_descriptors/{nsdInfoId}/nsd_content/validate", 200],
|
|
1625
|
+
},
|
|
1626
|
+
() => ValidateSolNetworkPackageContentInput,
|
|
1627
|
+
() => ValidateSolNetworkPackageContentOutput,
|
|
1628
|
+
];
|
|
1637
1629
|
|
|
1638
1630
|
class CancelSolNetworkOperationCommand extends smithyClient.Command
|
|
1639
1631
|
.classBuilder()
|
|
1640
1632
|
.ep(commonParams)
|
|
1641
1633
|
.m(function (Command, cs, config, o) {
|
|
1642
|
-
return [
|
|
1643
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1644
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1645
|
-
];
|
|
1634
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1646
1635
|
})
|
|
1647
1636
|
.s("TNB", "CancelSolNetworkOperation", {})
|
|
1648
1637
|
.n("TnbClient", "CancelSolNetworkOperationCommand")
|
|
1649
|
-
.
|
|
1650
|
-
.ser(se_CancelSolNetworkOperationCommand)
|
|
1651
|
-
.de(de_CancelSolNetworkOperationCommand)
|
|
1638
|
+
.sc(CancelSolNetworkOperation)
|
|
1652
1639
|
.build() {
|
|
1653
1640
|
}
|
|
1654
1641
|
|
|
@@ -1656,16 +1643,11 @@ class CreateSolFunctionPackageCommand extends smithyClient.Command
|
|
|
1656
1643
|
.classBuilder()
|
|
1657
1644
|
.ep(commonParams)
|
|
1658
1645
|
.m(function (Command, cs, config, o) {
|
|
1659
|
-
return [
|
|
1660
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1661
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1662
|
-
];
|
|
1646
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1663
1647
|
})
|
|
1664
1648
|
.s("TNB", "CreateSolFunctionPackage", {})
|
|
1665
1649
|
.n("TnbClient", "CreateSolFunctionPackageCommand")
|
|
1666
|
-
.
|
|
1667
|
-
.ser(se_CreateSolFunctionPackageCommand)
|
|
1668
|
-
.de(de_CreateSolFunctionPackageCommand)
|
|
1650
|
+
.sc(CreateSolFunctionPackage)
|
|
1669
1651
|
.build() {
|
|
1670
1652
|
}
|
|
1671
1653
|
|
|
@@ -1673,16 +1655,11 @@ class CreateSolNetworkInstanceCommand extends smithyClient.Command
|
|
|
1673
1655
|
.classBuilder()
|
|
1674
1656
|
.ep(commonParams)
|
|
1675
1657
|
.m(function (Command, cs, config, o) {
|
|
1676
|
-
return [
|
|
1677
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1678
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1679
|
-
];
|
|
1658
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1680
1659
|
})
|
|
1681
1660
|
.s("TNB", "CreateSolNetworkInstance", {})
|
|
1682
1661
|
.n("TnbClient", "CreateSolNetworkInstanceCommand")
|
|
1683
|
-
.
|
|
1684
|
-
.ser(se_CreateSolNetworkInstanceCommand)
|
|
1685
|
-
.de(de_CreateSolNetworkInstanceCommand)
|
|
1662
|
+
.sc(CreateSolNetworkInstance)
|
|
1686
1663
|
.build() {
|
|
1687
1664
|
}
|
|
1688
1665
|
|
|
@@ -1690,16 +1667,11 @@ class CreateSolNetworkPackageCommand extends smithyClient.Command
|
|
|
1690
1667
|
.classBuilder()
|
|
1691
1668
|
.ep(commonParams)
|
|
1692
1669
|
.m(function (Command, cs, config, o) {
|
|
1693
|
-
return [
|
|
1694
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1695
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1696
|
-
];
|
|
1670
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1697
1671
|
})
|
|
1698
1672
|
.s("TNB", "CreateSolNetworkPackage", {})
|
|
1699
1673
|
.n("TnbClient", "CreateSolNetworkPackageCommand")
|
|
1700
|
-
.
|
|
1701
|
-
.ser(se_CreateSolNetworkPackageCommand)
|
|
1702
|
-
.de(de_CreateSolNetworkPackageCommand)
|
|
1674
|
+
.sc(CreateSolNetworkPackage)
|
|
1703
1675
|
.build() {
|
|
1704
1676
|
}
|
|
1705
1677
|
|
|
@@ -1707,16 +1679,11 @@ class DeleteSolFunctionPackageCommand extends smithyClient.Command
|
|
|
1707
1679
|
.classBuilder()
|
|
1708
1680
|
.ep(commonParams)
|
|
1709
1681
|
.m(function (Command, cs, config, o) {
|
|
1710
|
-
return [
|
|
1711
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1712
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1713
|
-
];
|
|
1682
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1714
1683
|
})
|
|
1715
1684
|
.s("TNB", "DeleteSolFunctionPackage", {})
|
|
1716
1685
|
.n("TnbClient", "DeleteSolFunctionPackageCommand")
|
|
1717
|
-
.
|
|
1718
|
-
.ser(se_DeleteSolFunctionPackageCommand)
|
|
1719
|
-
.de(de_DeleteSolFunctionPackageCommand)
|
|
1686
|
+
.sc(DeleteSolFunctionPackage)
|
|
1720
1687
|
.build() {
|
|
1721
1688
|
}
|
|
1722
1689
|
|
|
@@ -1724,16 +1691,11 @@ class DeleteSolNetworkInstanceCommand extends smithyClient.Command
|
|
|
1724
1691
|
.classBuilder()
|
|
1725
1692
|
.ep(commonParams)
|
|
1726
1693
|
.m(function (Command, cs, config, o) {
|
|
1727
|
-
return [
|
|
1728
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1729
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1730
|
-
];
|
|
1694
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1731
1695
|
})
|
|
1732
1696
|
.s("TNB", "DeleteSolNetworkInstance", {})
|
|
1733
1697
|
.n("TnbClient", "DeleteSolNetworkInstanceCommand")
|
|
1734
|
-
.
|
|
1735
|
-
.ser(se_DeleteSolNetworkInstanceCommand)
|
|
1736
|
-
.de(de_DeleteSolNetworkInstanceCommand)
|
|
1698
|
+
.sc(DeleteSolNetworkInstance)
|
|
1737
1699
|
.build() {
|
|
1738
1700
|
}
|
|
1739
1701
|
|
|
@@ -1741,16 +1703,11 @@ class DeleteSolNetworkPackageCommand extends smithyClient.Command
|
|
|
1741
1703
|
.classBuilder()
|
|
1742
1704
|
.ep(commonParams)
|
|
1743
1705
|
.m(function (Command, cs, config, o) {
|
|
1744
|
-
return [
|
|
1745
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1746
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1747
|
-
];
|
|
1706
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1748
1707
|
})
|
|
1749
1708
|
.s("TNB", "DeleteSolNetworkPackage", {})
|
|
1750
1709
|
.n("TnbClient", "DeleteSolNetworkPackageCommand")
|
|
1751
|
-
.
|
|
1752
|
-
.ser(se_DeleteSolNetworkPackageCommand)
|
|
1753
|
-
.de(de_DeleteSolNetworkPackageCommand)
|
|
1710
|
+
.sc(DeleteSolNetworkPackage)
|
|
1754
1711
|
.build() {
|
|
1755
1712
|
}
|
|
1756
1713
|
|
|
@@ -1758,16 +1715,11 @@ class GetSolFunctionInstanceCommand extends smithyClient.Command
|
|
|
1758
1715
|
.classBuilder()
|
|
1759
1716
|
.ep(commonParams)
|
|
1760
1717
|
.m(function (Command, cs, config, o) {
|
|
1761
|
-
return [
|
|
1762
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1763
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1764
|
-
];
|
|
1718
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1765
1719
|
})
|
|
1766
1720
|
.s("TNB", "GetSolFunctionInstance", {})
|
|
1767
1721
|
.n("TnbClient", "GetSolFunctionInstanceCommand")
|
|
1768
|
-
.
|
|
1769
|
-
.ser(se_GetSolFunctionInstanceCommand)
|
|
1770
|
-
.de(de_GetSolFunctionInstanceCommand)
|
|
1722
|
+
.sc(GetSolFunctionInstance)
|
|
1771
1723
|
.build() {
|
|
1772
1724
|
}
|
|
1773
1725
|
|
|
@@ -1775,16 +1727,11 @@ class GetSolFunctionPackageCommand extends smithyClient.Command
|
|
|
1775
1727
|
.classBuilder()
|
|
1776
1728
|
.ep(commonParams)
|
|
1777
1729
|
.m(function (Command, cs, config, o) {
|
|
1778
|
-
return [
|
|
1779
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1780
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1781
|
-
];
|
|
1730
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1782
1731
|
})
|
|
1783
1732
|
.s("TNB", "GetSolFunctionPackage", {})
|
|
1784
1733
|
.n("TnbClient", "GetSolFunctionPackageCommand")
|
|
1785
|
-
.
|
|
1786
|
-
.ser(se_GetSolFunctionPackageCommand)
|
|
1787
|
-
.de(de_GetSolFunctionPackageCommand)
|
|
1734
|
+
.sc(GetSolFunctionPackage)
|
|
1788
1735
|
.build() {
|
|
1789
1736
|
}
|
|
1790
1737
|
|
|
@@ -1792,16 +1739,11 @@ class GetSolFunctionPackageContentCommand extends smithyClient.Command
|
|
|
1792
1739
|
.classBuilder()
|
|
1793
1740
|
.ep(commonParams)
|
|
1794
1741
|
.m(function (Command, cs, config, o) {
|
|
1795
|
-
return [
|
|
1796
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1797
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1798
|
-
];
|
|
1742
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1799
1743
|
})
|
|
1800
1744
|
.s("TNB", "GetSolFunctionPackageContent", {})
|
|
1801
1745
|
.n("TnbClient", "GetSolFunctionPackageContentCommand")
|
|
1802
|
-
.
|
|
1803
|
-
.ser(se_GetSolFunctionPackageContentCommand)
|
|
1804
|
-
.de(de_GetSolFunctionPackageContentCommand)
|
|
1746
|
+
.sc(GetSolFunctionPackageContent)
|
|
1805
1747
|
.build() {
|
|
1806
1748
|
}
|
|
1807
1749
|
|
|
@@ -1809,16 +1751,11 @@ class GetSolFunctionPackageDescriptorCommand extends smithyClient.Command
|
|
|
1809
1751
|
.classBuilder()
|
|
1810
1752
|
.ep(commonParams)
|
|
1811
1753
|
.m(function (Command, cs, config, o) {
|
|
1812
|
-
return [
|
|
1813
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1814
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1815
|
-
];
|
|
1754
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1816
1755
|
})
|
|
1817
1756
|
.s("TNB", "GetSolFunctionPackageDescriptor", {})
|
|
1818
1757
|
.n("TnbClient", "GetSolFunctionPackageDescriptorCommand")
|
|
1819
|
-
.
|
|
1820
|
-
.ser(se_GetSolFunctionPackageDescriptorCommand)
|
|
1821
|
-
.de(de_GetSolFunctionPackageDescriptorCommand)
|
|
1758
|
+
.sc(GetSolFunctionPackageDescriptor)
|
|
1822
1759
|
.build() {
|
|
1823
1760
|
}
|
|
1824
1761
|
|
|
@@ -1826,16 +1763,11 @@ class GetSolNetworkInstanceCommand extends smithyClient.Command
|
|
|
1826
1763
|
.classBuilder()
|
|
1827
1764
|
.ep(commonParams)
|
|
1828
1765
|
.m(function (Command, cs, config, o) {
|
|
1829
|
-
return [
|
|
1830
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1831
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1832
|
-
];
|
|
1766
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1833
1767
|
})
|
|
1834
1768
|
.s("TNB", "GetSolNetworkInstance", {})
|
|
1835
1769
|
.n("TnbClient", "GetSolNetworkInstanceCommand")
|
|
1836
|
-
.
|
|
1837
|
-
.ser(se_GetSolNetworkInstanceCommand)
|
|
1838
|
-
.de(de_GetSolNetworkInstanceCommand)
|
|
1770
|
+
.sc(GetSolNetworkInstance)
|
|
1839
1771
|
.build() {
|
|
1840
1772
|
}
|
|
1841
1773
|
|
|
@@ -1843,16 +1775,11 @@ class GetSolNetworkOperationCommand extends smithyClient.Command
|
|
|
1843
1775
|
.classBuilder()
|
|
1844
1776
|
.ep(commonParams)
|
|
1845
1777
|
.m(function (Command, cs, config, o) {
|
|
1846
|
-
return [
|
|
1847
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1848
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1849
|
-
];
|
|
1778
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1850
1779
|
})
|
|
1851
1780
|
.s("TNB", "GetSolNetworkOperation", {})
|
|
1852
1781
|
.n("TnbClient", "GetSolNetworkOperationCommand")
|
|
1853
|
-
.
|
|
1854
|
-
.ser(se_GetSolNetworkOperationCommand)
|
|
1855
|
-
.de(de_GetSolNetworkOperationCommand)
|
|
1782
|
+
.sc(GetSolNetworkOperation)
|
|
1856
1783
|
.build() {
|
|
1857
1784
|
}
|
|
1858
1785
|
|
|
@@ -1860,16 +1787,11 @@ class GetSolNetworkPackageCommand extends smithyClient.Command
|
|
|
1860
1787
|
.classBuilder()
|
|
1861
1788
|
.ep(commonParams)
|
|
1862
1789
|
.m(function (Command, cs, config, o) {
|
|
1863
|
-
return [
|
|
1864
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1865
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1866
|
-
];
|
|
1790
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1867
1791
|
})
|
|
1868
1792
|
.s("TNB", "GetSolNetworkPackage", {})
|
|
1869
1793
|
.n("TnbClient", "GetSolNetworkPackageCommand")
|
|
1870
|
-
.
|
|
1871
|
-
.ser(se_GetSolNetworkPackageCommand)
|
|
1872
|
-
.de(de_GetSolNetworkPackageCommand)
|
|
1794
|
+
.sc(GetSolNetworkPackage)
|
|
1873
1795
|
.build() {
|
|
1874
1796
|
}
|
|
1875
1797
|
|
|
@@ -1877,16 +1799,11 @@ class GetSolNetworkPackageContentCommand extends smithyClient.Command
|
|
|
1877
1799
|
.classBuilder()
|
|
1878
1800
|
.ep(commonParams)
|
|
1879
1801
|
.m(function (Command, cs, config, o) {
|
|
1880
|
-
return [
|
|
1881
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1882
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1883
|
-
];
|
|
1802
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1884
1803
|
})
|
|
1885
1804
|
.s("TNB", "GetSolNetworkPackageContent", {})
|
|
1886
1805
|
.n("TnbClient", "GetSolNetworkPackageContentCommand")
|
|
1887
|
-
.
|
|
1888
|
-
.ser(se_GetSolNetworkPackageContentCommand)
|
|
1889
|
-
.de(de_GetSolNetworkPackageContentCommand)
|
|
1806
|
+
.sc(GetSolNetworkPackageContent)
|
|
1890
1807
|
.build() {
|
|
1891
1808
|
}
|
|
1892
1809
|
|
|
@@ -1894,16 +1811,11 @@ class GetSolNetworkPackageDescriptorCommand extends smithyClient.Command
|
|
|
1894
1811
|
.classBuilder()
|
|
1895
1812
|
.ep(commonParams)
|
|
1896
1813
|
.m(function (Command, cs, config, o) {
|
|
1897
|
-
return [
|
|
1898
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1899
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1900
|
-
];
|
|
1814
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1901
1815
|
})
|
|
1902
1816
|
.s("TNB", "GetSolNetworkPackageDescriptor", {})
|
|
1903
1817
|
.n("TnbClient", "GetSolNetworkPackageDescriptorCommand")
|
|
1904
|
-
.
|
|
1905
|
-
.ser(se_GetSolNetworkPackageDescriptorCommand)
|
|
1906
|
-
.de(de_GetSolNetworkPackageDescriptorCommand)
|
|
1818
|
+
.sc(GetSolNetworkPackageDescriptor)
|
|
1907
1819
|
.build() {
|
|
1908
1820
|
}
|
|
1909
1821
|
|
|
@@ -1911,16 +1823,11 @@ class InstantiateSolNetworkInstanceCommand extends smithyClient.Command
|
|
|
1911
1823
|
.classBuilder()
|
|
1912
1824
|
.ep(commonParams)
|
|
1913
1825
|
.m(function (Command, cs, config, o) {
|
|
1914
|
-
return [
|
|
1915
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1916
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1917
|
-
];
|
|
1826
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1918
1827
|
})
|
|
1919
1828
|
.s("TNB", "InstantiateSolNetworkInstance", {})
|
|
1920
1829
|
.n("TnbClient", "InstantiateSolNetworkInstanceCommand")
|
|
1921
|
-
.
|
|
1922
|
-
.ser(se_InstantiateSolNetworkInstanceCommand)
|
|
1923
|
-
.de(de_InstantiateSolNetworkInstanceCommand)
|
|
1830
|
+
.sc(InstantiateSolNetworkInstance)
|
|
1924
1831
|
.build() {
|
|
1925
1832
|
}
|
|
1926
1833
|
|
|
@@ -1928,16 +1835,11 @@ class ListSolFunctionInstancesCommand extends smithyClient.Command
|
|
|
1928
1835
|
.classBuilder()
|
|
1929
1836
|
.ep(commonParams)
|
|
1930
1837
|
.m(function (Command, cs, config, o) {
|
|
1931
|
-
return [
|
|
1932
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1933
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1934
|
-
];
|
|
1838
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1935
1839
|
})
|
|
1936
1840
|
.s("TNB", "ListSolFunctionInstances", {})
|
|
1937
1841
|
.n("TnbClient", "ListSolFunctionInstancesCommand")
|
|
1938
|
-
.
|
|
1939
|
-
.ser(se_ListSolFunctionInstancesCommand)
|
|
1940
|
-
.de(de_ListSolFunctionInstancesCommand)
|
|
1842
|
+
.sc(ListSolFunctionInstances)
|
|
1941
1843
|
.build() {
|
|
1942
1844
|
}
|
|
1943
1845
|
|
|
@@ -1945,16 +1847,11 @@ class ListSolFunctionPackagesCommand extends smithyClient.Command
|
|
|
1945
1847
|
.classBuilder()
|
|
1946
1848
|
.ep(commonParams)
|
|
1947
1849
|
.m(function (Command, cs, config, o) {
|
|
1948
|
-
return [
|
|
1949
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1950
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1951
|
-
];
|
|
1850
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1952
1851
|
})
|
|
1953
1852
|
.s("TNB", "ListSolFunctionPackages", {})
|
|
1954
1853
|
.n("TnbClient", "ListSolFunctionPackagesCommand")
|
|
1955
|
-
.
|
|
1956
|
-
.ser(se_ListSolFunctionPackagesCommand)
|
|
1957
|
-
.de(de_ListSolFunctionPackagesCommand)
|
|
1854
|
+
.sc(ListSolFunctionPackages)
|
|
1958
1855
|
.build() {
|
|
1959
1856
|
}
|
|
1960
1857
|
|
|
@@ -1962,16 +1859,11 @@ class ListSolNetworkInstancesCommand extends smithyClient.Command
|
|
|
1962
1859
|
.classBuilder()
|
|
1963
1860
|
.ep(commonParams)
|
|
1964
1861
|
.m(function (Command, cs, config, o) {
|
|
1965
|
-
return [
|
|
1966
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1967
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1968
|
-
];
|
|
1862
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1969
1863
|
})
|
|
1970
1864
|
.s("TNB", "ListSolNetworkInstances", {})
|
|
1971
1865
|
.n("TnbClient", "ListSolNetworkInstancesCommand")
|
|
1972
|
-
.
|
|
1973
|
-
.ser(se_ListSolNetworkInstancesCommand)
|
|
1974
|
-
.de(de_ListSolNetworkInstancesCommand)
|
|
1866
|
+
.sc(ListSolNetworkInstances)
|
|
1975
1867
|
.build() {
|
|
1976
1868
|
}
|
|
1977
1869
|
|
|
@@ -1979,16 +1871,11 @@ class ListSolNetworkOperationsCommand extends smithyClient.Command
|
|
|
1979
1871
|
.classBuilder()
|
|
1980
1872
|
.ep(commonParams)
|
|
1981
1873
|
.m(function (Command, cs, config, o) {
|
|
1982
|
-
return [
|
|
1983
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1984
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1985
|
-
];
|
|
1874
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1986
1875
|
})
|
|
1987
1876
|
.s("TNB", "ListSolNetworkOperations", {})
|
|
1988
1877
|
.n("TnbClient", "ListSolNetworkOperationsCommand")
|
|
1989
|
-
.
|
|
1990
|
-
.ser(se_ListSolNetworkOperationsCommand)
|
|
1991
|
-
.de(de_ListSolNetworkOperationsCommand)
|
|
1878
|
+
.sc(ListSolNetworkOperations)
|
|
1992
1879
|
.build() {
|
|
1993
1880
|
}
|
|
1994
1881
|
|
|
@@ -1996,16 +1883,11 @@ class ListSolNetworkPackagesCommand extends smithyClient.Command
|
|
|
1996
1883
|
.classBuilder()
|
|
1997
1884
|
.ep(commonParams)
|
|
1998
1885
|
.m(function (Command, cs, config, o) {
|
|
1999
|
-
return [
|
|
2000
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2001
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2002
|
-
];
|
|
1886
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2003
1887
|
})
|
|
2004
1888
|
.s("TNB", "ListSolNetworkPackages", {})
|
|
2005
1889
|
.n("TnbClient", "ListSolNetworkPackagesCommand")
|
|
2006
|
-
.
|
|
2007
|
-
.ser(se_ListSolNetworkPackagesCommand)
|
|
2008
|
-
.de(de_ListSolNetworkPackagesCommand)
|
|
1890
|
+
.sc(ListSolNetworkPackages)
|
|
2009
1891
|
.build() {
|
|
2010
1892
|
}
|
|
2011
1893
|
|
|
@@ -2013,16 +1895,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2013
1895
|
.classBuilder()
|
|
2014
1896
|
.ep(commonParams)
|
|
2015
1897
|
.m(function (Command, cs, config, o) {
|
|
2016
|
-
return [
|
|
2017
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2018
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2019
|
-
];
|
|
1898
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2020
1899
|
})
|
|
2021
1900
|
.s("TNB", "ListTagsForResource", {})
|
|
2022
1901
|
.n("TnbClient", "ListTagsForResourceCommand")
|
|
2023
|
-
.
|
|
2024
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2025
|
-
.de(de_ListTagsForResourceCommand)
|
|
1902
|
+
.sc(ListTagsForResource)
|
|
2026
1903
|
.build() {
|
|
2027
1904
|
}
|
|
2028
1905
|
|
|
@@ -2030,16 +1907,11 @@ class PutSolFunctionPackageContentCommand extends smithyClient.Command
|
|
|
2030
1907
|
.classBuilder()
|
|
2031
1908
|
.ep(commonParams)
|
|
2032
1909
|
.m(function (Command, cs, config, o) {
|
|
2033
|
-
return [
|
|
2034
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2035
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2036
|
-
];
|
|
1910
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2037
1911
|
})
|
|
2038
1912
|
.s("TNB", "PutSolFunctionPackageContent", {})
|
|
2039
1913
|
.n("TnbClient", "PutSolFunctionPackageContentCommand")
|
|
2040
|
-
.
|
|
2041
|
-
.ser(se_PutSolFunctionPackageContentCommand)
|
|
2042
|
-
.de(de_PutSolFunctionPackageContentCommand)
|
|
1914
|
+
.sc(PutSolFunctionPackageContent)
|
|
2043
1915
|
.build() {
|
|
2044
1916
|
}
|
|
2045
1917
|
|
|
@@ -2047,16 +1919,11 @@ class PutSolNetworkPackageContentCommand extends smithyClient.Command
|
|
|
2047
1919
|
.classBuilder()
|
|
2048
1920
|
.ep(commonParams)
|
|
2049
1921
|
.m(function (Command, cs, config, o) {
|
|
2050
|
-
return [
|
|
2051
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2052
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2053
|
-
];
|
|
1922
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2054
1923
|
})
|
|
2055
1924
|
.s("TNB", "PutSolNetworkPackageContent", {})
|
|
2056
1925
|
.n("TnbClient", "PutSolNetworkPackageContentCommand")
|
|
2057
|
-
.
|
|
2058
|
-
.ser(se_PutSolNetworkPackageContentCommand)
|
|
2059
|
-
.de(de_PutSolNetworkPackageContentCommand)
|
|
1926
|
+
.sc(PutSolNetworkPackageContent)
|
|
2060
1927
|
.build() {
|
|
2061
1928
|
}
|
|
2062
1929
|
|
|
@@ -2064,16 +1931,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2064
1931
|
.classBuilder()
|
|
2065
1932
|
.ep(commonParams)
|
|
2066
1933
|
.m(function (Command, cs, config, o) {
|
|
2067
|
-
return [
|
|
2068
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2069
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2070
|
-
];
|
|
1934
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2071
1935
|
})
|
|
2072
1936
|
.s("TNB", "TagResource", {})
|
|
2073
1937
|
.n("TnbClient", "TagResourceCommand")
|
|
2074
|
-
.
|
|
2075
|
-
.ser(se_TagResourceCommand)
|
|
2076
|
-
.de(de_TagResourceCommand)
|
|
1938
|
+
.sc(TagResource)
|
|
2077
1939
|
.build() {
|
|
2078
1940
|
}
|
|
2079
1941
|
|
|
@@ -2081,16 +1943,11 @@ class TerminateSolNetworkInstanceCommand extends smithyClient.Command
|
|
|
2081
1943
|
.classBuilder()
|
|
2082
1944
|
.ep(commonParams)
|
|
2083
1945
|
.m(function (Command, cs, config, o) {
|
|
2084
|
-
return [
|
|
2085
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2086
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2087
|
-
];
|
|
1946
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2088
1947
|
})
|
|
2089
1948
|
.s("TNB", "TerminateSolNetworkInstance", {})
|
|
2090
1949
|
.n("TnbClient", "TerminateSolNetworkInstanceCommand")
|
|
2091
|
-
.
|
|
2092
|
-
.ser(se_TerminateSolNetworkInstanceCommand)
|
|
2093
|
-
.de(de_TerminateSolNetworkInstanceCommand)
|
|
1950
|
+
.sc(TerminateSolNetworkInstance)
|
|
2094
1951
|
.build() {
|
|
2095
1952
|
}
|
|
2096
1953
|
|
|
@@ -2098,16 +1955,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2098
1955
|
.classBuilder()
|
|
2099
1956
|
.ep(commonParams)
|
|
2100
1957
|
.m(function (Command, cs, config, o) {
|
|
2101
|
-
return [
|
|
2102
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2103
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2104
|
-
];
|
|
1958
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2105
1959
|
})
|
|
2106
1960
|
.s("TNB", "UntagResource", {})
|
|
2107
1961
|
.n("TnbClient", "UntagResourceCommand")
|
|
2108
|
-
.
|
|
2109
|
-
.ser(se_UntagResourceCommand)
|
|
2110
|
-
.de(de_UntagResourceCommand)
|
|
1962
|
+
.sc(UntagResource)
|
|
2111
1963
|
.build() {
|
|
2112
1964
|
}
|
|
2113
1965
|
|
|
@@ -2115,16 +1967,11 @@ class UpdateSolFunctionPackageCommand extends smithyClient.Command
|
|
|
2115
1967
|
.classBuilder()
|
|
2116
1968
|
.ep(commonParams)
|
|
2117
1969
|
.m(function (Command, cs, config, o) {
|
|
2118
|
-
return [
|
|
2119
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2120
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2121
|
-
];
|
|
1970
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2122
1971
|
})
|
|
2123
1972
|
.s("TNB", "UpdateSolFunctionPackage", {})
|
|
2124
1973
|
.n("TnbClient", "UpdateSolFunctionPackageCommand")
|
|
2125
|
-
.
|
|
2126
|
-
.ser(se_UpdateSolFunctionPackageCommand)
|
|
2127
|
-
.de(de_UpdateSolFunctionPackageCommand)
|
|
1974
|
+
.sc(UpdateSolFunctionPackage)
|
|
2128
1975
|
.build() {
|
|
2129
1976
|
}
|
|
2130
1977
|
|
|
@@ -2132,16 +1979,11 @@ class UpdateSolNetworkInstanceCommand extends smithyClient.Command
|
|
|
2132
1979
|
.classBuilder()
|
|
2133
1980
|
.ep(commonParams)
|
|
2134
1981
|
.m(function (Command, cs, config, o) {
|
|
2135
|
-
return [
|
|
2136
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2137
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2138
|
-
];
|
|
1982
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2139
1983
|
})
|
|
2140
1984
|
.s("TNB", "UpdateSolNetworkInstance", {})
|
|
2141
1985
|
.n("TnbClient", "UpdateSolNetworkInstanceCommand")
|
|
2142
|
-
.
|
|
2143
|
-
.ser(se_UpdateSolNetworkInstanceCommand)
|
|
2144
|
-
.de(de_UpdateSolNetworkInstanceCommand)
|
|
1986
|
+
.sc(UpdateSolNetworkInstance)
|
|
2145
1987
|
.build() {
|
|
2146
1988
|
}
|
|
2147
1989
|
|
|
@@ -2149,16 +1991,11 @@ class UpdateSolNetworkPackageCommand extends smithyClient.Command
|
|
|
2149
1991
|
.classBuilder()
|
|
2150
1992
|
.ep(commonParams)
|
|
2151
1993
|
.m(function (Command, cs, config, o) {
|
|
2152
|
-
return [
|
|
2153
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2154
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2155
|
-
];
|
|
1994
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2156
1995
|
})
|
|
2157
1996
|
.s("TNB", "UpdateSolNetworkPackage", {})
|
|
2158
1997
|
.n("TnbClient", "UpdateSolNetworkPackageCommand")
|
|
2159
|
-
.
|
|
2160
|
-
.ser(se_UpdateSolNetworkPackageCommand)
|
|
2161
|
-
.de(de_UpdateSolNetworkPackageCommand)
|
|
1998
|
+
.sc(UpdateSolNetworkPackage)
|
|
2162
1999
|
.build() {
|
|
2163
2000
|
}
|
|
2164
2001
|
|
|
@@ -2166,16 +2003,11 @@ class ValidateSolFunctionPackageContentCommand extends smithyClient.Command
|
|
|
2166
2003
|
.classBuilder()
|
|
2167
2004
|
.ep(commonParams)
|
|
2168
2005
|
.m(function (Command, cs, config, o) {
|
|
2169
|
-
return [
|
|
2170
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2171
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2172
|
-
];
|
|
2006
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2173
2007
|
})
|
|
2174
2008
|
.s("TNB", "ValidateSolFunctionPackageContent", {})
|
|
2175
2009
|
.n("TnbClient", "ValidateSolFunctionPackageContentCommand")
|
|
2176
|
-
.
|
|
2177
|
-
.ser(se_ValidateSolFunctionPackageContentCommand)
|
|
2178
|
-
.de(de_ValidateSolFunctionPackageContentCommand)
|
|
2010
|
+
.sc(ValidateSolFunctionPackageContent)
|
|
2179
2011
|
.build() {
|
|
2180
2012
|
}
|
|
2181
2013
|
|
|
@@ -2183,16 +2015,11 @@ class ValidateSolNetworkPackageContentCommand extends smithyClient.Command
|
|
|
2183
2015
|
.classBuilder()
|
|
2184
2016
|
.ep(commonParams)
|
|
2185
2017
|
.m(function (Command, cs, config, o) {
|
|
2186
|
-
return [
|
|
2187
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2188
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2189
|
-
];
|
|
2018
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2190
2019
|
})
|
|
2191
2020
|
.s("TNB", "ValidateSolNetworkPackageContent", {})
|
|
2192
2021
|
.n("TnbClient", "ValidateSolNetworkPackageContentCommand")
|
|
2193
|
-
.
|
|
2194
|
-
.ser(se_ValidateSolNetworkPackageContentCommand)
|
|
2195
|
-
.de(de_ValidateSolNetworkPackageContentCommand)
|
|
2022
|
+
.sc(ValidateSolNetworkPackageContent)
|
|
2196
2023
|
.build() {
|
|
2197
2024
|
}
|
|
2198
2025
|
|
|
@@ -2253,39 +2080,26 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2253
2080
|
enumerable: true,
|
|
2254
2081
|
get: function () { return smithyClient.Client; }
|
|
2255
2082
|
});
|
|
2256
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2083
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2257
2084
|
exports.CancelSolNetworkOperationCommand = CancelSolNetworkOperationCommand;
|
|
2258
2085
|
exports.CreateSolFunctionPackageCommand = CreateSolFunctionPackageCommand;
|
|
2259
|
-
exports.CreateSolFunctionPackageInputFilterSensitiveLog = CreateSolFunctionPackageInputFilterSensitiveLog;
|
|
2260
|
-
exports.CreateSolFunctionPackageOutputFilterSensitiveLog = CreateSolFunctionPackageOutputFilterSensitiveLog;
|
|
2261
2086
|
exports.CreateSolNetworkInstanceCommand = CreateSolNetworkInstanceCommand;
|
|
2262
|
-
exports.CreateSolNetworkInstanceInputFilterSensitiveLog = CreateSolNetworkInstanceInputFilterSensitiveLog;
|
|
2263
|
-
exports.CreateSolNetworkInstanceOutputFilterSensitiveLog = CreateSolNetworkInstanceOutputFilterSensitiveLog;
|
|
2264
2087
|
exports.CreateSolNetworkPackageCommand = CreateSolNetworkPackageCommand;
|
|
2265
|
-
exports.CreateSolNetworkPackageInputFilterSensitiveLog = CreateSolNetworkPackageInputFilterSensitiveLog;
|
|
2266
|
-
exports.CreateSolNetworkPackageOutputFilterSensitiveLog = CreateSolNetworkPackageOutputFilterSensitiveLog;
|
|
2267
2088
|
exports.DeleteSolFunctionPackageCommand = DeleteSolFunctionPackageCommand;
|
|
2268
2089
|
exports.DeleteSolNetworkInstanceCommand = DeleteSolNetworkInstanceCommand;
|
|
2269
2090
|
exports.DeleteSolNetworkPackageCommand = DeleteSolNetworkPackageCommand;
|
|
2270
2091
|
exports.DescriptorContentType = DescriptorContentType;
|
|
2271
2092
|
exports.GetSolFunctionInstanceCommand = GetSolFunctionInstanceCommand;
|
|
2272
|
-
exports.GetSolFunctionInstanceOutputFilterSensitiveLog = GetSolFunctionInstanceOutputFilterSensitiveLog;
|
|
2273
2093
|
exports.GetSolFunctionPackageCommand = GetSolFunctionPackageCommand;
|
|
2274
2094
|
exports.GetSolFunctionPackageContentCommand = GetSolFunctionPackageContentCommand;
|
|
2275
2095
|
exports.GetSolFunctionPackageDescriptorCommand = GetSolFunctionPackageDescriptorCommand;
|
|
2276
|
-
exports.GetSolFunctionPackageOutputFilterSensitiveLog = GetSolFunctionPackageOutputFilterSensitiveLog;
|
|
2277
2096
|
exports.GetSolNetworkInstanceCommand = GetSolNetworkInstanceCommand;
|
|
2278
|
-
exports.GetSolNetworkInstanceOutputFilterSensitiveLog = GetSolNetworkInstanceOutputFilterSensitiveLog;
|
|
2279
2097
|
exports.GetSolNetworkOperationCommand = GetSolNetworkOperationCommand;
|
|
2280
|
-
exports.GetSolNetworkOperationOutputFilterSensitiveLog = GetSolNetworkOperationOutputFilterSensitiveLog;
|
|
2281
2098
|
exports.GetSolNetworkPackageCommand = GetSolNetworkPackageCommand;
|
|
2282
2099
|
exports.GetSolNetworkPackageContentCommand = GetSolNetworkPackageContentCommand;
|
|
2283
2100
|
exports.GetSolNetworkPackageDescriptorCommand = GetSolNetworkPackageDescriptorCommand;
|
|
2284
|
-
exports.GetSolNetworkPackageOutputFilterSensitiveLog = GetSolNetworkPackageOutputFilterSensitiveLog;
|
|
2285
2101
|
exports.InstantiateSolNetworkInstanceCommand = InstantiateSolNetworkInstanceCommand;
|
|
2286
|
-
exports.
|
|
2287
|
-
exports.InstantiateSolNetworkInstanceOutputFilterSensitiveLog = InstantiateSolNetworkInstanceOutputFilterSensitiveLog;
|
|
2288
|
-
exports.InternalServerException = InternalServerException;
|
|
2102
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2289
2103
|
exports.LcmOperationType = LcmOperationType;
|
|
2290
2104
|
exports.ListSolFunctionInstancesCommand = ListSolFunctionInstancesCommand;
|
|
2291
2105
|
exports.ListSolFunctionPackagesCommand = ListSolFunctionPackagesCommand;
|
|
@@ -2293,7 +2107,6 @@ exports.ListSolNetworkInstancesCommand = ListSolNetworkInstancesCommand;
|
|
|
2293
2107
|
exports.ListSolNetworkOperationsCommand = ListSolNetworkOperationsCommand;
|
|
2294
2108
|
exports.ListSolNetworkPackagesCommand = ListSolNetworkPackagesCommand;
|
|
2295
2109
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2296
|
-
exports.ListTagsForResourceOutputFilterSensitiveLog = ListTagsForResourceOutputFilterSensitiveLog;
|
|
2297
2110
|
exports.NsLcmOperationState = NsLcmOperationState;
|
|
2298
2111
|
exports.NsState = NsState;
|
|
2299
2112
|
exports.NsdOnboardingState = NsdOnboardingState;
|
|
@@ -2303,34 +2116,25 @@ exports.OnboardingState = OnboardingState;
|
|
|
2303
2116
|
exports.OperationalState = OperationalState;
|
|
2304
2117
|
exports.PackageContentType = PackageContentType;
|
|
2305
2118
|
exports.PutSolFunctionPackageContentCommand = PutSolFunctionPackageContentCommand;
|
|
2306
|
-
exports.PutSolFunctionPackageContentInputFilterSensitiveLog = PutSolFunctionPackageContentInputFilterSensitiveLog;
|
|
2307
2119
|
exports.PutSolNetworkPackageContentCommand = PutSolNetworkPackageContentCommand;
|
|
2308
|
-
exports.
|
|
2309
|
-
exports.
|
|
2310
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2120
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2121
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2311
2122
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2312
|
-
exports.TagResourceInputFilterSensitiveLog = TagResourceInputFilterSensitiveLog;
|
|
2313
2123
|
exports.TaskStatus = TaskStatus;
|
|
2314
2124
|
exports.TerminateSolNetworkInstanceCommand = TerminateSolNetworkInstanceCommand;
|
|
2315
|
-
exports.
|
|
2316
|
-
exports.TerminateSolNetworkInstanceOutputFilterSensitiveLog = TerminateSolNetworkInstanceOutputFilterSensitiveLog;
|
|
2317
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2125
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2318
2126
|
exports.Tnb = Tnb;
|
|
2319
2127
|
exports.TnbClient = TnbClient;
|
|
2320
|
-
exports.TnbServiceException = TnbServiceException;
|
|
2128
|
+
exports.TnbServiceException = TnbServiceException$1;
|
|
2321
2129
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2322
2130
|
exports.UpdateSolFunctionPackageCommand = UpdateSolFunctionPackageCommand;
|
|
2323
2131
|
exports.UpdateSolNetworkInstanceCommand = UpdateSolNetworkInstanceCommand;
|
|
2324
|
-
exports.UpdateSolNetworkInstanceInputFilterSensitiveLog = UpdateSolNetworkInstanceInputFilterSensitiveLog;
|
|
2325
|
-
exports.UpdateSolNetworkInstanceOutputFilterSensitiveLog = UpdateSolNetworkInstanceOutputFilterSensitiveLog;
|
|
2326
2132
|
exports.UpdateSolNetworkPackageCommand = UpdateSolNetworkPackageCommand;
|
|
2327
2133
|
exports.UpdateSolNetworkType = UpdateSolNetworkType;
|
|
2328
2134
|
exports.UsageState = UsageState;
|
|
2329
2135
|
exports.ValidateSolFunctionPackageContentCommand = ValidateSolFunctionPackageContentCommand;
|
|
2330
|
-
exports.ValidateSolFunctionPackageContentInputFilterSensitiveLog = ValidateSolFunctionPackageContentInputFilterSensitiveLog;
|
|
2331
2136
|
exports.ValidateSolNetworkPackageContentCommand = ValidateSolNetworkPackageContentCommand;
|
|
2332
|
-
exports.
|
|
2333
|
-
exports.ValidationException = ValidationException;
|
|
2137
|
+
exports.ValidationException = ValidationException$1;
|
|
2334
2138
|
exports.VnfInstantiationState = VnfInstantiationState;
|
|
2335
2139
|
exports.VnfOperationalState = VnfOperationalState;
|
|
2336
2140
|
exports.paginateListSolFunctionInstances = paginateListSolFunctionInstances;
|