@aws-sdk/client-tnb 3.276.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/LICENSE +201 -0
- package/README.md +205 -0
- package/dist-cjs/Tnb.js +502 -0
- package/dist-cjs/TnbClient.js +40 -0
- package/dist-cjs/commands/CancelSolNetworkOperationCommand.js +46 -0
- package/dist-cjs/commands/CreateSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/CreateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/CreateSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/DeleteSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/DeleteSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/DeleteSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionInstanceCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionPackageContentCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionPackageDescriptorCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkOperationCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkPackageContentCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkPackageDescriptorCommand.js +46 -0
- package/dist-cjs/commands/InstantiateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/ListSolFunctionInstancesCommand.js +46 -0
- package/dist-cjs/commands/ListSolFunctionPackagesCommand.js +46 -0
- package/dist-cjs/commands/ListSolNetworkInstancesCommand.js +46 -0
- package/dist-cjs/commands/ListSolNetworkOperationsCommand.js +46 -0
- package/dist-cjs/commands/ListSolNetworkPackagesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/PutSolFunctionPackageContentCommand.js +46 -0
- package/dist-cjs/commands/PutSolNetworkPackageContentCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/TerminateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/UpdateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/UpdateSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/ValidateSolFunctionPackageContentCommand.js +46 -0
- package/dist-cjs/commands/ValidateSolNetworkPackageContentCommand.js +46 -0
- package/dist-cjs/commands/index.js +36 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/TnbServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +559 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListSolFunctionInstancesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolFunctionPackagesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolNetworkInstancesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolNetworkOperationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolNetworkPackagesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2944 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/Tnb.js +498 -0
- package/dist-es/TnbClient.js +36 -0
- package/dist-es/commands/CancelSolNetworkOperationCommand.js +42 -0
- package/dist-es/commands/CreateSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/CreateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/CreateSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/DeleteSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/DeleteSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/DeleteSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionInstanceCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionPackageContentCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionPackageDescriptorCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkOperationCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkPackageContentCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkPackageDescriptorCommand.js +42 -0
- package/dist-es/commands/InstantiateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/ListSolFunctionInstancesCommand.js +42 -0
- package/dist-es/commands/ListSolFunctionPackagesCommand.js +42 -0
- package/dist-es/commands/ListSolNetworkInstancesCommand.js +42 -0
- package/dist-es/commands/ListSolNetworkOperationsCommand.js +42 -0
- package/dist-es/commands/ListSolNetworkPackagesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/PutSolFunctionPackageContentCommand.js +42 -0
- package/dist-es/commands/PutSolNetworkPackageContentCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/TerminateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/UpdateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/UpdateSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/ValidateSolFunctionPackageContentCommand.js +42 -0
- package/dist-es/commands/ValidateSolNetworkPackageContentCommand.js +42 -0
- package/dist-es/commands/index.js +33 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/TnbServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +455 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListSolFunctionInstancesPaginator.js +32 -0
- package/dist-es/pagination/ListSolFunctionPackagesPaginator.js +32 -0
- package/dist-es/pagination/ListSolNetworkInstancesPaginator.js +32 -0
- package/dist-es/pagination/ListSolNetworkOperationsPaginator.js +32 -0
- package/dist-es/pagination/ListSolNetworkPackagesPaginator.js +32 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +2874 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/Tnb.d.ts +284 -0
- package/dist-types/TnbClient.d.ts +174 -0
- package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +38 -0
- package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +40 -0
- package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +40 -0
- package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +39 -0
- package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +38 -0
- package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +38 -0
- package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +39 -0
- package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +38 -0
- package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +38 -0
- package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +38 -0
- package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +38 -0
- package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +38 -0
- package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +38 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +39 -0
- package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +33 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/TnbServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1935 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListSolFunctionInstancesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolFunctionPackagesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolNetworkInstancesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolNetworkOperationsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolNetworkPackagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/Tnb.d.ts +571 -0
- package/dist-types/ts3.4/TnbClient.d.ts +309 -0
- package/dist-types/ts3.4/commands/CancelSolNetworkOperationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateSolFunctionPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteSolFunctionPackageCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSolNetworkInstanceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSolNetworkPackageCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSolFunctionInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolFunctionPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolFunctionPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolFunctionPackageDescriptorCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkOperationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkPackageDescriptorCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/InstantiateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolFunctionInstancesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolFunctionPackagesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolNetworkInstancesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolNetworkOperationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolNetworkPackagesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutSolFunctionPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutSolNetworkPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TerminateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateSolFunctionPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ValidateSolFunctionPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ValidateSolNetworkPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/TnbServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +855 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListSolFunctionInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolFunctionPackagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolNetworkInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolNetworkOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolNetworkPackagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +401 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +102 -0
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
Client as __Client,
|
|
28
|
+
DefaultsMode as __DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
35
|
+
Credentials as __Credentials,
|
|
36
|
+
Decoder as __Decoder,
|
|
37
|
+
Encoder as __Encoder,
|
|
38
|
+
HashConstructor as __HashConstructor,
|
|
39
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
40
|
+
Logger as __Logger,
|
|
41
|
+
Provider as __Provider,
|
|
42
|
+
Provider,
|
|
43
|
+
StreamCollector as __StreamCollector,
|
|
44
|
+
UrlParser as __UrlParser,
|
|
45
|
+
UserAgent as __UserAgent,
|
|
46
|
+
} from "@aws-sdk/types";
|
|
47
|
+
import {
|
|
48
|
+
CancelSolNetworkOperationCommandInput,
|
|
49
|
+
CancelSolNetworkOperationCommandOutput,
|
|
50
|
+
} from "./commands/CancelSolNetworkOperationCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateSolFunctionPackageCommandInput,
|
|
53
|
+
CreateSolFunctionPackageCommandOutput,
|
|
54
|
+
} from "./commands/CreateSolFunctionPackageCommand";
|
|
55
|
+
import {
|
|
56
|
+
CreateSolNetworkInstanceCommandInput,
|
|
57
|
+
CreateSolNetworkInstanceCommandOutput,
|
|
58
|
+
} from "./commands/CreateSolNetworkInstanceCommand";
|
|
59
|
+
import {
|
|
60
|
+
CreateSolNetworkPackageCommandInput,
|
|
61
|
+
CreateSolNetworkPackageCommandOutput,
|
|
62
|
+
} from "./commands/CreateSolNetworkPackageCommand";
|
|
63
|
+
import {
|
|
64
|
+
DeleteSolFunctionPackageCommandInput,
|
|
65
|
+
DeleteSolFunctionPackageCommandOutput,
|
|
66
|
+
} from "./commands/DeleteSolFunctionPackageCommand";
|
|
67
|
+
import {
|
|
68
|
+
DeleteSolNetworkInstanceCommandInput,
|
|
69
|
+
DeleteSolNetworkInstanceCommandOutput,
|
|
70
|
+
} from "./commands/DeleteSolNetworkInstanceCommand";
|
|
71
|
+
import {
|
|
72
|
+
DeleteSolNetworkPackageCommandInput,
|
|
73
|
+
DeleteSolNetworkPackageCommandOutput,
|
|
74
|
+
} from "./commands/DeleteSolNetworkPackageCommand";
|
|
75
|
+
import {
|
|
76
|
+
GetSolFunctionInstanceCommandInput,
|
|
77
|
+
GetSolFunctionInstanceCommandOutput,
|
|
78
|
+
} from "./commands/GetSolFunctionInstanceCommand";
|
|
79
|
+
import {
|
|
80
|
+
GetSolFunctionPackageCommandInput,
|
|
81
|
+
GetSolFunctionPackageCommandOutput,
|
|
82
|
+
} from "./commands/GetSolFunctionPackageCommand";
|
|
83
|
+
import {
|
|
84
|
+
GetSolFunctionPackageContentCommandInput,
|
|
85
|
+
GetSolFunctionPackageContentCommandOutput,
|
|
86
|
+
} from "./commands/GetSolFunctionPackageContentCommand";
|
|
87
|
+
import {
|
|
88
|
+
GetSolFunctionPackageDescriptorCommandInput,
|
|
89
|
+
GetSolFunctionPackageDescriptorCommandOutput,
|
|
90
|
+
} from "./commands/GetSolFunctionPackageDescriptorCommand";
|
|
91
|
+
import {
|
|
92
|
+
GetSolNetworkInstanceCommandInput,
|
|
93
|
+
GetSolNetworkInstanceCommandOutput,
|
|
94
|
+
} from "./commands/GetSolNetworkInstanceCommand";
|
|
95
|
+
import {
|
|
96
|
+
GetSolNetworkOperationCommandInput,
|
|
97
|
+
GetSolNetworkOperationCommandOutput,
|
|
98
|
+
} from "./commands/GetSolNetworkOperationCommand";
|
|
99
|
+
import {
|
|
100
|
+
GetSolNetworkPackageCommandInput,
|
|
101
|
+
GetSolNetworkPackageCommandOutput,
|
|
102
|
+
} from "./commands/GetSolNetworkPackageCommand";
|
|
103
|
+
import {
|
|
104
|
+
GetSolNetworkPackageContentCommandInput,
|
|
105
|
+
GetSolNetworkPackageContentCommandOutput,
|
|
106
|
+
} from "./commands/GetSolNetworkPackageContentCommand";
|
|
107
|
+
import {
|
|
108
|
+
GetSolNetworkPackageDescriptorCommandInput,
|
|
109
|
+
GetSolNetworkPackageDescriptorCommandOutput,
|
|
110
|
+
} from "./commands/GetSolNetworkPackageDescriptorCommand";
|
|
111
|
+
import {
|
|
112
|
+
InstantiateSolNetworkInstanceCommandInput,
|
|
113
|
+
InstantiateSolNetworkInstanceCommandOutput,
|
|
114
|
+
} from "./commands/InstantiateSolNetworkInstanceCommand";
|
|
115
|
+
import {
|
|
116
|
+
ListSolFunctionInstancesCommandInput,
|
|
117
|
+
ListSolFunctionInstancesCommandOutput,
|
|
118
|
+
} from "./commands/ListSolFunctionInstancesCommand";
|
|
119
|
+
import {
|
|
120
|
+
ListSolFunctionPackagesCommandInput,
|
|
121
|
+
ListSolFunctionPackagesCommandOutput,
|
|
122
|
+
} from "./commands/ListSolFunctionPackagesCommand";
|
|
123
|
+
import {
|
|
124
|
+
ListSolNetworkInstancesCommandInput,
|
|
125
|
+
ListSolNetworkInstancesCommandOutput,
|
|
126
|
+
} from "./commands/ListSolNetworkInstancesCommand";
|
|
127
|
+
import {
|
|
128
|
+
ListSolNetworkOperationsCommandInput,
|
|
129
|
+
ListSolNetworkOperationsCommandOutput,
|
|
130
|
+
} from "./commands/ListSolNetworkOperationsCommand";
|
|
131
|
+
import {
|
|
132
|
+
ListSolNetworkPackagesCommandInput,
|
|
133
|
+
ListSolNetworkPackagesCommandOutput,
|
|
134
|
+
} from "./commands/ListSolNetworkPackagesCommand";
|
|
135
|
+
import {
|
|
136
|
+
ListTagsForResourceCommandInput,
|
|
137
|
+
ListTagsForResourceCommandOutput,
|
|
138
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
139
|
+
import {
|
|
140
|
+
PutSolFunctionPackageContentCommandInput,
|
|
141
|
+
PutSolFunctionPackageContentCommandOutput,
|
|
142
|
+
} from "./commands/PutSolFunctionPackageContentCommand";
|
|
143
|
+
import {
|
|
144
|
+
PutSolNetworkPackageContentCommandInput,
|
|
145
|
+
PutSolNetworkPackageContentCommandOutput,
|
|
146
|
+
} from "./commands/PutSolNetworkPackageContentCommand";
|
|
147
|
+
import {
|
|
148
|
+
TagResourceCommandInput,
|
|
149
|
+
TagResourceCommandOutput,
|
|
150
|
+
} from "./commands/TagResourceCommand";
|
|
151
|
+
import {
|
|
152
|
+
TerminateSolNetworkInstanceCommandInput,
|
|
153
|
+
TerminateSolNetworkInstanceCommandOutput,
|
|
154
|
+
} from "./commands/TerminateSolNetworkInstanceCommand";
|
|
155
|
+
import {
|
|
156
|
+
UntagResourceCommandInput,
|
|
157
|
+
UntagResourceCommandOutput,
|
|
158
|
+
} from "./commands/UntagResourceCommand";
|
|
159
|
+
import {
|
|
160
|
+
UpdateSolFunctionPackageCommandInput,
|
|
161
|
+
UpdateSolFunctionPackageCommandOutput,
|
|
162
|
+
} from "./commands/UpdateSolFunctionPackageCommand";
|
|
163
|
+
import {
|
|
164
|
+
UpdateSolNetworkInstanceCommandInput,
|
|
165
|
+
UpdateSolNetworkInstanceCommandOutput,
|
|
166
|
+
} from "./commands/UpdateSolNetworkInstanceCommand";
|
|
167
|
+
import {
|
|
168
|
+
UpdateSolNetworkPackageCommandInput,
|
|
169
|
+
UpdateSolNetworkPackageCommandOutput,
|
|
170
|
+
} from "./commands/UpdateSolNetworkPackageCommand";
|
|
171
|
+
import {
|
|
172
|
+
ValidateSolFunctionPackageContentCommandInput,
|
|
173
|
+
ValidateSolFunctionPackageContentCommandOutput,
|
|
174
|
+
} from "./commands/ValidateSolFunctionPackageContentCommand";
|
|
175
|
+
import {
|
|
176
|
+
ValidateSolNetworkPackageContentCommandInput,
|
|
177
|
+
ValidateSolNetworkPackageContentCommandOutput,
|
|
178
|
+
} from "./commands/ValidateSolNetworkPackageContentCommand";
|
|
179
|
+
import {
|
|
180
|
+
ClientInputEndpointParameters,
|
|
181
|
+
ClientResolvedEndpointParameters,
|
|
182
|
+
EndpointParameters,
|
|
183
|
+
} from "./endpoint/EndpointParameters";
|
|
184
|
+
export declare type ServiceInputTypes =
|
|
185
|
+
| CancelSolNetworkOperationCommandInput
|
|
186
|
+
| CreateSolFunctionPackageCommandInput
|
|
187
|
+
| CreateSolNetworkInstanceCommandInput
|
|
188
|
+
| CreateSolNetworkPackageCommandInput
|
|
189
|
+
| DeleteSolFunctionPackageCommandInput
|
|
190
|
+
| DeleteSolNetworkInstanceCommandInput
|
|
191
|
+
| DeleteSolNetworkPackageCommandInput
|
|
192
|
+
| GetSolFunctionInstanceCommandInput
|
|
193
|
+
| GetSolFunctionPackageCommandInput
|
|
194
|
+
| GetSolFunctionPackageContentCommandInput
|
|
195
|
+
| GetSolFunctionPackageDescriptorCommandInput
|
|
196
|
+
| GetSolNetworkInstanceCommandInput
|
|
197
|
+
| GetSolNetworkOperationCommandInput
|
|
198
|
+
| GetSolNetworkPackageCommandInput
|
|
199
|
+
| GetSolNetworkPackageContentCommandInput
|
|
200
|
+
| GetSolNetworkPackageDescriptorCommandInput
|
|
201
|
+
| InstantiateSolNetworkInstanceCommandInput
|
|
202
|
+
| ListSolFunctionInstancesCommandInput
|
|
203
|
+
| ListSolFunctionPackagesCommandInput
|
|
204
|
+
| ListSolNetworkInstancesCommandInput
|
|
205
|
+
| ListSolNetworkOperationsCommandInput
|
|
206
|
+
| ListSolNetworkPackagesCommandInput
|
|
207
|
+
| ListTagsForResourceCommandInput
|
|
208
|
+
| PutSolFunctionPackageContentCommandInput
|
|
209
|
+
| PutSolNetworkPackageContentCommandInput
|
|
210
|
+
| TagResourceCommandInput
|
|
211
|
+
| TerminateSolNetworkInstanceCommandInput
|
|
212
|
+
| UntagResourceCommandInput
|
|
213
|
+
| UpdateSolFunctionPackageCommandInput
|
|
214
|
+
| UpdateSolNetworkInstanceCommandInput
|
|
215
|
+
| UpdateSolNetworkPackageCommandInput
|
|
216
|
+
| ValidateSolFunctionPackageContentCommandInput
|
|
217
|
+
| ValidateSolNetworkPackageContentCommandInput;
|
|
218
|
+
export declare type ServiceOutputTypes =
|
|
219
|
+
| CancelSolNetworkOperationCommandOutput
|
|
220
|
+
| CreateSolFunctionPackageCommandOutput
|
|
221
|
+
| CreateSolNetworkInstanceCommandOutput
|
|
222
|
+
| CreateSolNetworkPackageCommandOutput
|
|
223
|
+
| DeleteSolFunctionPackageCommandOutput
|
|
224
|
+
| DeleteSolNetworkInstanceCommandOutput
|
|
225
|
+
| DeleteSolNetworkPackageCommandOutput
|
|
226
|
+
| GetSolFunctionInstanceCommandOutput
|
|
227
|
+
| GetSolFunctionPackageCommandOutput
|
|
228
|
+
| GetSolFunctionPackageContentCommandOutput
|
|
229
|
+
| GetSolFunctionPackageDescriptorCommandOutput
|
|
230
|
+
| GetSolNetworkInstanceCommandOutput
|
|
231
|
+
| GetSolNetworkOperationCommandOutput
|
|
232
|
+
| GetSolNetworkPackageCommandOutput
|
|
233
|
+
| GetSolNetworkPackageContentCommandOutput
|
|
234
|
+
| GetSolNetworkPackageDescriptorCommandOutput
|
|
235
|
+
| InstantiateSolNetworkInstanceCommandOutput
|
|
236
|
+
| ListSolFunctionInstancesCommandOutput
|
|
237
|
+
| ListSolFunctionPackagesCommandOutput
|
|
238
|
+
| ListSolNetworkInstancesCommandOutput
|
|
239
|
+
| ListSolNetworkOperationsCommandOutput
|
|
240
|
+
| ListSolNetworkPackagesCommandOutput
|
|
241
|
+
| ListTagsForResourceCommandOutput
|
|
242
|
+
| PutSolFunctionPackageContentCommandOutput
|
|
243
|
+
| PutSolNetworkPackageContentCommandOutput
|
|
244
|
+
| TagResourceCommandOutput
|
|
245
|
+
| TerminateSolNetworkInstanceCommandOutput
|
|
246
|
+
| UntagResourceCommandOutput
|
|
247
|
+
| UpdateSolFunctionPackageCommandOutput
|
|
248
|
+
| UpdateSolNetworkInstanceCommandOutput
|
|
249
|
+
| UpdateSolNetworkPackageCommandOutput
|
|
250
|
+
| ValidateSolFunctionPackageContentCommandOutput
|
|
251
|
+
| ValidateSolNetworkPackageContentCommandOutput;
|
|
252
|
+
export interface ClientDefaults
|
|
253
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
254
|
+
requestHandler?: __HttpHandler;
|
|
255
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
256
|
+
urlParser?: __UrlParser;
|
|
257
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
258
|
+
streamCollector?: __StreamCollector;
|
|
259
|
+
base64Decoder?: __Decoder;
|
|
260
|
+
base64Encoder?: __Encoder;
|
|
261
|
+
utf8Decoder?: __Decoder;
|
|
262
|
+
utf8Encoder?: __Encoder;
|
|
263
|
+
runtime?: string;
|
|
264
|
+
disableHostPrefix?: boolean;
|
|
265
|
+
serviceId?: string;
|
|
266
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
267
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
268
|
+
region?: string | __Provider<string>;
|
|
269
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
270
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
271
|
+
maxAttempts?: number | __Provider<number>;
|
|
272
|
+
retryMode?: string | __Provider<string>;
|
|
273
|
+
logger?: __Logger;
|
|
274
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
275
|
+
}
|
|
276
|
+
declare type TnbClientConfigType = Partial<
|
|
277
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
278
|
+
> &
|
|
279
|
+
ClientDefaults &
|
|
280
|
+
RegionInputConfig &
|
|
281
|
+
EndpointInputConfig<EndpointParameters> &
|
|
282
|
+
RetryInputConfig &
|
|
283
|
+
HostHeaderInputConfig &
|
|
284
|
+
AwsAuthInputConfig &
|
|
285
|
+
UserAgentInputConfig &
|
|
286
|
+
ClientInputEndpointParameters;
|
|
287
|
+
export interface TnbClientConfig extends TnbClientConfigType {}
|
|
288
|
+
declare type TnbClientResolvedConfigType =
|
|
289
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
290
|
+
Required<ClientDefaults> &
|
|
291
|
+
RegionResolvedConfig &
|
|
292
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
293
|
+
RetryResolvedConfig &
|
|
294
|
+
HostHeaderResolvedConfig &
|
|
295
|
+
AwsAuthResolvedConfig &
|
|
296
|
+
UserAgentResolvedConfig &
|
|
297
|
+
ClientResolvedEndpointParameters;
|
|
298
|
+
export interface TnbClientResolvedConfig extends TnbClientResolvedConfigType {}
|
|
299
|
+
export declare class TnbClient extends __Client<
|
|
300
|
+
__HttpHandlerOptions,
|
|
301
|
+
ServiceInputTypes,
|
|
302
|
+
ServiceOutputTypes,
|
|
303
|
+
TnbClientResolvedConfig
|
|
304
|
+
> {
|
|
305
|
+
readonly config: TnbClientResolvedConfig;
|
|
306
|
+
constructor(configuration: TnbClientConfig);
|
|
307
|
+
destroy(): void;
|
|
308
|
+
}
|
|
309
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { CancelSolNetworkOperationInput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
TnbClientResolvedConfig,
|
|
14
|
+
} from "../TnbClient";
|
|
15
|
+
export interface CancelSolNetworkOperationCommandInput
|
|
16
|
+
extends CancelSolNetworkOperationInput {}
|
|
17
|
+
export interface CancelSolNetworkOperationCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class CancelSolNetworkOperationCommand extends $Command<
|
|
20
|
+
CancelSolNetworkOperationCommandInput,
|
|
21
|
+
CancelSolNetworkOperationCommandOutput,
|
|
22
|
+
TnbClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CancelSolNetworkOperationCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CancelSolNetworkOperationCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TnbClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
CancelSolNetworkOperationCommandInput,
|
|
33
|
+
CancelSolNetworkOperationCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateSolFunctionPackageInput,
|
|
11
|
+
CreateSolFunctionPackageOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TnbClientResolvedConfig,
|
|
17
|
+
} from "../TnbClient";
|
|
18
|
+
export interface CreateSolFunctionPackageCommandInput
|
|
19
|
+
extends CreateSolFunctionPackageInput {}
|
|
20
|
+
export interface CreateSolFunctionPackageCommandOutput
|
|
21
|
+
extends CreateSolFunctionPackageOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateSolFunctionPackageCommand extends $Command<
|
|
24
|
+
CreateSolFunctionPackageCommandInput,
|
|
25
|
+
CreateSolFunctionPackageCommandOutput,
|
|
26
|
+
TnbClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateSolFunctionPackageCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateSolFunctionPackageCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TnbClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateSolFunctionPackageCommandInput,
|
|
37
|
+
CreateSolFunctionPackageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateSolNetworkInstanceInput,
|
|
11
|
+
CreateSolNetworkInstanceOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TnbClientResolvedConfig,
|
|
17
|
+
} from "../TnbClient";
|
|
18
|
+
export interface CreateSolNetworkInstanceCommandInput
|
|
19
|
+
extends CreateSolNetworkInstanceInput {}
|
|
20
|
+
export interface CreateSolNetworkInstanceCommandOutput
|
|
21
|
+
extends CreateSolNetworkInstanceOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateSolNetworkInstanceCommand extends $Command<
|
|
24
|
+
CreateSolNetworkInstanceCommandInput,
|
|
25
|
+
CreateSolNetworkInstanceCommandOutput,
|
|
26
|
+
TnbClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateSolNetworkInstanceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateSolNetworkInstanceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TnbClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateSolNetworkInstanceCommandInput,
|
|
37
|
+
CreateSolNetworkInstanceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateSolNetworkPackageInput,
|
|
11
|
+
CreateSolNetworkPackageOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TnbClientResolvedConfig,
|
|
17
|
+
} from "../TnbClient";
|
|
18
|
+
export interface CreateSolNetworkPackageCommandInput
|
|
19
|
+
extends CreateSolNetworkPackageInput {}
|
|
20
|
+
export interface CreateSolNetworkPackageCommandOutput
|
|
21
|
+
extends CreateSolNetworkPackageOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateSolNetworkPackageCommand extends $Command<
|
|
24
|
+
CreateSolNetworkPackageCommandInput,
|
|
25
|
+
CreateSolNetworkPackageCommandOutput,
|
|
26
|
+
TnbClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateSolNetworkPackageCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateSolNetworkPackageCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TnbClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateSolNetworkPackageCommandInput,
|
|
37
|
+
CreateSolNetworkPackageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteSolFunctionPackageInput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
TnbClientResolvedConfig,
|
|
14
|
+
} from "../TnbClient";
|
|
15
|
+
export interface DeleteSolFunctionPackageCommandInput
|
|
16
|
+
extends DeleteSolFunctionPackageInput {}
|
|
17
|
+
export interface DeleteSolFunctionPackageCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteSolFunctionPackageCommand extends $Command<
|
|
20
|
+
DeleteSolFunctionPackageCommandInput,
|
|
21
|
+
DeleteSolFunctionPackageCommandOutput,
|
|
22
|
+
TnbClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteSolFunctionPackageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteSolFunctionPackageCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TnbClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteSolFunctionPackageCommandInput,
|
|
33
|
+
DeleteSolFunctionPackageCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteSolNetworkInstanceInput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
TnbClientResolvedConfig,
|
|
14
|
+
} from "../TnbClient";
|
|
15
|
+
export interface DeleteSolNetworkInstanceCommandInput
|
|
16
|
+
extends DeleteSolNetworkInstanceInput {}
|
|
17
|
+
export interface DeleteSolNetworkInstanceCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteSolNetworkInstanceCommand extends $Command<
|
|
20
|
+
DeleteSolNetworkInstanceCommandInput,
|
|
21
|
+
DeleteSolNetworkInstanceCommandOutput,
|
|
22
|
+
TnbClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteSolNetworkInstanceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteSolNetworkInstanceCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TnbClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteSolNetworkInstanceCommandInput,
|
|
33
|
+
DeleteSolNetworkInstanceCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteSolNetworkPackageInput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
TnbClientResolvedConfig,
|
|
14
|
+
} from "../TnbClient";
|
|
15
|
+
export interface DeleteSolNetworkPackageCommandInput
|
|
16
|
+
extends DeleteSolNetworkPackageInput {}
|
|
17
|
+
export interface DeleteSolNetworkPackageCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteSolNetworkPackageCommand extends $Command<
|
|
20
|
+
DeleteSolNetworkPackageCommandInput,
|
|
21
|
+
DeleteSolNetworkPackageCommandOutput,
|
|
22
|
+
TnbClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteSolNetworkPackageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteSolNetworkPackageCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TnbClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteSolNetworkPackageCommandInput,
|
|
33
|
+
DeleteSolNetworkPackageCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
GetSolFunctionInstanceInput,
|
|
11
|
+
GetSolFunctionInstanceOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TnbClientResolvedConfig,
|
|
17
|
+
} from "../TnbClient";
|
|
18
|
+
export interface GetSolFunctionInstanceCommandInput
|
|
19
|
+
extends GetSolFunctionInstanceInput {}
|
|
20
|
+
export interface GetSolFunctionInstanceCommandOutput
|
|
21
|
+
extends GetSolFunctionInstanceOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetSolFunctionInstanceCommand extends $Command<
|
|
24
|
+
GetSolFunctionInstanceCommandInput,
|
|
25
|
+
GetSolFunctionInstanceCommandOutput,
|
|
26
|
+
TnbClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetSolFunctionInstanceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetSolFunctionInstanceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TnbClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetSolFunctionInstanceCommandInput,
|
|
37
|
+
GetSolFunctionInstanceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
GetSolFunctionPackageInput,
|
|
11
|
+
GetSolFunctionPackageOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TnbClientResolvedConfig,
|
|
17
|
+
} from "../TnbClient";
|
|
18
|
+
export interface GetSolFunctionPackageCommandInput
|
|
19
|
+
extends GetSolFunctionPackageInput {}
|
|
20
|
+
export interface GetSolFunctionPackageCommandOutput
|
|
21
|
+
extends GetSolFunctionPackageOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetSolFunctionPackageCommand extends $Command<
|
|
24
|
+
GetSolFunctionPackageCommandInput,
|
|
25
|
+
GetSolFunctionPackageCommandOutput,
|
|
26
|
+
TnbClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetSolFunctionPackageCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetSolFunctionPackageCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TnbClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetSolFunctionPackageCommandInput,
|
|
37
|
+
GetSolFunctionPackageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|