@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.
Files changed (155) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +344 -0
  3. package/dist-cjs/WorkSpacesThin.js +43 -0
  4. package/dist-cjs/WorkSpacesThinClientClient.js +43 -0
  5. package/dist-cjs/commands/CreateEnvironmentCommand.js +52 -0
  6. package/dist-cjs/commands/DeleteDeviceCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteEnvironmentCommand.js +51 -0
  8. package/dist-cjs/commands/DeregisterDeviceCommand.js +51 -0
  9. package/dist-cjs/commands/GetDeviceCommand.js +52 -0
  10. package/dist-cjs/commands/GetEnvironmentCommand.js +52 -0
  11. package/dist-cjs/commands/GetSoftwareSetCommand.js +51 -0
  12. package/dist-cjs/commands/ListDevicesCommand.js +52 -0
  13. package/dist-cjs/commands/ListEnvironmentsCommand.js +52 -0
  14. package/dist-cjs/commands/ListSoftwareSetsCommand.js +51 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +52 -0
  16. package/dist-cjs/commands/TagResourceCommand.js +52 -0
  17. package/dist-cjs/commands/UntagResourceCommand.js +52 -0
  18. package/dist-cjs/commands/UpdateDeviceCommand.js +52 -0
  19. package/dist-cjs/commands/UpdateEnvironmentCommand.js +52 -0
  20. package/dist-cjs/commands/UpdateSoftwareSetCommand.js +51 -0
  21. package/dist-cjs/commands/index.js +19 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/extensionConfiguration.js +2 -0
  26. package/dist-cjs/index.js +12 -0
  27. package/dist-cjs/models/WorkSpacesThinClientServiceException.js +12 -0
  28. package/dist-cjs/models/index.js +4 -0
  29. package/dist-cjs/models/models_0.js +287 -0
  30. package/dist-cjs/pagination/Interfaces.js +2 -0
  31. package/dist-cjs/pagination/ListDevicesPaginator.js +29 -0
  32. package/dist-cjs/pagination/ListEnvironmentsPaginator.js +29 -0
  33. package/dist-cjs/pagination/ListSoftwareSetsPaginator.js +29 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_restJson1.js +1486 -0
  36. package/dist-cjs/runtimeConfig.browser.js +39 -0
  37. package/dist-cjs/runtimeConfig.js +50 -0
  38. package/dist-cjs/runtimeConfig.native.js +15 -0
  39. package/dist-cjs/runtimeConfig.shared.js +24 -0
  40. package/dist-cjs/runtimeExtensions.js +22 -0
  41. package/dist-es/WorkSpacesThin.js +39 -0
  42. package/dist-es/WorkSpacesThinClientClient.js +39 -0
  43. package/dist-es/commands/CreateEnvironmentCommand.js +48 -0
  44. package/dist-es/commands/DeleteDeviceCommand.js +47 -0
  45. package/dist-es/commands/DeleteEnvironmentCommand.js +47 -0
  46. package/dist-es/commands/DeregisterDeviceCommand.js +47 -0
  47. package/dist-es/commands/GetDeviceCommand.js +48 -0
  48. package/dist-es/commands/GetEnvironmentCommand.js +48 -0
  49. package/dist-es/commands/GetSoftwareSetCommand.js +47 -0
  50. package/dist-es/commands/ListDevicesCommand.js +48 -0
  51. package/dist-es/commands/ListEnvironmentsCommand.js +48 -0
  52. package/dist-es/commands/ListSoftwareSetsCommand.js +47 -0
  53. package/dist-es/commands/ListTagsForResourceCommand.js +48 -0
  54. package/dist-es/commands/TagResourceCommand.js +48 -0
  55. package/dist-es/commands/UntagResourceCommand.js +48 -0
  56. package/dist-es/commands/UpdateDeviceCommand.js +48 -0
  57. package/dist-es/commands/UpdateEnvironmentCommand.js +48 -0
  58. package/dist-es/commands/UpdateSoftwareSetCommand.js +47 -0
  59. package/dist-es/commands/index.js +16 -0
  60. package/dist-es/endpoint/EndpointParameters.js +8 -0
  61. package/dist-es/endpoint/endpointResolver.js +8 -0
  62. package/dist-es/endpoint/ruleset.js +4 -0
  63. package/dist-es/extensionConfiguration.js +1 -0
  64. package/dist-es/index.js +7 -0
  65. package/dist-es/models/WorkSpacesThinClientServiceException.js +8 -0
  66. package/dist-es/models/index.js +1 -0
  67. package/dist-es/models/models_0.js +258 -0
  68. package/dist-es/pagination/Interfaces.js +1 -0
  69. package/dist-es/pagination/ListDevicesPaginator.js +25 -0
  70. package/dist-es/pagination/ListEnvironmentsPaginator.js +25 -0
  71. package/dist-es/pagination/ListSoftwareSetsPaginator.js +25 -0
  72. package/dist-es/pagination/index.js +4 -0
  73. package/dist-es/protocols/Aws_restJson1.js +1451 -0
  74. package/dist-es/runtimeConfig.browser.js +34 -0
  75. package/dist-es/runtimeConfig.js +45 -0
  76. package/dist-es/runtimeConfig.native.js +11 -0
  77. package/dist-es/runtimeConfig.shared.js +20 -0
  78. package/dist-es/runtimeExtensions.js +18 -0
  79. package/dist-types/WorkSpacesThin.d.ts +133 -0
  80. package/dist-types/WorkSpacesThinClientClient.d.ts +196 -0
  81. package/dist-types/commands/CreateEnvironmentCommand.d.ts +146 -0
  82. package/dist-types/commands/DeleteDeviceCommand.d.ts +92 -0
  83. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +92 -0
  84. package/dist-types/commands/DeregisterDeviceCommand.d.ts +93 -0
  85. package/dist-types/commands/GetDeviceCommand.d.ts +113 -0
  86. package/dist-types/commands/GetEnvironmentCommand.d.ts +121 -0
  87. package/dist-types/commands/GetSoftwareSetCommand.d.ts +101 -0
  88. package/dist-types/commands/ListDevicesCommand.d.ts +109 -0
  89. package/dist-types/commands/ListEnvironmentsCommand.d.ts +118 -0
  90. package/dist-types/commands/ListSoftwareSetsCommand.d.ts +96 -0
  91. package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
  92. package/dist-types/commands/TagResourceCommand.d.ts +83 -0
  93. package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
  94. package/dist-types/commands/UpdateDeviceCommand.d.ts +112 -0
  95. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +134 -0
  96. package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +87 -0
  97. package/dist-types/commands/index.d.ts +16 -0
  98. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  99. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  100. package/dist-types/endpoint/ruleset.d.ts +2 -0
  101. package/dist-types/extensionConfiguration.d.ts +8 -0
  102. package/dist-types/index.d.ts +26 -0
  103. package/dist-types/models/WorkSpacesThinClientServiceException.d.ts +13 -0
  104. package/dist-types/models/index.d.ts +1 -0
  105. package/dist-types/models/models_0.d.ts +1506 -0
  106. package/dist-types/pagination/Interfaces.d.ts +8 -0
  107. package/dist-types/pagination/ListDevicesPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListSoftwareSetsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/index.d.ts +4 -0
  111. package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  113. package/dist-types/runtimeConfig.d.ts +46 -0
  114. package/dist-types/runtimeConfig.native.d.ts +45 -0
  115. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  116. package/dist-types/runtimeExtensions.d.ts +17 -0
  117. package/dist-types/ts3.4/WorkSpacesThin.d.ts +279 -0
  118. package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +217 -0
  119. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +35 -0
  121. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +39 -0
  122. package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +38 -0
  123. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +35 -0
  124. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +35 -0
  127. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +38 -0
  129. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  130. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  131. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  132. package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +35 -0
  133. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +39 -0
  134. package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +39 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  136. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  137. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  138. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  139. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  140. package/dist-types/ts3.4/index.d.ts +10 -0
  141. package/dist-types/ts3.4/models/WorkSpacesThinClientServiceException.d.ts +8 -0
  142. package/dist-types/ts3.4/models/index.d.ts +1 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +440 -0
  144. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  145. package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListSoftwareSetsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  149. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  150. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
  151. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  152. package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
  153. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  154. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  155. 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
+ }