@aws-sdk/client-tnb 3.687.0 → 3.692.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.
@@ -40,7 +40,7 @@ export declare class ValidationException extends __BaseException {
40
40
  );
41
41
  }
42
42
  export interface CreateSolFunctionPackageInput {
43
- tags?: Record<string, string>;
43
+ tags?: Record<string, string> | undefined;
44
44
  }
45
45
  export declare const OnboardingState: {
46
46
  readonly CREATED: "CREATED";
@@ -66,7 +66,7 @@ export interface CreateSolFunctionPackageOutput {
66
66
  onboardingState: OnboardingState | undefined;
67
67
  operationalState: OperationalState | undefined;
68
68
  usageState: UsageState | undefined;
69
- tags?: Record<string, string>;
69
+ tags?: Record<string, string> | undefined;
70
70
  }
71
71
  export declare class ServiceQuotaExceededException extends __BaseException {
72
72
  readonly name: "ServiceQuotaExceededException";
@@ -78,18 +78,18 @@ export declare class ServiceQuotaExceededException extends __BaseException {
78
78
  export interface CreateSolNetworkInstanceInput {
79
79
  nsdInfoId: string | undefined;
80
80
  nsName: string | undefined;
81
- nsDescription?: string;
82
- tags?: Record<string, string>;
81
+ nsDescription?: string | undefined;
82
+ tags?: Record<string, string> | undefined;
83
83
  }
84
84
  export interface CreateSolNetworkInstanceOutput {
85
85
  id: string | undefined;
86
86
  arn: string | undefined;
87
87
  nsdInfoId: string | undefined;
88
88
  nsInstanceName: string | undefined;
89
- tags?: Record<string, string>;
89
+ tags?: Record<string, string> | undefined;
90
90
  }
91
91
  export interface CreateSolNetworkPackageInput {
92
- tags?: Record<string, string>;
92
+ tags?: Record<string, string> | undefined;
93
93
  }
94
94
  export declare const NsdOnboardingState: {
95
95
  readonly CREATED: "CREATED";
@@ -115,7 +115,7 @@ export interface CreateSolNetworkPackageOutput {
115
115
  nsdOnboardingState: NsdOnboardingState | undefined;
116
116
  nsdOperationalState: NsdOperationalState | undefined;
117
117
  nsdUsageState: NsdUsageState | undefined;
118
- tags?: Record<string, string>;
118
+ tags?: Record<string, string> | undefined;
119
119
  }
120
120
  export interface DeleteSolFunctionPackageInput {
121
121
  vnfPkgId: string | undefined;
@@ -132,26 +132,26 @@ export declare const DescriptorContentType: {
132
132
  export type DescriptorContentType =
133
133
  (typeof DescriptorContentType)[keyof typeof DescriptorContentType];
134
134
  export interface ErrorInfo {
135
- cause?: string;
136
- details?: string;
135
+ cause?: string | undefined;
136
+ details?: string | undefined;
137
137
  }
138
138
  export interface ToscaOverride {
139
- name?: string;
140
- defaultValue?: string;
139
+ name?: string | undefined;
140
+ defaultValue?: string | undefined;
141
141
  }
142
142
  export interface FunctionArtifactMeta {
143
- overrides?: ToscaOverride[];
143
+ overrides?: ToscaOverride[] | undefined;
144
144
  }
145
145
  export interface GetSolFunctionInstanceInput {
146
146
  vnfInstanceId: string | undefined;
147
147
  }
148
148
  export interface GetSolVnfcResourceInfoMetadata {
149
- nodeGroup?: string;
150
- cluster?: string;
151
- helmChart?: string;
149
+ nodeGroup?: string | undefined;
150
+ cluster?: string | undefined;
151
+ helmChart?: string | undefined;
152
152
  }
153
153
  export interface GetSolVnfcResourceInfo {
154
- metadata?: GetSolVnfcResourceInfoMetadata;
154
+ metadata?: GetSolVnfcResourceInfoMetadata | undefined;
155
155
  }
156
156
  export declare const VnfOperationalState: {
157
157
  readonly STARTED: "STARTED";
@@ -160,8 +160,8 @@ export declare const VnfOperationalState: {
160
160
  export type VnfOperationalState =
161
161
  (typeof VnfOperationalState)[keyof typeof VnfOperationalState];
162
162
  export interface GetSolVnfInfo {
163
- vnfState?: VnfOperationalState;
164
- vnfcResourceInfo?: GetSolVnfcResourceInfo[];
163
+ vnfState?: VnfOperationalState | undefined;
164
+ vnfcResourceInfo?: GetSolVnfcResourceInfo[] | undefined;
165
165
  }
166
166
  export declare const VnfInstantiationState: {
167
167
  readonly INSTANTIATED: "INSTANTIATED";
@@ -179,19 +179,19 @@ export interface GetSolFunctionInstanceOutput {
179
179
  nsInstanceId: string | undefined;
180
180
  vnfPkgId: string | undefined;
181
181
  vnfdId: string | undefined;
182
- vnfProvider?: string;
183
- vnfProductName?: string;
184
- vnfdVersion?: string;
182
+ vnfProvider?: string | undefined;
183
+ vnfProductName?: string | undefined;
184
+ vnfdVersion?: string | undefined;
185
185
  instantiationState: VnfInstantiationState | undefined;
186
- instantiatedVnfInfo?: GetSolVnfInfo;
186
+ instantiatedVnfInfo?: GetSolVnfInfo | undefined;
187
187
  metadata: GetSolFunctionInstanceMetadata | undefined;
188
- tags?: Record<string, string>;
188
+ tags?: Record<string, string> | undefined;
189
189
  }
190
190
  export interface GetSolFunctionPackageInput {
191
191
  vnfPkgId: string | undefined;
192
192
  }
193
193
  export interface GetSolFunctionPackageMetadata {
194
- vnfd?: FunctionArtifactMeta;
194
+ vnfd?: FunctionArtifactMeta | undefined;
195
195
  createdAt: Date | undefined;
196
196
  lastModified: Date | undefined;
197
197
  }
@@ -201,12 +201,12 @@ export interface GetSolFunctionPackageOutput {
201
201
  onboardingState: OnboardingState | undefined;
202
202
  operationalState: OperationalState | undefined;
203
203
  usageState: UsageState | undefined;
204
- vnfdId?: string;
205
- vnfProvider?: string;
206
- vnfProductName?: string;
207
- vnfdVersion?: string;
208
- metadata?: GetSolFunctionPackageMetadata;
209
- tags?: Record<string, string>;
204
+ vnfdId?: string | undefined;
205
+ vnfProvider?: string | undefined;
206
+ vnfProductName?: string | undefined;
207
+ vnfdVersion?: string | undefined;
208
+ metadata?: GetSolFunctionPackageMetadata | undefined;
209
+ tags?: Record<string, string> | undefined;
210
210
  }
211
211
  export declare const PackageContentType: {
212
212
  readonly APPLICATION_ZIP: "application/zip";
@@ -218,19 +218,19 @@ export interface GetSolFunctionPackageContentInput {
218
218
  accept: PackageContentType | undefined;
219
219
  }
220
220
  export interface GetSolFunctionPackageContentOutput {
221
- contentType?: PackageContentType;
222
- packageContent?: Uint8Array;
221
+ contentType?: PackageContentType | undefined;
222
+ packageContent?: Uint8Array | undefined;
223
223
  }
224
224
  export interface GetSolFunctionPackageDescriptorInput {
225
225
  vnfPkgId: string | undefined;
226
226
  accept: DescriptorContentType | undefined;
227
227
  }
228
228
  export interface GetSolFunctionPackageDescriptorOutput {
229
- contentType?: DescriptorContentType;
230
- vnfd?: Uint8Array;
229
+ contentType?: DescriptorContentType | undefined;
230
+ vnfd?: Uint8Array | undefined;
231
231
  }
232
232
  export interface GetSolInstantiatedVnfInfo {
233
- vnfState?: VnfOperationalState;
233
+ vnfState?: VnfOperationalState | undefined;
234
234
  }
235
235
  export interface GetSolNetworkInstanceInput {
236
236
  nsInstanceId: string | undefined;
@@ -263,17 +263,17 @@ export interface GetSolNetworkInstanceOutput {
263
263
  nsInstanceDescription: string | undefined;
264
264
  nsdId: string | undefined;
265
265
  nsdInfoId: string | undefined;
266
- nsState?: NsState;
267
- lcmOpInfo?: LcmOperationInfo;
266
+ nsState?: NsState | undefined;
267
+ lcmOpInfo?: LcmOperationInfo | undefined;
268
268
  metadata: GetSolNetworkInstanceMetadata | undefined;
269
- tags?: Record<string, string>;
269
+ tags?: Record<string, string> | undefined;
270
270
  }
271
271
  export interface GetSolNetworkOperationInput {
272
272
  nsLcmOpOccId: string | undefined;
273
273
  }
274
274
  export interface ProblemDetails {
275
275
  detail: string | undefined;
276
- title?: string;
276
+ title?: string | undefined;
277
277
  }
278
278
  export declare const LcmOperationType: {
279
279
  readonly INSTANTIATE: "INSTANTIATE";
@@ -284,7 +284,7 @@ export type LcmOperationType =
284
284
  (typeof LcmOperationType)[keyof typeof LcmOperationType];
285
285
  export interface InstantiateMetadata {
286
286
  nsdInfoId: string | undefined;
287
- additionalParamsForNs?: __DocumentType;
287
+ additionalParamsForNs?: __DocumentType | undefined;
288
288
  }
289
289
  export interface ModifyVnfInfoMetadata {
290
290
  vnfInstanceId: string | undefined;
@@ -292,12 +292,12 @@ export interface ModifyVnfInfoMetadata {
292
292
  }
293
293
  export interface UpdateNsMetadata {
294
294
  nsdInfoId: string | undefined;
295
- additionalParamsForNs?: __DocumentType;
295
+ additionalParamsForNs?: __DocumentType | undefined;
296
296
  }
297
297
  export interface GetSolNetworkOperationMetadata {
298
- updateNsMetadata?: UpdateNsMetadata;
299
- modifyVnfInfoMetadata?: ModifyVnfInfoMetadata;
300
- instantiateMetadata?: InstantiateMetadata;
298
+ updateNsMetadata?: UpdateNsMetadata | undefined;
299
+ modifyVnfInfoMetadata?: ModifyVnfInfoMetadata | undefined;
300
+ instantiateMetadata?: InstantiateMetadata | undefined;
301
301
  createdAt: Date | undefined;
302
302
  lastModified: Date | undefined;
303
303
  }
@@ -321,12 +321,12 @@ export declare const TaskStatus: {
321
321
  };
322
322
  export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
323
323
  export interface GetSolNetworkOperationTaskDetails {
324
- taskName?: string;
325
- taskContext?: Record<string, string>;
326
- taskErrorDetails?: ErrorInfo;
327
- taskStatus?: TaskStatus;
328
- taskStartTime?: Date;
329
- taskEndTime?: Date;
324
+ taskName?: string | undefined;
325
+ taskContext?: Record<string, string> | undefined;
326
+ taskErrorDetails?: ErrorInfo | undefined;
327
+ taskStatus?: TaskStatus | undefined;
328
+ taskStartTime?: Date | undefined;
329
+ taskEndTime?: Date | undefined;
330
330
  }
331
331
  export declare const UpdateSolNetworkType: {
332
332
  readonly MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION";
@@ -335,25 +335,25 @@ export declare const UpdateSolNetworkType: {
335
335
  export type UpdateSolNetworkType =
336
336
  (typeof UpdateSolNetworkType)[keyof typeof UpdateSolNetworkType];
337
337
  export interface GetSolNetworkOperationOutput {
338
- id?: string;
338
+ id?: string | undefined;
339
339
  arn: string | undefined;
340
- operationState?: NsLcmOperationState;
341
- nsInstanceId?: string;
342
- lcmOperationType?: LcmOperationType;
343
- updateType?: UpdateSolNetworkType;
344
- error?: ProblemDetails;
345
- metadata?: GetSolNetworkOperationMetadata;
346
- tasks?: GetSolNetworkOperationTaskDetails[];
347
- tags?: Record<string, string>;
340
+ operationState?: NsLcmOperationState | undefined;
341
+ nsInstanceId?: string | undefined;
342
+ lcmOperationType?: LcmOperationType | undefined;
343
+ updateType?: UpdateSolNetworkType | undefined;
344
+ error?: ProblemDetails | undefined;
345
+ metadata?: GetSolNetworkOperationMetadata | undefined;
346
+ tasks?: GetSolNetworkOperationTaskDetails[] | undefined;
347
+ tags?: Record<string, string> | undefined;
348
348
  }
349
349
  export interface GetSolNetworkPackageInput {
350
350
  nsdInfoId: string | undefined;
351
351
  }
352
352
  export interface NetworkArtifactMeta {
353
- overrides?: ToscaOverride[];
353
+ overrides?: ToscaOverride[] | undefined;
354
354
  }
355
355
  export interface GetSolNetworkPackageMetadata {
356
- nsd?: NetworkArtifactMeta;
356
+ nsd?: NetworkArtifactMeta | undefined;
357
357
  createdAt: Date | undefined;
358
358
  lastModified: Date | undefined;
359
359
  }
@@ -368,32 +368,32 @@ export interface GetSolNetworkPackageOutput {
368
368
  nsdVersion: string | undefined;
369
369
  vnfPkgIds: string[] | undefined;
370
370
  metadata: GetSolNetworkPackageMetadata | undefined;
371
- tags?: Record<string, string>;
371
+ tags?: Record<string, string> | undefined;
372
372
  }
373
373
  export interface GetSolNetworkPackageContentInput {
374
374
  nsdInfoId: string | undefined;
375
375
  accept: PackageContentType | undefined;
376
376
  }
377
377
  export interface GetSolNetworkPackageContentOutput {
378
- contentType?: PackageContentType;
379
- nsdContent?: Uint8Array;
378
+ contentType?: PackageContentType | undefined;
379
+ nsdContent?: Uint8Array | undefined;
380
380
  }
381
381
  export interface GetSolNetworkPackageDescriptorInput {
382
382
  nsdInfoId: string | undefined;
383
383
  }
384
384
  export interface GetSolNetworkPackageDescriptorOutput {
385
- contentType?: DescriptorContentType;
386
- nsd?: Uint8Array;
385
+ contentType?: DescriptorContentType | undefined;
386
+ nsd?: Uint8Array | undefined;
387
387
  }
388
388
  export interface InstantiateSolNetworkInstanceInput {
389
389
  nsInstanceId: string | undefined;
390
- dryRun?: boolean;
391
- additionalParamsForNs?: __DocumentType;
392
- tags?: Record<string, string>;
390
+ dryRun?: boolean | undefined;
391
+ additionalParamsForNs?: __DocumentType | undefined;
392
+ tags?: Record<string, string> | undefined;
393
393
  }
394
394
  export interface InstantiateSolNetworkInstanceOutput {
395
395
  nsLcmOpOccId: string | undefined;
396
- tags?: Record<string, string>;
396
+ tags?: Record<string, string> | undefined;
397
397
  }
398
398
  export interface ListSolFunctionInstanceMetadata {
399
399
  createdAt: Date | undefined;
@@ -404,18 +404,18 @@ export interface ListSolFunctionInstanceInfo {
404
404
  arn: string | undefined;
405
405
  nsInstanceId: string | undefined;
406
406
  vnfPkgId: string | undefined;
407
- vnfPkgName?: string;
407
+ vnfPkgName?: string | undefined;
408
408
  instantiationState: VnfInstantiationState | undefined;
409
- instantiatedVnfInfo?: GetSolInstantiatedVnfInfo;
409
+ instantiatedVnfInfo?: GetSolInstantiatedVnfInfo | undefined;
410
410
  metadata: ListSolFunctionInstanceMetadata | undefined;
411
411
  }
412
412
  export interface ListSolFunctionInstancesInput {
413
- maxResults?: number;
414
- nextToken?: string;
413
+ maxResults?: number | undefined;
414
+ nextToken?: string | undefined;
415
415
  }
416
416
  export interface ListSolFunctionInstancesOutput {
417
- nextToken?: string;
418
- functionInstances?: ListSolFunctionInstanceInfo[];
417
+ nextToken?: string | undefined;
418
+ functionInstances?: ListSolFunctionInstanceInfo[] | undefined;
419
419
  }
420
420
  export interface ListSolFunctionPackageMetadata {
421
421
  createdAt: Date | undefined;
@@ -427,18 +427,18 @@ export interface ListSolFunctionPackageInfo {
427
427
  onboardingState: OnboardingState | undefined;
428
428
  operationalState: OperationalState | undefined;
429
429
  usageState: UsageState | undefined;
430
- vnfdId?: string;
431
- vnfProvider?: string;
432
- vnfProductName?: string;
433
- vnfdVersion?: string;
434
- metadata?: ListSolFunctionPackageMetadata;
430
+ vnfdId?: string | undefined;
431
+ vnfProvider?: string | undefined;
432
+ vnfProductName?: string | undefined;
433
+ vnfdVersion?: string | undefined;
434
+ metadata?: ListSolFunctionPackageMetadata | undefined;
435
435
  }
436
436
  export interface ListSolFunctionPackagesInput {
437
- maxResults?: number;
438
- nextToken?: string;
437
+ maxResults?: number | undefined;
438
+ nextToken?: string | undefined;
439
439
  }
440
440
  export interface ListSolFunctionPackagesOutput {
441
- nextToken?: string;
441
+ nextToken?: string | undefined;
442
442
  functionPackages: ListSolFunctionPackageInfo[] | undefined;
443
443
  }
444
444
  export interface ListSolNetworkInstanceMetadata {
@@ -456,21 +456,21 @@ export interface ListSolNetworkInstanceInfo {
456
456
  metadata: ListSolNetworkInstanceMetadata | undefined;
457
457
  }
458
458
  export interface ListSolNetworkInstancesInput {
459
- maxResults?: number;
460
- nextToken?: string;
459
+ maxResults?: number | undefined;
460
+ nextToken?: string | undefined;
461
461
  }
462
462
  export interface ListSolNetworkInstancesOutput {
463
- nextToken?: string;
464
- networkInstances?: ListSolNetworkInstanceInfo[];
463
+ nextToken?: string | undefined;
464
+ networkInstances?: ListSolNetworkInstanceInfo[] | undefined;
465
465
  }
466
466
  export interface ListSolNetworkOperationsInput {
467
- nsInstanceId?: string;
468
- maxResults?: number;
469
- nextToken?: string;
467
+ nsInstanceId?: string | undefined;
468
+ maxResults?: number | undefined;
469
+ nextToken?: string | undefined;
470
470
  }
471
471
  export interface ListSolNetworkOperationsMetadata {
472
- nsdInfoId?: string;
473
- vnfInstanceId?: string;
472
+ nsdInfoId?: string | undefined;
473
+ vnfInstanceId?: string | undefined;
474
474
  createdAt: Date | undefined;
475
475
  lastModified: Date | undefined;
476
476
  }
@@ -480,13 +480,13 @@ export interface ListSolNetworkOperationsInfo {
480
480
  operationState: NsLcmOperationState | undefined;
481
481
  nsInstanceId: string | undefined;
482
482
  lcmOperationType: LcmOperationType | undefined;
483
- updateType?: UpdateSolNetworkType;
484
- error?: ProblemDetails;
485
- metadata?: ListSolNetworkOperationsMetadata;
483
+ updateType?: UpdateSolNetworkType | undefined;
484
+ error?: ProblemDetails | undefined;
485
+ metadata?: ListSolNetworkOperationsMetadata | undefined;
486
486
  }
487
487
  export interface ListSolNetworkOperationsOutput {
488
- nextToken?: string;
489
- networkOperations?: ListSolNetworkOperationsInfo[];
488
+ nextToken?: string | undefined;
489
+ networkOperations?: ListSolNetworkOperationsInfo[] | undefined;
490
490
  }
491
491
  export interface ListSolNetworkPackageMetadata {
492
492
  createdAt: Date | undefined;
@@ -498,20 +498,20 @@ export interface ListSolNetworkPackageInfo {
498
498
  nsdOnboardingState: NsdOnboardingState | undefined;
499
499
  nsdOperationalState: NsdOperationalState | undefined;
500
500
  nsdUsageState: NsdUsageState | undefined;
501
- nsdId?: string;
502
- nsdName?: string;
503
- nsdVersion?: string;
504
- nsdDesigner?: string;
505
- nsdInvariantId?: string;
506
- vnfPkgIds?: string[];
501
+ nsdId?: string | undefined;
502
+ nsdName?: string | undefined;
503
+ nsdVersion?: string | undefined;
504
+ nsdDesigner?: string | undefined;
505
+ nsdInvariantId?: string | undefined;
506
+ vnfPkgIds?: string[] | undefined;
507
507
  metadata: ListSolNetworkPackageMetadata | undefined;
508
508
  }
509
509
  export interface ListSolNetworkPackagesInput {
510
- maxResults?: number;
511
- nextToken?: string;
510
+ maxResults?: number | undefined;
511
+ nextToken?: string | undefined;
512
512
  }
513
513
  export interface ListSolNetworkPackagesOutput {
514
- nextToken?: string;
514
+ nextToken?: string | undefined;
515
515
  networkPackages: ListSolNetworkPackageInfo[] | undefined;
516
516
  }
517
517
  export interface ListTagsForResourceInput {
@@ -522,11 +522,11 @@ export interface ListTagsForResourceOutput {
522
522
  }
523
523
  export interface PutSolFunctionPackageContentInput {
524
524
  vnfPkgId: string | undefined;
525
- contentType?: PackageContentType;
525
+ contentType?: PackageContentType | undefined;
526
526
  file: Uint8Array | undefined;
527
527
  }
528
528
  export interface PutSolFunctionPackageContentMetadata {
529
- vnfd?: FunctionArtifactMeta;
529
+ vnfd?: FunctionArtifactMeta | undefined;
530
530
  }
531
531
  export interface PutSolFunctionPackageContentOutput {
532
532
  id: string | undefined;
@@ -538,11 +538,11 @@ export interface PutSolFunctionPackageContentOutput {
538
538
  }
539
539
  export interface PutSolNetworkPackageContentInput {
540
540
  nsdInfoId: string | undefined;
541
- contentType?: PackageContentType;
541
+ contentType?: PackageContentType | undefined;
542
542
  file: Uint8Array | undefined;
543
543
  }
544
544
  export interface PutSolNetworkPackageContentMetadata {
545
- nsd?: NetworkArtifactMeta;
545
+ nsd?: NetworkArtifactMeta | undefined;
546
546
  }
547
547
  export interface PutSolNetworkPackageContentOutput {
548
548
  id: string | undefined;
@@ -560,11 +560,11 @@ export interface TagResourceInput {
560
560
  export interface TagResourceOutput {}
561
561
  export interface TerminateSolNetworkInstanceInput {
562
562
  nsInstanceId: string | undefined;
563
- tags?: Record<string, string>;
563
+ tags?: Record<string, string> | undefined;
564
564
  }
565
565
  export interface TerminateSolNetworkInstanceOutput {
566
- nsLcmOpOccId?: string;
567
- tags?: Record<string, string>;
566
+ nsLcmOpOccId?: string | undefined;
567
+ tags?: Record<string, string> | undefined;
568
568
  }
569
569
  export interface UntagResourceInput {
570
570
  resourceArn: string | undefined;
@@ -584,18 +584,18 @@ export interface UpdateSolNetworkModify {
584
584
  }
585
585
  export interface UpdateSolNetworkServiceData {
586
586
  nsdInfoId: string | undefined;
587
- additionalParamsForNs?: __DocumentType;
587
+ additionalParamsForNs?: __DocumentType | undefined;
588
588
  }
589
589
  export interface UpdateSolNetworkInstanceInput {
590
590
  nsInstanceId: string | undefined;
591
591
  updateType: UpdateSolNetworkType | undefined;
592
- modifyVnfInfoData?: UpdateSolNetworkModify;
593
- updateNs?: UpdateSolNetworkServiceData;
594
- tags?: Record<string, string>;
592
+ modifyVnfInfoData?: UpdateSolNetworkModify | undefined;
593
+ updateNs?: UpdateSolNetworkServiceData | undefined;
594
+ tags?: Record<string, string> | undefined;
595
595
  }
596
596
  export interface UpdateSolNetworkInstanceOutput {
597
- nsLcmOpOccId?: string;
598
- tags?: Record<string, string>;
597
+ nsLcmOpOccId?: string | undefined;
598
+ tags?: Record<string, string> | undefined;
599
599
  }
600
600
  export interface UpdateSolNetworkPackageInput {
601
601
  nsdInfoId: string | undefined;
@@ -606,11 +606,11 @@ export interface UpdateSolNetworkPackageOutput {
606
606
  }
607
607
  export interface ValidateSolFunctionPackageContentInput {
608
608
  vnfPkgId: string | undefined;
609
- contentType?: PackageContentType;
609
+ contentType?: PackageContentType | undefined;
610
610
  file: Uint8Array | undefined;
611
611
  }
612
612
  export interface ValidateSolFunctionPackageContentMetadata {
613
- vnfd?: FunctionArtifactMeta;
613
+ vnfd?: FunctionArtifactMeta | undefined;
614
614
  }
615
615
  export interface ValidateSolFunctionPackageContentOutput {
616
616
  id: string | undefined;
@@ -622,11 +622,11 @@ export interface ValidateSolFunctionPackageContentOutput {
622
622
  }
623
623
  export interface ValidateSolNetworkPackageContentInput {
624
624
  nsdInfoId: string | undefined;
625
- contentType?: PackageContentType;
625
+ contentType?: PackageContentType | undefined;
626
626
  file: Uint8Array | undefined;
627
627
  }
628
628
  export interface ValidateSolNetworkPackageContentMetadata {
629
- nsd?: NetworkArtifactMeta;
629
+ nsd?: NetworkArtifactMeta | undefined;
630
630
  }
631
631
  export interface ValidateSolNetworkPackageContentOutput {
632
632
  id: 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.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-tnb",
@@ -20,44 +20,44 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
60
- "@smithy/util-stream": "^3.2.1",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
+ "@smithy/util-stream": "^3.3.0",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
62
  "tslib": "^2.6.2"
63
63
  },