@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,1506 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { WorkSpacesThinClientServiceException as __BaseException } from "./WorkSpacesThinClientServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const ApplyTimeOf: {
|
|
20
|
+
readonly DEVICE: "DEVICE";
|
|
21
|
+
readonly UTC: "UTC";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type ApplyTimeOf = (typeof ApplyTimeOf)[keyof typeof ApplyTimeOf];
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* <p>The requested operation would cause a conflict with the current state of a service
|
|
30
|
+
* resource associated with the request. Resolve the conflict before retrying this
|
|
31
|
+
* request.</p>
|
|
32
|
+
*/
|
|
33
|
+
export declare class ConflictException extends __BaseException {
|
|
34
|
+
readonly name: "ConflictException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* <p>The ID of the resource associated with the request.</p>
|
|
39
|
+
*/
|
|
40
|
+
resourceId?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* <p>The type of the resource associated with the request.</p>
|
|
44
|
+
*/
|
|
45
|
+
resourceType?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const DayOfWeek: {
|
|
56
|
+
readonly FRIDAY: "FRIDAY";
|
|
57
|
+
readonly MONDAY: "MONDAY";
|
|
58
|
+
readonly SATURDAY: "SATURDAY";
|
|
59
|
+
readonly SUNDAY: "SUNDAY";
|
|
60
|
+
readonly THURSDAY: "THURSDAY";
|
|
61
|
+
readonly TUESDAY: "TUESDAY";
|
|
62
|
+
readonly WEDNESDAY: "WEDNESDAY";
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
* @enum
|
|
71
|
+
*/
|
|
72
|
+
export declare const MaintenanceWindowType: {
|
|
73
|
+
readonly CUSTOM: "CUSTOM";
|
|
74
|
+
readonly SYSTEM: "SYSTEM";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type MaintenanceWindowType = (typeof MaintenanceWindowType)[keyof typeof MaintenanceWindowType];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* <p>Describes the maintenance window for a thin client device.</p>
|
|
83
|
+
*/
|
|
84
|
+
export interface MaintenanceWindow {
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* <p>An option to select the default or custom maintenance window.</p>
|
|
88
|
+
*/
|
|
89
|
+
type?: MaintenanceWindowType;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
* <p>The hour for the maintenance window start (<code>00</code>-<code>23</code>).</p>
|
|
93
|
+
*/
|
|
94
|
+
startTimeHour?: number;
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
* <p>The minutes past the hour for the maintenance window start
|
|
98
|
+
* (<code>00</code>-<code>59</code>).</p>
|
|
99
|
+
*/
|
|
100
|
+
startTimeMinute?: number;
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
* <p>The hour for the maintenance window end (<code>00</code>-<code>23</code>).</p>
|
|
104
|
+
*/
|
|
105
|
+
endTimeHour?: number;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* <p>The minutes for the maintenance window end (<code>00</code>-<code>59</code>).</p>
|
|
109
|
+
*/
|
|
110
|
+
endTimeMinute?: number;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* <p>The days of the week during which the maintenance window is open.</p>
|
|
114
|
+
*/
|
|
115
|
+
daysOfTheWeek?: DayOfWeek[];
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
* <p>The option to set the maintenance window during the device local time or Universal
|
|
119
|
+
* Coordinated Time (UTC).</p>
|
|
120
|
+
*/
|
|
121
|
+
applyTimeOf?: ApplyTimeOf;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const SoftwareSetUpdateMode: {
|
|
128
|
+
readonly USE_DESIRED: "USE_DESIRED";
|
|
129
|
+
readonly USE_LATEST: "USE_LATEST";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type SoftwareSetUpdateMode = (typeof SoftwareSetUpdateMode)[keyof typeof SoftwareSetUpdateMode];
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* @enum
|
|
138
|
+
*/
|
|
139
|
+
export declare const SoftwareSetUpdateSchedule: {
|
|
140
|
+
readonly APPLY_IMMEDIATELY: "APPLY_IMMEDIATELY";
|
|
141
|
+
readonly USE_MAINTENANCE_WINDOW: "USE_MAINTENANCE_WINDOW";
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export type SoftwareSetUpdateSchedule = (typeof SoftwareSetUpdateSchedule)[keyof typeof SoftwareSetUpdateSchedule];
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export interface CreateEnvironmentRequest {
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
* <p>The name for the environment.</p>
|
|
154
|
+
*/
|
|
155
|
+
name?: string;
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
* <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
|
|
159
|
+
* WorkSpaces Web, or AppStream 2.0.</p>
|
|
160
|
+
*/
|
|
161
|
+
desktopArn: string | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
* <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
|
|
165
|
+
*/
|
|
166
|
+
desktopEndpoint?: string;
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
170
|
+
* window.</p>
|
|
171
|
+
*/
|
|
172
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* <p>A specification for a time window to apply software updates.</p>
|
|
176
|
+
*/
|
|
177
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
* <p>An option to define which software updates to apply.</p>
|
|
181
|
+
*/
|
|
182
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* <p>The ID of the software set to apply.</p>
|
|
186
|
+
*/
|
|
187
|
+
desiredSoftwareSetId?: string;
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
* <p>The Amazon Resource Name (ARN) of the Key Management Service key to use to encrypt the
|
|
191
|
+
* environment.</p>
|
|
192
|
+
*/
|
|
193
|
+
kmsKeyArn?: string;
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
197
|
+
* of the request. This lets you safely retry the request without accidentally performing the
|
|
198
|
+
* same operation a second time. Passing the same value to a later call to an operation
|
|
199
|
+
* requires that you also pass the same value for all other parameters. We recommend that you
|
|
200
|
+
* use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of
|
|
201
|
+
* value</a>.</p>
|
|
202
|
+
* <p>If you don't provide this value, then Amazon Web Services generates a random one for
|
|
203
|
+
* you.</p>
|
|
204
|
+
* <p>If you retry the operation with the same <code>ClientToken</code>, but with different
|
|
205
|
+
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
206
|
+
*/
|
|
207
|
+
clientToken?: string;
|
|
208
|
+
/**
|
|
209
|
+
* @public
|
|
210
|
+
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
211
|
+
*/
|
|
212
|
+
tags?: Record<string, string>;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* @public
|
|
216
|
+
* @enum
|
|
217
|
+
*/
|
|
218
|
+
export declare const DesktopType: {
|
|
219
|
+
readonly APPSTREAM: "appstream";
|
|
220
|
+
readonly WORKSPACES: "workspaces";
|
|
221
|
+
readonly WORKSPACES_WEB: "workspaces-web";
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
export type DesktopType = (typeof DesktopType)[keyof typeof DesktopType];
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
* <p>The resource and internal ID of a resource to tag.</p>
|
|
230
|
+
*/
|
|
231
|
+
export interface EmbeddedTag {
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
* <p>The Amazon Resource Name (ARN) of a resource to tag.</p>
|
|
235
|
+
*/
|
|
236
|
+
resourceArn?: string;
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
* <p>The internal ID of a resource to tag.</p>
|
|
240
|
+
*/
|
|
241
|
+
internalId?: string;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
* <p>Describes an environment.</p>
|
|
246
|
+
*/
|
|
247
|
+
export interface EnvironmentSummary {
|
|
248
|
+
/**
|
|
249
|
+
* @public
|
|
250
|
+
* <p>The ID of the environment.</p>
|
|
251
|
+
*/
|
|
252
|
+
id?: string;
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
* <p>The name of the environment.</p>
|
|
256
|
+
*/
|
|
257
|
+
name?: string;
|
|
258
|
+
/**
|
|
259
|
+
* @public
|
|
260
|
+
* <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
|
|
261
|
+
* WorkSpaces Web, or AppStream 2.0.</p>
|
|
262
|
+
*/
|
|
263
|
+
desktopArn?: string;
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
* <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
|
|
267
|
+
*/
|
|
268
|
+
desktopEndpoint?: string;
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
* <p>The type of streaming desktop for the environment.</p>
|
|
272
|
+
*/
|
|
273
|
+
desktopType?: DesktopType;
|
|
274
|
+
/**
|
|
275
|
+
* @public
|
|
276
|
+
* <p>The activation code to register a device to the environment.</p>
|
|
277
|
+
*/
|
|
278
|
+
activationCode?: string;
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
282
|
+
* window.</p>
|
|
283
|
+
*/
|
|
284
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
* <p>A specification for a time window to apply software updates.</p>
|
|
288
|
+
*/
|
|
289
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
290
|
+
/**
|
|
291
|
+
* @public
|
|
292
|
+
* <p>An option to define which software updates to apply.</p>
|
|
293
|
+
*/
|
|
294
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
295
|
+
/**
|
|
296
|
+
* @public
|
|
297
|
+
* <p>The ID of the software set to apply.</p>
|
|
298
|
+
*/
|
|
299
|
+
desiredSoftwareSetId?: string;
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
* <p>The ID of the software set that is pending to be installed.</p>
|
|
303
|
+
*/
|
|
304
|
+
pendingSoftwareSetId?: string;
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
* <p>The timestamp of when the environment was created.</p>
|
|
308
|
+
*/
|
|
309
|
+
createdAt?: Date;
|
|
310
|
+
/**
|
|
311
|
+
* @public
|
|
312
|
+
* <p>The timestamp of when the device was updated.</p>
|
|
313
|
+
*/
|
|
314
|
+
updatedAt?: Date;
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
318
|
+
*/
|
|
319
|
+
arn?: string;
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
* <p>The tag keys and optional values for the resource.</p>
|
|
323
|
+
*/
|
|
324
|
+
tags?: EmbeddedTag;
|
|
325
|
+
}
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
329
|
+
export interface CreateEnvironmentResponse {
|
|
330
|
+
/**
|
|
331
|
+
* @public
|
|
332
|
+
* <p>Describes an environment.</p>
|
|
333
|
+
*/
|
|
334
|
+
environment?: EnvironmentSummary;
|
|
335
|
+
}
|
|
336
|
+
/**
|
|
337
|
+
* @public
|
|
338
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
339
|
+
*/
|
|
340
|
+
export declare class InternalServerException extends __BaseException {
|
|
341
|
+
readonly name: "InternalServerException";
|
|
342
|
+
readonly $fault: "server";
|
|
343
|
+
/**
|
|
344
|
+
* @public
|
|
345
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
346
|
+
*/
|
|
347
|
+
retryAfterSeconds?: number;
|
|
348
|
+
/**
|
|
349
|
+
* @internal
|
|
350
|
+
*/
|
|
351
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
352
|
+
}
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
* <p>The resource specified in the request was not found.</p>
|
|
356
|
+
*/
|
|
357
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
358
|
+
readonly name: "ResourceNotFoundException";
|
|
359
|
+
readonly $fault: "client";
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
* <p>The ID of the resource associated with the request.</p>
|
|
363
|
+
*/
|
|
364
|
+
resourceId?: string;
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
* <p>The type of the resource associated with the request.</p>
|
|
368
|
+
*/
|
|
369
|
+
resourceType?: string;
|
|
370
|
+
/**
|
|
371
|
+
* @internal
|
|
372
|
+
*/
|
|
373
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
374
|
+
}
|
|
375
|
+
/**
|
|
376
|
+
* @public
|
|
377
|
+
* <p>Your request exceeds a service quota.</p>
|
|
378
|
+
*/
|
|
379
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
380
|
+
readonly name: "ServiceQuotaExceededException";
|
|
381
|
+
readonly $fault: "client";
|
|
382
|
+
/**
|
|
383
|
+
* @public
|
|
384
|
+
* <p>The ID of the resource that exceeds the service quota.</p>
|
|
385
|
+
*/
|
|
386
|
+
resourceId?: string;
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
* <p>The type of the resource that exceeds the service quota.</p>
|
|
390
|
+
*/
|
|
391
|
+
resourceType?: string;
|
|
392
|
+
/**
|
|
393
|
+
* @public
|
|
394
|
+
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
395
|
+
*/
|
|
396
|
+
serviceCode?: string;
|
|
397
|
+
/**
|
|
398
|
+
* @public
|
|
399
|
+
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
400
|
+
*/
|
|
401
|
+
quotaCode?: string;
|
|
402
|
+
/**
|
|
403
|
+
* @internal
|
|
404
|
+
*/
|
|
405
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* @public
|
|
409
|
+
* <p>The request was denied due to request throttling.</p>
|
|
410
|
+
*/
|
|
411
|
+
export declare class ThrottlingException extends __BaseException {
|
|
412
|
+
readonly name: "ThrottlingException";
|
|
413
|
+
readonly $fault: "client";
|
|
414
|
+
/**
|
|
415
|
+
* @public
|
|
416
|
+
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
417
|
+
*/
|
|
418
|
+
serviceCode?: string;
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
422
|
+
*/
|
|
423
|
+
quotaCode?: string;
|
|
424
|
+
/**
|
|
425
|
+
* @public
|
|
426
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
427
|
+
*/
|
|
428
|
+
retryAfterSeconds?: number;
|
|
429
|
+
/**
|
|
430
|
+
* @internal
|
|
431
|
+
*/
|
|
432
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* @public
|
|
436
|
+
* <p>Describes a validation exception.</p>
|
|
437
|
+
*/
|
|
438
|
+
export interface ValidationExceptionField {
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
* <p>The name of the exception.</p>
|
|
442
|
+
*/
|
|
443
|
+
name: string | undefined;
|
|
444
|
+
/**
|
|
445
|
+
* @public
|
|
446
|
+
* <p>A message that describes the reason for the exception.</p>
|
|
447
|
+
*/
|
|
448
|
+
message: string | undefined;
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* @public
|
|
452
|
+
* @enum
|
|
453
|
+
*/
|
|
454
|
+
export declare const ValidationExceptionReason: {
|
|
455
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
456
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
457
|
+
readonly OTHER: "other";
|
|
458
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
459
|
+
};
|
|
460
|
+
/**
|
|
461
|
+
* @public
|
|
462
|
+
*/
|
|
463
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
464
|
+
/**
|
|
465
|
+
* @public
|
|
466
|
+
* <p>The input fails to satisfy the specified constraints.</p>
|
|
467
|
+
*/
|
|
468
|
+
export declare class ValidationException extends __BaseException {
|
|
469
|
+
readonly name: "ValidationException";
|
|
470
|
+
readonly $fault: "client";
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
* <p>The reason for the exception.</p>
|
|
474
|
+
*/
|
|
475
|
+
reason?: ValidationExceptionReason;
|
|
476
|
+
/**
|
|
477
|
+
* @public
|
|
478
|
+
* <p>A list of fields that didn't validate.</p>
|
|
479
|
+
*/
|
|
480
|
+
fieldList?: ValidationExceptionField[];
|
|
481
|
+
/**
|
|
482
|
+
* @internal
|
|
483
|
+
*/
|
|
484
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* @public
|
|
488
|
+
*/
|
|
489
|
+
export interface DeleteDeviceRequest {
|
|
490
|
+
/**
|
|
491
|
+
* @public
|
|
492
|
+
* <p>The ID of the device to delete.</p>
|
|
493
|
+
*/
|
|
494
|
+
id: string | undefined;
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
498
|
+
* of the request. This lets you safely retry the request without accidentally performing the
|
|
499
|
+
* same operation a second time. Passing the same value to a later call to an operation
|
|
500
|
+
* requires that you also pass the same value for all other parameters. We recommend that you
|
|
501
|
+
* use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of
|
|
502
|
+
* value</a>.</p>
|
|
503
|
+
* <p>If you don't provide this value, then Amazon Web Services generates a random one for
|
|
504
|
+
* you.</p>
|
|
505
|
+
* <p>If you retry the operation with the same <code>ClientToken</code>, but with different
|
|
506
|
+
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
507
|
+
*/
|
|
508
|
+
clientToken?: string;
|
|
509
|
+
}
|
|
510
|
+
/**
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
export interface DeleteDeviceResponse {
|
|
514
|
+
}
|
|
515
|
+
/**
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
export interface DeleteEnvironmentRequest {
|
|
519
|
+
/**
|
|
520
|
+
* @public
|
|
521
|
+
* <p>The ID of the environment to delete.</p>
|
|
522
|
+
*/
|
|
523
|
+
id: string | undefined;
|
|
524
|
+
/**
|
|
525
|
+
* @public
|
|
526
|
+
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
527
|
+
* of the request. This lets you safely retry the request without accidentally performing the
|
|
528
|
+
* same operation a second time. Passing the same value to a later call to an operation
|
|
529
|
+
* requires that you also pass the same value for all other parameters. We recommend that you
|
|
530
|
+
* use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of
|
|
531
|
+
* value</a>.</p>
|
|
532
|
+
* <p>If you don't provide this value, then Amazon Web Services generates a random one for
|
|
533
|
+
* you.</p>
|
|
534
|
+
* <p>If you retry the operation with the same <code>ClientToken</code>, but with different
|
|
535
|
+
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
536
|
+
*/
|
|
537
|
+
clientToken?: string;
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
542
|
+
export interface DeleteEnvironmentResponse {
|
|
543
|
+
}
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
* @enum
|
|
547
|
+
*/
|
|
548
|
+
export declare const TargetDeviceStatus: {
|
|
549
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
550
|
+
readonly DEREGISTERED: "DEREGISTERED";
|
|
551
|
+
};
|
|
552
|
+
/**
|
|
553
|
+
* @public
|
|
554
|
+
*/
|
|
555
|
+
export type TargetDeviceStatus = (typeof TargetDeviceStatus)[keyof typeof TargetDeviceStatus];
|
|
556
|
+
/**
|
|
557
|
+
* @public
|
|
558
|
+
*/
|
|
559
|
+
export interface DeregisterDeviceRequest {
|
|
560
|
+
/**
|
|
561
|
+
* @public
|
|
562
|
+
* <p>The ID of the device to deregister.</p>
|
|
563
|
+
*/
|
|
564
|
+
id: string | undefined;
|
|
565
|
+
/**
|
|
566
|
+
* @public
|
|
567
|
+
* <p>The desired new status for the device.</p>
|
|
568
|
+
*/
|
|
569
|
+
targetDeviceStatus?: TargetDeviceStatus;
|
|
570
|
+
/**
|
|
571
|
+
* @public
|
|
572
|
+
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
573
|
+
* of the request. This lets you safely retry the request without accidentally performing the
|
|
574
|
+
* same operation a second time. Passing the same value to a later call to an operation
|
|
575
|
+
* requires that you also pass the same value for all other parameters. We recommend that you
|
|
576
|
+
* use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of
|
|
577
|
+
* value</a>.</p>
|
|
578
|
+
* <p>If you don't provide this value, then Amazon Web Services generates a random one for
|
|
579
|
+
* you.</p>
|
|
580
|
+
* <p>If you retry the operation with the same <code>ClientToken</code>, but with different
|
|
581
|
+
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
582
|
+
*/
|
|
583
|
+
clientToken?: string;
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
export interface DeregisterDeviceResponse {
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
* @enum
|
|
593
|
+
*/
|
|
594
|
+
export declare const DeviceSoftwareSetComplianceStatus: {
|
|
595
|
+
readonly COMPLIANT: "COMPLIANT";
|
|
596
|
+
readonly NONE: "NONE";
|
|
597
|
+
readonly NOT_COMPLIANT: "NOT_COMPLIANT";
|
|
598
|
+
};
|
|
599
|
+
/**
|
|
600
|
+
* @public
|
|
601
|
+
*/
|
|
602
|
+
export type DeviceSoftwareSetComplianceStatus = (typeof DeviceSoftwareSetComplianceStatus)[keyof typeof DeviceSoftwareSetComplianceStatus];
|
|
603
|
+
/**
|
|
604
|
+
* @public
|
|
605
|
+
* @enum
|
|
606
|
+
*/
|
|
607
|
+
export declare const SoftwareSetUpdateStatus: {
|
|
608
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
609
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
610
|
+
readonly UP_TO_DATE: "UP_TO_DATE";
|
|
611
|
+
};
|
|
612
|
+
/**
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
export type SoftwareSetUpdateStatus = (typeof SoftwareSetUpdateStatus)[keyof typeof SoftwareSetUpdateStatus];
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
* @enum
|
|
619
|
+
*/
|
|
620
|
+
export declare const DeviceStatus: {
|
|
621
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
622
|
+
readonly DEREGISTERED: "DEREGISTERED";
|
|
623
|
+
readonly DEREGISTERING: "DEREGISTERING";
|
|
624
|
+
readonly REGISTERED: "REGISTERED";
|
|
625
|
+
};
|
|
626
|
+
/**
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
629
|
+
export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
|
|
630
|
+
/**
|
|
631
|
+
* @public
|
|
632
|
+
* <p>Describes a thin client device.</p>
|
|
633
|
+
*/
|
|
634
|
+
export interface Device {
|
|
635
|
+
/**
|
|
636
|
+
* @public
|
|
637
|
+
* <p>The ID of the device.</p>
|
|
638
|
+
*/
|
|
639
|
+
id?: string;
|
|
640
|
+
/**
|
|
641
|
+
* @public
|
|
642
|
+
* <p>The hardware serial number of the device.</p>
|
|
643
|
+
*/
|
|
644
|
+
serialNumber?: string;
|
|
645
|
+
/**
|
|
646
|
+
* @public
|
|
647
|
+
* <p>The name of the device.</p>
|
|
648
|
+
*/
|
|
649
|
+
name?: string;
|
|
650
|
+
/**
|
|
651
|
+
* @public
|
|
652
|
+
* <p>The model number of the device.</p>
|
|
653
|
+
*/
|
|
654
|
+
model?: string;
|
|
655
|
+
/**
|
|
656
|
+
* @public
|
|
657
|
+
* <p>The ID of the environment the device is associated with.</p>
|
|
658
|
+
*/
|
|
659
|
+
environmentId?: string;
|
|
660
|
+
/**
|
|
661
|
+
* @public
|
|
662
|
+
* <p>The status of the device.</p>
|
|
663
|
+
*/
|
|
664
|
+
status?: DeviceStatus;
|
|
665
|
+
/**
|
|
666
|
+
* @public
|
|
667
|
+
* <p>The ID of the software set currently installed on the device.</p>
|
|
668
|
+
*/
|
|
669
|
+
currentSoftwareSetId?: string;
|
|
670
|
+
/**
|
|
671
|
+
* @public
|
|
672
|
+
* <p>The version of the software set currently installed on the device.</p>
|
|
673
|
+
*/
|
|
674
|
+
currentSoftwareSetVersion?: string;
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
* <p>The ID of the software set which the device has been set to.</p>
|
|
678
|
+
*/
|
|
679
|
+
desiredSoftwareSetId?: string;
|
|
680
|
+
/**
|
|
681
|
+
* @public
|
|
682
|
+
* <p>The ID of the software set that is pending to be installed on the device.</p>
|
|
683
|
+
*/
|
|
684
|
+
pendingSoftwareSetId?: string;
|
|
685
|
+
/**
|
|
686
|
+
* @public
|
|
687
|
+
* <p>The version of the software set that is pending to be installed on the device.</p>
|
|
688
|
+
*/
|
|
689
|
+
pendingSoftwareSetVersion?: string;
|
|
690
|
+
/**
|
|
691
|
+
* @public
|
|
692
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
693
|
+
* window.</p>
|
|
694
|
+
*/
|
|
695
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
696
|
+
/**
|
|
697
|
+
* @public
|
|
698
|
+
* <p>Describes if the software currently installed on the device is a supported
|
|
699
|
+
* version.</p>
|
|
700
|
+
*/
|
|
701
|
+
softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus;
|
|
702
|
+
/**
|
|
703
|
+
* @public
|
|
704
|
+
* <p>Describes if the device has a supported version of software installed.</p>
|
|
705
|
+
*/
|
|
706
|
+
softwareSetUpdateStatus?: SoftwareSetUpdateStatus;
|
|
707
|
+
/**
|
|
708
|
+
* @public
|
|
709
|
+
* <p>The timestamp of the most recent session on the device.</p>
|
|
710
|
+
*/
|
|
711
|
+
lastConnectedAt?: Date;
|
|
712
|
+
/**
|
|
713
|
+
* @public
|
|
714
|
+
* <p>The timestamp of the most recent check-in of the device.</p>
|
|
715
|
+
*/
|
|
716
|
+
lastPostureAt?: Date;
|
|
717
|
+
/**
|
|
718
|
+
* @public
|
|
719
|
+
* <p>The timestamp of when the device was created.</p>
|
|
720
|
+
*/
|
|
721
|
+
createdAt?: Date;
|
|
722
|
+
/**
|
|
723
|
+
* @public
|
|
724
|
+
* <p>The timestamp of when the device was updated.</p>
|
|
725
|
+
*/
|
|
726
|
+
updatedAt?: Date;
|
|
727
|
+
/**
|
|
728
|
+
* @public
|
|
729
|
+
* <p>The Amazon Resource Name (ARN) of the device.</p>
|
|
730
|
+
*/
|
|
731
|
+
arn?: string;
|
|
732
|
+
/**
|
|
733
|
+
* @public
|
|
734
|
+
* <p>The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the
|
|
735
|
+
* device.</p>
|
|
736
|
+
*/
|
|
737
|
+
kmsKeyArn?: string;
|
|
738
|
+
/**
|
|
739
|
+
* @public
|
|
740
|
+
* <p>The tag keys and optional values for the resource.</p>
|
|
741
|
+
*/
|
|
742
|
+
tags?: EmbeddedTag;
|
|
743
|
+
}
|
|
744
|
+
/**
|
|
745
|
+
* @public
|
|
746
|
+
* <p>Describes a thin client device.</p>
|
|
747
|
+
*/
|
|
748
|
+
export interface DeviceSummary {
|
|
749
|
+
/**
|
|
750
|
+
* @public
|
|
751
|
+
* <p>The ID of the device.</p>
|
|
752
|
+
*/
|
|
753
|
+
id?: string;
|
|
754
|
+
/**
|
|
755
|
+
* @public
|
|
756
|
+
* <p>The hardware serial number of the device.</p>
|
|
757
|
+
*/
|
|
758
|
+
serialNumber?: string;
|
|
759
|
+
/**
|
|
760
|
+
* @public
|
|
761
|
+
* <p>The name of the device.</p>
|
|
762
|
+
*/
|
|
763
|
+
name?: string;
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
* <p>The model number of the device.</p>
|
|
767
|
+
*/
|
|
768
|
+
model?: string;
|
|
769
|
+
/**
|
|
770
|
+
* @public
|
|
771
|
+
* <p>The ID of the environment the device is associated with.</p>
|
|
772
|
+
*/
|
|
773
|
+
environmentId?: string;
|
|
774
|
+
/**
|
|
775
|
+
* @public
|
|
776
|
+
* <p>The status of the device.</p>
|
|
777
|
+
*/
|
|
778
|
+
status?: DeviceStatus;
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
* <p>The ID of the software set currently installed on the device.</p>
|
|
782
|
+
*/
|
|
783
|
+
currentSoftwareSetId?: string;
|
|
784
|
+
/**
|
|
785
|
+
* @public
|
|
786
|
+
* <p>The ID of the software set which the device has been set to.</p>
|
|
787
|
+
*/
|
|
788
|
+
desiredSoftwareSetId?: string;
|
|
789
|
+
/**
|
|
790
|
+
* @public
|
|
791
|
+
* <p>The ID of the software set that is pending to be installed on the device.</p>
|
|
792
|
+
*/
|
|
793
|
+
pendingSoftwareSetId?: string;
|
|
794
|
+
/**
|
|
795
|
+
* @public
|
|
796
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
797
|
+
* window.</p>
|
|
798
|
+
*/
|
|
799
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
800
|
+
/**
|
|
801
|
+
* @public
|
|
802
|
+
* <p>The timestamp of the most recent session on the device.</p>
|
|
803
|
+
*/
|
|
804
|
+
lastConnectedAt?: Date;
|
|
805
|
+
/**
|
|
806
|
+
* @public
|
|
807
|
+
* <p>The timestamp of the most recent check-in of the device.</p>
|
|
808
|
+
*/
|
|
809
|
+
lastPostureAt?: Date;
|
|
810
|
+
/**
|
|
811
|
+
* @public
|
|
812
|
+
* <p>The timestamp of when the device was created.</p>
|
|
813
|
+
*/
|
|
814
|
+
createdAt?: Date;
|
|
815
|
+
/**
|
|
816
|
+
* @public
|
|
817
|
+
* <p>The timestamp of when the device was updated.</p>
|
|
818
|
+
*/
|
|
819
|
+
updatedAt?: Date;
|
|
820
|
+
/**
|
|
821
|
+
* @public
|
|
822
|
+
* <p>The Amazon Resource Name (ARN) of the device.</p>
|
|
823
|
+
*/
|
|
824
|
+
arn?: string;
|
|
825
|
+
/**
|
|
826
|
+
* @public
|
|
827
|
+
* <p>The tag keys and optional values for the resource.</p>
|
|
828
|
+
*/
|
|
829
|
+
tags?: EmbeddedTag;
|
|
830
|
+
}
|
|
831
|
+
/**
|
|
832
|
+
* @public
|
|
833
|
+
* @enum
|
|
834
|
+
*/
|
|
835
|
+
export declare const EnvironmentSoftwareSetComplianceStatus: {
|
|
836
|
+
readonly COMPLIANT: "COMPLIANT";
|
|
837
|
+
readonly NOT_COMPLIANT: "NOT_COMPLIANT";
|
|
838
|
+
readonly NO_REGISTERED_DEVICES: "NO_REGISTERED_DEVICES";
|
|
839
|
+
};
|
|
840
|
+
/**
|
|
841
|
+
* @public
|
|
842
|
+
*/
|
|
843
|
+
export type EnvironmentSoftwareSetComplianceStatus = (typeof EnvironmentSoftwareSetComplianceStatus)[keyof typeof EnvironmentSoftwareSetComplianceStatus];
|
|
844
|
+
/**
|
|
845
|
+
* @public
|
|
846
|
+
* <p>Describes an environment.</p>
|
|
847
|
+
*/
|
|
848
|
+
export interface Environment {
|
|
849
|
+
/**
|
|
850
|
+
* @public
|
|
851
|
+
* <p>The ID of the environment.</p>
|
|
852
|
+
*/
|
|
853
|
+
id?: string;
|
|
854
|
+
/**
|
|
855
|
+
* @public
|
|
856
|
+
* <p>The name of the environment.</p>
|
|
857
|
+
*/
|
|
858
|
+
name?: string;
|
|
859
|
+
/**
|
|
860
|
+
* @public
|
|
861
|
+
* <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
|
|
862
|
+
* WorkSpaces Web, or AppStream 2.0.</p>
|
|
863
|
+
*/
|
|
864
|
+
desktopArn?: string;
|
|
865
|
+
/**
|
|
866
|
+
* @public
|
|
867
|
+
* <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
|
|
868
|
+
*/
|
|
869
|
+
desktopEndpoint?: string;
|
|
870
|
+
/**
|
|
871
|
+
* @public
|
|
872
|
+
* <p>The type of streaming desktop for the environment.</p>
|
|
873
|
+
*/
|
|
874
|
+
desktopType?: DesktopType;
|
|
875
|
+
/**
|
|
876
|
+
* @public
|
|
877
|
+
* <p>The activation code to register a device to the environment.</p>
|
|
878
|
+
*/
|
|
879
|
+
activationCode?: string;
|
|
880
|
+
/**
|
|
881
|
+
* @public
|
|
882
|
+
* <p>The number of devices registered to the environment.</p>
|
|
883
|
+
*/
|
|
884
|
+
registeredDevicesCount?: number;
|
|
885
|
+
/**
|
|
886
|
+
* @public
|
|
887
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
888
|
+
* window.</p>
|
|
889
|
+
*/
|
|
890
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
891
|
+
/**
|
|
892
|
+
* @public
|
|
893
|
+
* <p>A specification for a time window to apply software updates.</p>
|
|
894
|
+
*/
|
|
895
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
896
|
+
/**
|
|
897
|
+
* @public
|
|
898
|
+
* <p>An option to define which software updates to apply.</p>
|
|
899
|
+
*/
|
|
900
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
901
|
+
/**
|
|
902
|
+
* @public
|
|
903
|
+
* <p>The ID of the software set to apply.</p>
|
|
904
|
+
*/
|
|
905
|
+
desiredSoftwareSetId?: string;
|
|
906
|
+
/**
|
|
907
|
+
* @public
|
|
908
|
+
* <p>The ID of the software set that is pending to be installed.</p>
|
|
909
|
+
*/
|
|
910
|
+
pendingSoftwareSetId?: string;
|
|
911
|
+
/**
|
|
912
|
+
* @public
|
|
913
|
+
* <p>The version of the software set that is pending to be installed.</p>
|
|
914
|
+
*/
|
|
915
|
+
pendingSoftwareSetVersion?: string;
|
|
916
|
+
/**
|
|
917
|
+
* @public
|
|
918
|
+
* <p>Describes if the software currently installed on all devices in the environment is a
|
|
919
|
+
* supported version.</p>
|
|
920
|
+
*/
|
|
921
|
+
softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus;
|
|
922
|
+
/**
|
|
923
|
+
* @public
|
|
924
|
+
* <p>The timestamp of when the environment was created.</p>
|
|
925
|
+
*/
|
|
926
|
+
createdAt?: Date;
|
|
927
|
+
/**
|
|
928
|
+
* @public
|
|
929
|
+
* <p>The timestamp of when the device was updated.</p>
|
|
930
|
+
*/
|
|
931
|
+
updatedAt?: Date;
|
|
932
|
+
/**
|
|
933
|
+
* @public
|
|
934
|
+
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
935
|
+
*/
|
|
936
|
+
arn?: string;
|
|
937
|
+
/**
|
|
938
|
+
* @public
|
|
939
|
+
* <p>The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the
|
|
940
|
+
* environment.</p>
|
|
941
|
+
*/
|
|
942
|
+
kmsKeyArn?: string;
|
|
943
|
+
/**
|
|
944
|
+
* @public
|
|
945
|
+
* <p>The tag keys and optional values for the resource.</p>
|
|
946
|
+
*/
|
|
947
|
+
tags?: EmbeddedTag;
|
|
948
|
+
}
|
|
949
|
+
/**
|
|
950
|
+
* @public
|
|
951
|
+
*/
|
|
952
|
+
export interface GetDeviceRequest {
|
|
953
|
+
/**
|
|
954
|
+
* @public
|
|
955
|
+
* <p>The ID of the device for which to return information.</p>
|
|
956
|
+
*/
|
|
957
|
+
id: string | undefined;
|
|
958
|
+
}
|
|
959
|
+
/**
|
|
960
|
+
* @public
|
|
961
|
+
*/
|
|
962
|
+
export interface GetDeviceResponse {
|
|
963
|
+
/**
|
|
964
|
+
* @public
|
|
965
|
+
* <p>Describes an device.</p>
|
|
966
|
+
*/
|
|
967
|
+
device?: Device;
|
|
968
|
+
}
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
*/
|
|
972
|
+
export interface GetEnvironmentRequest {
|
|
973
|
+
/**
|
|
974
|
+
* @public
|
|
975
|
+
* <p>The ID of the environment for which to return information.</p>
|
|
976
|
+
*/
|
|
977
|
+
id: string | undefined;
|
|
978
|
+
}
|
|
979
|
+
/**
|
|
980
|
+
* @public
|
|
981
|
+
*/
|
|
982
|
+
export interface GetEnvironmentResponse {
|
|
983
|
+
/**
|
|
984
|
+
* @public
|
|
985
|
+
* <p>Describes an environment.</p>
|
|
986
|
+
*/
|
|
987
|
+
environment?: Environment;
|
|
988
|
+
}
|
|
989
|
+
/**
|
|
990
|
+
* @public
|
|
991
|
+
*/
|
|
992
|
+
export interface GetSoftwareSetRequest {
|
|
993
|
+
/**
|
|
994
|
+
* @public
|
|
995
|
+
* <p>The ID of the software set for which to return information.</p>
|
|
996
|
+
*/
|
|
997
|
+
id: string | undefined;
|
|
998
|
+
}
|
|
999
|
+
/**
|
|
1000
|
+
* @public
|
|
1001
|
+
* <p>Describes software.</p>
|
|
1002
|
+
*/
|
|
1003
|
+
export interface Software {
|
|
1004
|
+
/**
|
|
1005
|
+
* @public
|
|
1006
|
+
* <p>The name of the software component.</p>
|
|
1007
|
+
*/
|
|
1008
|
+
name?: string;
|
|
1009
|
+
/**
|
|
1010
|
+
* @public
|
|
1011
|
+
* <p>The version of the software component.</p>
|
|
1012
|
+
*/
|
|
1013
|
+
version?: string;
|
|
1014
|
+
}
|
|
1015
|
+
/**
|
|
1016
|
+
* @public
|
|
1017
|
+
* @enum
|
|
1018
|
+
*/
|
|
1019
|
+
export declare const SoftwareSetValidationStatus: {
|
|
1020
|
+
readonly NOT_VALIDATED: "NOT_VALIDATED";
|
|
1021
|
+
readonly VALIDATED: "VALIDATED";
|
|
1022
|
+
};
|
|
1023
|
+
/**
|
|
1024
|
+
* @public
|
|
1025
|
+
*/
|
|
1026
|
+
export type SoftwareSetValidationStatus = (typeof SoftwareSetValidationStatus)[keyof typeof SoftwareSetValidationStatus];
|
|
1027
|
+
/**
|
|
1028
|
+
* @public
|
|
1029
|
+
* <p>Describes a software set.</p>
|
|
1030
|
+
*/
|
|
1031
|
+
export interface SoftwareSet {
|
|
1032
|
+
/**
|
|
1033
|
+
* @public
|
|
1034
|
+
* <p>The ID of the software set.</p>
|
|
1035
|
+
*/
|
|
1036
|
+
id?: string;
|
|
1037
|
+
/**
|
|
1038
|
+
* @public
|
|
1039
|
+
* <p>The version of the software set.</p>
|
|
1040
|
+
*/
|
|
1041
|
+
version?: string;
|
|
1042
|
+
/**
|
|
1043
|
+
* @public
|
|
1044
|
+
* <p>The timestamp of when the software set was released.</p>
|
|
1045
|
+
*/
|
|
1046
|
+
releasedAt?: Date;
|
|
1047
|
+
/**
|
|
1048
|
+
* @public
|
|
1049
|
+
* <p>The timestamp of the end of support for the software set.</p>
|
|
1050
|
+
*/
|
|
1051
|
+
supportedUntil?: Date;
|
|
1052
|
+
/**
|
|
1053
|
+
* @public
|
|
1054
|
+
* <p>An option to define if the software set has been validated.</p>
|
|
1055
|
+
*/
|
|
1056
|
+
validationStatus?: SoftwareSetValidationStatus;
|
|
1057
|
+
/**
|
|
1058
|
+
* @public
|
|
1059
|
+
* <p>A list of the software components in the software set.</p>
|
|
1060
|
+
*/
|
|
1061
|
+
software?: Software[];
|
|
1062
|
+
/**
|
|
1063
|
+
* @public
|
|
1064
|
+
* <p>The Amazon Resource Name (ARN) of the software set.</p>
|
|
1065
|
+
*/
|
|
1066
|
+
arn?: string;
|
|
1067
|
+
}
|
|
1068
|
+
/**
|
|
1069
|
+
* @public
|
|
1070
|
+
*/
|
|
1071
|
+
export interface GetSoftwareSetResponse {
|
|
1072
|
+
/**
|
|
1073
|
+
* @public
|
|
1074
|
+
* <p>Describes a software set.</p>
|
|
1075
|
+
*/
|
|
1076
|
+
softwareSet?: SoftwareSet;
|
|
1077
|
+
}
|
|
1078
|
+
/**
|
|
1079
|
+
* @public
|
|
1080
|
+
* <p>Request processing failed due to some unknown error, exception, or failure.</p>
|
|
1081
|
+
*/
|
|
1082
|
+
export declare class InternalServiceException extends __BaseException {
|
|
1083
|
+
readonly name: "InternalServiceException";
|
|
1084
|
+
readonly $fault: "server";
|
|
1085
|
+
/**
|
|
1086
|
+
* @public
|
|
1087
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
1088
|
+
*/
|
|
1089
|
+
retryAfterSeconds?: number;
|
|
1090
|
+
/**
|
|
1091
|
+
* @internal
|
|
1092
|
+
*/
|
|
1093
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
1094
|
+
}
|
|
1095
|
+
/**
|
|
1096
|
+
* @public
|
|
1097
|
+
*/
|
|
1098
|
+
export interface ListDevicesRequest {
|
|
1099
|
+
/**
|
|
1100
|
+
* @public
|
|
1101
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1102
|
+
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
1103
|
+
* using the returned token to retrieve the next page. Keep all other arguments unchanged.
|
|
1104
|
+
* Each pagination token expires after 24 hours. Using an expired pagination token will return
|
|
1105
|
+
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1106
|
+
*/
|
|
1107
|
+
nextToken?: string;
|
|
1108
|
+
/**
|
|
1109
|
+
* @public
|
|
1110
|
+
* <p>The maximum number of results that are returned per call. You can use
|
|
1111
|
+
* <code>nextToken</code> to obtain further pages of results.</p>
|
|
1112
|
+
* <p>This is only an upper limit. The actual number of results returned per call might be
|
|
1113
|
+
* fewer than the specified maximum.</p>
|
|
1114
|
+
*/
|
|
1115
|
+
maxResults?: number;
|
|
1116
|
+
}
|
|
1117
|
+
/**
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
1120
|
+
export interface ListDevicesResponse {
|
|
1121
|
+
/**
|
|
1122
|
+
* @public
|
|
1123
|
+
* <p>Describes devices.</p>
|
|
1124
|
+
*/
|
|
1125
|
+
devices?: DeviceSummary[];
|
|
1126
|
+
/**
|
|
1127
|
+
* @public
|
|
1128
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1129
|
+
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
1130
|
+
* using the returned token to retrieve the next page. Keep all other arguments unchanged.
|
|
1131
|
+
* Each pagination token expires after 24 hours. Using an expired pagination token will return
|
|
1132
|
+
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1133
|
+
*/
|
|
1134
|
+
nextToken?: string;
|
|
1135
|
+
}
|
|
1136
|
+
/**
|
|
1137
|
+
* @public
|
|
1138
|
+
*/
|
|
1139
|
+
export interface ListEnvironmentsRequest {
|
|
1140
|
+
/**
|
|
1141
|
+
* @public
|
|
1142
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1143
|
+
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
1144
|
+
* using the returned token to retrieve the next page. Keep all other arguments unchanged.
|
|
1145
|
+
* Each pagination token expires after 24 hours. Using an expired pagination token will return
|
|
1146
|
+
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1147
|
+
*/
|
|
1148
|
+
nextToken?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* @public
|
|
1151
|
+
* <p>The maximum number of results that are returned per call. You can use
|
|
1152
|
+
* <code>nextToken</code> to obtain further pages of results.</p>
|
|
1153
|
+
* <p>This is only an upper limit. The actual number of results returned per call might be
|
|
1154
|
+
* fewer than the specified maximum.</p>
|
|
1155
|
+
*/
|
|
1156
|
+
maxResults?: number;
|
|
1157
|
+
}
|
|
1158
|
+
/**
|
|
1159
|
+
* @public
|
|
1160
|
+
*/
|
|
1161
|
+
export interface ListEnvironmentsResponse {
|
|
1162
|
+
/**
|
|
1163
|
+
* @public
|
|
1164
|
+
* <p>Describes environments.</p>
|
|
1165
|
+
*/
|
|
1166
|
+
environments?: EnvironmentSummary[];
|
|
1167
|
+
/**
|
|
1168
|
+
* @public
|
|
1169
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1170
|
+
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
1171
|
+
* using the returned token to retrieve the next page. Keep all other arguments unchanged.
|
|
1172
|
+
* Each pagination token expires after 24 hours. Using an expired pagination token will return
|
|
1173
|
+
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1174
|
+
*/
|
|
1175
|
+
nextToken?: string;
|
|
1176
|
+
}
|
|
1177
|
+
/**
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
export interface ListSoftwareSetsRequest {
|
|
1181
|
+
/**
|
|
1182
|
+
* @public
|
|
1183
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1184
|
+
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
1185
|
+
* using the returned token to retrieve the next page. Keep all other arguments unchanged.
|
|
1186
|
+
* Each pagination token expires after 24 hours. Using an expired pagination token will return
|
|
1187
|
+
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1188
|
+
*/
|
|
1189
|
+
nextToken?: string;
|
|
1190
|
+
/**
|
|
1191
|
+
* @public
|
|
1192
|
+
* <p>The maximum number of results that are returned per call. You can use
|
|
1193
|
+
* <code>nextToken</code> to obtain further pages of results.</p>
|
|
1194
|
+
* <p>This is only an upper limit. The actual number of results returned per call might be
|
|
1195
|
+
* fewer than the specified maximum.</p>
|
|
1196
|
+
*/
|
|
1197
|
+
maxResults?: number;
|
|
1198
|
+
}
|
|
1199
|
+
/**
|
|
1200
|
+
* @public
|
|
1201
|
+
* <p>Describes a software set.</p>
|
|
1202
|
+
*/
|
|
1203
|
+
export interface SoftwareSetSummary {
|
|
1204
|
+
/**
|
|
1205
|
+
* @public
|
|
1206
|
+
* <p>The ID of the software set.</p>
|
|
1207
|
+
*/
|
|
1208
|
+
id?: string;
|
|
1209
|
+
/**
|
|
1210
|
+
* @public
|
|
1211
|
+
* <p>The version of the software set.</p>
|
|
1212
|
+
*/
|
|
1213
|
+
version?: string;
|
|
1214
|
+
/**
|
|
1215
|
+
* @public
|
|
1216
|
+
* <p>The timestamp of when the software set was released.</p>
|
|
1217
|
+
*/
|
|
1218
|
+
releasedAt?: Date;
|
|
1219
|
+
/**
|
|
1220
|
+
* @public
|
|
1221
|
+
* <p>The timestamp of the end of support for the software set.</p>
|
|
1222
|
+
*/
|
|
1223
|
+
supportedUntil?: Date;
|
|
1224
|
+
/**
|
|
1225
|
+
* @public
|
|
1226
|
+
* <p>An option to define if the software set has been validated.</p>
|
|
1227
|
+
*/
|
|
1228
|
+
validationStatus?: SoftwareSetValidationStatus;
|
|
1229
|
+
/**
|
|
1230
|
+
* @public
|
|
1231
|
+
* <p>The Amazon Resource Name (ARN) of the software set.</p>
|
|
1232
|
+
*/
|
|
1233
|
+
arn?: string;
|
|
1234
|
+
}
|
|
1235
|
+
/**
|
|
1236
|
+
* @public
|
|
1237
|
+
*/
|
|
1238
|
+
export interface ListSoftwareSetsResponse {
|
|
1239
|
+
/**
|
|
1240
|
+
* @public
|
|
1241
|
+
* <p>Describes software sets.</p>
|
|
1242
|
+
*/
|
|
1243
|
+
softwareSets?: SoftwareSetSummary[];
|
|
1244
|
+
/**
|
|
1245
|
+
* @public
|
|
1246
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1247
|
+
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
1248
|
+
* using the returned token to retrieve the next page. Keep all other arguments unchanged.
|
|
1249
|
+
* Each pagination token expires after 24 hours. Using an expired pagination token will return
|
|
1250
|
+
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1251
|
+
*/
|
|
1252
|
+
nextToken?: string;
|
|
1253
|
+
}
|
|
1254
|
+
/**
|
|
1255
|
+
* @public
|
|
1256
|
+
*/
|
|
1257
|
+
export interface ListTagsForResourceRequest {
|
|
1258
|
+
/**
|
|
1259
|
+
* @public
|
|
1260
|
+
* <p>The Amazon Resource Name (ARN) of the resource for which you want to retrieve
|
|
1261
|
+
* tags.</p>
|
|
1262
|
+
*/
|
|
1263
|
+
resourceArn: string | undefined;
|
|
1264
|
+
}
|
|
1265
|
+
/**
|
|
1266
|
+
* @public
|
|
1267
|
+
*/
|
|
1268
|
+
export interface ListTagsForResourceResponse {
|
|
1269
|
+
/**
|
|
1270
|
+
* @public
|
|
1271
|
+
* <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
|
|
1272
|
+
*/
|
|
1273
|
+
tags?: Record<string, string>;
|
|
1274
|
+
}
|
|
1275
|
+
/**
|
|
1276
|
+
* @public
|
|
1277
|
+
*/
|
|
1278
|
+
export interface TagResourceRequest {
|
|
1279
|
+
/**
|
|
1280
|
+
* @public
|
|
1281
|
+
* <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
|
|
1282
|
+
*/
|
|
1283
|
+
resourceArn: string | undefined;
|
|
1284
|
+
/**
|
|
1285
|
+
* @public
|
|
1286
|
+
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
1287
|
+
*/
|
|
1288
|
+
tags: Record<string, string> | undefined;
|
|
1289
|
+
}
|
|
1290
|
+
/**
|
|
1291
|
+
* @public
|
|
1292
|
+
*/
|
|
1293
|
+
export interface TagResourceResponse {
|
|
1294
|
+
}
|
|
1295
|
+
/**
|
|
1296
|
+
* @public
|
|
1297
|
+
*/
|
|
1298
|
+
export interface UntagResourceRequest {
|
|
1299
|
+
/**
|
|
1300
|
+
* @public
|
|
1301
|
+
* <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
|
|
1302
|
+
*/
|
|
1303
|
+
resourceArn: string | undefined;
|
|
1304
|
+
/**
|
|
1305
|
+
* @public
|
|
1306
|
+
* <p>The keys of the key-value pairs for the tag or tags you want to remove from the
|
|
1307
|
+
* specified resource.</p>
|
|
1308
|
+
*/
|
|
1309
|
+
tagKeys: string[] | undefined;
|
|
1310
|
+
}
|
|
1311
|
+
/**
|
|
1312
|
+
* @public
|
|
1313
|
+
*/
|
|
1314
|
+
export interface UntagResourceResponse {
|
|
1315
|
+
}
|
|
1316
|
+
/**
|
|
1317
|
+
* @public
|
|
1318
|
+
*/
|
|
1319
|
+
export interface UpdateDeviceRequest {
|
|
1320
|
+
/**
|
|
1321
|
+
* @public
|
|
1322
|
+
* <p>The ID of the device to update.</p>
|
|
1323
|
+
*/
|
|
1324
|
+
id: string | undefined;
|
|
1325
|
+
/**
|
|
1326
|
+
* @public
|
|
1327
|
+
* <p>The name of the device to update.</p>
|
|
1328
|
+
*/
|
|
1329
|
+
name?: string;
|
|
1330
|
+
/**
|
|
1331
|
+
* @public
|
|
1332
|
+
* <p>The ID of the software set to apply.</p>
|
|
1333
|
+
*/
|
|
1334
|
+
desiredSoftwareSetId?: string;
|
|
1335
|
+
/**
|
|
1336
|
+
* @public
|
|
1337
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
1338
|
+
* window.</p>
|
|
1339
|
+
*/
|
|
1340
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
1341
|
+
/**
|
|
1342
|
+
* @public
|
|
1343
|
+
* <p>The Amazon Resource Name (ARN) of the Key Management Service key to use for the
|
|
1344
|
+
* update.</p>
|
|
1345
|
+
*/
|
|
1346
|
+
kmsKeyArn?: string;
|
|
1347
|
+
}
|
|
1348
|
+
/**
|
|
1349
|
+
* @public
|
|
1350
|
+
*/
|
|
1351
|
+
export interface UpdateDeviceResponse {
|
|
1352
|
+
/**
|
|
1353
|
+
* @public
|
|
1354
|
+
* <p>Describes a device.</p>
|
|
1355
|
+
*/
|
|
1356
|
+
device?: DeviceSummary;
|
|
1357
|
+
}
|
|
1358
|
+
/**
|
|
1359
|
+
* @public
|
|
1360
|
+
*/
|
|
1361
|
+
export interface UpdateEnvironmentRequest {
|
|
1362
|
+
/**
|
|
1363
|
+
* @public
|
|
1364
|
+
* <p>The ID of the environment to update.</p>
|
|
1365
|
+
*/
|
|
1366
|
+
id: string | undefined;
|
|
1367
|
+
/**
|
|
1368
|
+
* @public
|
|
1369
|
+
* <p>The name of the environment to update.</p>
|
|
1370
|
+
*/
|
|
1371
|
+
name?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
* @public
|
|
1374
|
+
* <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
|
|
1375
|
+
* WorkSpaces Web, or AppStream 2.0.</p>
|
|
1376
|
+
*/
|
|
1377
|
+
desktopArn?: string;
|
|
1378
|
+
/**
|
|
1379
|
+
* @public
|
|
1380
|
+
* <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
|
|
1381
|
+
*/
|
|
1382
|
+
desktopEndpoint?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* @public
|
|
1385
|
+
* <p>An option to define if software updates should be applied within a maintenance
|
|
1386
|
+
* window.</p>
|
|
1387
|
+
*/
|
|
1388
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
1389
|
+
/**
|
|
1390
|
+
* @public
|
|
1391
|
+
* <p>A specification for a time window to apply software updates.</p>
|
|
1392
|
+
*/
|
|
1393
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
1394
|
+
/**
|
|
1395
|
+
* @public
|
|
1396
|
+
* <p>An option to define which software updates to apply.</p>
|
|
1397
|
+
*/
|
|
1398
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
1399
|
+
/**
|
|
1400
|
+
* @public
|
|
1401
|
+
* <p>The ID of the software set to apply.</p>
|
|
1402
|
+
*/
|
|
1403
|
+
desiredSoftwareSetId?: string;
|
|
1404
|
+
}
|
|
1405
|
+
/**
|
|
1406
|
+
* @public
|
|
1407
|
+
*/
|
|
1408
|
+
export interface UpdateEnvironmentResponse {
|
|
1409
|
+
/**
|
|
1410
|
+
* @public
|
|
1411
|
+
* <p>Describes an environment.</p>
|
|
1412
|
+
*/
|
|
1413
|
+
environment?: EnvironmentSummary;
|
|
1414
|
+
}
|
|
1415
|
+
/**
|
|
1416
|
+
* @public
|
|
1417
|
+
*/
|
|
1418
|
+
export interface UpdateSoftwareSetRequest {
|
|
1419
|
+
/**
|
|
1420
|
+
* @public
|
|
1421
|
+
* <p>The ID of the software set to update.</p>
|
|
1422
|
+
*/
|
|
1423
|
+
id: string | undefined;
|
|
1424
|
+
/**
|
|
1425
|
+
* @public
|
|
1426
|
+
* <p>An option to define if the software set has been validated.</p>
|
|
1427
|
+
*/
|
|
1428
|
+
validationStatus: SoftwareSetValidationStatus | undefined;
|
|
1429
|
+
}
|
|
1430
|
+
/**
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1433
|
+
export interface UpdateSoftwareSetResponse {
|
|
1434
|
+
}
|
|
1435
|
+
/**
|
|
1436
|
+
* @internal
|
|
1437
|
+
*/
|
|
1438
|
+
export declare const CreateEnvironmentRequestFilterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
1439
|
+
/**
|
|
1440
|
+
* @internal
|
|
1441
|
+
*/
|
|
1442
|
+
export declare const EmbeddedTagFilterSensitiveLog: (obj: EmbeddedTag) => any;
|
|
1443
|
+
/**
|
|
1444
|
+
* @internal
|
|
1445
|
+
*/
|
|
1446
|
+
export declare const EnvironmentSummaryFilterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
1447
|
+
/**
|
|
1448
|
+
* @internal
|
|
1449
|
+
*/
|
|
1450
|
+
export declare const CreateEnvironmentResponseFilterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
1451
|
+
/**
|
|
1452
|
+
* @internal
|
|
1453
|
+
*/
|
|
1454
|
+
export declare const DeviceFilterSensitiveLog: (obj: Device) => any;
|
|
1455
|
+
/**
|
|
1456
|
+
* @internal
|
|
1457
|
+
*/
|
|
1458
|
+
export declare const DeviceSummaryFilterSensitiveLog: (obj: DeviceSummary) => any;
|
|
1459
|
+
/**
|
|
1460
|
+
* @internal
|
|
1461
|
+
*/
|
|
1462
|
+
export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
|
|
1463
|
+
/**
|
|
1464
|
+
* @internal
|
|
1465
|
+
*/
|
|
1466
|
+
export declare const GetDeviceResponseFilterSensitiveLog: (obj: GetDeviceResponse) => any;
|
|
1467
|
+
/**
|
|
1468
|
+
* @internal
|
|
1469
|
+
*/
|
|
1470
|
+
export declare const GetEnvironmentResponseFilterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
1471
|
+
/**
|
|
1472
|
+
* @internal
|
|
1473
|
+
*/
|
|
1474
|
+
export declare const ListDevicesResponseFilterSensitiveLog: (obj: ListDevicesResponse) => any;
|
|
1475
|
+
/**
|
|
1476
|
+
* @internal
|
|
1477
|
+
*/
|
|
1478
|
+
export declare const ListEnvironmentsResponseFilterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
1479
|
+
/**
|
|
1480
|
+
* @internal
|
|
1481
|
+
*/
|
|
1482
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1483
|
+
/**
|
|
1484
|
+
* @internal
|
|
1485
|
+
*/
|
|
1486
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1487
|
+
/**
|
|
1488
|
+
* @internal
|
|
1489
|
+
*/
|
|
1490
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1491
|
+
/**
|
|
1492
|
+
* @internal
|
|
1493
|
+
*/
|
|
1494
|
+
export declare const UpdateDeviceRequestFilterSensitiveLog: (obj: UpdateDeviceRequest) => any;
|
|
1495
|
+
/**
|
|
1496
|
+
* @internal
|
|
1497
|
+
*/
|
|
1498
|
+
export declare const UpdateDeviceResponseFilterSensitiveLog: (obj: UpdateDeviceResponse) => any;
|
|
1499
|
+
/**
|
|
1500
|
+
* @internal
|
|
1501
|
+
*/
|
|
1502
|
+
export declare const UpdateEnvironmentRequestFilterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
|
|
1503
|
+
/**
|
|
1504
|
+
* @internal
|
|
1505
|
+
*/
|
|
1506
|
+
export declare const UpdateEnvironmentResponseFilterSensitiveLog: (obj: UpdateEnvironmentResponse) => any;
|