@aws-sdk/client-tnb 3.301.0 → 3.306.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/models/models_0.js +74 -89
- package/dist-es/models/models_0.js +74 -89
- package/dist-types/models/models_0.d.ts +149 -74
- package/dist-types/ts3.4/models/models_0.d.ts +100 -74
- package/package.json +34 -34
|
@@ -68,22 +68,19 @@ class ValidationException extends TnbServiceException_1.TnbServiceException {
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
exports.ValidationException = ValidationException;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
UsageState["IN_USE"] = "IN_USE";
|
|
85
|
-
UsageState["NOT_IN_USE"] = "NOT_IN_USE";
|
|
86
|
-
})(UsageState = exports.UsageState || (exports.UsageState = {}));
|
|
71
|
+
exports.OnboardingState = {
|
|
72
|
+
CREATED: "CREATED",
|
|
73
|
+
ERROR: "ERROR",
|
|
74
|
+
ONBOARDED: "ONBOARDED",
|
|
75
|
+
};
|
|
76
|
+
exports.OperationalState = {
|
|
77
|
+
DISABLED: "DISABLED",
|
|
78
|
+
ENABLED: "ENABLED",
|
|
79
|
+
};
|
|
80
|
+
exports.UsageState = {
|
|
81
|
+
IN_USE: "IN_USE",
|
|
82
|
+
NOT_IN_USE: "NOT_IN_USE",
|
|
83
|
+
};
|
|
87
84
|
class ServiceQuotaExceededException extends TnbServiceException_1.TnbServiceException {
|
|
88
85
|
constructor(opts) {
|
|
89
86
|
super({
|
|
@@ -97,79 +94,67 @@ class ServiceQuotaExceededException extends TnbServiceException_1.TnbServiceExce
|
|
|
97
94
|
}
|
|
98
95
|
}
|
|
99
96
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
TaskStatus["CANCELLED"] = "CANCELLED";
|
|
162
|
-
TaskStatus["COMPLETED"] = "COMPLETED";
|
|
163
|
-
TaskStatus["ERROR"] = "ERROR";
|
|
164
|
-
TaskStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
165
|
-
TaskStatus["SCHEDULED"] = "SCHEDULED";
|
|
166
|
-
TaskStatus["SKIPPED"] = "SKIPPED";
|
|
167
|
-
TaskStatus["STARTED"] = "STARTED";
|
|
168
|
-
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
169
|
-
var UpdateSolNetworkType;
|
|
170
|
-
(function (UpdateSolNetworkType) {
|
|
171
|
-
UpdateSolNetworkType["MODIFY_VNF_INFORMATION"] = "MODIFY_VNF_INFORMATION";
|
|
172
|
-
})(UpdateSolNetworkType = exports.UpdateSolNetworkType || (exports.UpdateSolNetworkType = {}));
|
|
97
|
+
exports.NsdOnboardingState = {
|
|
98
|
+
CREATED: "CREATED",
|
|
99
|
+
ERROR: "ERROR",
|
|
100
|
+
ONBOARDED: "ONBOARDED",
|
|
101
|
+
};
|
|
102
|
+
exports.NsdOperationalState = {
|
|
103
|
+
DISABLED: "DISABLED",
|
|
104
|
+
ENABLED: "ENABLED",
|
|
105
|
+
};
|
|
106
|
+
exports.NsdUsageState = {
|
|
107
|
+
IN_USE: "IN_USE",
|
|
108
|
+
NOT_IN_USE: "NOT_IN_USE",
|
|
109
|
+
};
|
|
110
|
+
exports.DescriptorContentType = {
|
|
111
|
+
TEXT_PLAIN: "text/plain",
|
|
112
|
+
};
|
|
113
|
+
exports.VnfOperationalState = {
|
|
114
|
+
STARTED: "STARTED",
|
|
115
|
+
STOPPED: "STOPPED",
|
|
116
|
+
};
|
|
117
|
+
exports.VnfInstantiationState = {
|
|
118
|
+
INSTANTIATED: "INSTANTIATED",
|
|
119
|
+
NOT_INSTANTIATED: "NOT_INSTANTIATED",
|
|
120
|
+
};
|
|
121
|
+
exports.PackageContentType = {
|
|
122
|
+
APPLICATION_ZIP: "application/zip",
|
|
123
|
+
};
|
|
124
|
+
exports.NsState = {
|
|
125
|
+
DELETED: "DELETED",
|
|
126
|
+
IMPAIRED: "IMPAIRED",
|
|
127
|
+
INSTANTIATED: "INSTANTIATED",
|
|
128
|
+
INSTANTIATE_IN_PROGRESS: "INSTANTIATE_IN_PROGRESS",
|
|
129
|
+
NOT_INSTANTIATED: "NOT_INSTANTIATED",
|
|
130
|
+
STOPPED: "STOPPED",
|
|
131
|
+
TERMINATE_IN_PROGRESS: "TERMINATE_IN_PROGRESS",
|
|
132
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
133
|
+
};
|
|
134
|
+
exports.LcmOperationType = {
|
|
135
|
+
INSTANTIATE: "INSTANTIATE",
|
|
136
|
+
TERMINATE: "TERMINATE",
|
|
137
|
+
UPDATE: "UPDATE",
|
|
138
|
+
};
|
|
139
|
+
exports.NsLcmOperationState = {
|
|
140
|
+
CANCELLED: "CANCELLED",
|
|
141
|
+
CANCELLING: "CANCELLING",
|
|
142
|
+
COMPLETED: "COMPLETED",
|
|
143
|
+
FAILED: "FAILED",
|
|
144
|
+
PROCESSING: "PROCESSING",
|
|
145
|
+
};
|
|
146
|
+
exports.TaskStatus = {
|
|
147
|
+
CANCELLED: "CANCELLED",
|
|
148
|
+
COMPLETED: "COMPLETED",
|
|
149
|
+
ERROR: "ERROR",
|
|
150
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
151
|
+
SCHEDULED: "SCHEDULED",
|
|
152
|
+
SKIPPED: "SKIPPED",
|
|
153
|
+
STARTED: "STARTED",
|
|
154
|
+
};
|
|
155
|
+
exports.UpdateSolNetworkType = {
|
|
156
|
+
MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION",
|
|
157
|
+
};
|
|
173
158
|
const CreateSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
174
159
|
...obj,
|
|
175
160
|
...(obj.tags && { tags: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -60,22 +60,19 @@ export class ValidationException extends __BaseException {
|
|
|
60
60
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
|
-
export
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
UsageState["IN_USE"] = "IN_USE";
|
|
77
|
-
UsageState["NOT_IN_USE"] = "NOT_IN_USE";
|
|
78
|
-
})(UsageState || (UsageState = {}));
|
|
63
|
+
export const OnboardingState = {
|
|
64
|
+
CREATED: "CREATED",
|
|
65
|
+
ERROR: "ERROR",
|
|
66
|
+
ONBOARDED: "ONBOARDED",
|
|
67
|
+
};
|
|
68
|
+
export const OperationalState = {
|
|
69
|
+
DISABLED: "DISABLED",
|
|
70
|
+
ENABLED: "ENABLED",
|
|
71
|
+
};
|
|
72
|
+
export const UsageState = {
|
|
73
|
+
IN_USE: "IN_USE",
|
|
74
|
+
NOT_IN_USE: "NOT_IN_USE",
|
|
75
|
+
};
|
|
79
76
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
80
77
|
constructor(opts) {
|
|
81
78
|
super({
|
|
@@ -88,79 +85,67 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
88
85
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
89
86
|
}
|
|
90
87
|
}
|
|
91
|
-
export
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
}
|
|
107
|
-
export
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
}
|
|
111
|
-
export
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
TaskStatus["CANCELLED"] = "CANCELLED";
|
|
153
|
-
TaskStatus["COMPLETED"] = "COMPLETED";
|
|
154
|
-
TaskStatus["ERROR"] = "ERROR";
|
|
155
|
-
TaskStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
156
|
-
TaskStatus["SCHEDULED"] = "SCHEDULED";
|
|
157
|
-
TaskStatus["SKIPPED"] = "SKIPPED";
|
|
158
|
-
TaskStatus["STARTED"] = "STARTED";
|
|
159
|
-
})(TaskStatus || (TaskStatus = {}));
|
|
160
|
-
export var UpdateSolNetworkType;
|
|
161
|
-
(function (UpdateSolNetworkType) {
|
|
162
|
-
UpdateSolNetworkType["MODIFY_VNF_INFORMATION"] = "MODIFY_VNF_INFORMATION";
|
|
163
|
-
})(UpdateSolNetworkType || (UpdateSolNetworkType = {}));
|
|
88
|
+
export const NsdOnboardingState = {
|
|
89
|
+
CREATED: "CREATED",
|
|
90
|
+
ERROR: "ERROR",
|
|
91
|
+
ONBOARDED: "ONBOARDED",
|
|
92
|
+
};
|
|
93
|
+
export const NsdOperationalState = {
|
|
94
|
+
DISABLED: "DISABLED",
|
|
95
|
+
ENABLED: "ENABLED",
|
|
96
|
+
};
|
|
97
|
+
export const NsdUsageState = {
|
|
98
|
+
IN_USE: "IN_USE",
|
|
99
|
+
NOT_IN_USE: "NOT_IN_USE",
|
|
100
|
+
};
|
|
101
|
+
export const DescriptorContentType = {
|
|
102
|
+
TEXT_PLAIN: "text/plain",
|
|
103
|
+
};
|
|
104
|
+
export const VnfOperationalState = {
|
|
105
|
+
STARTED: "STARTED",
|
|
106
|
+
STOPPED: "STOPPED",
|
|
107
|
+
};
|
|
108
|
+
export const VnfInstantiationState = {
|
|
109
|
+
INSTANTIATED: "INSTANTIATED",
|
|
110
|
+
NOT_INSTANTIATED: "NOT_INSTANTIATED",
|
|
111
|
+
};
|
|
112
|
+
export const PackageContentType = {
|
|
113
|
+
APPLICATION_ZIP: "application/zip",
|
|
114
|
+
};
|
|
115
|
+
export const NsState = {
|
|
116
|
+
DELETED: "DELETED",
|
|
117
|
+
IMPAIRED: "IMPAIRED",
|
|
118
|
+
INSTANTIATED: "INSTANTIATED",
|
|
119
|
+
INSTANTIATE_IN_PROGRESS: "INSTANTIATE_IN_PROGRESS",
|
|
120
|
+
NOT_INSTANTIATED: "NOT_INSTANTIATED",
|
|
121
|
+
STOPPED: "STOPPED",
|
|
122
|
+
TERMINATE_IN_PROGRESS: "TERMINATE_IN_PROGRESS",
|
|
123
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
124
|
+
};
|
|
125
|
+
export const LcmOperationType = {
|
|
126
|
+
INSTANTIATE: "INSTANTIATE",
|
|
127
|
+
TERMINATE: "TERMINATE",
|
|
128
|
+
UPDATE: "UPDATE",
|
|
129
|
+
};
|
|
130
|
+
export const NsLcmOperationState = {
|
|
131
|
+
CANCELLED: "CANCELLED",
|
|
132
|
+
CANCELLING: "CANCELLING",
|
|
133
|
+
COMPLETED: "COMPLETED",
|
|
134
|
+
FAILED: "FAILED",
|
|
135
|
+
PROCESSING: "PROCESSING",
|
|
136
|
+
};
|
|
137
|
+
export const TaskStatus = {
|
|
138
|
+
CANCELLED: "CANCELLED",
|
|
139
|
+
COMPLETED: "COMPLETED",
|
|
140
|
+
ERROR: "ERROR",
|
|
141
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
142
|
+
SCHEDULED: "SCHEDULED",
|
|
143
|
+
SKIPPED: "SKIPPED",
|
|
144
|
+
STARTED: "STARTED",
|
|
145
|
+
};
|
|
146
|
+
export const UpdateSolNetworkType = {
|
|
147
|
+
MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION",
|
|
148
|
+
};
|
|
164
149
|
export const CreateSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
165
150
|
...obj,
|
|
166
151
|
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
@@ -81,26 +81,41 @@ export interface CreateSolFunctionPackageInput {
|
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
83
|
* @public
|
|
84
|
+
* @enum
|
|
84
85
|
*/
|
|
85
|
-
export declare
|
|
86
|
-
CREATED
|
|
87
|
-
ERROR
|
|
88
|
-
ONBOARDED
|
|
89
|
-
}
|
|
86
|
+
export declare const OnboardingState: {
|
|
87
|
+
readonly CREATED: "CREATED";
|
|
88
|
+
readonly ERROR: "ERROR";
|
|
89
|
+
readonly ONBOARDED: "ONBOARDED";
|
|
90
|
+
};
|
|
90
91
|
/**
|
|
91
92
|
* @public
|
|
92
93
|
*/
|
|
93
|
-
export
|
|
94
|
-
DISABLED = "DISABLED",
|
|
95
|
-
ENABLED = "ENABLED"
|
|
96
|
-
}
|
|
94
|
+
export type OnboardingState = (typeof OnboardingState)[keyof typeof OnboardingState];
|
|
97
95
|
/**
|
|
98
96
|
* @public
|
|
97
|
+
* @enum
|
|
99
98
|
*/
|
|
100
|
-
export declare
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
}
|
|
99
|
+
export declare const OperationalState: {
|
|
100
|
+
readonly DISABLED: "DISABLED";
|
|
101
|
+
readonly ENABLED: "ENABLED";
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export type OperationalState = (typeof OperationalState)[keyof typeof OperationalState];
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
* @enum
|
|
110
|
+
*/
|
|
111
|
+
export declare const UsageState: {
|
|
112
|
+
readonly IN_USE: "IN_USE";
|
|
113
|
+
readonly NOT_IN_USE: "NOT_IN_USE";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type UsageState = (typeof UsageState)[keyof typeof UsageState];
|
|
104
119
|
/**
|
|
105
120
|
* @public
|
|
106
121
|
*/
|
|
@@ -199,26 +214,41 @@ export interface CreateSolNetworkPackageInput {
|
|
|
199
214
|
}
|
|
200
215
|
/**
|
|
201
216
|
* @public
|
|
217
|
+
* @enum
|
|
202
218
|
*/
|
|
203
|
-
export declare
|
|
204
|
-
CREATED
|
|
205
|
-
ERROR
|
|
206
|
-
ONBOARDED
|
|
207
|
-
}
|
|
219
|
+
export declare const NsdOnboardingState: {
|
|
220
|
+
readonly CREATED: "CREATED";
|
|
221
|
+
readonly ERROR: "ERROR";
|
|
222
|
+
readonly ONBOARDED: "ONBOARDED";
|
|
223
|
+
};
|
|
208
224
|
/**
|
|
209
225
|
* @public
|
|
210
226
|
*/
|
|
211
|
-
export
|
|
212
|
-
DISABLED = "DISABLED",
|
|
213
|
-
ENABLED = "ENABLED"
|
|
214
|
-
}
|
|
227
|
+
export type NsdOnboardingState = (typeof NsdOnboardingState)[keyof typeof NsdOnboardingState];
|
|
215
228
|
/**
|
|
216
229
|
* @public
|
|
230
|
+
* @enum
|
|
217
231
|
*/
|
|
218
|
-
export declare
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
}
|
|
232
|
+
export declare const NsdOperationalState: {
|
|
233
|
+
readonly DISABLED: "DISABLED";
|
|
234
|
+
readonly ENABLED: "ENABLED";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type NsdOperationalState = (typeof NsdOperationalState)[keyof typeof NsdOperationalState];
|
|
240
|
+
/**
|
|
241
|
+
* @public
|
|
242
|
+
* @enum
|
|
243
|
+
*/
|
|
244
|
+
export declare const NsdUsageState: {
|
|
245
|
+
readonly IN_USE: "IN_USE";
|
|
246
|
+
readonly NOT_IN_USE: "NOT_IN_USE";
|
|
247
|
+
};
|
|
248
|
+
/**
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
251
|
+
export type NsdUsageState = (typeof NsdUsageState)[keyof typeof NsdUsageState];
|
|
222
252
|
/**
|
|
223
253
|
* @public
|
|
224
254
|
*/
|
|
@@ -277,10 +307,15 @@ export interface DeleteSolNetworkPackageInput {
|
|
|
277
307
|
}
|
|
278
308
|
/**
|
|
279
309
|
* @public
|
|
310
|
+
* @enum
|
|
280
311
|
*/
|
|
281
|
-
export declare
|
|
282
|
-
TEXT_PLAIN
|
|
283
|
-
}
|
|
312
|
+
export declare const DescriptorContentType: {
|
|
313
|
+
readonly TEXT_PLAIN: "text/plain";
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
export type DescriptorContentType = (typeof DescriptorContentType)[keyof typeof DescriptorContentType];
|
|
284
319
|
/**
|
|
285
320
|
* @public
|
|
286
321
|
* <p>Provides error information.</p>
|
|
@@ -361,11 +396,16 @@ export interface GetSolVnfcResourceInfo {
|
|
|
361
396
|
}
|
|
362
397
|
/**
|
|
363
398
|
* @public
|
|
399
|
+
* @enum
|
|
364
400
|
*/
|
|
365
|
-
export declare
|
|
366
|
-
STARTED
|
|
367
|
-
STOPPED
|
|
368
|
-
}
|
|
401
|
+
export declare const VnfOperationalState: {
|
|
402
|
+
readonly STARTED: "STARTED";
|
|
403
|
+
readonly STOPPED: "STOPPED";
|
|
404
|
+
};
|
|
405
|
+
/**
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
export type VnfOperationalState = (typeof VnfOperationalState)[keyof typeof VnfOperationalState];
|
|
369
409
|
/**
|
|
370
410
|
* @public
|
|
371
411
|
* <p>Information about the network function.</p>
|
|
@@ -383,11 +423,16 @@ export interface GetSolVnfInfo {
|
|
|
383
423
|
}
|
|
384
424
|
/**
|
|
385
425
|
* @public
|
|
426
|
+
* @enum
|
|
386
427
|
*/
|
|
387
|
-
export declare
|
|
388
|
-
INSTANTIATED
|
|
389
|
-
NOT_INSTANTIATED
|
|
390
|
-
}
|
|
428
|
+
export declare const VnfInstantiationState: {
|
|
429
|
+
readonly INSTANTIATED: "INSTANTIATED";
|
|
430
|
+
readonly NOT_INSTANTIATED: "NOT_INSTANTIATED";
|
|
431
|
+
};
|
|
432
|
+
/**
|
|
433
|
+
* @public
|
|
434
|
+
*/
|
|
435
|
+
export type VnfInstantiationState = (typeof VnfInstantiationState)[keyof typeof VnfInstantiationState];
|
|
391
436
|
/**
|
|
392
437
|
* @public
|
|
393
438
|
* <p>The metadata of a network function instance.</p>
|
|
@@ -538,10 +583,15 @@ export interface GetSolFunctionPackageOutput {
|
|
|
538
583
|
}
|
|
539
584
|
/**
|
|
540
585
|
* @public
|
|
586
|
+
* @enum
|
|
541
587
|
*/
|
|
542
|
-
export declare
|
|
543
|
-
APPLICATION_ZIP
|
|
544
|
-
}
|
|
588
|
+
export declare const PackageContentType: {
|
|
589
|
+
readonly APPLICATION_ZIP: "application/zip";
|
|
590
|
+
};
|
|
591
|
+
/**
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
export type PackageContentType = (typeof PackageContentType)[keyof typeof PackageContentType];
|
|
545
595
|
/**
|
|
546
596
|
* @public
|
|
547
597
|
*/
|
|
@@ -642,17 +692,22 @@ export interface GetSolNetworkInstanceMetadata {
|
|
|
642
692
|
}
|
|
643
693
|
/**
|
|
644
694
|
* @public
|
|
695
|
+
* @enum
|
|
645
696
|
*/
|
|
646
|
-
export declare
|
|
647
|
-
DELETED
|
|
648
|
-
IMPAIRED
|
|
649
|
-
INSTANTIATED
|
|
650
|
-
INSTANTIATE_IN_PROGRESS
|
|
651
|
-
NOT_INSTANTIATED
|
|
652
|
-
STOPPED
|
|
653
|
-
TERMINATE_IN_PROGRESS
|
|
654
|
-
UPDATE_IN_PROGRESS
|
|
655
|
-
}
|
|
697
|
+
export declare const NsState: {
|
|
698
|
+
readonly DELETED: "DELETED";
|
|
699
|
+
readonly IMPAIRED: "IMPAIRED";
|
|
700
|
+
readonly INSTANTIATED: "INSTANTIATED";
|
|
701
|
+
readonly INSTANTIATE_IN_PROGRESS: "INSTANTIATE_IN_PROGRESS";
|
|
702
|
+
readonly NOT_INSTANTIATED: "NOT_INSTANTIATED";
|
|
703
|
+
readonly STOPPED: "STOPPED";
|
|
704
|
+
readonly TERMINATE_IN_PROGRESS: "TERMINATE_IN_PROGRESS";
|
|
705
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
706
|
+
};
|
|
707
|
+
/**
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
export type NsState = (typeof NsState)[keyof typeof NsState];
|
|
656
711
|
/**
|
|
657
712
|
* @public
|
|
658
713
|
*/
|
|
@@ -725,12 +780,17 @@ export interface ProblemDetails {
|
|
|
725
780
|
}
|
|
726
781
|
/**
|
|
727
782
|
* @public
|
|
783
|
+
* @enum
|
|
728
784
|
*/
|
|
729
|
-
export declare
|
|
730
|
-
INSTANTIATE
|
|
731
|
-
TERMINATE
|
|
732
|
-
UPDATE
|
|
733
|
-
}
|
|
785
|
+
export declare const LcmOperationType: {
|
|
786
|
+
readonly INSTANTIATE: "INSTANTIATE";
|
|
787
|
+
readonly TERMINATE: "TERMINATE";
|
|
788
|
+
readonly UPDATE: "UPDATE";
|
|
789
|
+
};
|
|
790
|
+
/**
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
793
|
+
export type LcmOperationType = (typeof LcmOperationType)[keyof typeof LcmOperationType];
|
|
734
794
|
/**
|
|
735
795
|
* @public
|
|
736
796
|
* <p>Metadata related to a network operation occurrence.</p>
|
|
@@ -748,26 +808,36 @@ export interface GetSolNetworkOperationMetadata {
|
|
|
748
808
|
}
|
|
749
809
|
/**
|
|
750
810
|
* @public
|
|
811
|
+
* @enum
|
|
751
812
|
*/
|
|
752
|
-
export declare
|
|
753
|
-
CANCELLED
|
|
754
|
-
CANCELLING
|
|
755
|
-
COMPLETED
|
|
756
|
-
FAILED
|
|
757
|
-
PROCESSING
|
|
758
|
-
}
|
|
813
|
+
export declare const NsLcmOperationState: {
|
|
814
|
+
readonly CANCELLED: "CANCELLED";
|
|
815
|
+
readonly CANCELLING: "CANCELLING";
|
|
816
|
+
readonly COMPLETED: "COMPLETED";
|
|
817
|
+
readonly FAILED: "FAILED";
|
|
818
|
+
readonly PROCESSING: "PROCESSING";
|
|
819
|
+
};
|
|
759
820
|
/**
|
|
760
821
|
* @public
|
|
761
822
|
*/
|
|
762
|
-
export
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
823
|
+
export type NsLcmOperationState = (typeof NsLcmOperationState)[keyof typeof NsLcmOperationState];
|
|
824
|
+
/**
|
|
825
|
+
* @public
|
|
826
|
+
* @enum
|
|
827
|
+
*/
|
|
828
|
+
export declare const TaskStatus: {
|
|
829
|
+
readonly CANCELLED: "CANCELLED";
|
|
830
|
+
readonly COMPLETED: "COMPLETED";
|
|
831
|
+
readonly ERROR: "ERROR";
|
|
832
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
833
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
834
|
+
readonly SKIPPED: "SKIPPED";
|
|
835
|
+
readonly STARTED: "STARTED";
|
|
836
|
+
};
|
|
837
|
+
/**
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
840
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
771
841
|
/**
|
|
772
842
|
* @public
|
|
773
843
|
* <p>Gets the details of a network operation.</p>
|
|
@@ -1673,10 +1743,15 @@ export interface UpdateSolNetworkModify {
|
|
|
1673
1743
|
}
|
|
1674
1744
|
/**
|
|
1675
1745
|
* @public
|
|
1746
|
+
* @enum
|
|
1676
1747
|
*/
|
|
1677
|
-
export declare
|
|
1678
|
-
MODIFY_VNF_INFORMATION
|
|
1679
|
-
}
|
|
1748
|
+
export declare const UpdateSolNetworkType: {
|
|
1749
|
+
readonly MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION";
|
|
1750
|
+
};
|
|
1751
|
+
/**
|
|
1752
|
+
* @public
|
|
1753
|
+
*/
|
|
1754
|
+
export type UpdateSolNetworkType = (typeof UpdateSolNetworkType)[keyof typeof UpdateSolNetworkType];
|
|
1680
1755
|
/**
|
|
1681
1756
|
* @public
|
|
1682
1757
|
*/
|
|
@@ -42,19 +42,24 @@ export declare class ValidationException extends __BaseException {
|
|
|
42
42
|
export interface CreateSolFunctionPackageInput {
|
|
43
43
|
tags?: Record<string, string>;
|
|
44
44
|
}
|
|
45
|
-
export declare
|
|
46
|
-
CREATED
|
|
47
|
-
ERROR
|
|
48
|
-
ONBOARDED
|
|
49
|
-
}
|
|
50
|
-
export
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
45
|
+
export declare const OnboardingState: {
|
|
46
|
+
readonly CREATED: "CREATED";
|
|
47
|
+
readonly ERROR: "ERROR";
|
|
48
|
+
readonly ONBOARDED: "ONBOARDED";
|
|
49
|
+
};
|
|
50
|
+
export type OnboardingState =
|
|
51
|
+
(typeof OnboardingState)[keyof typeof OnboardingState];
|
|
52
|
+
export declare const OperationalState: {
|
|
53
|
+
readonly DISABLED: "DISABLED";
|
|
54
|
+
readonly ENABLED: "ENABLED";
|
|
55
|
+
};
|
|
56
|
+
export type OperationalState =
|
|
57
|
+
(typeof OperationalState)[keyof typeof OperationalState];
|
|
58
|
+
export declare const UsageState: {
|
|
59
|
+
readonly IN_USE: "IN_USE";
|
|
60
|
+
readonly NOT_IN_USE: "NOT_IN_USE";
|
|
61
|
+
};
|
|
62
|
+
export type UsageState = (typeof UsageState)[keyof typeof UsageState];
|
|
58
63
|
export interface CreateSolFunctionPackageOutput {
|
|
59
64
|
id: string | undefined;
|
|
60
65
|
arn: string | undefined;
|
|
@@ -86,19 +91,24 @@ export interface CreateSolNetworkInstanceOutput {
|
|
|
86
91
|
export interface CreateSolNetworkPackageInput {
|
|
87
92
|
tags?: Record<string, string>;
|
|
88
93
|
}
|
|
89
|
-
export declare
|
|
90
|
-
CREATED
|
|
91
|
-
ERROR
|
|
92
|
-
ONBOARDED
|
|
93
|
-
}
|
|
94
|
-
export
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
94
|
+
export declare const NsdOnboardingState: {
|
|
95
|
+
readonly CREATED: "CREATED";
|
|
96
|
+
readonly ERROR: "ERROR";
|
|
97
|
+
readonly ONBOARDED: "ONBOARDED";
|
|
98
|
+
};
|
|
99
|
+
export type NsdOnboardingState =
|
|
100
|
+
(typeof NsdOnboardingState)[keyof typeof NsdOnboardingState];
|
|
101
|
+
export declare const NsdOperationalState: {
|
|
102
|
+
readonly DISABLED: "DISABLED";
|
|
103
|
+
readonly ENABLED: "ENABLED";
|
|
104
|
+
};
|
|
105
|
+
export type NsdOperationalState =
|
|
106
|
+
(typeof NsdOperationalState)[keyof typeof NsdOperationalState];
|
|
107
|
+
export declare const NsdUsageState: {
|
|
108
|
+
readonly IN_USE: "IN_USE";
|
|
109
|
+
readonly NOT_IN_USE: "NOT_IN_USE";
|
|
110
|
+
};
|
|
111
|
+
export type NsdUsageState = (typeof NsdUsageState)[keyof typeof NsdUsageState];
|
|
102
112
|
export interface CreateSolNetworkPackageOutput {
|
|
103
113
|
id: string | undefined;
|
|
104
114
|
arn: string | undefined;
|
|
@@ -116,9 +126,11 @@ export interface DeleteSolNetworkInstanceInput {
|
|
|
116
126
|
export interface DeleteSolNetworkPackageInput {
|
|
117
127
|
nsdInfoId: string | undefined;
|
|
118
128
|
}
|
|
119
|
-
export declare
|
|
120
|
-
TEXT_PLAIN
|
|
121
|
-
}
|
|
129
|
+
export declare const DescriptorContentType: {
|
|
130
|
+
readonly TEXT_PLAIN: "text/plain";
|
|
131
|
+
};
|
|
132
|
+
export type DescriptorContentType =
|
|
133
|
+
(typeof DescriptorContentType)[keyof typeof DescriptorContentType];
|
|
122
134
|
export interface ErrorInfo {
|
|
123
135
|
cause?: string;
|
|
124
136
|
details?: string;
|
|
@@ -141,18 +153,22 @@ export interface GetSolVnfcResourceInfoMetadata {
|
|
|
141
153
|
export interface GetSolVnfcResourceInfo {
|
|
142
154
|
metadata?: GetSolVnfcResourceInfoMetadata;
|
|
143
155
|
}
|
|
144
|
-
export declare
|
|
145
|
-
STARTED
|
|
146
|
-
STOPPED
|
|
147
|
-
}
|
|
156
|
+
export declare const VnfOperationalState: {
|
|
157
|
+
readonly STARTED: "STARTED";
|
|
158
|
+
readonly STOPPED: "STOPPED";
|
|
159
|
+
};
|
|
160
|
+
export type VnfOperationalState =
|
|
161
|
+
(typeof VnfOperationalState)[keyof typeof VnfOperationalState];
|
|
148
162
|
export interface GetSolVnfInfo {
|
|
149
163
|
vnfState?: VnfOperationalState | string;
|
|
150
164
|
vnfcResourceInfo?: GetSolVnfcResourceInfo[];
|
|
151
165
|
}
|
|
152
|
-
export declare
|
|
153
|
-
INSTANTIATED
|
|
154
|
-
NOT_INSTANTIATED
|
|
155
|
-
}
|
|
166
|
+
export declare const VnfInstantiationState: {
|
|
167
|
+
readonly INSTANTIATED: "INSTANTIATED";
|
|
168
|
+
readonly NOT_INSTANTIATED: "NOT_INSTANTIATED";
|
|
169
|
+
};
|
|
170
|
+
export type VnfInstantiationState =
|
|
171
|
+
(typeof VnfInstantiationState)[keyof typeof VnfInstantiationState];
|
|
156
172
|
export interface GetSolFunctionInstanceMetadata {
|
|
157
173
|
createdAt: Date | undefined;
|
|
158
174
|
lastModified: Date | undefined;
|
|
@@ -192,9 +208,11 @@ export interface GetSolFunctionPackageOutput {
|
|
|
192
208
|
metadata?: GetSolFunctionPackageMetadata;
|
|
193
209
|
tags?: Record<string, string>;
|
|
194
210
|
}
|
|
195
|
-
export declare
|
|
196
|
-
APPLICATION_ZIP
|
|
197
|
-
}
|
|
211
|
+
export declare const PackageContentType: {
|
|
212
|
+
readonly APPLICATION_ZIP: "application/zip";
|
|
213
|
+
};
|
|
214
|
+
export type PackageContentType =
|
|
215
|
+
(typeof PackageContentType)[keyof typeof PackageContentType];
|
|
198
216
|
export interface GetSolFunctionPackageContentInput {
|
|
199
217
|
vnfPkgId: string | undefined;
|
|
200
218
|
accept: PackageContentType | string | undefined;
|
|
@@ -224,16 +242,17 @@ export interface GetSolNetworkInstanceMetadata {
|
|
|
224
242
|
createdAt: Date | undefined;
|
|
225
243
|
lastModified: Date | undefined;
|
|
226
244
|
}
|
|
227
|
-
export declare
|
|
228
|
-
DELETED
|
|
229
|
-
IMPAIRED
|
|
230
|
-
INSTANTIATED
|
|
231
|
-
INSTANTIATE_IN_PROGRESS
|
|
232
|
-
NOT_INSTANTIATED
|
|
233
|
-
STOPPED
|
|
234
|
-
TERMINATE_IN_PROGRESS
|
|
235
|
-
UPDATE_IN_PROGRESS
|
|
236
|
-
}
|
|
245
|
+
export declare const NsState: {
|
|
246
|
+
readonly DELETED: "DELETED";
|
|
247
|
+
readonly IMPAIRED: "IMPAIRED";
|
|
248
|
+
readonly INSTANTIATED: "INSTANTIATED";
|
|
249
|
+
readonly INSTANTIATE_IN_PROGRESS: "INSTANTIATE_IN_PROGRESS";
|
|
250
|
+
readonly NOT_INSTANTIATED: "NOT_INSTANTIATED";
|
|
251
|
+
readonly STOPPED: "STOPPED";
|
|
252
|
+
readonly TERMINATE_IN_PROGRESS: "TERMINATE_IN_PROGRESS";
|
|
253
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
254
|
+
};
|
|
255
|
+
export type NsState = (typeof NsState)[keyof typeof NsState];
|
|
237
256
|
export interface GetSolNetworkInstanceOutput {
|
|
238
257
|
id: string | undefined;
|
|
239
258
|
arn: string | undefined;
|
|
@@ -253,31 +272,36 @@ export interface ProblemDetails {
|
|
|
253
272
|
detail: string | undefined;
|
|
254
273
|
title?: string;
|
|
255
274
|
}
|
|
256
|
-
export declare
|
|
257
|
-
INSTANTIATE
|
|
258
|
-
TERMINATE
|
|
259
|
-
UPDATE
|
|
260
|
-
}
|
|
275
|
+
export declare const LcmOperationType: {
|
|
276
|
+
readonly INSTANTIATE: "INSTANTIATE";
|
|
277
|
+
readonly TERMINATE: "TERMINATE";
|
|
278
|
+
readonly UPDATE: "UPDATE";
|
|
279
|
+
};
|
|
280
|
+
export type LcmOperationType =
|
|
281
|
+
(typeof LcmOperationType)[keyof typeof LcmOperationType];
|
|
261
282
|
export interface GetSolNetworkOperationMetadata {
|
|
262
283
|
createdAt: Date | undefined;
|
|
263
284
|
lastModified: Date | undefined;
|
|
264
285
|
}
|
|
265
|
-
export declare
|
|
266
|
-
CANCELLED
|
|
267
|
-
CANCELLING
|
|
268
|
-
COMPLETED
|
|
269
|
-
FAILED
|
|
270
|
-
PROCESSING
|
|
271
|
-
}
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
286
|
+
export declare const NsLcmOperationState: {
|
|
287
|
+
readonly CANCELLED: "CANCELLED";
|
|
288
|
+
readonly CANCELLING: "CANCELLING";
|
|
289
|
+
readonly COMPLETED: "COMPLETED";
|
|
290
|
+
readonly FAILED: "FAILED";
|
|
291
|
+
readonly PROCESSING: "PROCESSING";
|
|
292
|
+
};
|
|
293
|
+
export type NsLcmOperationState =
|
|
294
|
+
(typeof NsLcmOperationState)[keyof typeof NsLcmOperationState];
|
|
295
|
+
export declare const TaskStatus: {
|
|
296
|
+
readonly CANCELLED: "CANCELLED";
|
|
297
|
+
readonly COMPLETED: "COMPLETED";
|
|
298
|
+
readonly ERROR: "ERROR";
|
|
299
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
300
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
301
|
+
readonly SKIPPED: "SKIPPED";
|
|
302
|
+
readonly STARTED: "STARTED";
|
|
303
|
+
};
|
|
304
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
281
305
|
export interface GetSolNetworkOperationTaskDetails {
|
|
282
306
|
taskName?: string;
|
|
283
307
|
taskContext?: Record<string, string>;
|
|
@@ -529,9 +553,11 @@ export interface UpdateSolNetworkModify {
|
|
|
529
553
|
vnfInstanceId: string | undefined;
|
|
530
554
|
vnfConfigurableProperties: __DocumentType | undefined;
|
|
531
555
|
}
|
|
532
|
-
export declare
|
|
533
|
-
MODIFY_VNF_INFORMATION
|
|
534
|
-
}
|
|
556
|
+
export declare const UpdateSolNetworkType: {
|
|
557
|
+
readonly MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION";
|
|
558
|
+
};
|
|
559
|
+
export type UpdateSolNetworkType =
|
|
560
|
+
(typeof UpdateSolNetworkType)[keyof typeof UpdateSolNetworkType];
|
|
535
561
|
export interface UpdateSolNetworkInstanceInput {
|
|
536
562
|
nsInstanceId: string | undefined;
|
|
537
563
|
updateType: UpdateSolNetworkType | string | undefined;
|
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.306.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,42 +21,42 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|