@aws-sdk/client-workspaces-thin-client 3.458.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 +344 -0
- package/dist-cjs/WorkSpacesThin.js +43 -0
- package/dist-cjs/WorkSpacesThinClientClient.js +43 -0
- package/dist-cjs/commands/CreateEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/DeleteDeviceCommand.js +51 -0
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +51 -0
- package/dist-cjs/commands/DeregisterDeviceCommand.js +51 -0
- package/dist-cjs/commands/GetDeviceCommand.js +52 -0
- package/dist-cjs/commands/GetEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/GetSoftwareSetCommand.js +51 -0
- package/dist-cjs/commands/ListDevicesCommand.js +52 -0
- package/dist-cjs/commands/ListEnvironmentsCommand.js +52 -0
- package/dist-cjs/commands/ListSoftwareSetsCommand.js +51 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +52 -0
- package/dist-cjs/commands/TagResourceCommand.js +52 -0
- package/dist-cjs/commands/UntagResourceCommand.js +52 -0
- package/dist-cjs/commands/UpdateDeviceCommand.js +52 -0
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/UpdateSoftwareSetCommand.js +51 -0
- package/dist-cjs/commands/index.js +19 -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/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/WorkSpacesThinClientServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +287 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDevicesPaginator.js +29 -0
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSoftwareSetsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1486 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/WorkSpacesThin.js +39 -0
- package/dist-es/WorkSpacesThinClientClient.js +39 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +48 -0
- package/dist-es/commands/DeleteDeviceCommand.js +47 -0
- package/dist-es/commands/DeleteEnvironmentCommand.js +47 -0
- package/dist-es/commands/DeregisterDeviceCommand.js +47 -0
- package/dist-es/commands/GetDeviceCommand.js +48 -0
- package/dist-es/commands/GetEnvironmentCommand.js +48 -0
- package/dist-es/commands/GetSoftwareSetCommand.js +47 -0
- package/dist-es/commands/ListDevicesCommand.js +48 -0
- package/dist-es/commands/ListEnvironmentsCommand.js +48 -0
- package/dist-es/commands/ListSoftwareSetsCommand.js +47 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +48 -0
- package/dist-es/commands/TagResourceCommand.js +48 -0
- package/dist-es/commands/UntagResourceCommand.js +48 -0
- package/dist-es/commands/UpdateDeviceCommand.js +48 -0
- package/dist-es/commands/UpdateEnvironmentCommand.js +48 -0
- package/dist-es/commands/UpdateSoftwareSetCommand.js +47 -0
- package/dist-es/commands/index.js +16 -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/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/WorkSpacesThinClientServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +258 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDevicesPaginator.js +25 -0
- package/dist-es/pagination/ListEnvironmentsPaginator.js +25 -0
- package/dist-es/pagination/ListSoftwareSetsPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1451 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/WorkSpacesThin.d.ts +133 -0
- package/dist-types/WorkSpacesThinClientClient.d.ts +196 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +146 -0
- package/dist-types/commands/DeleteDeviceCommand.d.ts +92 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +92 -0
- package/dist-types/commands/DeregisterDeviceCommand.d.ts +93 -0
- package/dist-types/commands/GetDeviceCommand.d.ts +113 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +121 -0
- package/dist-types/commands/GetSoftwareSetCommand.d.ts +101 -0
- package/dist-types/commands/ListDevicesCommand.d.ts +109 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +118 -0
- package/dist-types/commands/ListSoftwareSetsCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateDeviceCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +134 -0
- package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +87 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +26 -0
- package/dist-types/models/WorkSpacesThinClientServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1506 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDevicesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSoftwareSetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/WorkSpacesThin.d.ts +279 -0
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +217 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -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/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/WorkSpacesThinClientServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +440 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSoftwareSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +104 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreateEnvironmentCommandInput,
|
|
50
|
+
CreateEnvironmentCommandOutput,
|
|
51
|
+
} from "./commands/CreateEnvironmentCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteDeviceCommandInput,
|
|
54
|
+
DeleteDeviceCommandOutput,
|
|
55
|
+
} from "./commands/DeleteDeviceCommand";
|
|
56
|
+
import {
|
|
57
|
+
DeleteEnvironmentCommandInput,
|
|
58
|
+
DeleteEnvironmentCommandOutput,
|
|
59
|
+
} from "./commands/DeleteEnvironmentCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeregisterDeviceCommandInput,
|
|
62
|
+
DeregisterDeviceCommandOutput,
|
|
63
|
+
} from "./commands/DeregisterDeviceCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetDeviceCommandInput,
|
|
66
|
+
GetDeviceCommandOutput,
|
|
67
|
+
} from "./commands/GetDeviceCommand";
|
|
68
|
+
import {
|
|
69
|
+
GetEnvironmentCommandInput,
|
|
70
|
+
GetEnvironmentCommandOutput,
|
|
71
|
+
} from "./commands/GetEnvironmentCommand";
|
|
72
|
+
import {
|
|
73
|
+
GetSoftwareSetCommandInput,
|
|
74
|
+
GetSoftwareSetCommandOutput,
|
|
75
|
+
} from "./commands/GetSoftwareSetCommand";
|
|
76
|
+
import {
|
|
77
|
+
ListDevicesCommandInput,
|
|
78
|
+
ListDevicesCommandOutput,
|
|
79
|
+
} from "./commands/ListDevicesCommand";
|
|
80
|
+
import {
|
|
81
|
+
ListEnvironmentsCommandInput,
|
|
82
|
+
ListEnvironmentsCommandOutput,
|
|
83
|
+
} from "./commands/ListEnvironmentsCommand";
|
|
84
|
+
import {
|
|
85
|
+
ListSoftwareSetsCommandInput,
|
|
86
|
+
ListSoftwareSetsCommandOutput,
|
|
87
|
+
} from "./commands/ListSoftwareSetsCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListTagsForResourceCommandInput,
|
|
90
|
+
ListTagsForResourceCommandOutput,
|
|
91
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
92
|
+
import {
|
|
93
|
+
TagResourceCommandInput,
|
|
94
|
+
TagResourceCommandOutput,
|
|
95
|
+
} from "./commands/TagResourceCommand";
|
|
96
|
+
import {
|
|
97
|
+
UntagResourceCommandInput,
|
|
98
|
+
UntagResourceCommandOutput,
|
|
99
|
+
} from "./commands/UntagResourceCommand";
|
|
100
|
+
import {
|
|
101
|
+
UpdateDeviceCommandInput,
|
|
102
|
+
UpdateDeviceCommandOutput,
|
|
103
|
+
} from "./commands/UpdateDeviceCommand";
|
|
104
|
+
import {
|
|
105
|
+
UpdateEnvironmentCommandInput,
|
|
106
|
+
UpdateEnvironmentCommandOutput,
|
|
107
|
+
} from "./commands/UpdateEnvironmentCommand";
|
|
108
|
+
import {
|
|
109
|
+
UpdateSoftwareSetCommandInput,
|
|
110
|
+
UpdateSoftwareSetCommandOutput,
|
|
111
|
+
} from "./commands/UpdateSoftwareSetCommand";
|
|
112
|
+
import {
|
|
113
|
+
ClientInputEndpointParameters,
|
|
114
|
+
ClientResolvedEndpointParameters,
|
|
115
|
+
EndpointParameters,
|
|
116
|
+
} from "./endpoint/EndpointParameters";
|
|
117
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
118
|
+
export { __Client };
|
|
119
|
+
export type ServiceInputTypes =
|
|
120
|
+
| CreateEnvironmentCommandInput
|
|
121
|
+
| DeleteDeviceCommandInput
|
|
122
|
+
| DeleteEnvironmentCommandInput
|
|
123
|
+
| DeregisterDeviceCommandInput
|
|
124
|
+
| GetDeviceCommandInput
|
|
125
|
+
| GetEnvironmentCommandInput
|
|
126
|
+
| GetSoftwareSetCommandInput
|
|
127
|
+
| ListDevicesCommandInput
|
|
128
|
+
| ListEnvironmentsCommandInput
|
|
129
|
+
| ListSoftwareSetsCommandInput
|
|
130
|
+
| ListTagsForResourceCommandInput
|
|
131
|
+
| TagResourceCommandInput
|
|
132
|
+
| UntagResourceCommandInput
|
|
133
|
+
| UpdateDeviceCommandInput
|
|
134
|
+
| UpdateEnvironmentCommandInput
|
|
135
|
+
| UpdateSoftwareSetCommandInput;
|
|
136
|
+
export type ServiceOutputTypes =
|
|
137
|
+
| CreateEnvironmentCommandOutput
|
|
138
|
+
| DeleteDeviceCommandOutput
|
|
139
|
+
| DeleteEnvironmentCommandOutput
|
|
140
|
+
| DeregisterDeviceCommandOutput
|
|
141
|
+
| GetDeviceCommandOutput
|
|
142
|
+
| GetEnvironmentCommandOutput
|
|
143
|
+
| GetSoftwareSetCommandOutput
|
|
144
|
+
| ListDevicesCommandOutput
|
|
145
|
+
| ListEnvironmentsCommandOutput
|
|
146
|
+
| ListSoftwareSetsCommandOutput
|
|
147
|
+
| ListTagsForResourceCommandOutput
|
|
148
|
+
| TagResourceCommandOutput
|
|
149
|
+
| UntagResourceCommandOutput
|
|
150
|
+
| UpdateDeviceCommandOutput
|
|
151
|
+
| UpdateEnvironmentCommandOutput
|
|
152
|
+
| UpdateSoftwareSetCommandOutput;
|
|
153
|
+
export interface ClientDefaults
|
|
154
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
155
|
+
requestHandler?: __HttpHandler;
|
|
156
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
157
|
+
urlParser?: __UrlParser;
|
|
158
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
159
|
+
streamCollector?: __StreamCollector;
|
|
160
|
+
base64Decoder?: __Decoder;
|
|
161
|
+
base64Encoder?: __Encoder;
|
|
162
|
+
utf8Decoder?: __Decoder;
|
|
163
|
+
utf8Encoder?: __Encoder;
|
|
164
|
+
runtime?: string;
|
|
165
|
+
disableHostPrefix?: boolean;
|
|
166
|
+
serviceId?: string;
|
|
167
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
168
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
169
|
+
region?: string | __Provider<string>;
|
|
170
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
171
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
172
|
+
maxAttempts?: number | __Provider<number>;
|
|
173
|
+
retryMode?: string | __Provider<string>;
|
|
174
|
+
logger?: __Logger;
|
|
175
|
+
extensions?: RuntimeExtension[];
|
|
176
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
177
|
+
}
|
|
178
|
+
export type WorkSpacesThinClientClientConfigType = Partial<
|
|
179
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
180
|
+
> &
|
|
181
|
+
ClientDefaults &
|
|
182
|
+
RegionInputConfig &
|
|
183
|
+
EndpointInputConfig<EndpointParameters> &
|
|
184
|
+
RetryInputConfig &
|
|
185
|
+
HostHeaderInputConfig &
|
|
186
|
+
AwsAuthInputConfig &
|
|
187
|
+
UserAgentInputConfig &
|
|
188
|
+
ClientInputEndpointParameters;
|
|
189
|
+
export interface WorkSpacesThinClientClientConfig
|
|
190
|
+
extends WorkSpacesThinClientClientConfigType {}
|
|
191
|
+
export type WorkSpacesThinClientClientResolvedConfigType =
|
|
192
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
193
|
+
Required<ClientDefaults> &
|
|
194
|
+
RuntimeExtensionsConfig &
|
|
195
|
+
RegionResolvedConfig &
|
|
196
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
197
|
+
RetryResolvedConfig &
|
|
198
|
+
HostHeaderResolvedConfig &
|
|
199
|
+
AwsAuthResolvedConfig &
|
|
200
|
+
UserAgentResolvedConfig &
|
|
201
|
+
ClientResolvedEndpointParameters;
|
|
202
|
+
export interface WorkSpacesThinClientClientResolvedConfig
|
|
203
|
+
extends WorkSpacesThinClientClientResolvedConfigType {}
|
|
204
|
+
export declare class WorkSpacesThinClientClient extends __Client<
|
|
205
|
+
__HttpHandlerOptions,
|
|
206
|
+
ServiceInputTypes,
|
|
207
|
+
ServiceOutputTypes,
|
|
208
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
209
|
+
> {
|
|
210
|
+
readonly config: WorkSpacesThinClientClientResolvedConfig;
|
|
211
|
+
constructor(
|
|
212
|
+
...[
|
|
213
|
+
configuration,
|
|
214
|
+
]: __CheckOptionalClientConfig<WorkSpacesThinClientClientConfig>
|
|
215
|
+
);
|
|
216
|
+
destroy(): void;
|
|
217
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateEnvironmentRequest,
|
|
11
|
+
CreateEnvironmentResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateEnvironmentCommandInput
|
|
20
|
+
extends CreateEnvironmentRequest {}
|
|
21
|
+
export interface CreateEnvironmentCommandOutput
|
|
22
|
+
extends CreateEnvironmentResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateEnvironmentCommand extends $Command<
|
|
25
|
+
CreateEnvironmentCommandInput,
|
|
26
|
+
CreateEnvironmentCommandOutput,
|
|
27
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateEnvironmentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateEnvironmentCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
14
|
+
} from "../WorkSpacesThinClientClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteDeviceCommandInput extends DeleteDeviceRequest {}
|
|
17
|
+
export interface DeleteDeviceCommandOutput
|
|
18
|
+
extends DeleteDeviceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteDeviceCommand extends $Command<
|
|
21
|
+
DeleteDeviceCommandInput,
|
|
22
|
+
DeleteDeviceCommandOutput,
|
|
23
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteDeviceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteDeviceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteDeviceCommandInput, DeleteDeviceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteEnvironmentRequest,
|
|
11
|
+
DeleteEnvironmentResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteEnvironmentCommandInput
|
|
20
|
+
extends DeleteEnvironmentRequest {}
|
|
21
|
+
export interface DeleteEnvironmentCommandOutput
|
|
22
|
+
extends DeleteEnvironmentResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteEnvironmentCommand extends $Command<
|
|
25
|
+
DeleteEnvironmentCommandInput,
|
|
26
|
+
DeleteEnvironmentCommandOutput,
|
|
27
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteEnvironmentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteEnvironmentCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeregisterDeviceRequest,
|
|
11
|
+
DeregisterDeviceResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeregisterDeviceCommandInput extends DeregisterDeviceRequest {}
|
|
20
|
+
export interface DeregisterDeviceCommandOutput
|
|
21
|
+
extends DeregisterDeviceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeregisterDeviceCommand extends $Command<
|
|
24
|
+
DeregisterDeviceCommandInput,
|
|
25
|
+
DeregisterDeviceCommandOutput,
|
|
26
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeregisterDeviceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeregisterDeviceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
14
|
+
} from "../WorkSpacesThinClientClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetDeviceCommandInput extends GetDeviceRequest {}
|
|
17
|
+
export interface GetDeviceCommandOutput
|
|
18
|
+
extends GetDeviceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetDeviceCommand extends $Command<
|
|
21
|
+
GetDeviceCommandInput,
|
|
22
|
+
GetDeviceCommandOutput,
|
|
23
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetDeviceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetDeviceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetDeviceCommandInput, GetDeviceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GetEnvironmentRequest,
|
|
11
|
+
GetEnvironmentResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
|
|
20
|
+
export interface GetEnvironmentCommandOutput
|
|
21
|
+
extends GetEnvironmentResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetEnvironmentCommand extends $Command<
|
|
24
|
+
GetEnvironmentCommandInput,
|
|
25
|
+
GetEnvironmentCommandOutput,
|
|
26
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEnvironmentCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetEnvironmentCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GetSoftwareSetRequest,
|
|
11
|
+
GetSoftwareSetResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetSoftwareSetCommandInput extends GetSoftwareSetRequest {}
|
|
20
|
+
export interface GetSoftwareSetCommandOutput
|
|
21
|
+
extends GetSoftwareSetResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetSoftwareSetCommand extends $Command<
|
|
24
|
+
GetSoftwareSetCommandInput,
|
|
25
|
+
GetSoftwareSetCommandOutput,
|
|
26
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetSoftwareSetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetSoftwareSetCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { ListDevicesRequest, ListDevicesResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
14
|
+
} from "../WorkSpacesThinClientClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListDevicesCommandInput extends ListDevicesRequest {}
|
|
17
|
+
export interface ListDevicesCommandOutput
|
|
18
|
+
extends ListDevicesResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListDevicesCommand extends $Command<
|
|
21
|
+
ListDevicesCommandInput,
|
|
22
|
+
ListDevicesCommandOutput,
|
|
23
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListDevicesCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListDevicesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListDevicesCommandInput, ListDevicesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListEnvironmentsRequest,
|
|
11
|
+
ListEnvironmentsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {}
|
|
20
|
+
export interface ListEnvironmentsCommandOutput
|
|
21
|
+
extends ListEnvironmentsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListEnvironmentsCommand extends $Command<
|
|
24
|
+
ListEnvironmentsCommandInput,
|
|
25
|
+
ListEnvironmentsCommandOutput,
|
|
26
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListEnvironmentsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListEnvironmentsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListSoftwareSetsRequest,
|
|
11
|
+
ListSoftwareSetsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListSoftwareSetsCommandInput extends ListSoftwareSetsRequest {}
|
|
20
|
+
export interface ListSoftwareSetsCommandOutput
|
|
21
|
+
extends ListSoftwareSetsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListSoftwareSetsCommand extends $Command<
|
|
24
|
+
ListSoftwareSetsCommandInput,
|
|
25
|
+
ListSoftwareSetsCommandOutput,
|
|
26
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSoftwareSetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListSoftwareSetsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListTagsForResourceRequest,
|
|
11
|
+
ListTagsForResourceResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListTagsForResourceCommandInput
|
|
20
|
+
extends ListTagsForResourceRequest {}
|
|
21
|
+
export interface ListTagsForResourceCommandOutput
|
|
22
|
+
extends ListTagsForResourceResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
14
|
+
} from "../WorkSpacesThinClientClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
17
|
+
export interface TagResourceCommandOutput
|
|
18
|
+
extends TagResourceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class TagResourceCommand extends $Command<
|
|
21
|
+
TagResourceCommandInput,
|
|
22
|
+
TagResourceCommandOutput,
|
|
23
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: TagResourceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: TagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|