@aws-sdk/client-workspaces-thin-client 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/WorkSpacesThinClient.d.ts +54 -63
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +8 -27
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -19,10 +19,7 @@ import {
|
|
|
19
19
|
DeregisterDeviceCommandInput,
|
|
20
20
|
DeregisterDeviceCommandOutput,
|
|
21
21
|
} from "./commands/DeregisterDeviceCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetDeviceCommandInput,
|
|
24
|
-
GetDeviceCommandOutput,
|
|
25
|
-
} from "./commands/GetDeviceCommand";
|
|
22
|
+
import { GetDeviceCommandInput, GetDeviceCommandOutput } from "./commands/GetDeviceCommand";
|
|
26
23
|
import {
|
|
27
24
|
GetEnvironmentCommandInput,
|
|
28
25
|
GetEnvironmentCommandOutput,
|
|
@@ -31,10 +28,7 @@ import {
|
|
|
31
28
|
GetSoftwareSetCommandInput,
|
|
32
29
|
GetSoftwareSetCommandOutput,
|
|
33
30
|
} from "./commands/GetSoftwareSetCommand";
|
|
34
|
-
import {
|
|
35
|
-
ListDevicesCommandInput,
|
|
36
|
-
ListDevicesCommandOutput,
|
|
37
|
-
} from "./commands/ListDevicesCommand";
|
|
31
|
+
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "./commands/ListDevicesCommand";
|
|
38
32
|
import {
|
|
39
33
|
ListEnvironmentsCommandInput,
|
|
40
34
|
ListEnvironmentsCommandOutput,
|
|
@@ -47,10 +41,7 @@ import {
|
|
|
47
41
|
ListTagsForResourceCommandInput,
|
|
48
42
|
ListTagsForResourceCommandOutput,
|
|
49
43
|
} from "./commands/ListTagsForResourceCommand";
|
|
50
|
-
import {
|
|
51
|
-
TagResourceCommandInput,
|
|
52
|
-
TagResourceCommandOutput,
|
|
53
|
-
} from "./commands/TagResourceCommand";
|
|
44
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
54
45
|
import {
|
|
55
46
|
UntagResourceCommandInput,
|
|
56
47
|
UntagResourceCommandOutput,
|
|
@@ -71,235 +62,235 @@ import { WorkSpacesThinClientClient } from "./WorkSpacesThinClientClient";
|
|
|
71
62
|
export interface WorkSpacesThinClient {
|
|
72
63
|
createEnvironment(
|
|
73
64
|
args: CreateEnvironmentCommandInput,
|
|
74
|
-
options?: __HttpHandlerOptions
|
|
65
|
+
options?: __HttpHandlerOptions,
|
|
75
66
|
): Promise<CreateEnvironmentCommandOutput>;
|
|
76
67
|
createEnvironment(
|
|
77
68
|
args: CreateEnvironmentCommandInput,
|
|
78
|
-
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
69
|
+
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void,
|
|
79
70
|
): void;
|
|
80
71
|
createEnvironment(
|
|
81
72
|
args: CreateEnvironmentCommandInput,
|
|
82
73
|
options: __HttpHandlerOptions,
|
|
83
|
-
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void,
|
|
84
75
|
): void;
|
|
85
76
|
deleteDevice(
|
|
86
77
|
args: DeleteDeviceCommandInput,
|
|
87
|
-
options?: __HttpHandlerOptions
|
|
78
|
+
options?: __HttpHandlerOptions,
|
|
88
79
|
): Promise<DeleteDeviceCommandOutput>;
|
|
89
80
|
deleteDevice(
|
|
90
81
|
args: DeleteDeviceCommandInput,
|
|
91
|
-
cb: (err: any, data?: DeleteDeviceCommandOutput) => void
|
|
82
|
+
cb: (err: any, data?: DeleteDeviceCommandOutput) => void,
|
|
92
83
|
): void;
|
|
93
84
|
deleteDevice(
|
|
94
85
|
args: DeleteDeviceCommandInput,
|
|
95
86
|
options: __HttpHandlerOptions,
|
|
96
|
-
cb: (err: any, data?: DeleteDeviceCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: DeleteDeviceCommandOutput) => void,
|
|
97
88
|
): void;
|
|
98
89
|
deleteEnvironment(
|
|
99
90
|
args: DeleteEnvironmentCommandInput,
|
|
100
|
-
options?: __HttpHandlerOptions
|
|
91
|
+
options?: __HttpHandlerOptions,
|
|
101
92
|
): Promise<DeleteEnvironmentCommandOutput>;
|
|
102
93
|
deleteEnvironment(
|
|
103
94
|
args: DeleteEnvironmentCommandInput,
|
|
104
|
-
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void,
|
|
105
96
|
): void;
|
|
106
97
|
deleteEnvironment(
|
|
107
98
|
args: DeleteEnvironmentCommandInput,
|
|
108
99
|
options: __HttpHandlerOptions,
|
|
109
|
-
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void,
|
|
110
101
|
): void;
|
|
111
102
|
deregisterDevice(
|
|
112
103
|
args: DeregisterDeviceCommandInput,
|
|
113
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
114
105
|
): Promise<DeregisterDeviceCommandOutput>;
|
|
115
106
|
deregisterDevice(
|
|
116
107
|
args: DeregisterDeviceCommandInput,
|
|
117
|
-
cb: (err: any, data?: DeregisterDeviceCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: DeregisterDeviceCommandOutput) => void,
|
|
118
109
|
): void;
|
|
119
110
|
deregisterDevice(
|
|
120
111
|
args: DeregisterDeviceCommandInput,
|
|
121
112
|
options: __HttpHandlerOptions,
|
|
122
|
-
cb: (err: any, data?: DeregisterDeviceCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: DeregisterDeviceCommandOutput) => void,
|
|
123
114
|
): void;
|
|
124
115
|
getDevice(
|
|
125
116
|
args: GetDeviceCommandInput,
|
|
126
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
127
118
|
): Promise<GetDeviceCommandOutput>;
|
|
128
119
|
getDevice(
|
|
129
120
|
args: GetDeviceCommandInput,
|
|
130
|
-
cb: (err: any, data?: GetDeviceCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: GetDeviceCommandOutput) => void,
|
|
131
122
|
): void;
|
|
132
123
|
getDevice(
|
|
133
124
|
args: GetDeviceCommandInput,
|
|
134
125
|
options: __HttpHandlerOptions,
|
|
135
|
-
cb: (err: any, data?: GetDeviceCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: GetDeviceCommandOutput) => void,
|
|
136
127
|
): void;
|
|
137
128
|
getEnvironment(
|
|
138
129
|
args: GetEnvironmentCommandInput,
|
|
139
|
-
options?: __HttpHandlerOptions
|
|
130
|
+
options?: __HttpHandlerOptions,
|
|
140
131
|
): Promise<GetEnvironmentCommandOutput>;
|
|
141
132
|
getEnvironment(
|
|
142
133
|
args: GetEnvironmentCommandInput,
|
|
143
|
-
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: GetEnvironmentCommandOutput) => void,
|
|
144
135
|
): void;
|
|
145
136
|
getEnvironment(
|
|
146
137
|
args: GetEnvironmentCommandInput,
|
|
147
138
|
options: __HttpHandlerOptions,
|
|
148
|
-
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: GetEnvironmentCommandOutput) => void,
|
|
149
140
|
): void;
|
|
150
141
|
getSoftwareSet(
|
|
151
142
|
args: GetSoftwareSetCommandInput,
|
|
152
|
-
options?: __HttpHandlerOptions
|
|
143
|
+
options?: __HttpHandlerOptions,
|
|
153
144
|
): Promise<GetSoftwareSetCommandOutput>;
|
|
154
145
|
getSoftwareSet(
|
|
155
146
|
args: GetSoftwareSetCommandInput,
|
|
156
|
-
cb: (err: any, data?: GetSoftwareSetCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: GetSoftwareSetCommandOutput) => void,
|
|
157
148
|
): void;
|
|
158
149
|
getSoftwareSet(
|
|
159
150
|
args: GetSoftwareSetCommandInput,
|
|
160
151
|
options: __HttpHandlerOptions,
|
|
161
|
-
cb: (err: any, data?: GetSoftwareSetCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: GetSoftwareSetCommandOutput) => void,
|
|
162
153
|
): void;
|
|
163
154
|
listDevices(): Promise<ListDevicesCommandOutput>;
|
|
164
155
|
listDevices(
|
|
165
156
|
args: ListDevicesCommandInput,
|
|
166
|
-
options?: __HttpHandlerOptions
|
|
157
|
+
options?: __HttpHandlerOptions,
|
|
167
158
|
): Promise<ListDevicesCommandOutput>;
|
|
168
159
|
listDevices(
|
|
169
160
|
args: ListDevicesCommandInput,
|
|
170
|
-
cb: (err: any, data?: ListDevicesCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: ListDevicesCommandOutput) => void,
|
|
171
162
|
): void;
|
|
172
163
|
listDevices(
|
|
173
164
|
args: ListDevicesCommandInput,
|
|
174
165
|
options: __HttpHandlerOptions,
|
|
175
|
-
cb: (err: any, data?: ListDevicesCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: ListDevicesCommandOutput) => void,
|
|
176
167
|
): void;
|
|
177
168
|
listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
|
|
178
169
|
listEnvironments(
|
|
179
170
|
args: ListEnvironmentsCommandInput,
|
|
180
|
-
options?: __HttpHandlerOptions
|
|
171
|
+
options?: __HttpHandlerOptions,
|
|
181
172
|
): Promise<ListEnvironmentsCommandOutput>;
|
|
182
173
|
listEnvironments(
|
|
183
174
|
args: ListEnvironmentsCommandInput,
|
|
184
|
-
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
175
|
+
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
|
|
185
176
|
): void;
|
|
186
177
|
listEnvironments(
|
|
187
178
|
args: ListEnvironmentsCommandInput,
|
|
188
179
|
options: __HttpHandlerOptions,
|
|
189
|
-
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
|
|
190
181
|
): void;
|
|
191
182
|
listSoftwareSets(): Promise<ListSoftwareSetsCommandOutput>;
|
|
192
183
|
listSoftwareSets(
|
|
193
184
|
args: ListSoftwareSetsCommandInput,
|
|
194
|
-
options?: __HttpHandlerOptions
|
|
185
|
+
options?: __HttpHandlerOptions,
|
|
195
186
|
): Promise<ListSoftwareSetsCommandOutput>;
|
|
196
187
|
listSoftwareSets(
|
|
197
188
|
args: ListSoftwareSetsCommandInput,
|
|
198
|
-
cb: (err: any, data?: ListSoftwareSetsCommandOutput) => void
|
|
189
|
+
cb: (err: any, data?: ListSoftwareSetsCommandOutput) => void,
|
|
199
190
|
): void;
|
|
200
191
|
listSoftwareSets(
|
|
201
192
|
args: ListSoftwareSetsCommandInput,
|
|
202
193
|
options: __HttpHandlerOptions,
|
|
203
|
-
cb: (err: any, data?: ListSoftwareSetsCommandOutput) => void
|
|
194
|
+
cb: (err: any, data?: ListSoftwareSetsCommandOutput) => void,
|
|
204
195
|
): void;
|
|
205
196
|
listTagsForResource(
|
|
206
197
|
args: ListTagsForResourceCommandInput,
|
|
207
|
-
options?: __HttpHandlerOptions
|
|
198
|
+
options?: __HttpHandlerOptions,
|
|
208
199
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
209
200
|
listTagsForResource(
|
|
210
201
|
args: ListTagsForResourceCommandInput,
|
|
211
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
202
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
212
203
|
): void;
|
|
213
204
|
listTagsForResource(
|
|
214
205
|
args: ListTagsForResourceCommandInput,
|
|
215
206
|
options: __HttpHandlerOptions,
|
|
216
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
207
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
217
208
|
): void;
|
|
218
209
|
tagResource(
|
|
219
210
|
args: TagResourceCommandInput,
|
|
220
|
-
options?: __HttpHandlerOptions
|
|
211
|
+
options?: __HttpHandlerOptions,
|
|
221
212
|
): Promise<TagResourceCommandOutput>;
|
|
222
213
|
tagResource(
|
|
223
214
|
args: TagResourceCommandInput,
|
|
224
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
215
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
225
216
|
): void;
|
|
226
217
|
tagResource(
|
|
227
218
|
args: TagResourceCommandInput,
|
|
228
219
|
options: __HttpHandlerOptions,
|
|
229
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
220
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
230
221
|
): void;
|
|
231
222
|
untagResource(
|
|
232
223
|
args: UntagResourceCommandInput,
|
|
233
|
-
options?: __HttpHandlerOptions
|
|
224
|
+
options?: __HttpHandlerOptions,
|
|
234
225
|
): Promise<UntagResourceCommandOutput>;
|
|
235
226
|
untagResource(
|
|
236
227
|
args: UntagResourceCommandInput,
|
|
237
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
238
229
|
): void;
|
|
239
230
|
untagResource(
|
|
240
231
|
args: UntagResourceCommandInput,
|
|
241
232
|
options: __HttpHandlerOptions,
|
|
242
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
233
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
243
234
|
): void;
|
|
244
235
|
updateDevice(
|
|
245
236
|
args: UpdateDeviceCommandInput,
|
|
246
|
-
options?: __HttpHandlerOptions
|
|
237
|
+
options?: __HttpHandlerOptions,
|
|
247
238
|
): Promise<UpdateDeviceCommandOutput>;
|
|
248
239
|
updateDevice(
|
|
249
240
|
args: UpdateDeviceCommandInput,
|
|
250
|
-
cb: (err: any, data?: UpdateDeviceCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: UpdateDeviceCommandOutput) => void,
|
|
251
242
|
): void;
|
|
252
243
|
updateDevice(
|
|
253
244
|
args: UpdateDeviceCommandInput,
|
|
254
245
|
options: __HttpHandlerOptions,
|
|
255
|
-
cb: (err: any, data?: UpdateDeviceCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: UpdateDeviceCommandOutput) => void,
|
|
256
247
|
): void;
|
|
257
248
|
updateEnvironment(
|
|
258
249
|
args: UpdateEnvironmentCommandInput,
|
|
259
|
-
options?: __HttpHandlerOptions
|
|
250
|
+
options?: __HttpHandlerOptions,
|
|
260
251
|
): Promise<UpdateEnvironmentCommandOutput>;
|
|
261
252
|
updateEnvironment(
|
|
262
253
|
args: UpdateEnvironmentCommandInput,
|
|
263
|
-
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
254
|
+
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void,
|
|
264
255
|
): void;
|
|
265
256
|
updateEnvironment(
|
|
266
257
|
args: UpdateEnvironmentCommandInput,
|
|
267
258
|
options: __HttpHandlerOptions,
|
|
268
|
-
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void,
|
|
269
260
|
): void;
|
|
270
261
|
updateSoftwareSet(
|
|
271
262
|
args: UpdateSoftwareSetCommandInput,
|
|
272
|
-
options?: __HttpHandlerOptions
|
|
263
|
+
options?: __HttpHandlerOptions,
|
|
273
264
|
): Promise<UpdateSoftwareSetCommandOutput>;
|
|
274
265
|
updateSoftwareSet(
|
|
275
266
|
args: UpdateSoftwareSetCommandInput,
|
|
276
|
-
cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void
|
|
267
|
+
cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void,
|
|
277
268
|
): void;
|
|
278
269
|
updateSoftwareSet(
|
|
279
270
|
args: UpdateSoftwareSetCommandInput,
|
|
280
271
|
options: __HttpHandlerOptions,
|
|
281
|
-
cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void
|
|
272
|
+
cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void,
|
|
282
273
|
): void;
|
|
283
274
|
paginateListDevices(
|
|
284
275
|
args?: ListDevicesCommandInput,
|
|
285
276
|
paginationConfig?: Pick<
|
|
286
277
|
PaginationConfiguration,
|
|
287
278
|
Exclude<keyof PaginationConfiguration, "client">
|
|
288
|
-
|
|
279
|
+
>,
|
|
289
280
|
): Paginator<ListDevicesCommandOutput>;
|
|
290
281
|
paginateListEnvironments(
|
|
291
282
|
args?: ListEnvironmentsCommandInput,
|
|
292
283
|
paginationConfig?: Pick<
|
|
293
284
|
PaginationConfiguration,
|
|
294
285
|
Exclude<keyof PaginationConfiguration, "client">
|
|
295
|
-
|
|
286
|
+
>,
|
|
296
287
|
): Paginator<ListEnvironmentsCommandOutput>;
|
|
297
288
|
paginateListSoftwareSets(
|
|
298
289
|
args?: ListSoftwareSetsCommandInput,
|
|
299
290
|
paginationConfig?: Pick<
|
|
300
291
|
PaginationConfiguration,
|
|
301
292
|
Exclude<keyof PaginationConfiguration, "client">
|
|
302
|
-
|
|
293
|
+
>,
|
|
303
294
|
): Paginator<ListSoftwareSetsCommandOutput>;
|
|
304
295
|
}
|
|
305
296
|
export declare class WorkSpacesThinClient
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -52,10 +49,7 @@ import {
|
|
|
52
49
|
DeregisterDeviceCommandInput,
|
|
53
50
|
DeregisterDeviceCommandOutput,
|
|
54
51
|
} from "./commands/DeregisterDeviceCommand";
|
|
55
|
-
import {
|
|
56
|
-
GetDeviceCommandInput,
|
|
57
|
-
GetDeviceCommandOutput,
|
|
58
|
-
} from "./commands/GetDeviceCommand";
|
|
52
|
+
import { GetDeviceCommandInput, GetDeviceCommandOutput } from "./commands/GetDeviceCommand";
|
|
59
53
|
import {
|
|
60
54
|
GetEnvironmentCommandInput,
|
|
61
55
|
GetEnvironmentCommandOutput,
|
|
@@ -64,10 +58,7 @@ import {
|
|
|
64
58
|
GetSoftwareSetCommandInput,
|
|
65
59
|
GetSoftwareSetCommandOutput,
|
|
66
60
|
} from "./commands/GetSoftwareSetCommand";
|
|
67
|
-
import {
|
|
68
|
-
ListDevicesCommandInput,
|
|
69
|
-
ListDevicesCommandOutput,
|
|
70
|
-
} from "./commands/ListDevicesCommand";
|
|
61
|
+
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "./commands/ListDevicesCommand";
|
|
71
62
|
import {
|
|
72
63
|
ListEnvironmentsCommandInput,
|
|
73
64
|
ListEnvironmentsCommandOutput,
|
|
@@ -80,10 +71,7 @@ import {
|
|
|
80
71
|
ListTagsForResourceCommandInput,
|
|
81
72
|
ListTagsForResourceCommandOutput,
|
|
82
73
|
} from "./commands/ListTagsForResourceCommand";
|
|
83
|
-
import {
|
|
84
|
-
TagResourceCommandInput,
|
|
85
|
-
TagResourceCommandOutput,
|
|
86
|
-
} from "./commands/TagResourceCommand";
|
|
74
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
87
75
|
import {
|
|
88
76
|
UntagResourceCommandInput,
|
|
89
77
|
UntagResourceCommandOutput,
|
|
@@ -141,8 +129,7 @@ export type ServiceOutputTypes =
|
|
|
141
129
|
| UpdateDeviceCommandOutput
|
|
142
130
|
| UpdateEnvironmentCommandOutput
|
|
143
131
|
| UpdateSoftwareSetCommandOutput;
|
|
144
|
-
export interface ClientDefaults
|
|
145
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
132
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
146
133
|
requestHandler?: __HttpHandlerUserInput;
|
|
147
134
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
148
135
|
urlParser?: __UrlParser;
|
|
@@ -178,8 +165,7 @@ export type WorkSpacesThinClientClientConfigType = Partial<
|
|
|
178
165
|
EndpointInputConfig<EndpointParameters> &
|
|
179
166
|
HttpAuthSchemeInputConfig &
|
|
180
167
|
ClientInputEndpointParameters;
|
|
181
|
-
export interface WorkSpacesThinClientClientConfig
|
|
182
|
-
extends WorkSpacesThinClientClientConfigType {}
|
|
168
|
+
export interface WorkSpacesThinClientClientConfig extends WorkSpacesThinClientClientConfigType {}
|
|
183
169
|
export type WorkSpacesThinClientClientResolvedConfigType =
|
|
184
170
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
185
171
|
Required<ClientDefaults> &
|
|
@@ -191,8 +177,7 @@ export type WorkSpacesThinClientClientResolvedConfigType =
|
|
|
191
177
|
EndpointResolvedConfig<EndpointParameters> &
|
|
192
178
|
HttpAuthSchemeResolvedConfig &
|
|
193
179
|
ClientResolvedEndpointParameters;
|
|
194
|
-
export interface WorkSpacesThinClientClientResolvedConfig
|
|
195
|
-
extends WorkSpacesThinClientClientResolvedConfigType {}
|
|
180
|
+
export interface WorkSpacesThinClientClientResolvedConfig extends WorkSpacesThinClientClientResolvedConfigType {}
|
|
196
181
|
export declare class WorkSpacesThinClientClient extends __Client<
|
|
197
182
|
__HttpHandlerOptions,
|
|
198
183
|
ServiceInputTypes,
|
|
@@ -200,10 +185,6 @@ export declare class WorkSpacesThinClientClient extends __Client<
|
|
|
200
185
|
WorkSpacesThinClientClientResolvedConfig
|
|
201
186
|
> {
|
|
202
187
|
readonly config: WorkSpacesThinClientClientResolvedConfig;
|
|
203
|
-
constructor(
|
|
204
|
-
...[
|
|
205
|
-
configuration,
|
|
206
|
-
]: __CheckOptionalClientConfig<WorkSpacesThinClientClientConfig>
|
|
207
|
-
);
|
|
188
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<WorkSpacesThinClientClientConfig>);
|
|
208
189
|
destroy(): void;
|
|
209
190
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: WorkSpacesThinClientHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: WorkSpacesThinClientHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): WorkSpacesThinClientHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
|
|
15
|
-
export interface WorkSpacesThinClientHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface WorkSpacesThinClientHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface WorkSpacesThinClientHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface WorkSpacesThinClientHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
WorkSpacesThinClientHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultWorkSpacesThinClientHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: WorkSpacesThinClientClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<WorkSpacesThinClientHttpAuthSchemeParameters>;
|
|
31
|
-
export interface WorkSpacesThinClientHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<WorkSpacesThinClientHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface WorkSpacesThinClientHttpAuthSchemeProvider extends HttpAuthSchemeProvider<WorkSpacesThinClientHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultWorkSpacesThinClientHttpAuthSchemeProvider: WorkSpacesThinClientHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: WorkSpacesThinClientHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: WorkSpacesThinClientHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
WorkSpacesThinClientClientResolvedConfig,
|
|
6
6
|
} from "./WorkSpacesThinClientClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
WorkSpacesThinClientClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateEnvironmentRequest,
|
|
4
|
-
CreateEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateEnvironmentCommandInput
|
|
8
|
-
extends CreateEnvironmentRequest {}
|
|
4
|
+
export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest {}
|
|
9
5
|
export interface CreateEnvironmentCommandOutput
|
|
10
|
-
extends CreateEnvironmentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateEnvironmentResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateEnvironmentCommandInput
|
|
9
|
+
input: CreateEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateEnvironmentCommandInput,
|
|
17
12
|
CreateEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateEnvironmentCommandInput
|
|
18
|
+
input: CreateEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateEnvironmentCommandInput,
|
|
26
21
|
CreateEnvironmentCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteDeviceCommandInput extends DeleteDeviceRequest {}
|
|
5
|
-
export interface DeleteDeviceCommandOutput
|
|
6
|
-
extends DeleteDeviceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDeviceCommandOutput extends DeleteDeviceResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteDeviceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteDeviceCommandInput
|
|
8
|
+
input: DeleteDeviceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteDeviceCommandInput,
|
|
13
11
|
DeleteDeviceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteDeviceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteDeviceCommandInput
|
|
17
|
+
input: DeleteDeviceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteDeviceCommandInput,
|
|
22
20
|
DeleteDeviceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteEnvironmentRequest,
|
|
4
|
-
DeleteEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteEnvironmentCommandInput
|
|
8
|
-
extends DeleteEnvironmentRequest {}
|
|
4
|
+
export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {}
|
|
9
5
|
export interface DeleteEnvironmentCommandOutput
|
|
10
|
-
extends DeleteEnvironmentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteEnvironmentResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteEnvironmentCommandInput
|
|
9
|
+
input: DeleteEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteEnvironmentCommandInput,
|
|
17
12
|
DeleteEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteEnvironmentCommandInput
|
|
18
|
+
input: DeleteEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteEnvironmentCommandInput,
|
|
26
21
|
DeleteEnvironmentCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeregisterDeviceRequest,
|
|
4
|
-
DeregisterDeviceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeregisterDeviceRequest, DeregisterDeviceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeregisterDeviceCommandInput extends DeregisterDeviceRequest {}
|
|
8
|
-
export interface DeregisterDeviceCommandOutput
|
|
9
|
-
extends DeregisterDeviceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeregisterDeviceCommandOutput extends DeregisterDeviceResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeregisterDeviceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeregisterDeviceCommandInput
|
|
8
|
+
input: DeregisterDeviceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeregisterDeviceCommandInput,
|
|
16
11
|
DeregisterDeviceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeregisterDeviceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeregisterDeviceCommandInput
|
|
17
|
+
input: DeregisterDeviceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeregisterDeviceCommandInput,
|
|
25
20
|
DeregisterDeviceCommandOutput,
|