@aws-sdk/client-tnb 3.687.0 → 3.691.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-types/models/models_0.d.ts +124 -124
- package/dist-types/ts3.4/models/models_0.d.ts +124 -124
- package/package.json +7 -7
|
@@ -80,7 +80,7 @@ export interface CreateSolFunctionPackageInput {
|
|
|
80
80
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
tags?: Record<string, string
|
|
83
|
+
tags?: Record<string, string> | undefined;
|
|
84
84
|
}
|
|
85
85
|
/**
|
|
86
86
|
* @public
|
|
@@ -152,7 +152,7 @@ export interface CreateSolFunctionPackageOutput {
|
|
|
152
152
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
tags?: Record<string, string
|
|
155
|
+
tags?: Record<string, string> | undefined;
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* <p>Service quotas have been exceeded.</p>
|
|
@@ -184,12 +184,12 @@ export interface CreateSolNetworkInstanceInput {
|
|
|
184
184
|
* <p>Network instance description.</p>
|
|
185
185
|
* @public
|
|
186
186
|
*/
|
|
187
|
-
nsDescription?: string;
|
|
187
|
+
nsDescription?: string | undefined;
|
|
188
188
|
/**
|
|
189
189
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
tags?: Record<string, string
|
|
192
|
+
tags?: Record<string, string> | undefined;
|
|
193
193
|
}
|
|
194
194
|
/**
|
|
195
195
|
* @public
|
|
@@ -219,7 +219,7 @@ export interface CreateSolNetworkInstanceOutput {
|
|
|
219
219
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
220
220
|
* @public
|
|
221
221
|
*/
|
|
222
|
-
tags?: Record<string, string
|
|
222
|
+
tags?: Record<string, string> | undefined;
|
|
223
223
|
}
|
|
224
224
|
/**
|
|
225
225
|
* @public
|
|
@@ -229,7 +229,7 @@ export interface CreateSolNetworkPackageInput {
|
|
|
229
229
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
tags?: Record<string, string
|
|
232
|
+
tags?: Record<string, string> | undefined;
|
|
233
233
|
}
|
|
234
234
|
/**
|
|
235
235
|
* @public
|
|
@@ -301,7 +301,7 @@ export interface CreateSolNetworkPackageOutput {
|
|
|
301
301
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
tags?: Record<string, string
|
|
304
|
+
tags?: Record<string, string> | undefined;
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
307
307
|
* @public
|
|
@@ -353,12 +353,12 @@ export interface ErrorInfo {
|
|
|
353
353
|
* <p>Error cause.</p>
|
|
354
354
|
* @public
|
|
355
355
|
*/
|
|
356
|
-
cause?: string;
|
|
356
|
+
cause?: string | undefined;
|
|
357
357
|
/**
|
|
358
358
|
* <p>Error details.</p>
|
|
359
359
|
* @public
|
|
360
360
|
*/
|
|
361
|
-
details?: string;
|
|
361
|
+
details?: string | undefined;
|
|
362
362
|
}
|
|
363
363
|
/**
|
|
364
364
|
* <p>Overrides of the TOSCA node.</p>
|
|
@@ -369,12 +369,12 @@ export interface ToscaOverride {
|
|
|
369
369
|
* <p>Name of the TOSCA override.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
name?: string;
|
|
372
|
+
name?: string | undefined;
|
|
373
373
|
/**
|
|
374
374
|
* <p>Default value for the override.</p>
|
|
375
375
|
* @public
|
|
376
376
|
*/
|
|
377
|
-
defaultValue?: string;
|
|
377
|
+
defaultValue?: string | undefined;
|
|
378
378
|
}
|
|
379
379
|
/**
|
|
380
380
|
* <p>Metadata for function package artifacts.</p>
|
|
@@ -386,7 +386,7 @@ export interface FunctionArtifactMeta {
|
|
|
386
386
|
* <p>Lists of function package overrides.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
overrides?: ToscaOverride[];
|
|
389
|
+
overrides?: ToscaOverride[] | undefined;
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* @public
|
|
@@ -408,17 +408,17 @@ export interface GetSolVnfcResourceInfoMetadata {
|
|
|
408
408
|
* <p>Information about the node group.</p>
|
|
409
409
|
* @public
|
|
410
410
|
*/
|
|
411
|
-
nodeGroup?: string;
|
|
411
|
+
nodeGroup?: string | undefined;
|
|
412
412
|
/**
|
|
413
413
|
* <p>Information about the cluster.</p>
|
|
414
414
|
* @public
|
|
415
415
|
*/
|
|
416
|
-
cluster?: string;
|
|
416
|
+
cluster?: string | undefined;
|
|
417
417
|
/**
|
|
418
418
|
* <p>Information about the helm chart.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
helmChart?: string;
|
|
421
|
+
helmChart?: string | undefined;
|
|
422
422
|
}
|
|
423
423
|
/**
|
|
424
424
|
* <p>Details of resource associated with a network function.</p>
|
|
@@ -430,7 +430,7 @@ export interface GetSolVnfcResourceInfo {
|
|
|
430
430
|
* <p>The metadata of the network function compute.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
metadata?: GetSolVnfcResourceInfoMetadata;
|
|
433
|
+
metadata?: GetSolVnfcResourceInfoMetadata | undefined;
|
|
434
434
|
}
|
|
435
435
|
/**
|
|
436
436
|
* @public
|
|
@@ -454,12 +454,12 @@ export interface GetSolVnfInfo {
|
|
|
454
454
|
* <p>State of the network function instance.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
vnfState?: VnfOperationalState;
|
|
457
|
+
vnfState?: VnfOperationalState | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>Compute info used by the network function instance.</p>
|
|
460
460
|
* @public
|
|
461
461
|
*/
|
|
462
|
-
vnfcResourceInfo?: GetSolVnfcResourceInfo[];
|
|
462
|
+
vnfcResourceInfo?: GetSolVnfcResourceInfo[] | undefined;
|
|
463
463
|
}
|
|
464
464
|
/**
|
|
465
465
|
* @public
|
|
@@ -523,17 +523,17 @@ export interface GetSolFunctionInstanceOutput {
|
|
|
523
523
|
* <p>Network function provider.</p>
|
|
524
524
|
* @public
|
|
525
525
|
*/
|
|
526
|
-
vnfProvider?: string;
|
|
526
|
+
vnfProvider?: string | undefined;
|
|
527
527
|
/**
|
|
528
528
|
* <p>Network function product name.</p>
|
|
529
529
|
* @public
|
|
530
530
|
*/
|
|
531
|
-
vnfProductName?: string;
|
|
531
|
+
vnfProductName?: string | undefined;
|
|
532
532
|
/**
|
|
533
533
|
* <p>Function package descriptor version.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
vnfdVersion?: string;
|
|
536
|
+
vnfdVersion?: string | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* <p>Network function instantiation state.</p>
|
|
539
539
|
* @public
|
|
@@ -544,7 +544,7 @@ export interface GetSolFunctionInstanceOutput {
|
|
|
544
544
|
* <p>A network function instance is a function in a function package .</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
instantiatedVnfInfo?: GetSolVnfInfo;
|
|
547
|
+
instantiatedVnfInfo?: GetSolVnfInfo | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* <p>The metadata of a network function instance.</p>
|
|
550
550
|
* <p>A network function instance is a function in a function package .</p>
|
|
@@ -555,7 +555,7 @@ export interface GetSolFunctionInstanceOutput {
|
|
|
555
555
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
tags?: Record<string, string
|
|
558
|
+
tags?: Record<string, string> | undefined;
|
|
559
559
|
}
|
|
560
560
|
/**
|
|
561
561
|
* @public
|
|
@@ -577,7 +577,7 @@ export interface GetSolFunctionPackageMetadata {
|
|
|
577
577
|
* <p>Metadata related to the function package descriptor of the function package.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
vnfd?: FunctionArtifactMeta;
|
|
580
|
+
vnfd?: FunctionArtifactMeta | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>The date that the resource was created.</p>
|
|
583
583
|
* @public
|
|
@@ -622,33 +622,33 @@ export interface GetSolFunctionPackageOutput {
|
|
|
622
622
|
* <p>Function package descriptor ID.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
vnfdId?: string;
|
|
625
|
+
vnfdId?: string | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>Network function provider.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
vnfProvider?: string;
|
|
630
|
+
vnfProvider?: string | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* <p>Network function product name.</p>
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
vnfProductName?: string;
|
|
635
|
+
vnfProductName?: string | undefined;
|
|
636
636
|
/**
|
|
637
637
|
* <p>Function package descriptor version.</p>
|
|
638
638
|
* @public
|
|
639
639
|
*/
|
|
640
|
-
vnfdVersion?: string;
|
|
640
|
+
vnfdVersion?: string | undefined;
|
|
641
641
|
/**
|
|
642
642
|
* <p>Metadata related to the function package.</p>
|
|
643
643
|
* <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.</p>
|
|
644
644
|
* @public
|
|
645
645
|
*/
|
|
646
|
-
metadata?: GetSolFunctionPackageMetadata;
|
|
646
|
+
metadata?: GetSolFunctionPackageMetadata | undefined;
|
|
647
647
|
/**
|
|
648
648
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
649
649
|
* @public
|
|
650
650
|
*/
|
|
651
|
-
tags?: Record<string, string
|
|
651
|
+
tags?: Record<string, string> | undefined;
|
|
652
652
|
}
|
|
653
653
|
/**
|
|
654
654
|
* @public
|
|
@@ -684,12 +684,12 @@ export interface GetSolFunctionPackageContentOutput {
|
|
|
684
684
|
* <p>Indicates the media type of the resource.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
contentType?: PackageContentType;
|
|
687
|
+
contentType?: PackageContentType | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>Contents of the function package.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
packageContent?: Uint8Array;
|
|
692
|
+
packageContent?: Uint8Array | undefined;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
695
695
|
* @public
|
|
@@ -715,12 +715,12 @@ export interface GetSolFunctionPackageDescriptorOutput {
|
|
|
715
715
|
* <p>Indicates the media type of the resource.</p>
|
|
716
716
|
* @public
|
|
717
717
|
*/
|
|
718
|
-
contentType?: DescriptorContentType;
|
|
718
|
+
contentType?: DescriptorContentType | undefined;
|
|
719
719
|
/**
|
|
720
720
|
* <p>Contents of the function package descriptor.</p>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
vnfd?: Uint8Array;
|
|
723
|
+
vnfd?: Uint8Array | undefined;
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
726
|
* <p>Information about a network function.</p>
|
|
@@ -732,7 +732,7 @@ export interface GetSolInstantiatedVnfInfo {
|
|
|
732
732
|
* <p>State of the network function.</p>
|
|
733
733
|
* @public
|
|
734
734
|
*/
|
|
735
|
-
vnfState?: VnfOperationalState;
|
|
735
|
+
vnfState?: VnfOperationalState | undefined;
|
|
736
736
|
}
|
|
737
737
|
/**
|
|
738
738
|
* @public
|
|
@@ -832,13 +832,13 @@ export interface GetSolNetworkInstanceOutput {
|
|
|
832
832
|
* <p>Network instance state.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
nsState?: NsState;
|
|
835
|
+
nsState?: NsState | undefined;
|
|
836
836
|
/**
|
|
837
837
|
* <p>Lifecycle management operation details on the network instance.</p>
|
|
838
838
|
* <p>Lifecycle management operations are deploy, update, or delete operations.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
lcmOpInfo?: LcmOperationInfo;
|
|
841
|
+
lcmOpInfo?: LcmOperationInfo | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>The metadata of a network instance.</p>
|
|
844
844
|
* <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
|
|
@@ -849,7 +849,7 @@ export interface GetSolNetworkInstanceOutput {
|
|
|
849
849
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
850
850
|
* @public
|
|
851
851
|
*/
|
|
852
|
-
tags?: Record<string, string
|
|
852
|
+
tags?: Record<string, string> | undefined;
|
|
853
853
|
}
|
|
854
854
|
/**
|
|
855
855
|
* @public
|
|
@@ -875,7 +875,7 @@ export interface ProblemDetails {
|
|
|
875
875
|
* <p>A human-readable title of the problem type.</p>
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
title?: string;
|
|
878
|
+
title?: string | undefined;
|
|
879
879
|
}
|
|
880
880
|
/**
|
|
881
881
|
* @public
|
|
@@ -904,7 +904,7 @@ export interface InstantiateMetadata {
|
|
|
904
904
|
* <p>The configurable properties used during instantiation.</p>
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
additionalParamsForNs?: __DocumentType;
|
|
907
|
+
additionalParamsForNs?: __DocumentType | undefined;
|
|
908
908
|
}
|
|
909
909
|
/**
|
|
910
910
|
* <p>Metadata related to the configuration properties used during update of a specific
|
|
@@ -937,7 +937,7 @@ export interface UpdateNsMetadata {
|
|
|
937
937
|
* <p>The configurable properties used during update.</p>
|
|
938
938
|
* @public
|
|
939
939
|
*/
|
|
940
|
-
additionalParamsForNs?: __DocumentType;
|
|
940
|
+
additionalParamsForNs?: __DocumentType | undefined;
|
|
941
941
|
}
|
|
942
942
|
/**
|
|
943
943
|
* <p>Metadata related to a network operation occurrence.</p>
|
|
@@ -951,20 +951,20 @@ export interface GetSolNetworkOperationMetadata {
|
|
|
951
951
|
* updateType is <code>UPDATE_NS</code>.</p>
|
|
952
952
|
* @public
|
|
953
953
|
*/
|
|
954
|
-
updateNsMetadata?: UpdateNsMetadata;
|
|
954
|
+
updateNsMetadata?: UpdateNsMetadata | undefined;
|
|
955
955
|
/**
|
|
956
956
|
* <p>Metadata related to the network operation occurrence for network function updates in a network instance.
|
|
957
957
|
* This is populated only if the lcmOperationType is <code>UPDATE</code> and the
|
|
958
958
|
* updateType is <code>MODIFY_VNF_INFORMATION</code>.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
modifyVnfInfoMetadata?: ModifyVnfInfoMetadata;
|
|
961
|
+
modifyVnfInfoMetadata?: ModifyVnfInfoMetadata | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* <p>Metadata related to the network operation occurrence for network instantiation.
|
|
964
964
|
* This is populated only if the lcmOperationType is <code>INSTANTIATE</code>.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
instantiateMetadata?: InstantiateMetadata;
|
|
967
|
+
instantiateMetadata?: InstantiateMetadata | undefined;
|
|
968
968
|
/**
|
|
969
969
|
* <p>The date that the resource was created.</p>
|
|
970
970
|
* @public
|
|
@@ -1018,32 +1018,32 @@ export interface GetSolNetworkOperationTaskDetails {
|
|
|
1018
1018
|
* <p>Task name.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
taskName?: string;
|
|
1021
|
+
taskName?: string | undefined;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* <p>Context for the network operation task.</p>
|
|
1024
1024
|
* @public
|
|
1025
1025
|
*/
|
|
1026
|
-
taskContext?: Record<string, string
|
|
1026
|
+
taskContext?: Record<string, string> | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* <p>Task error details.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
taskErrorDetails?: ErrorInfo;
|
|
1031
|
+
taskErrorDetails?: ErrorInfo | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>Task status.</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
taskStatus?: TaskStatus;
|
|
1036
|
+
taskStatus?: TaskStatus | undefined;
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p>Task start time.</p>
|
|
1039
1039
|
* @public
|
|
1040
1040
|
*/
|
|
1041
|
-
taskStartTime?: Date;
|
|
1041
|
+
taskStartTime?: Date | undefined;
|
|
1042
1042
|
/**
|
|
1043
1043
|
* <p>Task end time.</p>
|
|
1044
1044
|
* @public
|
|
1045
1045
|
*/
|
|
1046
|
-
taskEndTime?: Date;
|
|
1046
|
+
taskEndTime?: Date | undefined;
|
|
1047
1047
|
}
|
|
1048
1048
|
/**
|
|
1049
1049
|
* @public
|
|
@@ -1065,7 +1065,7 @@ export interface GetSolNetworkOperationOutput {
|
|
|
1065
1065
|
* <p>ID of this network operation occurrence.</p>
|
|
1066
1066
|
* @public
|
|
1067
1067
|
*/
|
|
1068
|
-
id?: string;
|
|
1068
|
+
id?: string | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>Network operation ARN.</p>
|
|
1071
1071
|
* @public
|
|
@@ -1075,43 +1075,43 @@ export interface GetSolNetworkOperationOutput {
|
|
|
1075
1075
|
* <p>The state of the network operation.</p>
|
|
1076
1076
|
* @public
|
|
1077
1077
|
*/
|
|
1078
|
-
operationState?: NsLcmOperationState;
|
|
1078
|
+
operationState?: NsLcmOperationState | undefined;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* <p>ID of the network operation instance.</p>
|
|
1081
1081
|
* @public
|
|
1082
1082
|
*/
|
|
1083
|
-
nsInstanceId?: string;
|
|
1083
|
+
nsInstanceId?: string | undefined;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* <p>Type of the operation represented by this occurrence.</p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
lcmOperationType?: LcmOperationType;
|
|
1088
|
+
lcmOperationType?: LcmOperationType | undefined;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* <p>Type of the update. Only present if the network operation
|
|
1091
1091
|
* lcmOperationType is <code>UPDATE</code>.</p>
|
|
1092
1092
|
* @public
|
|
1093
1093
|
*/
|
|
1094
|
-
updateType?: UpdateSolNetworkType;
|
|
1094
|
+
updateType?: UpdateSolNetworkType | undefined;
|
|
1095
1095
|
/**
|
|
1096
1096
|
* <p>Error related to this specific network operation occurrence.</p>
|
|
1097
1097
|
* @public
|
|
1098
1098
|
*/
|
|
1099
|
-
error?: ProblemDetails;
|
|
1099
|
+
error?: ProblemDetails | undefined;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* <p>Metadata of this network operation occurrence.</p>
|
|
1102
1102
|
* @public
|
|
1103
1103
|
*/
|
|
1104
|
-
metadata?: GetSolNetworkOperationMetadata;
|
|
1104
|
+
metadata?: GetSolNetworkOperationMetadata | undefined;
|
|
1105
1105
|
/**
|
|
1106
1106
|
* <p>All tasks associated with this operation occurrence.</p>
|
|
1107
1107
|
* @public
|
|
1108
1108
|
*/
|
|
1109
|
-
tasks?: GetSolNetworkOperationTaskDetails[];
|
|
1109
|
+
tasks?: GetSolNetworkOperationTaskDetails[] | undefined;
|
|
1110
1110
|
/**
|
|
1111
1111
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
1112
1112
|
* @public
|
|
1113
1113
|
*/
|
|
1114
|
-
tags?: Record<string, string
|
|
1114
|
+
tags?: Record<string, string> | undefined;
|
|
1115
1115
|
}
|
|
1116
1116
|
/**
|
|
1117
1117
|
* @public
|
|
@@ -1133,7 +1133,7 @@ export interface NetworkArtifactMeta {
|
|
|
1133
1133
|
* <p>Lists network package overrides.</p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
overrides?: ToscaOverride[];
|
|
1136
|
+
overrides?: ToscaOverride[] | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>Metadata associated with a network package.</p>
|
|
@@ -1146,7 +1146,7 @@ export interface GetSolNetworkPackageMetadata {
|
|
|
1146
1146
|
* package.</p>
|
|
1147
1147
|
* @public
|
|
1148
1148
|
*/
|
|
1149
|
-
nsd?: NetworkArtifactMeta;
|
|
1149
|
+
nsd?: NetworkArtifactMeta | undefined;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>The date that the resource was created.</p>
|
|
1152
1152
|
* @public
|
|
@@ -1218,7 +1218,7 @@ export interface GetSolNetworkPackageOutput {
|
|
|
1218
1218
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
1219
1219
|
* @public
|
|
1220
1220
|
*/
|
|
1221
|
-
tags?: Record<string, string
|
|
1221
|
+
tags?: Record<string, string> | undefined;
|
|
1222
1222
|
}
|
|
1223
1223
|
/**
|
|
1224
1224
|
* @public
|
|
@@ -1243,12 +1243,12 @@ export interface GetSolNetworkPackageContentOutput {
|
|
|
1243
1243
|
* <p>Indicates the media type of the resource.</p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
contentType?: PackageContentType;
|
|
1246
|
+
contentType?: PackageContentType | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>Content of the network service descriptor in the network package.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
nsdContent?: Uint8Array;
|
|
1251
|
+
nsdContent?: Uint8Array | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
/**
|
|
1254
1254
|
* @public
|
|
@@ -1268,12 +1268,12 @@ export interface GetSolNetworkPackageDescriptorOutput {
|
|
|
1268
1268
|
* <p>Indicates the media type of the resource.</p>
|
|
1269
1269
|
* @public
|
|
1270
1270
|
*/
|
|
1271
|
-
contentType?: DescriptorContentType;
|
|
1271
|
+
contentType?: DescriptorContentType | undefined;
|
|
1272
1272
|
/**
|
|
1273
1273
|
* <p>Contents of the network service descriptor in the network package.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
nsd?: Uint8Array;
|
|
1276
|
+
nsd?: Uint8Array | undefined;
|
|
1277
1277
|
}
|
|
1278
1278
|
/**
|
|
1279
1279
|
* @public
|
|
@@ -1290,17 +1290,17 @@ export interface InstantiateSolNetworkInstanceInput {
|
|
|
1290
1290
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
dryRun?: boolean;
|
|
1293
|
+
dryRun?: boolean | undefined;
|
|
1294
1294
|
/**
|
|
1295
1295
|
* <p>Provides values for the configurable properties.</p>
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
additionalParamsForNs?: __DocumentType;
|
|
1298
|
+
additionalParamsForNs?: __DocumentType | undefined;
|
|
1299
1299
|
/**
|
|
1300
1300
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
tags?: Record<string, string
|
|
1303
|
+
tags?: Record<string, string> | undefined;
|
|
1304
1304
|
}
|
|
1305
1305
|
/**
|
|
1306
1306
|
* @public
|
|
@@ -1315,7 +1315,7 @@ export interface InstantiateSolNetworkInstanceOutput {
|
|
|
1315
1315
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
tags?: Record<string, string
|
|
1318
|
+
tags?: Record<string, string> | undefined;
|
|
1319
1319
|
}
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>Lists network function instance metadata.</p>
|
|
@@ -1364,7 +1364,7 @@ export interface ListSolFunctionInstanceInfo {
|
|
|
1364
1364
|
* <p>Function package name.</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
vnfPkgName?: string;
|
|
1367
|
+
vnfPkgName?: string | undefined;
|
|
1368
1368
|
/**
|
|
1369
1369
|
* <p>Network function instance instantiation state.</p>
|
|
1370
1370
|
* @public
|
|
@@ -1375,7 +1375,7 @@ export interface ListSolFunctionInstanceInfo {
|
|
|
1375
1375
|
* <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
|
|
1376
1376
|
* @public
|
|
1377
1377
|
*/
|
|
1378
|
-
instantiatedVnfInfo?: GetSolInstantiatedVnfInfo;
|
|
1378
|
+
instantiatedVnfInfo?: GetSolInstantiatedVnfInfo | undefined;
|
|
1379
1379
|
/**
|
|
1380
1380
|
* <p>Network function instance metadata.</p>
|
|
1381
1381
|
* @public
|
|
@@ -1390,12 +1390,12 @@ export interface ListSolFunctionInstancesInput {
|
|
|
1390
1390
|
* <p>The maximum number of results to include in the response.</p>
|
|
1391
1391
|
* @public
|
|
1392
1392
|
*/
|
|
1393
|
-
maxResults?: number;
|
|
1393
|
+
maxResults?: number | undefined;
|
|
1394
1394
|
/**
|
|
1395
1395
|
* <p>The token for the next page of results.</p>
|
|
1396
1396
|
* @public
|
|
1397
1397
|
*/
|
|
1398
|
-
nextToken?: string;
|
|
1398
|
+
nextToken?: string | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
/**
|
|
1401
1401
|
* @public
|
|
@@ -1405,12 +1405,12 @@ export interface ListSolFunctionInstancesOutput {
|
|
|
1405
1405
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1406
1406
|
* @public
|
|
1407
1407
|
*/
|
|
1408
|
-
nextToken?: string;
|
|
1408
|
+
nextToken?: string | undefined;
|
|
1409
1409
|
/**
|
|
1410
1410
|
* <p>Network function instances.</p>
|
|
1411
1411
|
* @public
|
|
1412
1412
|
*/
|
|
1413
|
-
functionInstances?: ListSolFunctionInstanceInfo[];
|
|
1413
|
+
functionInstances?: ListSolFunctionInstanceInfo[] | undefined;
|
|
1414
1414
|
}
|
|
1415
1415
|
/**
|
|
1416
1416
|
* <p>Details for the function package metadata.</p>
|
|
@@ -1464,27 +1464,27 @@ export interface ListSolFunctionPackageInfo {
|
|
|
1464
1464
|
* <p>Identifies the function package and the function package descriptor.</p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
vnfdId?: string;
|
|
1467
|
+
vnfdId?: string | undefined;
|
|
1468
1468
|
/**
|
|
1469
1469
|
* <p>Provider of the function package and the function package descriptor.</p>
|
|
1470
1470
|
* @public
|
|
1471
1471
|
*/
|
|
1472
|
-
vnfProvider?: string;
|
|
1472
|
+
vnfProvider?: string | undefined;
|
|
1473
1473
|
/**
|
|
1474
1474
|
* <p>The product name for the network function.</p>
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
|
-
vnfProductName?: string;
|
|
1477
|
+
vnfProductName?: string | undefined;
|
|
1478
1478
|
/**
|
|
1479
1479
|
* <p>Identifies the version of the function package descriptor.</p>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
vnfdVersion?: string;
|
|
1482
|
+
vnfdVersion?: string | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>The metadata of the function package.</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
metadata?: ListSolFunctionPackageMetadata;
|
|
1487
|
+
metadata?: ListSolFunctionPackageMetadata | undefined;
|
|
1488
1488
|
}
|
|
1489
1489
|
/**
|
|
1490
1490
|
* @public
|
|
@@ -1494,12 +1494,12 @@ export interface ListSolFunctionPackagesInput {
|
|
|
1494
1494
|
* <p>The maximum number of results to include in the response.</p>
|
|
1495
1495
|
* @public
|
|
1496
1496
|
*/
|
|
1497
|
-
maxResults?: number;
|
|
1497
|
+
maxResults?: number | undefined;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* <p>The token for the next page of results.</p>
|
|
1500
1500
|
* @public
|
|
1501
1501
|
*/
|
|
1502
|
-
nextToken?: string;
|
|
1502
|
+
nextToken?: string | undefined;
|
|
1503
1503
|
}
|
|
1504
1504
|
/**
|
|
1505
1505
|
* @public
|
|
@@ -1509,7 +1509,7 @@ export interface ListSolFunctionPackagesOutput {
|
|
|
1509
1509
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
nextToken?: string;
|
|
1512
|
+
nextToken?: string | undefined;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* <p>Function packages. A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.</p>
|
|
1515
1515
|
* @public
|
|
@@ -1588,12 +1588,12 @@ export interface ListSolNetworkInstancesInput {
|
|
|
1588
1588
|
* <p>The maximum number of results to include in the response.</p>
|
|
1589
1589
|
* @public
|
|
1590
1590
|
*/
|
|
1591
|
-
maxResults?: number;
|
|
1591
|
+
maxResults?: number | undefined;
|
|
1592
1592
|
/**
|
|
1593
1593
|
* <p>The token for the next page of results.</p>
|
|
1594
1594
|
* @public
|
|
1595
1595
|
*/
|
|
1596
|
-
nextToken?: string;
|
|
1596
|
+
nextToken?: string | undefined;
|
|
1597
1597
|
}
|
|
1598
1598
|
/**
|
|
1599
1599
|
* @public
|
|
@@ -1603,12 +1603,12 @@ export interface ListSolNetworkInstancesOutput {
|
|
|
1603
1603
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
nextToken?: string;
|
|
1606
|
+
nextToken?: string | undefined;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* <p>Lists network instances.</p>
|
|
1609
1609
|
* @public
|
|
1610
1610
|
*/
|
|
1611
|
-
networkInstances?: ListSolNetworkInstanceInfo[];
|
|
1611
|
+
networkInstances?: ListSolNetworkInstanceInfo[] | undefined;
|
|
1612
1612
|
}
|
|
1613
1613
|
/**
|
|
1614
1614
|
* @public
|
|
@@ -1618,17 +1618,17 @@ export interface ListSolNetworkOperationsInput {
|
|
|
1618
1618
|
* <p>Network instance id filter, to retrieve network operations associated to a network instance.</p>
|
|
1619
1619
|
* @public
|
|
1620
1620
|
*/
|
|
1621
|
-
nsInstanceId?: string;
|
|
1621
|
+
nsInstanceId?: string | undefined;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* <p>The maximum number of results to include in the response.</p>
|
|
1624
1624
|
* @public
|
|
1625
1625
|
*/
|
|
1626
|
-
maxResults?: number;
|
|
1626
|
+
maxResults?: number | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p>The token for the next page of results.</p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
nextToken?: string;
|
|
1631
|
+
nextToken?: string | undefined;
|
|
1632
1632
|
}
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>Metadata related to a network operation.</p>
|
|
@@ -1641,13 +1641,13 @@ export interface ListSolNetworkOperationsMetadata {
|
|
|
1641
1641
|
* <p>Only present if the updateType is <code>UPDATE_NS</code>.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
nsdInfoId?: string;
|
|
1644
|
+
nsdInfoId?: string | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>The network function id used for the operation.</p>
|
|
1647
1647
|
* <p>Only present if the updateType is <code>MODIFY_VNF_INFO</code>.</p>
|
|
1648
1648
|
* @public
|
|
1649
1649
|
*/
|
|
1650
|
-
vnfInstanceId?: string;
|
|
1650
|
+
vnfInstanceId?: string | undefined;
|
|
1651
1651
|
/**
|
|
1652
1652
|
* <p>The date that the resource was created.</p>
|
|
1653
1653
|
* @public
|
|
@@ -1693,17 +1693,17 @@ export interface ListSolNetworkOperationsInfo {
|
|
|
1693
1693
|
* <p>Type of the update. Only present if the network operation lcmOperationType is <code>UPDATE</code>.</p>
|
|
1694
1694
|
* @public
|
|
1695
1695
|
*/
|
|
1696
|
-
updateType?: UpdateSolNetworkType;
|
|
1696
|
+
updateType?: UpdateSolNetworkType | undefined;
|
|
1697
1697
|
/**
|
|
1698
1698
|
* <p>Error related to this specific network operation.</p>
|
|
1699
1699
|
* @public
|
|
1700
1700
|
*/
|
|
1701
|
-
error?: ProblemDetails;
|
|
1701
|
+
error?: ProblemDetails | undefined;
|
|
1702
1702
|
/**
|
|
1703
1703
|
* <p>Metadata related to this network operation.</p>
|
|
1704
1704
|
* @public
|
|
1705
1705
|
*/
|
|
1706
|
-
metadata?: ListSolNetworkOperationsMetadata;
|
|
1706
|
+
metadata?: ListSolNetworkOperationsMetadata | undefined;
|
|
1707
1707
|
}
|
|
1708
1708
|
/**
|
|
1709
1709
|
* @public
|
|
@@ -1713,12 +1713,12 @@ export interface ListSolNetworkOperationsOutput {
|
|
|
1713
1713
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1714
1714
|
* @public
|
|
1715
1715
|
*/
|
|
1716
|
-
nextToken?: string;
|
|
1716
|
+
nextToken?: string | undefined;
|
|
1717
1717
|
/**
|
|
1718
1718
|
* <p>Lists network operation occurrences. Lifecycle management operations are deploy, update, or delete operations.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
networkOperations?: ListSolNetworkOperationsInfo[];
|
|
1721
|
+
networkOperations?: ListSolNetworkOperationsInfo[] | undefined;
|
|
1722
1722
|
}
|
|
1723
1723
|
/**
|
|
1724
1724
|
* <p>Metadata related to a network package.</p>
|
|
@@ -1772,33 +1772,33 @@ export interface ListSolNetworkPackageInfo {
|
|
|
1772
1772
|
* <p>ID of the network service descriptor on which the network package is based.</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
nsdId?: string;
|
|
1775
|
+
nsdId?: string | undefined;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* <p>Name of the onboarded network service descriptor in the network package.</p>
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
nsdName?: string;
|
|
1780
|
+
nsdName?: string | undefined;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* <p>Version of the onboarded network service descriptor in the network package.</p>
|
|
1783
1783
|
* @public
|
|
1784
1784
|
*/
|
|
1785
|
-
nsdVersion?: string;
|
|
1785
|
+
nsdVersion?: string | undefined;
|
|
1786
1786
|
/**
|
|
1787
1787
|
* <p>Designer of the onboarded network service descriptor in the network package.</p>
|
|
1788
1788
|
* @public
|
|
1789
1789
|
*/
|
|
1790
|
-
nsdDesigner?: string;
|
|
1790
|
+
nsdDesigner?: string | undefined;
|
|
1791
1791
|
/**
|
|
1792
1792
|
* <p>Identifies a network service descriptor in a version independent manner.</p>
|
|
1793
1793
|
* @public
|
|
1794
1794
|
*/
|
|
1795
|
-
nsdInvariantId?: string;
|
|
1795
|
+
nsdInvariantId?: string | undefined;
|
|
1796
1796
|
/**
|
|
1797
1797
|
* <p>Identifies the function package for the function package descriptor referenced by the
|
|
1798
1798
|
* onboarded network package.</p>
|
|
1799
1799
|
* @public
|
|
1800
1800
|
*/
|
|
1801
|
-
vnfPkgIds?: string[];
|
|
1801
|
+
vnfPkgIds?: string[] | undefined;
|
|
1802
1802
|
/**
|
|
1803
1803
|
* <p>The metadata of the network package.</p>
|
|
1804
1804
|
* @public
|
|
@@ -1813,12 +1813,12 @@ export interface ListSolNetworkPackagesInput {
|
|
|
1813
1813
|
* <p>The maximum number of results to include in the response.</p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
maxResults?: number;
|
|
1816
|
+
maxResults?: number | undefined;
|
|
1817
1817
|
/**
|
|
1818
1818
|
* <p>The token for the next page of results.</p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
nextToken?: string;
|
|
1821
|
+
nextToken?: string | undefined;
|
|
1822
1822
|
}
|
|
1823
1823
|
/**
|
|
1824
1824
|
* @public
|
|
@@ -1828,7 +1828,7 @@ export interface ListSolNetworkPackagesOutput {
|
|
|
1828
1828
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1829
1829
|
* @public
|
|
1830
1830
|
*/
|
|
1831
|
-
nextToken?: string;
|
|
1831
|
+
nextToken?: string | undefined;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* <p>Network packages. A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.</p>
|
|
1834
1834
|
* @public
|
|
@@ -1868,7 +1868,7 @@ export interface PutSolFunctionPackageContentInput {
|
|
|
1868
1868
|
* <p>Function package content type.</p>
|
|
1869
1869
|
* @public
|
|
1870
1870
|
*/
|
|
1871
|
-
contentType?: PackageContentType;
|
|
1871
|
+
contentType?: PackageContentType | undefined;
|
|
1872
1872
|
/**
|
|
1873
1873
|
* <p>Function package file.</p>
|
|
1874
1874
|
* @public
|
|
@@ -1886,7 +1886,7 @@ export interface PutSolFunctionPackageContentMetadata {
|
|
|
1886
1886
|
* <p>Artifacts are the contents of the package descriptor file and the state of the package.</p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
vnfd?: FunctionArtifactMeta;
|
|
1889
|
+
vnfd?: FunctionArtifactMeta | undefined;
|
|
1890
1890
|
}
|
|
1891
1891
|
/**
|
|
1892
1892
|
* @public
|
|
@@ -1936,7 +1936,7 @@ export interface PutSolNetworkPackageContentInput {
|
|
|
1936
1936
|
* <p>Network package content type.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
contentType?: PackageContentType;
|
|
1939
|
+
contentType?: PackageContentType | undefined;
|
|
1940
1940
|
/**
|
|
1941
1941
|
* <p>Network package file.</p>
|
|
1942
1942
|
* @public
|
|
@@ -1954,7 +1954,7 @@ export interface PutSolNetworkPackageContentMetadata {
|
|
|
1954
1954
|
* <p>Artifacts are the contents of the package descriptor file and the state of the package.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
nsd?: NetworkArtifactMeta;
|
|
1957
|
+
nsd?: NetworkArtifactMeta | undefined;
|
|
1958
1958
|
}
|
|
1959
1959
|
/**
|
|
1960
1960
|
* @public
|
|
@@ -2029,7 +2029,7 @@ export interface TerminateSolNetworkInstanceInput {
|
|
|
2029
2029
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
tags?: Record<string, string
|
|
2032
|
+
tags?: Record<string, string> | undefined;
|
|
2033
2033
|
}
|
|
2034
2034
|
/**
|
|
2035
2035
|
* @public
|
|
@@ -2039,12 +2039,12 @@ export interface TerminateSolNetworkInstanceOutput {
|
|
|
2039
2039
|
* <p>The identifier of the network operation.</p>
|
|
2040
2040
|
* @public
|
|
2041
2041
|
*/
|
|
2042
|
-
nsLcmOpOccId?: string;
|
|
2042
|
+
nsLcmOpOccId?: string | undefined;
|
|
2043
2043
|
/**
|
|
2044
2044
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
2045
2045
|
* @public
|
|
2046
2046
|
*/
|
|
2047
|
-
tags?: Record<string, string
|
|
2047
|
+
tags?: Record<string, string> | undefined;
|
|
2048
2048
|
}
|
|
2049
2049
|
/**
|
|
2050
2050
|
* @public
|
|
@@ -2124,7 +2124,7 @@ export interface UpdateSolNetworkServiceData {
|
|
|
2124
2124
|
* <p>Values for the configurable properties declared in the network service descriptor.</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
additionalParamsForNs?: __DocumentType;
|
|
2127
|
+
additionalParamsForNs?: __DocumentType | undefined;
|
|
2128
2128
|
}
|
|
2129
2129
|
/**
|
|
2130
2130
|
* @public
|
|
@@ -2156,19 +2156,19 @@ export interface UpdateSolNetworkInstanceInput {
|
|
|
2156
2156
|
* <p>Include this property only if the update type is <code>MODIFY_VNF_INFORMATION</code>.</p>
|
|
2157
2157
|
* @public
|
|
2158
2158
|
*/
|
|
2159
|
-
modifyVnfInfoData?: UpdateSolNetworkModify;
|
|
2159
|
+
modifyVnfInfoData?: UpdateSolNetworkModify | undefined;
|
|
2160
2160
|
/**
|
|
2161
2161
|
* <p>Identifies the network service descriptor and the configurable
|
|
2162
2162
|
* properties of the descriptor, to be used for the update.</p>
|
|
2163
2163
|
* <p>Include this property only if the update type is <code>UPDATE_NS</code>.</p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
updateNs?: UpdateSolNetworkServiceData;
|
|
2166
|
+
updateNs?: UpdateSolNetworkServiceData | undefined;
|
|
2167
2167
|
/**
|
|
2168
2168
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
2169
2169
|
* @public
|
|
2170
2170
|
*/
|
|
2171
|
-
tags?: Record<string, string
|
|
2171
|
+
tags?: Record<string, string> | undefined;
|
|
2172
2172
|
}
|
|
2173
2173
|
/**
|
|
2174
2174
|
* @public
|
|
@@ -2178,12 +2178,12 @@ export interface UpdateSolNetworkInstanceOutput {
|
|
|
2178
2178
|
* <p>The identifier of the network operation.</p>
|
|
2179
2179
|
* @public
|
|
2180
2180
|
*/
|
|
2181
|
-
nsLcmOpOccId?: string;
|
|
2181
|
+
nsLcmOpOccId?: string | undefined;
|
|
2182
2182
|
/**
|
|
2183
2183
|
* <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
2184
2184
|
* @public
|
|
2185
2185
|
*/
|
|
2186
|
-
tags?: Record<string, string
|
|
2186
|
+
tags?: Record<string, string> | undefined;
|
|
2187
2187
|
}
|
|
2188
2188
|
/**
|
|
2189
2189
|
* @public
|
|
@@ -2223,7 +2223,7 @@ export interface ValidateSolFunctionPackageContentInput {
|
|
|
2223
2223
|
* <p>Function package content type.</p>
|
|
2224
2224
|
* @public
|
|
2225
2225
|
*/
|
|
2226
|
-
contentType?: PackageContentType;
|
|
2226
|
+
contentType?: PackageContentType | undefined;
|
|
2227
2227
|
/**
|
|
2228
2228
|
* <p>Function package file.</p>
|
|
2229
2229
|
* @public
|
|
@@ -2241,7 +2241,7 @@ export interface ValidateSolFunctionPackageContentMetadata {
|
|
|
2241
2241
|
* <p>Artifacts are the contents of the package descriptor file and the state of the package.</p>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
vnfd?: FunctionArtifactMeta;
|
|
2244
|
+
vnfd?: FunctionArtifactMeta | undefined;
|
|
2245
2245
|
}
|
|
2246
2246
|
/**
|
|
2247
2247
|
* @public
|
|
@@ -2291,7 +2291,7 @@ export interface ValidateSolNetworkPackageContentInput {
|
|
|
2291
2291
|
* <p>Network package content type.</p>
|
|
2292
2292
|
* @public
|
|
2293
2293
|
*/
|
|
2294
|
-
contentType?: PackageContentType;
|
|
2294
|
+
contentType?: PackageContentType | undefined;
|
|
2295
2295
|
/**
|
|
2296
2296
|
* <p>Network package file.</p>
|
|
2297
2297
|
* @public
|
|
@@ -2309,7 +2309,7 @@ export interface ValidateSolNetworkPackageContentMetadata {
|
|
|
2309
2309
|
* <p>Artifacts are the contents of the package descriptor file and the state of the package.</p>
|
|
2310
2310
|
* @public
|
|
2311
2311
|
*/
|
|
2312
|
-
nsd?: NetworkArtifactMeta;
|
|
2312
|
+
nsd?: NetworkArtifactMeta | undefined;
|
|
2313
2313
|
}
|
|
2314
2314
|
/**
|
|
2315
2315
|
* @public
|