@aws-sdk/client-tnb 3.321.1 → 3.326.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/commands/CancelSolNetworkOperationCommand.d.ts +4 -0
- package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +13 -0
- package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +12 -0
- package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +13 -0
- package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +4 -0
- package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +33 -0
- package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +29 -0
- package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +7 -0
- package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +7 -0
- package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +22 -0
- package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +36 -0
- package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +31 -0
- package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +7 -0
- package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +7 -0
- package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +9 -0
- package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +23 -0
- package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +23 -0
- package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +21 -0
- package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +23 -0
- package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +27 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +20 -0
- package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +23 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +9 -0
- package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +6 -0
- package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +20 -0
- package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +23 -0
- package/package.json +16 -16
|
@@ -32,6 +32,8 @@ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CancelSolNetworkOperationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param CancelSolNetworkOperationCommandInput - {@link CancelSolNetworkOperationCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link TnbServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class CancelSolNetworkOperationCommand extends $Command<CancelSolNetworkOperationCommandInput, CancelSolNetworkOperationCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -36,6 +36,17 @@ export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunction
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateSolFunctionPackageCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateSolFunctionPackageOutput
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // onboardingState: "CREATED" || "ONBOARDED" || "ERROR", // required
|
|
43
|
+
* // operationalState: "ENABLED" || "DISABLED", // required
|
|
44
|
+
* // usageState: "IN_USE" || "NOT_IN_USE", // required
|
|
45
|
+
* // tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
39
50
|
* ```
|
|
40
51
|
*
|
|
41
52
|
* @param CreateSolFunctionPackageCommandInput - {@link CreateSolFunctionPackageCommandInput}
|
|
@@ -59,6 +70,8 @@ export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunction
|
|
|
59
70
|
* @throws {@link ValidationException} (client fault)
|
|
60
71
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
61
72
|
*
|
|
73
|
+
* @throws {@link TnbServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
62
75
|
*
|
|
63
76
|
*/
|
|
64
77
|
export declare class CreateSolFunctionPackageCommand extends $Command<CreateSolFunctionPackageCommandInput, CreateSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -38,6 +38,16 @@ export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkI
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateSolNetworkInstanceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateSolNetworkInstanceOutput
|
|
42
|
+
* // id: "STRING_VALUE", // required
|
|
43
|
+
* // arn: "STRING_VALUE", // required
|
|
44
|
+
* // nsdInfoId: "STRING_VALUE", // required
|
|
45
|
+
* // nsInstanceName: "STRING_VALUE", // required
|
|
46
|
+
* // tags: { // TagMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
41
51
|
* ```
|
|
42
52
|
*
|
|
43
53
|
* @param CreateSolNetworkInstanceCommandInput - {@link CreateSolNetworkInstanceCommandInput}
|
|
@@ -64,6 +74,8 @@ export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkI
|
|
|
64
74
|
* @throws {@link ValidationException} (client fault)
|
|
65
75
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
66
76
|
*
|
|
77
|
+
* @throws {@link TnbServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
67
79
|
*
|
|
68
80
|
*/
|
|
69
81
|
export declare class CreateSolNetworkInstanceCommand extends $Command<CreateSolNetworkInstanceCommandInput, CreateSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -37,6 +37,17 @@ export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPa
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CreateSolNetworkPackageCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateSolNetworkPackageOutput
|
|
41
|
+
* // id: "STRING_VALUE", // required
|
|
42
|
+
* // arn: "STRING_VALUE", // required
|
|
43
|
+
* // nsdOnboardingState: "CREATED" || "ONBOARDED" || "ERROR", // required
|
|
44
|
+
* // nsdOperationalState: "ENABLED" || "DISABLED", // required
|
|
45
|
+
* // nsdUsageState: "IN_USE" || "NOT_IN_USE", // required
|
|
46
|
+
* // tags: { // TagMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
40
51
|
* ```
|
|
41
52
|
*
|
|
42
53
|
* @param CreateSolNetworkPackageCommandInput - {@link CreateSolNetworkPackageCommandInput}
|
|
@@ -60,6 +71,8 @@ export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPa
|
|
|
60
71
|
* @throws {@link ValidationException} (client fault)
|
|
61
72
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
62
73
|
*
|
|
74
|
+
* @throws {@link TnbServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
63
76
|
*
|
|
64
77
|
*/
|
|
65
78
|
export declare class CreateSolNetworkPackageCommand extends $Command<CreateSolNetworkPackageCommandInput, CreateSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteSolFunctionPackageCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteSolFunctionPackageCommandInput - {@link DeleteSolFunctionPackageCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link TnbServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteSolFunctionPackageCommand extends $Command<DeleteSolFunctionPackageCommandInput, DeleteSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteSolNetworkInstanceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteSolNetworkInstanceCommandInput - {@link DeleteSolNetworkInstanceCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer
|
|
|
56
58
|
* @throws {@link ValidationException} (client fault)
|
|
57
59
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link TnbServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteSolNetworkInstanceCommand extends $Command<DeleteSolNetworkInstanceCommandInput, DeleteSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteSolNetworkPackageCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteSolNetworkPackageCommandInput - {@link DeleteSolNetworkPackageCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer {
|
|
|
56
58
|
* @throws {@link ValidationException} (client fault)
|
|
57
59
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link TnbServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteSolNetworkPackageCommand extends $Command<DeleteSolNetworkPackageCommandInput, DeleteSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -32,6 +32,37 @@ export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInsta
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSolFunctionInstanceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSolFunctionInstanceOutput
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // nsInstanceId: "STRING_VALUE", // required
|
|
39
|
+
* // vnfPkgId: "STRING_VALUE", // required
|
|
40
|
+
* // vnfdId: "STRING_VALUE", // required
|
|
41
|
+
* // vnfProvider: "STRING_VALUE",
|
|
42
|
+
* // vnfProductName: "STRING_VALUE",
|
|
43
|
+
* // vnfdVersion: "STRING_VALUE",
|
|
44
|
+
* // instantiationState: "INSTANTIATED" || "NOT_INSTANTIATED", // required
|
|
45
|
+
* // instantiatedVnfInfo: { // GetSolVnfInfo
|
|
46
|
+
* // vnfState: "STARTED" || "STOPPED",
|
|
47
|
+
* // vnfcResourceInfo: [ // GetSolVnfcResourceInfoList
|
|
48
|
+
* // { // GetSolVnfcResourceInfo
|
|
49
|
+
* // metadata: { // GetSolVnfcResourceInfoMetadata
|
|
50
|
+
* // nodeGroup: "STRING_VALUE",
|
|
51
|
+
* // cluster: "STRING_VALUE",
|
|
52
|
+
* // helmChart: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // metadata: { // GetSolFunctionInstanceMetadata
|
|
58
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
59
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // },
|
|
61
|
+
* // tags: { // TagMap
|
|
62
|
+
* // "<keys>": "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
35
66
|
* ```
|
|
36
67
|
*
|
|
37
68
|
* @param GetSolFunctionInstanceCommandInput - {@link GetSolFunctionInstanceCommandInput}
|
|
@@ -55,6 +86,8 @@ export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInsta
|
|
|
55
86
|
* @throws {@link ValidationException} (client fault)
|
|
56
87
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
88
|
*
|
|
89
|
+
* @throws {@link TnbServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
91
|
*
|
|
59
92
|
*/
|
|
60
93
|
export declare class GetSolFunctionInstanceCommand extends $Command<GetSolFunctionInstanceCommandInput, GetSolFunctionInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -32,6 +32,33 @@ export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackag
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSolFunctionPackageCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSolFunctionPackageOutput
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // onboardingState: "CREATED" || "ONBOARDED" || "ERROR", // required
|
|
39
|
+
* // operationalState: "ENABLED" || "DISABLED", // required
|
|
40
|
+
* // usageState: "IN_USE" || "NOT_IN_USE", // required
|
|
41
|
+
* // vnfdId: "STRING_VALUE",
|
|
42
|
+
* // vnfProvider: "STRING_VALUE",
|
|
43
|
+
* // vnfProductName: "STRING_VALUE",
|
|
44
|
+
* // vnfdVersion: "STRING_VALUE",
|
|
45
|
+
* // metadata: { // GetSolFunctionPackageMetadata
|
|
46
|
+
* // vnfd: { // FunctionArtifactMeta
|
|
47
|
+
* // overrides: [ // OverrideList
|
|
48
|
+
* // { // ToscaOverride
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // defaultValue: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // },
|
|
57
|
+
* // tags: { // TagMap
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
35
62
|
* ```
|
|
36
63
|
*
|
|
37
64
|
* @param GetSolFunctionPackageCommandInput - {@link GetSolFunctionPackageCommandInput}
|
|
@@ -55,6 +82,8 @@ export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackag
|
|
|
55
82
|
* @throws {@link ValidationException} (client fault)
|
|
56
83
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
84
|
*
|
|
85
|
+
* @throws {@link TnbServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
87
|
*
|
|
59
88
|
*/
|
|
60
89
|
export declare class GetSolFunctionPackageCommand extends $Command<GetSolFunctionPackageCommandInput, GetSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface GetSolFunctionPackageContentCommandOutput extends GetSolFunctio
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetSolFunctionPackageContentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetSolFunctionPackageContentOutput
|
|
37
|
+
* // contentType: "application/zip",
|
|
38
|
+
* // packageContent: "BLOB_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param GetSolFunctionPackageContentCommandInput - {@link GetSolFunctionPackageContentCommandInput}
|
|
@@ -56,6 +61,8 @@ export interface GetSolFunctionPackageContentCommandOutput extends GetSolFunctio
|
|
|
56
61
|
* @throws {@link ValidationException} (client fault)
|
|
57
62
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
58
63
|
*
|
|
64
|
+
* @throws {@link TnbServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
59
66
|
*
|
|
60
67
|
*/
|
|
61
68
|
export declare class GetSolFunctionPackageContentCommand extends $Command<GetSolFunctionPackageContentCommandInput, GetSolFunctionPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,11 @@ export interface GetSolFunctionPackageDescriptorCommandOutput extends GetSolFunc
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetSolFunctionPackageDescriptorCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetSolFunctionPackageDescriptorOutput
|
|
38
|
+
* // contentType: "text/plain",
|
|
39
|
+
* // vnfd: "BLOB_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
39
44
|
* @param GetSolFunctionPackageDescriptorCommandInput - {@link GetSolFunctionPackageDescriptorCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface GetSolFunctionPackageDescriptorCommandOutput extends GetSolFunc
|
|
|
57
62
|
* @throws {@link ValidationException} (client fault)
|
|
58
63
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
64
|
*
|
|
65
|
+
* @throws {@link TnbServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class GetSolFunctionPackageDescriptorCommand extends $Command<GetSolFunctionPackageDescriptorCommandInput, GetSolFunctionPackageDescriptorCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -32,6 +32,26 @@ export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanc
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSolNetworkInstanceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSolNetworkInstanceOutput
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // nsInstanceName: "STRING_VALUE", // required
|
|
39
|
+
* // nsInstanceDescription: "STRING_VALUE", // required
|
|
40
|
+
* // nsdId: "STRING_VALUE", // required
|
|
41
|
+
* // nsdInfoId: "STRING_VALUE", // required
|
|
42
|
+
* // nsState: "INSTANTIATED" || "NOT_INSTANTIATED" || "IMPAIRED" || "STOPPED" || "DELETED" || "INSTANTIATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "TERMINATE_IN_PROGRESS",
|
|
43
|
+
* // lcmOpInfo: { // LcmOperationInfo
|
|
44
|
+
* // nsLcmOpOccId: "STRING_VALUE", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // metadata: { // GetSolNetworkInstanceMetadata
|
|
47
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // },
|
|
50
|
+
* // tags: { // TagMap
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
35
55
|
* ```
|
|
36
56
|
*
|
|
37
57
|
* @param GetSolNetworkInstanceCommandInput - {@link GetSolNetworkInstanceCommandInput}
|
|
@@ -55,6 +75,8 @@ export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanc
|
|
|
55
75
|
* @throws {@link ValidationException} (client fault)
|
|
56
76
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
77
|
*
|
|
78
|
+
* @throws {@link TnbServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
80
|
*
|
|
59
81
|
*/
|
|
60
82
|
export declare class GetSolNetworkInstanceCommand extends $Command<GetSolNetworkInstanceCommandInput, GetSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -32,6 +32,40 @@ export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSolNetworkOperationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSolNetworkOperationOutput
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // operationState: "PROCESSING" || "COMPLETED" || "FAILED" || "CANCELLING" || "CANCELLED",
|
|
39
|
+
* // nsInstanceId: "STRING_VALUE",
|
|
40
|
+
* // lcmOperationType: "INSTANTIATE" || "UPDATE" || "TERMINATE",
|
|
41
|
+
* // error: { // ProblemDetails
|
|
42
|
+
* // detail: "STRING_VALUE", // required
|
|
43
|
+
* // title: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // metadata: { // GetSolNetworkOperationMetadata
|
|
46
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // },
|
|
49
|
+
* // tasks: [ // GetSolNetworkOperationTasksList
|
|
50
|
+
* // { // GetSolNetworkOperationTaskDetails
|
|
51
|
+
* // taskName: "STRING_VALUE",
|
|
52
|
+
* // taskContext: { // StringMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // taskErrorDetails: { // ErrorInfo
|
|
56
|
+
* // cause: "STRING_VALUE",
|
|
57
|
+
* // details: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // taskStatus: "SCHEDULED" || "STARTED" || "IN_PROGRESS" || "COMPLETED" || "ERROR" || "SKIPPED" || "CANCELLED",
|
|
60
|
+
* // taskStartTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // taskEndTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // tags: { // TagMap
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
35
69
|
* ```
|
|
36
70
|
*
|
|
37
71
|
* @param GetSolNetworkOperationCommandInput - {@link GetSolNetworkOperationCommandInput}
|
|
@@ -55,6 +89,8 @@ export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperat
|
|
|
55
89
|
* @throws {@link ValidationException} (client fault)
|
|
56
90
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
91
|
*
|
|
92
|
+
* @throws {@link TnbServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
94
|
*
|
|
59
95
|
*/
|
|
60
96
|
export declare class GetSolNetworkOperationCommand extends $Command<GetSolNetworkOperationCommandInput, GetSolNetworkOperationCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -32,6 +32,35 @@ export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageO
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSolNetworkPackageCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSolNetworkPackageOutput
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // nsdOnboardingState: "CREATED" || "ONBOARDED" || "ERROR", // required
|
|
39
|
+
* // nsdOperationalState: "ENABLED" || "DISABLED", // required
|
|
40
|
+
* // nsdUsageState: "IN_USE" || "NOT_IN_USE", // required
|
|
41
|
+
* // nsdId: "STRING_VALUE", // required
|
|
42
|
+
* // nsdName: "STRING_VALUE", // required
|
|
43
|
+
* // nsdVersion: "STRING_VALUE", // required
|
|
44
|
+
* // vnfPkgIds: [ // VnfPkgIdList // required
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // metadata: { // GetSolNetworkPackageMetadata
|
|
48
|
+
* // nsd: { // NetworkArtifactMeta
|
|
49
|
+
* // overrides: [ // OverrideList
|
|
50
|
+
* // { // ToscaOverride
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // defaultValue: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // },
|
|
59
|
+
* // tags: { // TagMap
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
35
64
|
* ```
|
|
36
65
|
*
|
|
37
66
|
* @param GetSolNetworkPackageCommandInput - {@link GetSolNetworkPackageCommandInput}
|
|
@@ -55,6 +84,8 @@ export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageO
|
|
|
55
84
|
* @throws {@link ValidationException} (client fault)
|
|
56
85
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
86
|
*
|
|
87
|
+
* @throws {@link TnbServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
89
|
*
|
|
59
90
|
*/
|
|
60
91
|
export declare class GetSolNetworkPackageCommand extends $Command<GetSolNetworkPackageCommandInput, GetSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface GetSolNetworkPackageContentCommandOutput extends GetSolNetworkP
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetSolNetworkPackageContentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetSolNetworkPackageContentOutput
|
|
37
|
+
* // contentType: "application/zip",
|
|
38
|
+
* // nsdContent: "BLOB_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param GetSolNetworkPackageContentCommandInput - {@link GetSolNetworkPackageContentCommandInput}
|
|
@@ -56,6 +61,8 @@ export interface GetSolNetworkPackageContentCommandOutput extends GetSolNetworkP
|
|
|
56
61
|
* @throws {@link ValidationException} (client fault)
|
|
57
62
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
58
63
|
*
|
|
64
|
+
* @throws {@link TnbServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
59
66
|
*
|
|
60
67
|
*/
|
|
61
68
|
export declare class GetSolNetworkPackageContentCommand extends $Command<GetSolNetworkPackageContentCommandInput, GetSolNetworkPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface GetSolNetworkPackageDescriptorCommandOutput extends GetSolNetwo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSolNetworkPackageDescriptorCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSolNetworkPackageDescriptorOutput
|
|
36
|
+
* // contentType: "text/plain",
|
|
37
|
+
* // nsd: "BLOB_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param GetSolNetworkPackageDescriptorCommandInput - {@link GetSolNetworkPackageDescriptorCommandInput}
|
|
@@ -55,6 +60,8 @@ export interface GetSolNetworkPackageDescriptorCommandOutput extends GetSolNetwo
|
|
|
55
60
|
* @throws {@link ValidationException} (client fault)
|
|
56
61
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
57
62
|
*
|
|
63
|
+
* @throws {@link TnbServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
58
65
|
*
|
|
59
66
|
*/
|
|
60
67
|
export declare class GetSolNetworkPackageDescriptorCommand extends $Command<GetSolNetworkPackageDescriptorCommandInput, GetSolNetworkPackageDescriptorCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -38,6 +38,13 @@ export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateS
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new InstantiateSolNetworkInstanceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // InstantiateSolNetworkInstanceOutput
|
|
42
|
+
* // nsLcmOpOccId: "STRING_VALUE", // required
|
|
43
|
+
* // tags: { // TagMap
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
41
48
|
* ```
|
|
42
49
|
*
|
|
43
50
|
* @param InstantiateSolNetworkInstanceCommandInput - {@link InstantiateSolNetworkInstanceCommandInput}
|
|
@@ -64,6 +71,8 @@ export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateS
|
|
|
64
71
|
* @throws {@link ValidationException} (client fault)
|
|
65
72
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
66
73
|
*
|
|
74
|
+
* @throws {@link TnbServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
67
76
|
*
|
|
68
77
|
*/
|
|
69
78
|
export declare class InstantiateSolNetworkInstanceCommand extends $Command<InstantiateSolNetworkInstanceCommandInput, InstantiateSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface ListSolFunctionInstancesCommandOutput extends ListSolFunctionIn
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSolFunctionInstancesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSolFunctionInstancesOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // functionInstances: [ // ListSolFunctionInstanceResources
|
|
39
|
+
* // { // ListSolFunctionInstanceInfo
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // nsInstanceId: "STRING_VALUE", // required
|
|
43
|
+
* // vnfPkgId: "STRING_VALUE", // required
|
|
44
|
+
* // vnfPkgName: "STRING_VALUE",
|
|
45
|
+
* // instantiationState: "INSTANTIATED" || "NOT_INSTANTIATED", // required
|
|
46
|
+
* // instantiatedVnfInfo: { // GetSolInstantiatedVnfInfo
|
|
47
|
+
* // vnfState: "STARTED" || "STOPPED",
|
|
48
|
+
* // },
|
|
49
|
+
* // metadata: { // ListSolFunctionInstanceMetadata
|
|
50
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param ListSolFunctionInstancesCommandInput - {@link ListSolFunctionInstancesCommandInput}
|
|
@@ -53,6 +74,8 @@ export interface ListSolFunctionInstancesCommandOutput extends ListSolFunctionIn
|
|
|
53
74
|
* @throws {@link ValidationException} (client fault)
|
|
54
75
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
55
76
|
*
|
|
77
|
+
* @throws {@link TnbServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
56
79
|
*
|
|
57
80
|
*/
|
|
58
81
|
export declare class ListSolFunctionInstancesCommand extends $Command<ListSolFunctionInstancesCommandInput, ListSolFunctionInstancesCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface ListSolFunctionPackagesCommandOutput extends ListSolFunctionPac
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSolFunctionPackagesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSolFunctionPackagesOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // functionPackages: [ // ListSolFunctionPackageResources // required
|
|
39
|
+
* // { // ListSolFunctionPackageInfo
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // onboardingState: "CREATED" || "ONBOARDED" || "ERROR", // required
|
|
43
|
+
* // operationalState: "ENABLED" || "DISABLED", // required
|
|
44
|
+
* // usageState: "IN_USE" || "NOT_IN_USE", // required
|
|
45
|
+
* // vnfdId: "STRING_VALUE",
|
|
46
|
+
* // vnfProvider: "STRING_VALUE",
|
|
47
|
+
* // vnfProductName: "STRING_VALUE",
|
|
48
|
+
* // vnfdVersion: "STRING_VALUE",
|
|
49
|
+
* // metadata: { // ListSolFunctionPackageMetadata
|
|
50
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param ListSolFunctionPackagesCommandInput - {@link ListSolFunctionPackagesCommandInput}
|
|
@@ -53,6 +74,8 @@ export interface ListSolFunctionPackagesCommandOutput extends ListSolFunctionPac
|
|
|
53
74
|
* @throws {@link ValidationException} (client fault)
|
|
54
75
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
55
76
|
*
|
|
77
|
+
* @throws {@link TnbServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
56
79
|
*
|
|
57
80
|
*/
|
|
58
81
|
export declare class ListSolFunctionPackagesCommand extends $Command<ListSolFunctionPackagesCommandInput, ListSolFunctionPackagesCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface ListSolNetworkInstancesCommandOutput extends ListSolNetworkInst
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSolNetworkInstancesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSolNetworkInstancesOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // networkInstances: [ // ListSolNetworkInstanceResources
|
|
39
|
+
* // { // ListSolNetworkInstanceInfo
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // nsInstanceName: "STRING_VALUE", // required
|
|
43
|
+
* // nsInstanceDescription: "STRING_VALUE", // required
|
|
44
|
+
* // nsdId: "STRING_VALUE", // required
|
|
45
|
+
* // nsdInfoId: "STRING_VALUE", // required
|
|
46
|
+
* // nsState: "INSTANTIATED" || "NOT_INSTANTIATED" || "IMPAIRED" || "STOPPED" || "DELETED" || "INSTANTIATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "TERMINATE_IN_PROGRESS", // required
|
|
47
|
+
* // metadata: { // ListSolNetworkInstanceMetadata
|
|
48
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param ListSolNetworkInstancesCommandInput - {@link ListSolNetworkInstancesCommandInput}
|
|
@@ -53,6 +72,8 @@ export interface ListSolNetworkInstancesCommandOutput extends ListSolNetworkInst
|
|
|
53
72
|
* @throws {@link ValidationException} (client fault)
|
|
54
73
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
55
74
|
*
|
|
75
|
+
* @throws {@link TnbServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
56
77
|
*
|
|
57
78
|
*/
|
|
58
79
|
export declare class ListSolNetworkInstancesCommand extends $Command<ListSolNetworkInstancesCommandInput, ListSolNetworkInstancesCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface ListSolNetworkOperationsCommandOutput extends ListSolNetworkOpe
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSolNetworkOperationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSolNetworkOperationsOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // networkOperations: [ // ListSolNetworkOperationsResources
|
|
39
|
+
* // { // ListSolNetworkOperationsInfo
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // operationState: "PROCESSING" || "COMPLETED" || "FAILED" || "CANCELLING" || "CANCELLED", // required
|
|
43
|
+
* // nsInstanceId: "STRING_VALUE", // required
|
|
44
|
+
* // lcmOperationType: "INSTANTIATE" || "UPDATE" || "TERMINATE", // required
|
|
45
|
+
* // error: { // ProblemDetails
|
|
46
|
+
* // detail: "STRING_VALUE", // required
|
|
47
|
+
* // title: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // metadata: { // ListSolNetworkOperationsMetadata
|
|
50
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param ListSolNetworkOperationsCommandInput - {@link ListSolNetworkOperationsCommandInput}
|
|
@@ -53,6 +74,8 @@ export interface ListSolNetworkOperationsCommandOutput extends ListSolNetworkOpe
|
|
|
53
74
|
* @throws {@link ValidationException} (client fault)
|
|
54
75
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
55
76
|
*
|
|
77
|
+
* @throws {@link TnbServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
56
79
|
*
|
|
57
80
|
*/
|
|
58
81
|
export declare class ListSolNetworkOperationsCommand extends $Command<ListSolNetworkOperationsCommandInput, ListSolNetworkOperationsCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,31 @@ export interface ListSolNetworkPackagesCommandOutput extends ListSolNetworkPacka
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSolNetworkPackagesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSolNetworkPackagesOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // networkPackages: [ // ListSolNetworkPackageResources // required
|
|
39
|
+
* // { // ListSolNetworkPackageInfo
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // nsdOnboardingState: "CREATED" || "ONBOARDED" || "ERROR", // required
|
|
43
|
+
* // nsdOperationalState: "ENABLED" || "DISABLED", // required
|
|
44
|
+
* // nsdUsageState: "IN_USE" || "NOT_IN_USE", // required
|
|
45
|
+
* // nsdId: "STRING_VALUE",
|
|
46
|
+
* // nsdName: "STRING_VALUE",
|
|
47
|
+
* // nsdVersion: "STRING_VALUE",
|
|
48
|
+
* // nsdDesigner: "STRING_VALUE",
|
|
49
|
+
* // nsdInvariantId: "STRING_VALUE",
|
|
50
|
+
* // vnfPkgIds: [ // VnfPkgIdList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // metadata: { // ListSolNetworkPackageMetadata
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // lastModified: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
36
61
|
* ```
|
|
37
62
|
*
|
|
38
63
|
* @param ListSolNetworkPackagesCommandInput - {@link ListSolNetworkPackagesCommandInput}
|
|
@@ -53,6 +78,8 @@ export interface ListSolNetworkPackagesCommandOutput extends ListSolNetworkPacka
|
|
|
53
78
|
* @throws {@link ValidationException} (client fault)
|
|
54
79
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
55
80
|
*
|
|
81
|
+
* @throws {@link TnbServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
56
83
|
*
|
|
57
84
|
*/
|
|
58
85
|
export declare class ListSolNetworkPackagesCommand extends $Command<ListSolNetworkPackagesCommandInput, ListSolNetworkPackagesCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceOutput
|
|
35
|
+
* // tags: { // TagMap // required
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -54,6 +60,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
54
60
|
* @throws {@link ValidationException} (client fault)
|
|
55
61
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
56
62
|
*
|
|
63
|
+
* @throws {@link TnbServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
57
65
|
*
|
|
58
66
|
*/
|
|
59
67
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,24 @@ export interface PutSolFunctionPackageContentCommandOutput extends PutSolFunctio
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new PutSolFunctionPackageContentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // PutSolFunctionPackageContentOutput
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // vnfdId: "STRING_VALUE", // required
|
|
40
|
+
* // vnfProductName: "STRING_VALUE", // required
|
|
41
|
+
* // vnfProvider: "STRING_VALUE", // required
|
|
42
|
+
* // vnfdVersion: "STRING_VALUE", // required
|
|
43
|
+
* // metadata: { // PutSolFunctionPackageContentMetadata
|
|
44
|
+
* // vnfd: { // FunctionArtifactMeta
|
|
45
|
+
* // overrides: [ // OverrideList
|
|
46
|
+
* // { // ToscaOverride
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // defaultValue: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
37
55
|
* ```
|
|
38
56
|
*
|
|
39
57
|
* @param PutSolFunctionPackageContentCommandInput - {@link PutSolFunctionPackageContentCommandInput}
|
|
@@ -57,6 +75,8 @@ export interface PutSolFunctionPackageContentCommandOutput extends PutSolFunctio
|
|
|
57
75
|
* @throws {@link ValidationException} (client fault)
|
|
58
76
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
77
|
*
|
|
78
|
+
* @throws {@link TnbServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
80
|
*
|
|
61
81
|
*/
|
|
62
82
|
export declare class PutSolFunctionPackageContentCommand extends $Command<PutSolFunctionPackageContentCommandInput, PutSolFunctionPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,27 @@ export interface PutSolNetworkPackageContentCommandOutput extends PutSolNetworkP
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new PutSolNetworkPackageContentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // PutSolNetworkPackageContentOutput
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // nsdId: "STRING_VALUE", // required
|
|
41
|
+
* // nsdName: "STRING_VALUE", // required
|
|
42
|
+
* // nsdVersion: "STRING_VALUE", // required
|
|
43
|
+
* // vnfPkgIds: [ // VnfPkgIdList // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // metadata: { // PutSolNetworkPackageContentMetadata
|
|
47
|
+
* // nsd: { // NetworkArtifactMeta
|
|
48
|
+
* // overrides: [ // OverrideList
|
|
49
|
+
* // { // ToscaOverride
|
|
50
|
+
* // name: "STRING_VALUE",
|
|
51
|
+
* // defaultValue: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
37
58
|
* ```
|
|
38
59
|
*
|
|
39
60
|
* @param PutSolNetworkPackageContentCommandInput - {@link PutSolNetworkPackageContentCommandInput}
|
|
@@ -57,6 +78,8 @@ export interface PutSolNetworkPackageContentCommandOutput extends PutSolNetworkP
|
|
|
57
78
|
* @throws {@link ValidationException} (client fault)
|
|
58
79
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
80
|
*
|
|
81
|
+
* @throws {@link TnbServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
83
|
*
|
|
61
84
|
*/
|
|
62
85
|
export declare class PutSolNetworkPackageContentCommand extends $Command<PutSolNetworkPackageContentCommandInput, PutSolNetworkPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new TagResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link TnbServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -36,6 +36,13 @@ export interface TerminateSolNetworkInstanceCommandOutput extends TerminateSolNe
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new TerminateSolNetworkInstanceCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // TerminateSolNetworkInstanceOutput
|
|
40
|
+
* // nsLcmOpOccId: "STRING_VALUE",
|
|
41
|
+
* // tags: { // TagMap
|
|
42
|
+
* // "<keys>": "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
39
46
|
* ```
|
|
40
47
|
*
|
|
41
48
|
* @param TerminateSolNetworkInstanceCommandInput - {@link TerminateSolNetworkInstanceCommandInput}
|
|
@@ -62,6 +69,8 @@ export interface TerminateSolNetworkInstanceCommandOutput extends TerminateSolNe
|
|
|
62
69
|
* @throws {@link ValidationException} (client fault)
|
|
63
70
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
64
71
|
*
|
|
72
|
+
* @throws {@link TnbServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
65
74
|
*
|
|
66
75
|
*/
|
|
67
76
|
export declare class TerminateSolNetworkInstanceCommand extends $Command<TerminateSolNetworkInstanceCommandInput, TerminateSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UntagResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link TnbServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface UpdateSolFunctionPackageCommandOutput extends UpdateSolFunction
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateSolFunctionPackageCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateSolFunctionPackageOutput
|
|
37
|
+
* // operationalState: "ENABLED" || "DISABLED", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param UpdateSolFunctionPackageCommandInput - {@link UpdateSolFunctionPackageCommandInput}
|
|
@@ -56,6 +60,8 @@ export interface UpdateSolFunctionPackageCommandOutput extends UpdateSolFunction
|
|
|
56
60
|
* @throws {@link ValidationException} (client fault)
|
|
57
61
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
58
62
|
*
|
|
63
|
+
* @throws {@link TnbServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
59
65
|
*
|
|
60
66
|
*/
|
|
61
67
|
export declare class UpdateSolFunctionPackageCommand extends $Command<UpdateSolFunctionPackageCommandInput, UpdateSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -40,6 +40,13 @@ export interface UpdateSolNetworkInstanceCommandOutput extends UpdateSolNetworkI
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new UpdateSolNetworkInstanceCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // UpdateSolNetworkInstanceOutput
|
|
44
|
+
* // nsLcmOpOccId: "STRING_VALUE",
|
|
45
|
+
* // tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
43
50
|
* ```
|
|
44
51
|
*
|
|
45
52
|
* @param UpdateSolNetworkInstanceCommandInput - {@link UpdateSolNetworkInstanceCommandInput}
|
|
@@ -66,6 +73,8 @@ export interface UpdateSolNetworkInstanceCommandOutput extends UpdateSolNetworkI
|
|
|
66
73
|
* @throws {@link ValidationException} (client fault)
|
|
67
74
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
68
75
|
*
|
|
76
|
+
* @throws {@link TnbServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
69
78
|
*
|
|
70
79
|
*/
|
|
71
80
|
export declare class UpdateSolNetworkInstanceCommand extends $Command<UpdateSolNetworkInstanceCommandInput, UpdateSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface UpdateSolNetworkPackageCommandOutput extends UpdateSolNetworkPa
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateSolNetworkPackageCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateSolNetworkPackageOutput
|
|
38
|
+
* // nsdOperationalState: "ENABLED" || "DISABLED", // required
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param UpdateSolNetworkPackageCommandInput - {@link UpdateSolNetworkPackageCommandInput}
|
|
@@ -57,6 +61,8 @@ export interface UpdateSolNetworkPackageCommandOutput extends UpdateSolNetworkPa
|
|
|
57
61
|
* @throws {@link ValidationException} (client fault)
|
|
58
62
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
63
|
*
|
|
64
|
+
* @throws {@link TnbServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
66
|
*
|
|
61
67
|
*/
|
|
62
68
|
export declare class UpdateSolNetworkPackageCommand extends $Command<UpdateSolNetworkPackageCommandInput, UpdateSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,24 @@ export interface ValidateSolFunctionPackageContentCommandOutput extends Validate
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ValidateSolFunctionPackageContentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ValidateSolFunctionPackageContentOutput
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // vnfdId: "STRING_VALUE", // required
|
|
40
|
+
* // vnfProductName: "STRING_VALUE", // required
|
|
41
|
+
* // vnfProvider: "STRING_VALUE", // required
|
|
42
|
+
* // vnfdVersion: "STRING_VALUE", // required
|
|
43
|
+
* // metadata: { // ValidateSolFunctionPackageContentMetadata
|
|
44
|
+
* // vnfd: { // FunctionArtifactMeta
|
|
45
|
+
* // overrides: [ // OverrideList
|
|
46
|
+
* // { // ToscaOverride
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // defaultValue: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
37
55
|
* ```
|
|
38
56
|
*
|
|
39
57
|
* @param ValidateSolFunctionPackageContentCommandInput - {@link ValidateSolFunctionPackageContentCommandInput}
|
|
@@ -57,6 +75,8 @@ export interface ValidateSolFunctionPackageContentCommandOutput extends Validate
|
|
|
57
75
|
* @throws {@link ValidationException} (client fault)
|
|
58
76
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
77
|
*
|
|
78
|
+
* @throws {@link TnbServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
80
|
*
|
|
61
81
|
*/
|
|
62
82
|
export declare class ValidateSolFunctionPackageContentCommand extends $Command<ValidateSolFunctionPackageContentCommandInput, ValidateSolFunctionPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
@@ -34,6 +34,27 @@ export interface ValidateSolNetworkPackageContentCommandOutput extends ValidateS
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ValidateSolNetworkPackageContentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ValidateSolNetworkPackageContentOutput
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // nsdId: "STRING_VALUE", // required
|
|
41
|
+
* // nsdName: "STRING_VALUE", // required
|
|
42
|
+
* // nsdVersion: "STRING_VALUE", // required
|
|
43
|
+
* // vnfPkgIds: [ // VnfPkgIdList // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // metadata: { // ValidateSolNetworkPackageContentMetadata
|
|
47
|
+
* // nsd: { // NetworkArtifactMeta
|
|
48
|
+
* // overrides: [ // OverrideList
|
|
49
|
+
* // { // ToscaOverride
|
|
50
|
+
* // name: "STRING_VALUE",
|
|
51
|
+
* // defaultValue: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
37
58
|
* ```
|
|
38
59
|
*
|
|
39
60
|
* @param ValidateSolNetworkPackageContentCommandInput - {@link ValidateSolNetworkPackageContentCommandInput}
|
|
@@ -57,6 +78,8 @@ export interface ValidateSolNetworkPackageContentCommandOutput extends ValidateS
|
|
|
57
78
|
* @throws {@link ValidationException} (client fault)
|
|
58
79
|
* <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
|
|
59
80
|
*
|
|
81
|
+
* @throws {@link TnbServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Tnb service.</p>
|
|
60
83
|
*
|
|
61
84
|
*/
|
|
62
85
|
export declare class ValidateSolNetworkPackageContentCommand extends $Command<ValidateSolNetworkPackageContentCommandInput, ValidateSolNetworkPackageContentCommandOutput, TnbClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
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.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|