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