@aws-sdk/client-tnb 3.296.0 → 3.297.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/Tnb.d.ts +34 -0
- package/dist-types/TnbClient.d.ts +24 -4
- package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/models/TnbServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +268 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListSolFunctionInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolFunctionPackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkPackagesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSolNetworkInstanceInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSolNetworkInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSolNetworkInstanceCommandInput extends DeleteSolNetworkInstanceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSolNetworkInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a network instance.</p>
|
|
18
23
|
* <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
|
|
19
24
|
* <p>To delete a network instance, the instance must be in a stopped or terminated state. To terminate a network instance, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_TerminateSolNetworkInstance.html">TerminateSolNetworkInstance</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteSolNetworkInstanceCommandInput - {@link DeleteSolNetworkInstanceCommandInput}
|
|
36
|
+
* @returns {@link DeleteSolNetworkInstanceCommandOutput}
|
|
30
37
|
* @see {@link DeleteSolNetworkInstanceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteSolNetworkInstanceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer
|
|
|
51
58
|
export declare class DeleteSolNetworkInstanceCommand extends $Command<DeleteSolNetworkInstanceCommandInput, DeleteSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteSolNetworkInstanceCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteSolNetworkInstanceCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSolNetworkInstanceCommandInput, DeleteSolNetworkInstanceCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSolNetworkPackageInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSolNetworkPackageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSolNetworkPackageCommandInput extends DeleteSolNetworkPackageInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSolNetworkPackageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes network package.</p>
|
|
18
23
|
* <p>A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.</p>
|
|
19
24
|
* <p>To delete a network package, the package must be in a disable state. To disable a network package, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_UpdateSolNetworkPackage.html">UpdateSolNetworkPackage</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteSolNetworkPackageCommandInput - {@link DeleteSolNetworkPackageCommandInput}
|
|
36
|
+
* @returns {@link DeleteSolNetworkPackageCommandOutput}
|
|
30
37
|
* @see {@link DeleteSolNetworkPackageCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteSolNetworkPackageCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer {
|
|
|
51
58
|
export declare class DeleteSolNetworkPackageCommand extends $Command<DeleteSolNetworkPackageCommandInput, DeleteSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteSolNetworkPackageCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteSolNetworkPackageCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSolNetworkPackageCommandInput, DeleteSolNetworkPackageCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolFunctionInstanceInput, GetSolFunctionInstanceOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolFunctionInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolFunctionInstanceCommandInput extends GetSolFunctionInstanceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolFunctionInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInstanceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package.</p>
|
|
18
23
|
* <p>A network function instance is a function in a function package .</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInsta
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolFunctionInstanceCommandInput - {@link GetSolFunctionInstanceCommandInput}
|
|
35
|
+
* @returns {@link GetSolFunctionInstanceCommandOutput}
|
|
29
36
|
* @see {@link GetSolFunctionInstanceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolFunctionInstanceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInsta
|
|
|
50
57
|
export declare class GetSolFunctionInstanceCommand extends $Command<GetSolFunctionInstanceCommandInput, GetSolFunctionInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolFunctionInstanceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolFunctionInstanceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolFunctionInstanceCommandInput, GetSolFunctionInstanceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolFunctionPackageInput, GetSolFunctionPackageOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolFunctionPackageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolFunctionPackageCommandInput extends GetSolFunctionPackageInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolFunctionPackageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackageOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of an individual function package, such as the operational state and whether the package is in use.</p>
|
|
18
23
|
* <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network..</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackag
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolFunctionPackageCommandInput - {@link GetSolFunctionPackageCommandInput}
|
|
35
|
+
* @returns {@link GetSolFunctionPackageCommandOutput}
|
|
29
36
|
* @see {@link GetSolFunctionPackageCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolFunctionPackageCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackag
|
|
|
50
57
|
export declare class GetSolFunctionPackageCommand extends $Command<GetSolFunctionPackageCommandInput, GetSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolFunctionPackageCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolFunctionPackageCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolFunctionPackageCommandInput, GetSolFunctionPackageCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolFunctionPackageContentInput, GetSolFunctionPackageContentOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolFunctionPackageContentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolFunctionPackageContentCommandInput extends GetSolFunctionPackageContentInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolFunctionPackageContentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolFunctionPackageContentCommandOutput extends GetSolFunctionPackageContentOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the contents of a function package.</p>
|
|
18
23
|
* <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolFunctionPackageContentCommandOutput extends GetSolFunctio
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolFunctionPackageContentCommandInput - {@link GetSolFunctionPackageContentCommandInput}
|
|
35
|
+
* @returns {@link GetSolFunctionPackageContentCommandOutput}
|
|
29
36
|
* @see {@link GetSolFunctionPackageContentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolFunctionPackageContentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolFunctionPackageContentCommandOutput extends GetSolFunctio
|
|
|
50
57
|
export declare class GetSolFunctionPackageContentCommand extends $Command<GetSolFunctionPackageContentCommandInput, GetSolFunctionPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolFunctionPackageContentCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolFunctionPackageContentCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolFunctionPackageContentCommandInput, GetSolFunctionPackageContentCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolFunctionPackageDescriptorInput, GetSolFunctionPackageDescriptorOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolFunctionPackageDescriptorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolFunctionPackageDescriptorCommandInput extends GetSolFunctionPackageDescriptorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolFunctionPackageDescriptorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolFunctionPackageDescriptorCommandOutput extends GetSolFunctionPackageDescriptorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a function package descriptor in a function package.</p>
|
|
18
23
|
* <p>A function package descriptor is a .yaml file in a function package that uses the TOSCA standard to describe how the network function in the function package should run on your network.</p>
|
|
19
24
|
* <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetSolFunctionPackageDescriptorCommandOutput extends GetSolFunc
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetSolFunctionPackageDescriptorCommandInput - {@link GetSolFunctionPackageDescriptorCommandInput}
|
|
36
|
+
* @returns {@link GetSolFunctionPackageDescriptorCommandOutput}
|
|
30
37
|
* @see {@link GetSolFunctionPackageDescriptorCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetSolFunctionPackageDescriptorCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetSolFunctionPackageDescriptorCommandOutput extends GetSolFunc
|
|
|
51
58
|
export declare class GetSolFunctionPackageDescriptorCommand extends $Command<GetSolFunctionPackageDescriptorCommandInput, GetSolFunctionPackageDescriptorCommandOutput, TnbClientResolvedConfig> {
|
|
52
59
|
readonly input: GetSolFunctionPackageDescriptorCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetSolFunctionPackageDescriptorCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolFunctionPackageDescriptorCommandInput, GetSolFunctionPackageDescriptorCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolNetworkInstanceInput, GetSolNetworkInstanceOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolNetworkInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolNetworkInstanceCommandInput extends GetSolNetworkInstanceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolNetworkInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of the network instance.</p>
|
|
18
23
|
* <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanc
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolNetworkInstanceCommandInput - {@link GetSolNetworkInstanceCommandInput}
|
|
35
|
+
* @returns {@link GetSolNetworkInstanceCommandOutput}
|
|
29
36
|
* @see {@link GetSolNetworkInstanceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolNetworkInstanceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanc
|
|
|
50
57
|
export declare class GetSolNetworkInstanceCommand extends $Command<GetSolNetworkInstanceCommandInput, GetSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolNetworkInstanceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolNetworkInstanceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolNetworkInstanceCommandInput, GetSolNetworkInstanceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolNetworkOperationInput, GetSolNetworkOperationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolNetworkOperationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolNetworkOperationCommandInput extends GetSolNetworkOperationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolNetworkOperationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.</p>
|
|
18
23
|
* <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolNetworkOperationCommandInput - {@link GetSolNetworkOperationCommandInput}
|
|
35
|
+
* @returns {@link GetSolNetworkOperationCommandOutput}
|
|
29
36
|
* @see {@link GetSolNetworkOperationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolNetworkOperationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperat
|
|
|
50
57
|
export declare class GetSolNetworkOperationCommand extends $Command<GetSolNetworkOperationCommandInput, GetSolNetworkOperationCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolNetworkOperationCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolNetworkOperationCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolNetworkOperationCommandInput, GetSolNetworkOperationCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolNetworkPackageInput, GetSolNetworkPackageOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolNetworkPackageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolNetworkPackageCommandInput extends GetSolNetworkPackageInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolNetworkPackageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of a network package.</p>
|
|
18
23
|
* <p>A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageO
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolNetworkPackageCommandInput - {@link GetSolNetworkPackageCommandInput}
|
|
35
|
+
* @returns {@link GetSolNetworkPackageCommandOutput}
|
|
29
36
|
* @see {@link GetSolNetworkPackageCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolNetworkPackageCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageO
|
|
|
50
57
|
export declare class GetSolNetworkPackageCommand extends $Command<GetSolNetworkPackageCommandInput, GetSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolNetworkPackageCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolNetworkPackageCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolNetworkPackageCommandInput, GetSolNetworkPackageCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolNetworkPackageContentInput, GetSolNetworkPackageContentOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolNetworkPackageContentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolNetworkPackageContentCommandInput extends GetSolNetworkPackageContentInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolNetworkPackageContentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolNetworkPackageContentCommandOutput extends GetSolNetworkPackageContentOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the contents of a network package.</p>
|
|
18
23
|
* <p>A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolNetworkPackageContentCommandOutput extends GetSolNetworkP
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolNetworkPackageContentCommandInput - {@link GetSolNetworkPackageContentCommandInput}
|
|
35
|
+
* @returns {@link GetSolNetworkPackageContentCommandOutput}
|
|
29
36
|
* @see {@link GetSolNetworkPackageContentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolNetworkPackageContentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolNetworkPackageContentCommandOutput extends GetSolNetworkP
|
|
|
50
57
|
export declare class GetSolNetworkPackageContentCommand extends $Command<GetSolNetworkPackageContentCommandInput, GetSolNetworkPackageContentCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolNetworkPackageContentCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolNetworkPackageContentCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolNetworkPackageContentCommandInput, GetSolNetworkPackageContentCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSolNetworkPackageDescriptorInput, GetSolNetworkPackageDescriptorOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSolNetworkPackageDescriptorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSolNetworkPackageDescriptorCommandInput extends GetSolNetworkPackageDescriptorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSolNetworkPackageDescriptorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSolNetworkPackageDescriptorCommandOutput extends GetSolNetworkPackageDescriptorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the content of the network service descriptor.</p>
|
|
18
23
|
* <p>A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSolNetworkPackageDescriptorCommandOutput extends GetSolNetwo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSolNetworkPackageDescriptorCommandInput - {@link GetSolNetworkPackageDescriptorCommandInput}
|
|
35
|
+
* @returns {@link GetSolNetworkPackageDescriptorCommandOutput}
|
|
29
36
|
* @see {@link GetSolNetworkPackageDescriptorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSolNetworkPackageDescriptorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetSolNetworkPackageDescriptorCommandOutput extends GetSolNetwo
|
|
|
50
57
|
export declare class GetSolNetworkPackageDescriptorCommand extends $Command<GetSolNetworkPackageDescriptorCommandInput, GetSolNetworkPackageDescriptorCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: GetSolNetworkPackageDescriptorCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetSolNetworkPackageDescriptorCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSolNetworkPackageDescriptorCommandInput, GetSolNetworkPackageDescriptorCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InstantiateSolNetworkInstanceInput, InstantiateSolNetworkInstanceOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link InstantiateSolNetworkInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface InstantiateSolNetworkInstanceCommandInput extends InstantiateSolNetworkInstanceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link InstantiateSolNetworkInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateSolNetworkInstanceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Instantiates a network instance.</p>
|
|
18
23
|
* <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
|
|
19
24
|
* <p>Before you can instantiate a network instance, you have to create a network instance. For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_CreateSolNetworkInstance.html">CreateSolNetworkInstance</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateS
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param InstantiateSolNetworkInstanceCommandInput - {@link InstantiateSolNetworkInstanceCommandInput}
|
|
36
|
+
* @returns {@link InstantiateSolNetworkInstanceCommandOutput}
|
|
30
37
|
* @see {@link InstantiateSolNetworkInstanceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link InstantiateSolNetworkInstanceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateS
|
|
|
54
61
|
export declare class InstantiateSolNetworkInstanceCommand extends $Command<InstantiateSolNetworkInstanceCommandInput, InstantiateSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
55
62
|
readonly input: InstantiateSolNetworkInstanceCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: InstantiateSolNetworkInstanceCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InstantiateSolNetworkInstanceCommandInput, InstantiateSolNetworkInstanceCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|