@aws-sdk/client-tnb 3.427.0 → 3.429.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 +45 -45
- package/dist-types/ts3.4/models/models_0.d.ts +45 -45
- package/package.json +32 -32
|
@@ -136,17 +136,17 @@ export interface CreateSolFunctionPackageOutput {
|
|
|
136
136
|
* @public
|
|
137
137
|
* <p>Onboarding state of the function package.</p>
|
|
138
138
|
*/
|
|
139
|
-
onboardingState: OnboardingState |
|
|
139
|
+
onboardingState: OnboardingState | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* @public
|
|
142
142
|
* <p>Operational state of the function package.</p>
|
|
143
143
|
*/
|
|
144
|
-
operationalState: OperationalState |
|
|
144
|
+
operationalState: OperationalState | undefined;
|
|
145
145
|
/**
|
|
146
146
|
* @public
|
|
147
147
|
* <p>Usage state of the function package.</p>
|
|
148
148
|
*/
|
|
149
|
-
usageState: UsageState |
|
|
149
|
+
usageState: UsageState | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* @public
|
|
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>
|
|
@@ -285,17 +285,17 @@ export interface CreateSolNetworkPackageOutput {
|
|
|
285
285
|
* @public
|
|
286
286
|
* <p>Onboarding state of the network service descriptor in the network package.</p>
|
|
287
287
|
*/
|
|
288
|
-
nsdOnboardingState: NsdOnboardingState |
|
|
288
|
+
nsdOnboardingState: NsdOnboardingState | undefined;
|
|
289
289
|
/**
|
|
290
290
|
* @public
|
|
291
291
|
* <p>Operational state of the network service descriptor in the network package.</p>
|
|
292
292
|
*/
|
|
293
|
-
nsdOperationalState: NsdOperationalState |
|
|
293
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
294
294
|
/**
|
|
295
295
|
* @public
|
|
296
296
|
* <p>Usage state of the network service descriptor in the network package.</p>
|
|
297
297
|
*/
|
|
298
|
-
nsdUsageState: NsdUsageState |
|
|
298
|
+
nsdUsageState: NsdUsageState | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* @public
|
|
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>
|
|
@@ -453,7 +453,7 @@ export interface GetSolVnfInfo {
|
|
|
453
453
|
* @public
|
|
454
454
|
* <p>State of the network function instance.</p>
|
|
455
455
|
*/
|
|
456
|
-
vnfState?: VnfOperationalState
|
|
456
|
+
vnfState?: VnfOperationalState;
|
|
457
457
|
/**
|
|
458
458
|
* @public
|
|
459
459
|
* <p>Compute info used by the network function instance.</p>
|
|
@@ -537,7 +537,7 @@ export interface GetSolFunctionInstanceOutput {
|
|
|
537
537
|
* @public
|
|
538
538
|
* <p>Network function instantiation state.</p>
|
|
539
539
|
*/
|
|
540
|
-
instantiationState: VnfInstantiationState |
|
|
540
|
+
instantiationState: VnfInstantiationState | undefined;
|
|
541
541
|
/**
|
|
542
542
|
* @public
|
|
543
543
|
* <p>Information about the network function.</p>
|
|
@@ -606,17 +606,17 @@ export interface GetSolFunctionPackageOutput {
|
|
|
606
606
|
* @public
|
|
607
607
|
* <p>Function package onboarding state.</p>
|
|
608
608
|
*/
|
|
609
|
-
onboardingState: OnboardingState |
|
|
609
|
+
onboardingState: OnboardingState | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* @public
|
|
612
612
|
* <p>Function package operational state.</p>
|
|
613
613
|
*/
|
|
614
|
-
operationalState: OperationalState |
|
|
614
|
+
operationalState: OperationalState | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* @public
|
|
617
617
|
* <p>Function package usage state.</p>
|
|
618
618
|
*/
|
|
619
|
-
usageState: UsageState |
|
|
619
|
+
usageState: UsageState | undefined;
|
|
620
620
|
/**
|
|
621
621
|
* @public
|
|
622
622
|
* <p>Function package descriptor ID.</p>
|
|
@@ -673,7 +673,7 @@ export interface GetSolFunctionPackageContentInput {
|
|
|
673
673
|
* @public
|
|
674
674
|
* <p>The format of the package that you want to download from the function packages.</p>
|
|
675
675
|
*/
|
|
676
|
-
accept: PackageContentType |
|
|
676
|
+
accept: PackageContentType | undefined;
|
|
677
677
|
}
|
|
678
678
|
/**
|
|
679
679
|
* @public
|
|
@@ -683,7 +683,7 @@ export interface GetSolFunctionPackageContentOutput {
|
|
|
683
683
|
* @public
|
|
684
684
|
* <p>Indicates the media type of the resource.</p>
|
|
685
685
|
*/
|
|
686
|
-
contentType?: PackageContentType
|
|
686
|
+
contentType?: PackageContentType;
|
|
687
687
|
/**
|
|
688
688
|
* @public
|
|
689
689
|
* <p>Contents of the function package.</p>
|
|
@@ -703,7 +703,7 @@ export interface GetSolFunctionPackageDescriptorInput {
|
|
|
703
703
|
* @public
|
|
704
704
|
* <p>Indicates which content types, expressed as MIME types, the client is able to understand.</p>
|
|
705
705
|
*/
|
|
706
|
-
accept: DescriptorContentType |
|
|
706
|
+
accept: DescriptorContentType | undefined;
|
|
707
707
|
}
|
|
708
708
|
/**
|
|
709
709
|
* @public
|
|
@@ -713,7 +713,7 @@ export interface GetSolFunctionPackageDescriptorOutput {
|
|
|
713
713
|
* @public
|
|
714
714
|
* <p>Indicates the media type of the resource.</p>
|
|
715
715
|
*/
|
|
716
|
-
contentType?: DescriptorContentType
|
|
716
|
+
contentType?: DescriptorContentType;
|
|
717
717
|
/**
|
|
718
718
|
* @public
|
|
719
719
|
* <p>Contents of the function package descriptor.</p>
|
|
@@ -730,7 +730,7 @@ export interface GetSolInstantiatedVnfInfo {
|
|
|
730
730
|
* @public
|
|
731
731
|
* <p>State of the network function.</p>
|
|
732
732
|
*/
|
|
733
|
-
vnfState?: VnfOperationalState
|
|
733
|
+
vnfState?: VnfOperationalState;
|
|
734
734
|
}
|
|
735
735
|
/**
|
|
736
736
|
* @public
|
|
@@ -827,7 +827,7 @@ export interface GetSolNetworkInstanceOutput {
|
|
|
827
827
|
* @public
|
|
828
828
|
* <p>Network instance state.</p>
|
|
829
829
|
*/
|
|
830
|
-
nsState?: NsState
|
|
830
|
+
nsState?: NsState;
|
|
831
831
|
/**
|
|
832
832
|
* @public
|
|
833
833
|
* <p>Lifecycle management operation details on the network instance.</p>
|
|
@@ -959,7 +959,7 @@ export interface GetSolNetworkOperationTaskDetails {
|
|
|
959
959
|
* @public
|
|
960
960
|
* <p>Task status.</p>
|
|
961
961
|
*/
|
|
962
|
-
taskStatus?: TaskStatus
|
|
962
|
+
taskStatus?: TaskStatus;
|
|
963
963
|
/**
|
|
964
964
|
* @public
|
|
965
965
|
* <p>Task start time.</p>
|
|
@@ -989,7 +989,7 @@ export interface GetSolNetworkOperationOutput {
|
|
|
989
989
|
* @public
|
|
990
990
|
* <p>The state of the network operation.</p>
|
|
991
991
|
*/
|
|
992
|
-
operationState?: NsLcmOperationState
|
|
992
|
+
operationState?: NsLcmOperationState;
|
|
993
993
|
/**
|
|
994
994
|
* @public
|
|
995
995
|
* <p>ID of the network operation instance.</p>
|
|
@@ -999,7 +999,7 @@ export interface GetSolNetworkOperationOutput {
|
|
|
999
999
|
* @public
|
|
1000
1000
|
* <p>Type of the operation represented by this occurrence.</p>
|
|
1001
1001
|
*/
|
|
1002
|
-
lcmOperationType?: LcmOperationType
|
|
1002
|
+
lcmOperationType?: LcmOperationType;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* @public
|
|
1005
1005
|
* <p>Error related to this specific network operation occurrence.</p>
|
|
@@ -1083,17 +1083,17 @@ export interface GetSolNetworkPackageOutput {
|
|
|
1083
1083
|
* @public
|
|
1084
1084
|
* <p>Network service descriptor onboarding state.</p>
|
|
1085
1085
|
*/
|
|
1086
|
-
nsdOnboardingState: NsdOnboardingState |
|
|
1086
|
+
nsdOnboardingState: NsdOnboardingState | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* @public
|
|
1089
1089
|
* <p>Network service descriptor operational state.</p>
|
|
1090
1090
|
*/
|
|
1091
|
-
nsdOperationalState: NsdOperationalState |
|
|
1091
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* @public
|
|
1094
1094
|
* <p>Network service descriptor usage state.</p>
|
|
1095
1095
|
*/
|
|
1096
|
-
nsdUsageState: NsdUsageState |
|
|
1096
|
+
nsdUsageState: NsdUsageState | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* @public
|
|
1099
1099
|
* <p>Network service descriptor ID.</p>
|
|
@@ -1139,7 +1139,7 @@ export interface GetSolNetworkPackageContentInput {
|
|
|
1139
1139
|
* @public
|
|
1140
1140
|
* <p>The format of the package you want to download from the network package.</p>
|
|
1141
1141
|
*/
|
|
1142
|
-
accept: PackageContentType |
|
|
1142
|
+
accept: PackageContentType | undefined;
|
|
1143
1143
|
}
|
|
1144
1144
|
/**
|
|
1145
1145
|
* @public
|
|
@@ -1149,7 +1149,7 @@ export interface GetSolNetworkPackageContentOutput {
|
|
|
1149
1149
|
* @public
|
|
1150
1150
|
* <p>Indicates the media type of the resource.</p>
|
|
1151
1151
|
*/
|
|
1152
|
-
contentType?: PackageContentType
|
|
1152
|
+
contentType?: PackageContentType;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* @public
|
|
1155
1155
|
* <p>Content of the network service descriptor in the network package.</p>
|
|
@@ -1174,7 +1174,7 @@ export interface GetSolNetworkPackageDescriptorOutput {
|
|
|
1174
1174
|
* @public
|
|
1175
1175
|
* <p>Indicates the media type of the resource.</p>
|
|
1176
1176
|
*/
|
|
1177
|
-
contentType?: DescriptorContentType
|
|
1177
|
+
contentType?: DescriptorContentType;
|
|
1178
1178
|
/**
|
|
1179
1179
|
* @public
|
|
1180
1180
|
* <p>Contents of the network service descriptor in the network package.</p>
|
|
@@ -1275,7 +1275,7 @@ export interface ListSolFunctionInstanceInfo {
|
|
|
1275
1275
|
* @public
|
|
1276
1276
|
* <p>Network function instance instantiation state.</p>
|
|
1277
1277
|
*/
|
|
1278
|
-
instantiationState: VnfInstantiationState |
|
|
1278
|
+
instantiationState: VnfInstantiationState | undefined;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* @public
|
|
1281
1281
|
* <p>Information about a network function.</p>
|
|
@@ -1355,17 +1355,17 @@ export interface ListSolFunctionPackageInfo {
|
|
|
1355
1355
|
* @public
|
|
1356
1356
|
* <p>Onboarding state of the function package.</p>
|
|
1357
1357
|
*/
|
|
1358
|
-
onboardingState: OnboardingState |
|
|
1358
|
+
onboardingState: OnboardingState | undefined;
|
|
1359
1359
|
/**
|
|
1360
1360
|
* @public
|
|
1361
1361
|
* <p>Operational state of the function package.</p>
|
|
1362
1362
|
*/
|
|
1363
|
-
operationalState: OperationalState |
|
|
1363
|
+
operationalState: OperationalState | undefined;
|
|
1364
1364
|
/**
|
|
1365
1365
|
* @public
|
|
1366
1366
|
* <p>Usage state of the function package.</p>
|
|
1367
1367
|
*/
|
|
1368
|
-
usageState: UsageState |
|
|
1368
|
+
usageState: UsageState | undefined;
|
|
1369
1369
|
/**
|
|
1370
1370
|
* @public
|
|
1371
1371
|
* <p>Identifies the function package and the function package descriptor.</p>
|
|
@@ -1479,7 +1479,7 @@ export interface ListSolNetworkInstanceInfo {
|
|
|
1479
1479
|
* @public
|
|
1480
1480
|
* <p>The state of the network instance.</p>
|
|
1481
1481
|
*/
|
|
1482
|
-
nsState: NsState |
|
|
1482
|
+
nsState: NsState | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* @public
|
|
1485
1485
|
* <p>The metadata of the network instance.</p>
|
|
@@ -1567,7 +1567,7 @@ export interface ListSolNetworkOperationsInfo {
|
|
|
1567
1567
|
* @public
|
|
1568
1568
|
* <p>The state of the network operation.</p>
|
|
1569
1569
|
*/
|
|
1570
|
-
operationState: NsLcmOperationState |
|
|
1570
|
+
operationState: NsLcmOperationState | undefined;
|
|
1571
1571
|
/**
|
|
1572
1572
|
* @public
|
|
1573
1573
|
* <p>ID of the network instance related to this operation.</p>
|
|
@@ -1577,7 +1577,7 @@ export interface ListSolNetworkOperationsInfo {
|
|
|
1577
1577
|
* @public
|
|
1578
1578
|
* <p>Type of lifecycle management network operation.</p>
|
|
1579
1579
|
*/
|
|
1580
|
-
lcmOperationType: LcmOperationType |
|
|
1580
|
+
lcmOperationType: LcmOperationType | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* @public
|
|
1583
1583
|
* <p>Error related to this specific network operation.</p>
|
|
@@ -1641,17 +1641,17 @@ export interface ListSolNetworkPackageInfo {
|
|
|
1641
1641
|
* @public
|
|
1642
1642
|
* <p>Onboarding state of the network service descriptor in the network package.</p>
|
|
1643
1643
|
*/
|
|
1644
|
-
nsdOnboardingState: NsdOnboardingState |
|
|
1644
|
+
nsdOnboardingState: NsdOnboardingState | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* @public
|
|
1647
1647
|
* <p>Operational state of the network service descriptor in the network package.</p>
|
|
1648
1648
|
*/
|
|
1649
|
-
nsdOperationalState: NsdOperationalState |
|
|
1649
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
1650
1650
|
/**
|
|
1651
1651
|
* @public
|
|
1652
1652
|
* <p>Usage state of the network service descriptor in the network package.</p>
|
|
1653
1653
|
*/
|
|
1654
|
-
nsdUsageState: NsdUsageState |
|
|
1654
|
+
nsdUsageState: NsdUsageState | undefined;
|
|
1655
1655
|
/**
|
|
1656
1656
|
* @public
|
|
1657
1657
|
* <p>ID of the network service descriptor on which the network package is based.</p>
|
|
@@ -1751,7 +1751,7 @@ export interface PutSolFunctionPackageContentInput {
|
|
|
1751
1751
|
* @public
|
|
1752
1752
|
* <p>Function package content type.</p>
|
|
1753
1753
|
*/
|
|
1754
|
-
contentType?: PackageContentType
|
|
1754
|
+
contentType?: PackageContentType;
|
|
1755
1755
|
/**
|
|
1756
1756
|
* @public
|
|
1757
1757
|
* <p>Function package file.</p>
|
|
@@ -1819,7 +1819,7 @@ export interface PutSolNetworkPackageContentInput {
|
|
|
1819
1819
|
* @public
|
|
1820
1820
|
* <p>Network package content type.</p>
|
|
1821
1821
|
*/
|
|
1822
|
-
contentType?: PackageContentType
|
|
1822
|
+
contentType?: PackageContentType;
|
|
1823
1823
|
/**
|
|
1824
1824
|
* @public
|
|
1825
1825
|
* <p>Network package file.</p>
|
|
@@ -1962,7 +1962,7 @@ export interface UpdateSolFunctionPackageInput {
|
|
|
1962
1962
|
* @public
|
|
1963
1963
|
* <p>Operational state of the function package.</p>
|
|
1964
1964
|
*/
|
|
1965
|
-
operationalState: OperationalState |
|
|
1965
|
+
operationalState: OperationalState | undefined;
|
|
1966
1966
|
}
|
|
1967
1967
|
/**
|
|
1968
1968
|
* @public
|
|
@@ -1972,7 +1972,7 @@ export interface UpdateSolFunctionPackageOutput {
|
|
|
1972
1972
|
* @public
|
|
1973
1973
|
* <p>Operational state of the function package.</p>
|
|
1974
1974
|
*/
|
|
1975
|
-
operationalState: OperationalState |
|
|
1975
|
+
operationalState: OperationalState | undefined;
|
|
1976
1976
|
}
|
|
1977
1977
|
/**
|
|
1978
1978
|
* @public
|
|
@@ -2016,7 +2016,7 @@ export interface UpdateSolNetworkInstanceInput {
|
|
|
2016
2016
|
* @public
|
|
2017
2017
|
* <p>The type of update.</p>
|
|
2018
2018
|
*/
|
|
2019
|
-
updateType: UpdateSolNetworkType |
|
|
2019
|
+
updateType: UpdateSolNetworkType | undefined;
|
|
2020
2020
|
/**
|
|
2021
2021
|
* @public
|
|
2022
2022
|
* <p>Identifies the network function information parameters and/or the configurable properties of the network function to be modified.</p>
|
|
@@ -2056,7 +2056,7 @@ export interface UpdateSolNetworkPackageInput {
|
|
|
2056
2056
|
* @public
|
|
2057
2057
|
* <p>Operational state of the network service descriptor in the network package.</p>
|
|
2058
2058
|
*/
|
|
2059
|
-
nsdOperationalState: NsdOperationalState |
|
|
2059
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
2060
2060
|
}
|
|
2061
2061
|
/**
|
|
2062
2062
|
* @public
|
|
@@ -2066,7 +2066,7 @@ export interface UpdateSolNetworkPackageOutput {
|
|
|
2066
2066
|
* @public
|
|
2067
2067
|
* <p>Operational state of the network service descriptor in the network package.</p>
|
|
2068
2068
|
*/
|
|
2069
|
-
nsdOperationalState: NsdOperationalState |
|
|
2069
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
2070
2070
|
}
|
|
2071
2071
|
/**
|
|
2072
2072
|
* @public
|
|
@@ -2081,7 +2081,7 @@ export interface ValidateSolFunctionPackageContentInput {
|
|
|
2081
2081
|
* @public
|
|
2082
2082
|
* <p>Function package content type.</p>
|
|
2083
2083
|
*/
|
|
2084
|
-
contentType?: PackageContentType
|
|
2084
|
+
contentType?: PackageContentType;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* @public
|
|
2087
2087
|
* <p>Function package file.</p>
|
|
@@ -2149,7 +2149,7 @@ export interface ValidateSolNetworkPackageContentInput {
|
|
|
2149
2149
|
* @public
|
|
2150
2150
|
* <p>Network package content type.</p>
|
|
2151
2151
|
*/
|
|
2152
|
-
contentType?: PackageContentType
|
|
2152
|
+
contentType?: PackageContentType;
|
|
2153
2153
|
/**
|
|
2154
2154
|
* @public
|
|
2155
2155
|
* <p>Network package file.</p>
|
|
@@ -63,9 +63,9 @@ export type UsageState = (typeof UsageState)[keyof typeof UsageState];
|
|
|
63
63
|
export interface CreateSolFunctionPackageOutput {
|
|
64
64
|
id: string | undefined;
|
|
65
65
|
arn: string | undefined;
|
|
66
|
-
onboardingState: OnboardingState |
|
|
67
|
-
operationalState: OperationalState |
|
|
68
|
-
usageState: UsageState |
|
|
66
|
+
onboardingState: OnboardingState | undefined;
|
|
67
|
+
operationalState: OperationalState | undefined;
|
|
68
|
+
usageState: UsageState | undefined;
|
|
69
69
|
tags?: Record<string, string>;
|
|
70
70
|
}
|
|
71
71
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -112,9 +112,9 @@ export type NsdUsageState = (typeof NsdUsageState)[keyof typeof NsdUsageState];
|
|
|
112
112
|
export interface CreateSolNetworkPackageOutput {
|
|
113
113
|
id: string | undefined;
|
|
114
114
|
arn: string | undefined;
|
|
115
|
-
nsdOnboardingState: NsdOnboardingState |
|
|
116
|
-
nsdOperationalState: NsdOperationalState |
|
|
117
|
-
nsdUsageState: NsdUsageState |
|
|
115
|
+
nsdOnboardingState: NsdOnboardingState | undefined;
|
|
116
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
117
|
+
nsdUsageState: NsdUsageState | undefined;
|
|
118
118
|
tags?: Record<string, string>;
|
|
119
119
|
}
|
|
120
120
|
export interface DeleteSolFunctionPackageInput {
|
|
@@ -160,7 +160,7 @@ export declare const VnfOperationalState: {
|
|
|
160
160
|
export type VnfOperationalState =
|
|
161
161
|
(typeof VnfOperationalState)[keyof typeof VnfOperationalState];
|
|
162
162
|
export interface GetSolVnfInfo {
|
|
163
|
-
vnfState?: VnfOperationalState
|
|
163
|
+
vnfState?: VnfOperationalState;
|
|
164
164
|
vnfcResourceInfo?: GetSolVnfcResourceInfo[];
|
|
165
165
|
}
|
|
166
166
|
export declare const VnfInstantiationState: {
|
|
@@ -182,7 +182,7 @@ export interface GetSolFunctionInstanceOutput {
|
|
|
182
182
|
vnfProvider?: string;
|
|
183
183
|
vnfProductName?: string;
|
|
184
184
|
vnfdVersion?: string;
|
|
185
|
-
instantiationState: VnfInstantiationState |
|
|
185
|
+
instantiationState: VnfInstantiationState | undefined;
|
|
186
186
|
instantiatedVnfInfo?: GetSolVnfInfo;
|
|
187
187
|
metadata: GetSolFunctionInstanceMetadata | undefined;
|
|
188
188
|
tags?: Record<string, string>;
|
|
@@ -198,9 +198,9 @@ export interface GetSolFunctionPackageMetadata {
|
|
|
198
198
|
export interface GetSolFunctionPackageOutput {
|
|
199
199
|
id: string | undefined;
|
|
200
200
|
arn: string | undefined;
|
|
201
|
-
onboardingState: OnboardingState |
|
|
202
|
-
operationalState: OperationalState |
|
|
203
|
-
usageState: UsageState |
|
|
201
|
+
onboardingState: OnboardingState | undefined;
|
|
202
|
+
operationalState: OperationalState | undefined;
|
|
203
|
+
usageState: UsageState | undefined;
|
|
204
204
|
vnfdId?: string;
|
|
205
205
|
vnfProvider?: string;
|
|
206
206
|
vnfProductName?: string;
|
|
@@ -215,22 +215,22 @@ export type PackageContentType =
|
|
|
215
215
|
(typeof PackageContentType)[keyof typeof PackageContentType];
|
|
216
216
|
export interface GetSolFunctionPackageContentInput {
|
|
217
217
|
vnfPkgId: string | undefined;
|
|
218
|
-
accept: PackageContentType |
|
|
218
|
+
accept: PackageContentType | undefined;
|
|
219
219
|
}
|
|
220
220
|
export interface GetSolFunctionPackageContentOutput {
|
|
221
|
-
contentType?: PackageContentType
|
|
221
|
+
contentType?: PackageContentType;
|
|
222
222
|
packageContent?: Uint8Array;
|
|
223
223
|
}
|
|
224
224
|
export interface GetSolFunctionPackageDescriptorInput {
|
|
225
225
|
vnfPkgId: string | undefined;
|
|
226
|
-
accept: DescriptorContentType |
|
|
226
|
+
accept: DescriptorContentType | undefined;
|
|
227
227
|
}
|
|
228
228
|
export interface GetSolFunctionPackageDescriptorOutput {
|
|
229
|
-
contentType?: DescriptorContentType
|
|
229
|
+
contentType?: DescriptorContentType;
|
|
230
230
|
vnfd?: Uint8Array;
|
|
231
231
|
}
|
|
232
232
|
export interface GetSolInstantiatedVnfInfo {
|
|
233
|
-
vnfState?: VnfOperationalState
|
|
233
|
+
vnfState?: VnfOperationalState;
|
|
234
234
|
}
|
|
235
235
|
export interface GetSolNetworkInstanceInput {
|
|
236
236
|
nsInstanceId: string | undefined;
|
|
@@ -260,7 +260,7 @@ export interface GetSolNetworkInstanceOutput {
|
|
|
260
260
|
nsInstanceDescription: string | undefined;
|
|
261
261
|
nsdId: string | undefined;
|
|
262
262
|
nsdInfoId: string | undefined;
|
|
263
|
-
nsState?: NsState
|
|
263
|
+
nsState?: NsState;
|
|
264
264
|
lcmOpInfo?: LcmOperationInfo;
|
|
265
265
|
metadata: GetSolNetworkInstanceMetadata | undefined;
|
|
266
266
|
tags?: Record<string, string>;
|
|
@@ -306,16 +306,16 @@ export interface GetSolNetworkOperationTaskDetails {
|
|
|
306
306
|
taskName?: string;
|
|
307
307
|
taskContext?: Record<string, string>;
|
|
308
308
|
taskErrorDetails?: ErrorInfo;
|
|
309
|
-
taskStatus?: TaskStatus
|
|
309
|
+
taskStatus?: TaskStatus;
|
|
310
310
|
taskStartTime?: Date;
|
|
311
311
|
taskEndTime?: Date;
|
|
312
312
|
}
|
|
313
313
|
export interface GetSolNetworkOperationOutput {
|
|
314
314
|
id?: string;
|
|
315
315
|
arn: string | undefined;
|
|
316
|
-
operationState?: NsLcmOperationState
|
|
316
|
+
operationState?: NsLcmOperationState;
|
|
317
317
|
nsInstanceId?: string;
|
|
318
|
-
lcmOperationType?: LcmOperationType
|
|
318
|
+
lcmOperationType?: LcmOperationType;
|
|
319
319
|
error?: ProblemDetails;
|
|
320
320
|
metadata?: GetSolNetworkOperationMetadata;
|
|
321
321
|
tasks?: GetSolNetworkOperationTaskDetails[];
|
|
@@ -335,9 +335,9 @@ export interface GetSolNetworkPackageMetadata {
|
|
|
335
335
|
export interface GetSolNetworkPackageOutput {
|
|
336
336
|
id: string | undefined;
|
|
337
337
|
arn: string | undefined;
|
|
338
|
-
nsdOnboardingState: NsdOnboardingState |
|
|
339
|
-
nsdOperationalState: NsdOperationalState |
|
|
340
|
-
nsdUsageState: NsdUsageState |
|
|
338
|
+
nsdOnboardingState: NsdOnboardingState | undefined;
|
|
339
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
340
|
+
nsdUsageState: NsdUsageState | undefined;
|
|
341
341
|
nsdId: string | undefined;
|
|
342
342
|
nsdName: string | undefined;
|
|
343
343
|
nsdVersion: string | undefined;
|
|
@@ -347,17 +347,17 @@ export interface GetSolNetworkPackageOutput {
|
|
|
347
347
|
}
|
|
348
348
|
export interface GetSolNetworkPackageContentInput {
|
|
349
349
|
nsdInfoId: string | undefined;
|
|
350
|
-
accept: PackageContentType |
|
|
350
|
+
accept: PackageContentType | undefined;
|
|
351
351
|
}
|
|
352
352
|
export interface GetSolNetworkPackageContentOutput {
|
|
353
|
-
contentType?: PackageContentType
|
|
353
|
+
contentType?: PackageContentType;
|
|
354
354
|
nsdContent?: Uint8Array;
|
|
355
355
|
}
|
|
356
356
|
export interface GetSolNetworkPackageDescriptorInput {
|
|
357
357
|
nsdInfoId: string | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface GetSolNetworkPackageDescriptorOutput {
|
|
360
|
-
contentType?: DescriptorContentType
|
|
360
|
+
contentType?: DescriptorContentType;
|
|
361
361
|
nsd?: Uint8Array;
|
|
362
362
|
}
|
|
363
363
|
export interface InstantiateSolNetworkInstanceInput {
|
|
@@ -380,7 +380,7 @@ export interface ListSolFunctionInstanceInfo {
|
|
|
380
380
|
nsInstanceId: string | undefined;
|
|
381
381
|
vnfPkgId: string | undefined;
|
|
382
382
|
vnfPkgName?: string;
|
|
383
|
-
instantiationState: VnfInstantiationState |
|
|
383
|
+
instantiationState: VnfInstantiationState | undefined;
|
|
384
384
|
instantiatedVnfInfo?: GetSolInstantiatedVnfInfo;
|
|
385
385
|
metadata: ListSolFunctionInstanceMetadata | undefined;
|
|
386
386
|
}
|
|
@@ -399,9 +399,9 @@ export interface ListSolFunctionPackageMetadata {
|
|
|
399
399
|
export interface ListSolFunctionPackageInfo {
|
|
400
400
|
id: string | undefined;
|
|
401
401
|
arn: string | undefined;
|
|
402
|
-
onboardingState: OnboardingState |
|
|
403
|
-
operationalState: OperationalState |
|
|
404
|
-
usageState: UsageState |
|
|
402
|
+
onboardingState: OnboardingState | undefined;
|
|
403
|
+
operationalState: OperationalState | undefined;
|
|
404
|
+
usageState: UsageState | undefined;
|
|
405
405
|
vnfdId?: string;
|
|
406
406
|
vnfProvider?: string;
|
|
407
407
|
vnfProductName?: string;
|
|
@@ -427,7 +427,7 @@ export interface ListSolNetworkInstanceInfo {
|
|
|
427
427
|
nsInstanceDescription: string | undefined;
|
|
428
428
|
nsdId: string | undefined;
|
|
429
429
|
nsdInfoId: string | undefined;
|
|
430
|
-
nsState: NsState |
|
|
430
|
+
nsState: NsState | undefined;
|
|
431
431
|
metadata: ListSolNetworkInstanceMetadata | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface ListSolNetworkInstancesInput {
|
|
@@ -449,9 +449,9 @@ export interface ListSolNetworkOperationsMetadata {
|
|
|
449
449
|
export interface ListSolNetworkOperationsInfo {
|
|
450
450
|
id: string | undefined;
|
|
451
451
|
arn: string | undefined;
|
|
452
|
-
operationState: NsLcmOperationState |
|
|
452
|
+
operationState: NsLcmOperationState | undefined;
|
|
453
453
|
nsInstanceId: string | undefined;
|
|
454
|
-
lcmOperationType: LcmOperationType |
|
|
454
|
+
lcmOperationType: LcmOperationType | undefined;
|
|
455
455
|
error?: ProblemDetails;
|
|
456
456
|
metadata?: ListSolNetworkOperationsMetadata;
|
|
457
457
|
}
|
|
@@ -466,9 +466,9 @@ export interface ListSolNetworkPackageMetadata {
|
|
|
466
466
|
export interface ListSolNetworkPackageInfo {
|
|
467
467
|
id: string | undefined;
|
|
468
468
|
arn: string | undefined;
|
|
469
|
-
nsdOnboardingState: NsdOnboardingState |
|
|
470
|
-
nsdOperationalState: NsdOperationalState |
|
|
471
|
-
nsdUsageState: NsdUsageState |
|
|
469
|
+
nsdOnboardingState: NsdOnboardingState | undefined;
|
|
470
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
471
|
+
nsdUsageState: NsdUsageState | undefined;
|
|
472
472
|
nsdId?: string;
|
|
473
473
|
nsdName?: string;
|
|
474
474
|
nsdVersion?: string;
|
|
@@ -493,7 +493,7 @@ export interface ListTagsForResourceOutput {
|
|
|
493
493
|
}
|
|
494
494
|
export interface PutSolFunctionPackageContentInput {
|
|
495
495
|
vnfPkgId: string | undefined;
|
|
496
|
-
contentType?: PackageContentType
|
|
496
|
+
contentType?: PackageContentType;
|
|
497
497
|
file: Uint8Array | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface PutSolFunctionPackageContentMetadata {
|
|
@@ -509,7 +509,7 @@ export interface PutSolFunctionPackageContentOutput {
|
|
|
509
509
|
}
|
|
510
510
|
export interface PutSolNetworkPackageContentInput {
|
|
511
511
|
nsdInfoId: string | undefined;
|
|
512
|
-
contentType?: PackageContentType
|
|
512
|
+
contentType?: PackageContentType;
|
|
513
513
|
file: Uint8Array | undefined;
|
|
514
514
|
}
|
|
515
515
|
export interface PutSolNetworkPackageContentMetadata {
|
|
@@ -544,10 +544,10 @@ export interface UntagResourceInput {
|
|
|
544
544
|
export interface UntagResourceOutput {}
|
|
545
545
|
export interface UpdateSolFunctionPackageInput {
|
|
546
546
|
vnfPkgId: string | undefined;
|
|
547
|
-
operationalState: OperationalState |
|
|
547
|
+
operationalState: OperationalState | undefined;
|
|
548
548
|
}
|
|
549
549
|
export interface UpdateSolFunctionPackageOutput {
|
|
550
|
-
operationalState: OperationalState |
|
|
550
|
+
operationalState: OperationalState | undefined;
|
|
551
551
|
}
|
|
552
552
|
export interface UpdateSolNetworkModify {
|
|
553
553
|
vnfInstanceId: string | undefined;
|
|
@@ -560,7 +560,7 @@ export type UpdateSolNetworkType =
|
|
|
560
560
|
(typeof UpdateSolNetworkType)[keyof typeof UpdateSolNetworkType];
|
|
561
561
|
export interface UpdateSolNetworkInstanceInput {
|
|
562
562
|
nsInstanceId: string | undefined;
|
|
563
|
-
updateType: UpdateSolNetworkType |
|
|
563
|
+
updateType: UpdateSolNetworkType | undefined;
|
|
564
564
|
modifyVnfInfoData?: UpdateSolNetworkModify;
|
|
565
565
|
tags?: Record<string, string>;
|
|
566
566
|
}
|
|
@@ -570,14 +570,14 @@ export interface UpdateSolNetworkInstanceOutput {
|
|
|
570
570
|
}
|
|
571
571
|
export interface UpdateSolNetworkPackageInput {
|
|
572
572
|
nsdInfoId: string | undefined;
|
|
573
|
-
nsdOperationalState: NsdOperationalState |
|
|
573
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
574
574
|
}
|
|
575
575
|
export interface UpdateSolNetworkPackageOutput {
|
|
576
|
-
nsdOperationalState: NsdOperationalState |
|
|
576
|
+
nsdOperationalState: NsdOperationalState | undefined;
|
|
577
577
|
}
|
|
578
578
|
export interface ValidateSolFunctionPackageContentInput {
|
|
579
579
|
vnfPkgId: string | undefined;
|
|
580
|
-
contentType?: PackageContentType
|
|
580
|
+
contentType?: PackageContentType;
|
|
581
581
|
file: Uint8Array | undefined;
|
|
582
582
|
}
|
|
583
583
|
export interface ValidateSolFunctionPackageContentMetadata {
|
|
@@ -593,7 +593,7 @@ export interface ValidateSolFunctionPackageContentOutput {
|
|
|
593
593
|
}
|
|
594
594
|
export interface ValidateSolNetworkPackageContentInput {
|
|
595
595
|
nsdInfoId: string | undefined;
|
|
596
|
-
contentType?: PackageContentType
|
|
596
|
+
contentType?: PackageContentType;
|
|
597
597
|
file: Uint8Array | undefined;
|
|
598
598
|
}
|
|
599
599
|
export interface ValidateSolNetworkPackageContentMetadata {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-tnb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Tnb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,40 +21,40 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
57
|
-
"@smithy/util-stream": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
|
+
"@smithy/util-stream": "^2.0.16",
|
|
58
58
|
"@smithy/util-utf8": "^2.0.0",
|
|
59
59
|
"tslib": "^2.5.0"
|
|
60
60
|
},
|