aws-sdk-workspacesinstances 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-workspacesinstances/client.rb +1174 -0
- data/lib/aws-sdk-workspacesinstances/client_api.rb +753 -0
- data/lib/aws-sdk-workspacesinstances/customizations.rb +0 -0
- data/lib/aws-sdk-workspacesinstances/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-workspacesinstances/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-workspacesinstances/endpoints.rb +20 -0
- data/lib/aws-sdk-workspacesinstances/errors.rb +232 -0
- data/lib/aws-sdk-workspacesinstances/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-workspacesinstances/resource.rb +26 -0
- data/lib/aws-sdk-workspacesinstances/types.rb +1655 -0
- data/lib/aws-sdk-workspacesinstances/waiters.rb +15 -0
- data/lib/aws-sdk-workspacesinstances.rb +62 -0
- data/sig/client.rbs +426 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +483 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,483 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::WorkspacesInstances
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AssociateVolumeRequest
|
17
|
+
attr_accessor workspace_instance_id: ::String
|
18
|
+
attr_accessor volume_id: ::String
|
19
|
+
attr_accessor device: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AssociateVolumeResponse < Aws::EmptyStructure
|
24
|
+
end
|
25
|
+
|
26
|
+
class BlockDeviceMappingRequest
|
27
|
+
attr_accessor device_name: ::String
|
28
|
+
attr_accessor ebs: Types::EbsBlockDevice
|
29
|
+
attr_accessor no_device: ::String
|
30
|
+
attr_accessor virtual_name: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class CapacityReservationSpecification
|
35
|
+
attr_accessor capacity_reservation_preference: ("capacity-reservations-only" | "open" | "none")
|
36
|
+
attr_accessor capacity_reservation_target: Types::CapacityReservationTarget
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class CapacityReservationTarget
|
41
|
+
attr_accessor capacity_reservation_id: ::String
|
42
|
+
attr_accessor capacity_reservation_resource_group_arn: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class ConflictException
|
47
|
+
attr_accessor message: ::String
|
48
|
+
attr_accessor resource_id: ::String
|
49
|
+
attr_accessor resource_type: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class ConnectionTrackingSpecificationRequest
|
54
|
+
attr_accessor tcp_established_timeout: ::Integer
|
55
|
+
attr_accessor udp_stream_timeout: ::Integer
|
56
|
+
attr_accessor udp_timeout: ::Integer
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class CpuOptionsRequest
|
61
|
+
attr_accessor amd_sev_snp: ("enabled" | "disabled")
|
62
|
+
attr_accessor core_count: ::Integer
|
63
|
+
attr_accessor threads_per_core: ::Integer
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class CreateVolumeRequest
|
68
|
+
attr_accessor availability_zone: ::String
|
69
|
+
attr_accessor client_token: ::String
|
70
|
+
attr_accessor encrypted: bool
|
71
|
+
attr_accessor iops: ::Integer
|
72
|
+
attr_accessor kms_key_id: ::String
|
73
|
+
attr_accessor size_in_gb: ::Integer
|
74
|
+
attr_accessor snapshot_id: ::String
|
75
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
76
|
+
attr_accessor throughput: ::Integer
|
77
|
+
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
78
|
+
SENSITIVE: [:client_token, :kms_key_id]
|
79
|
+
end
|
80
|
+
|
81
|
+
class CreateVolumeResponse
|
82
|
+
attr_accessor volume_id: ::String
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class CreateWorkspaceInstanceRequest
|
87
|
+
attr_accessor client_token: ::String
|
88
|
+
attr_accessor tags: ::Array[Types::Tag]
|
89
|
+
attr_accessor managed_instance: Types::ManagedInstanceRequest
|
90
|
+
SENSITIVE: [:client_token]
|
91
|
+
end
|
92
|
+
|
93
|
+
class CreateWorkspaceInstanceResponse
|
94
|
+
attr_accessor workspace_instance_id: ::String
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class CreditSpecificationRequest
|
99
|
+
attr_accessor cpu_credits: ("standard" | "unlimited")
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class DeleteVolumeRequest
|
104
|
+
attr_accessor volume_id: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class DeleteVolumeResponse < Aws::EmptyStructure
|
109
|
+
end
|
110
|
+
|
111
|
+
class DeleteWorkspaceInstanceRequest
|
112
|
+
attr_accessor workspace_instance_id: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class DeleteWorkspaceInstanceResponse < Aws::EmptyStructure
|
117
|
+
end
|
118
|
+
|
119
|
+
class DisassociateVolumeRequest
|
120
|
+
attr_accessor workspace_instance_id: ::String
|
121
|
+
attr_accessor volume_id: ::String
|
122
|
+
attr_accessor device: ::String
|
123
|
+
attr_accessor disassociate_mode: ("FORCE" | "NO_FORCE")
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class DisassociateVolumeResponse < Aws::EmptyStructure
|
128
|
+
end
|
129
|
+
|
130
|
+
class EC2InstanceError
|
131
|
+
attr_accessor ec2_error_code: ::String
|
132
|
+
attr_accessor ec2_exception_type: ::String
|
133
|
+
attr_accessor ec2_error_message: ::String
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class EC2ManagedInstance
|
138
|
+
attr_accessor instance_id: ::String
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class EbsBlockDevice
|
143
|
+
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
144
|
+
attr_accessor encrypted: bool
|
145
|
+
attr_accessor kms_key_id: ::String
|
146
|
+
attr_accessor iops: ::Integer
|
147
|
+
attr_accessor throughput: ::Integer
|
148
|
+
attr_accessor volume_size: ::Integer
|
149
|
+
SENSITIVE: [:kms_key_id]
|
150
|
+
end
|
151
|
+
|
152
|
+
class EnaSrdSpecificationRequest
|
153
|
+
attr_accessor ena_srd_enabled: bool
|
154
|
+
attr_accessor ena_srd_udp_specification: Types::EnaSrdUdpSpecificationRequest
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class EnaSrdUdpSpecificationRequest
|
159
|
+
attr_accessor ena_srd_udp_enabled: bool
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class EnclaveOptionsRequest
|
164
|
+
attr_accessor enabled: bool
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class GetWorkspaceInstanceRequest
|
169
|
+
attr_accessor workspace_instance_id: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class GetWorkspaceInstanceResponse
|
174
|
+
attr_accessor workspace_instance_errors: ::Array[Types::WorkspaceInstanceError]
|
175
|
+
attr_accessor ec2_instance_errors: ::Array[Types::EC2InstanceError]
|
176
|
+
attr_accessor provision_state: ("ALLOCATING" | "ALLOCATED" | "DEALLOCATING" | "DEALLOCATED" | "ERROR_ALLOCATING" | "ERROR_DEALLOCATING")
|
177
|
+
attr_accessor workspace_instance_id: ::String
|
178
|
+
attr_accessor ec2_managed_instance: Types::EC2ManagedInstance
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class HibernationOptionsRequest
|
183
|
+
attr_accessor configured: bool
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class IamInstanceProfileSpecification
|
188
|
+
attr_accessor arn: ::String
|
189
|
+
attr_accessor name: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class InstanceIpv6Address
|
194
|
+
attr_accessor ipv_6_address: ::String
|
195
|
+
attr_accessor is_primary_ipv_6: bool
|
196
|
+
SENSITIVE: [:ipv_6_address]
|
197
|
+
end
|
198
|
+
|
199
|
+
class InstanceMaintenanceOptionsRequest
|
200
|
+
attr_accessor auto_recovery: ("disabled" | "default")
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class InstanceMarketOptionsRequest
|
205
|
+
attr_accessor market_type: ("spot" | "capacity-block")
|
206
|
+
attr_accessor spot_options: Types::SpotMarketOptions
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class InstanceMetadataOptionsRequest
|
211
|
+
attr_accessor http_endpoint: ("enabled" | "disabled")
|
212
|
+
attr_accessor http_protocol_ipv_6: ("enabled" | "disabled")
|
213
|
+
attr_accessor http_put_response_hop_limit: ::Integer
|
214
|
+
attr_accessor http_tokens: ("optional" | "required")
|
215
|
+
attr_accessor instance_metadata_tags: ("enabled" | "disabled")
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class InstanceNetworkInterfaceSpecification
|
220
|
+
attr_accessor associate_carrier_ip_address: bool
|
221
|
+
attr_accessor associate_public_ip_address: bool
|
222
|
+
attr_accessor connection_tracking_specification: Types::ConnectionTrackingSpecificationRequest
|
223
|
+
attr_accessor description: ::String
|
224
|
+
attr_accessor device_index: ::Integer
|
225
|
+
attr_accessor ena_srd_specification: Types::EnaSrdSpecificationRequest
|
226
|
+
attr_accessor interface_type: ("interface" | "efa" | "efa-only")
|
227
|
+
attr_accessor ipv_4_prefixes: ::Array[Types::Ipv4PrefixSpecificationRequest]
|
228
|
+
attr_accessor ipv_4_prefix_count: ::Integer
|
229
|
+
attr_accessor ipv_6_address_count: ::Integer
|
230
|
+
attr_accessor ipv_6_addresses: ::Array[Types::InstanceIpv6Address]
|
231
|
+
attr_accessor ipv_6_prefixes: ::Array[Types::Ipv6PrefixSpecificationRequest]
|
232
|
+
attr_accessor ipv_6_prefix_count: ::Integer
|
233
|
+
attr_accessor network_card_index: ::Integer
|
234
|
+
attr_accessor network_interface_id: ::String
|
235
|
+
attr_accessor primary_ipv_6: bool
|
236
|
+
attr_accessor private_ip_address: ::String
|
237
|
+
attr_accessor private_ip_addresses: ::Array[Types::PrivateIpAddressSpecification]
|
238
|
+
attr_accessor secondary_private_ip_address_count: ::Integer
|
239
|
+
attr_accessor groups: ::Array[::String]
|
240
|
+
attr_accessor subnet_id: ::String
|
241
|
+
SENSITIVE: [:private_ip_address]
|
242
|
+
end
|
243
|
+
|
244
|
+
class InstanceNetworkPerformanceOptionsRequest
|
245
|
+
attr_accessor bandwidth_weighting: ("default" | "vpc-1" | "ebs-1")
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class InstanceTypeInfo
|
250
|
+
attr_accessor instance_type: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class InternalServerException
|
255
|
+
attr_accessor message: ::String
|
256
|
+
attr_accessor retry_after_seconds: ::Integer
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class Ipv4PrefixSpecificationRequest
|
261
|
+
attr_accessor ipv_4_prefix: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class Ipv6PrefixSpecificationRequest
|
266
|
+
attr_accessor ipv_6_prefix: ::String
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class LicenseConfigurationRequest
|
271
|
+
attr_accessor license_configuration_arn: ::String
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class ListInstanceTypesRequest
|
276
|
+
attr_accessor max_results: ::Integer
|
277
|
+
attr_accessor next_token: ::String
|
278
|
+
SENSITIVE: [:next_token]
|
279
|
+
end
|
280
|
+
|
281
|
+
class ListInstanceTypesResponse
|
282
|
+
attr_accessor instance_types: ::Array[Types::InstanceTypeInfo]
|
283
|
+
attr_accessor next_token: ::String
|
284
|
+
SENSITIVE: [:next_token]
|
285
|
+
end
|
286
|
+
|
287
|
+
class ListRegionsRequest
|
288
|
+
attr_accessor max_results: ::Integer
|
289
|
+
attr_accessor next_token: ::String
|
290
|
+
SENSITIVE: [:next_token]
|
291
|
+
end
|
292
|
+
|
293
|
+
class ListRegionsResponse
|
294
|
+
attr_accessor regions: ::Array[Types::Region]
|
295
|
+
attr_accessor next_token: ::String
|
296
|
+
SENSITIVE: [:next_token]
|
297
|
+
end
|
298
|
+
|
299
|
+
class ListTagsForResourceRequest
|
300
|
+
attr_accessor workspace_instance_id: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class ListTagsForResourceResponse
|
305
|
+
attr_accessor tags: ::Array[Types::Tag]
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class ListWorkspaceInstancesRequest
|
310
|
+
attr_accessor provision_states: ::Array[("ALLOCATING" | "ALLOCATED" | "DEALLOCATING" | "DEALLOCATED" | "ERROR_ALLOCATING" | "ERROR_DEALLOCATING")]
|
311
|
+
attr_accessor max_results: ::Integer
|
312
|
+
attr_accessor next_token: ::String
|
313
|
+
SENSITIVE: [:next_token]
|
314
|
+
end
|
315
|
+
|
316
|
+
class ListWorkspaceInstancesResponse
|
317
|
+
attr_accessor workspace_instances: ::Array[Types::WorkspaceInstance]
|
318
|
+
attr_accessor next_token: ::String
|
319
|
+
SENSITIVE: [:next_token]
|
320
|
+
end
|
321
|
+
|
322
|
+
class ManagedInstanceRequest
|
323
|
+
attr_accessor block_device_mappings: ::Array[Types::BlockDeviceMappingRequest]
|
324
|
+
attr_accessor capacity_reservation_specification: Types::CapacityReservationSpecification
|
325
|
+
attr_accessor cpu_options: Types::CpuOptionsRequest
|
326
|
+
attr_accessor credit_specification: Types::CreditSpecificationRequest
|
327
|
+
attr_accessor disable_api_stop: bool
|
328
|
+
attr_accessor ebs_optimized: bool
|
329
|
+
attr_accessor enable_primary_ipv_6: bool
|
330
|
+
attr_accessor enclave_options: Types::EnclaveOptionsRequest
|
331
|
+
attr_accessor hibernation_options: Types::HibernationOptionsRequest
|
332
|
+
attr_accessor iam_instance_profile: Types::IamInstanceProfileSpecification
|
333
|
+
attr_accessor image_id: ::String
|
334
|
+
attr_accessor instance_market_options: Types::InstanceMarketOptionsRequest
|
335
|
+
attr_accessor instance_type: ::String
|
336
|
+
attr_accessor ipv_6_addresses: ::Array[Types::InstanceIpv6Address]
|
337
|
+
attr_accessor ipv_6_address_count: ::Integer
|
338
|
+
attr_accessor kernel_id: ::String
|
339
|
+
attr_accessor key_name: ::String
|
340
|
+
attr_accessor license_specifications: ::Array[Types::LicenseConfigurationRequest]
|
341
|
+
attr_accessor maintenance_options: Types::InstanceMaintenanceOptionsRequest
|
342
|
+
attr_accessor metadata_options: Types::InstanceMetadataOptionsRequest
|
343
|
+
attr_accessor monitoring: Types::RunInstancesMonitoringEnabled
|
344
|
+
attr_accessor network_interfaces: ::Array[Types::InstanceNetworkInterfaceSpecification]
|
345
|
+
attr_accessor network_performance_options: Types::InstanceNetworkPerformanceOptionsRequest
|
346
|
+
attr_accessor placement: Types::Placement
|
347
|
+
attr_accessor private_dns_name_options: Types::PrivateDnsNameOptionsRequest
|
348
|
+
attr_accessor private_ip_address: ::String
|
349
|
+
attr_accessor ramdisk_id: ::String
|
350
|
+
attr_accessor security_group_ids: ::Array[::String]
|
351
|
+
attr_accessor security_groups: ::Array[::String]
|
352
|
+
attr_accessor subnet_id: ::String
|
353
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
354
|
+
attr_accessor user_data: ::String
|
355
|
+
SENSITIVE: [:private_ip_address, :user_data]
|
356
|
+
end
|
357
|
+
|
358
|
+
class Placement
|
359
|
+
attr_accessor affinity: ::String
|
360
|
+
attr_accessor availability_zone: ::String
|
361
|
+
attr_accessor group_id: ::String
|
362
|
+
attr_accessor group_name: ::String
|
363
|
+
attr_accessor host_id: ::String
|
364
|
+
attr_accessor host_resource_group_arn: ::String
|
365
|
+
attr_accessor partition_number: ::Integer
|
366
|
+
attr_accessor tenancy: ("default" | "dedicated" | "host")
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class PrivateDnsNameOptionsRequest
|
371
|
+
attr_accessor hostname_type: ("ip-name" | "resource-name")
|
372
|
+
attr_accessor enable_resource_name_dns_a_record: bool
|
373
|
+
attr_accessor enable_resource_name_dns_aaaa_record: bool
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class PrivateIpAddressSpecification
|
378
|
+
attr_accessor primary: bool
|
379
|
+
attr_accessor private_ip_address: ::String
|
380
|
+
SENSITIVE: [:private_ip_address]
|
381
|
+
end
|
382
|
+
|
383
|
+
class Region
|
384
|
+
attr_accessor region_name: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class ResourceNotFoundException
|
389
|
+
attr_accessor message: ::String
|
390
|
+
attr_accessor resource_id: ::String
|
391
|
+
attr_accessor resource_type: ::String
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class RunInstancesMonitoringEnabled
|
396
|
+
attr_accessor enabled: bool
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class ServiceQuotaExceededException
|
401
|
+
attr_accessor message: ::String
|
402
|
+
attr_accessor resource_id: ::String
|
403
|
+
attr_accessor resource_type: ::String
|
404
|
+
attr_accessor service_code: ::String
|
405
|
+
attr_accessor quota_code: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class SpotMarketOptions
|
410
|
+
attr_accessor block_duration_minutes: ::Integer
|
411
|
+
attr_accessor instance_interruption_behavior: ("hibernate" | "stop")
|
412
|
+
attr_accessor max_price: ::String
|
413
|
+
attr_accessor spot_instance_type: ("one-time" | "persistent")
|
414
|
+
attr_accessor valid_until_utc: ::Time
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class Tag
|
419
|
+
attr_accessor key: ::String
|
420
|
+
attr_accessor value: ::String
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class TagResourceRequest
|
425
|
+
attr_accessor workspace_instance_id: ::String
|
426
|
+
attr_accessor tags: ::Array[Types::Tag]
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class TagResourceResponse < Aws::EmptyStructure
|
431
|
+
end
|
432
|
+
|
433
|
+
class TagSpecification
|
434
|
+
attr_accessor resource_type: ("instance" | "volume" | "spot-instances-request" | "network-interface")
|
435
|
+
attr_accessor tags: ::Array[Types::Tag]
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class ThrottlingException
|
440
|
+
attr_accessor message: ::String
|
441
|
+
attr_accessor service_code: ::String
|
442
|
+
attr_accessor quota_code: ::String
|
443
|
+
attr_accessor retry_after_seconds: ::Integer
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class UntagResourceRequest
|
448
|
+
attr_accessor workspace_instance_id: ::String
|
449
|
+
attr_accessor tag_keys: ::Array[::String]
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
454
|
+
end
|
455
|
+
|
456
|
+
class ValidationException
|
457
|
+
attr_accessor message: ::String
|
458
|
+
attr_accessor reason: ("UNKNOWN_OPERATION" | "UNSUPPORTED_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "DEPENDENCY_FAILURE" | "OTHER")
|
459
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
463
|
+
class ValidationExceptionField
|
464
|
+
attr_accessor name: ::String
|
465
|
+
attr_accessor reason: ::String
|
466
|
+
attr_accessor message: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class WorkspaceInstance
|
471
|
+
attr_accessor provision_state: ("ALLOCATING" | "ALLOCATED" | "DEALLOCATING" | "DEALLOCATED" | "ERROR_ALLOCATING" | "ERROR_DEALLOCATING")
|
472
|
+
attr_accessor workspace_instance_id: ::String
|
473
|
+
attr_accessor ec2_managed_instance: Types::EC2ManagedInstance
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class WorkspaceInstanceError
|
478
|
+
attr_accessor error_code: ::String
|
479
|
+
attr_accessor error_message: ::String
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
end
|
483
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module WorkspacesInstances
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-workspacesinstances
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
bindir: bin
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: aws-sdk-core
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '3'
|
19
|
+
- - ">="
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.225.0
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - "~>"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '3'
|
29
|
+
- - ">="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: 3.225.0
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: aws-sigv4
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - "~>"
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '1.5'
|
39
|
+
type: :runtime
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - "~>"
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.5'
|
46
|
+
description: Official AWS Ruby gem for Amazon Workspaces Instances. This gem is part
|
47
|
+
of the AWS SDK for Ruby.
|
48
|
+
email:
|
49
|
+
- aws-dr-rubygems@amazon.com
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- CHANGELOG.md
|
55
|
+
- LICENSE.txt
|
56
|
+
- VERSION
|
57
|
+
- lib/aws-sdk-workspacesinstances.rb
|
58
|
+
- lib/aws-sdk-workspacesinstances/client.rb
|
59
|
+
- lib/aws-sdk-workspacesinstances/client_api.rb
|
60
|
+
- lib/aws-sdk-workspacesinstances/customizations.rb
|
61
|
+
- lib/aws-sdk-workspacesinstances/endpoint_parameters.rb
|
62
|
+
- lib/aws-sdk-workspacesinstances/endpoint_provider.rb
|
63
|
+
- lib/aws-sdk-workspacesinstances/endpoints.rb
|
64
|
+
- lib/aws-sdk-workspacesinstances/errors.rb
|
65
|
+
- lib/aws-sdk-workspacesinstances/plugins/endpoints.rb
|
66
|
+
- lib/aws-sdk-workspacesinstances/resource.rb
|
67
|
+
- lib/aws-sdk-workspacesinstances/types.rb
|
68
|
+
- lib/aws-sdk-workspacesinstances/waiters.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
75
|
+
licenses:
|
76
|
+
- Apache-2.0
|
77
|
+
metadata:
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspacesinstances
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspacesinstances/CHANGELOG.md
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '2.7'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubygems_version: 3.6.7
|
95
|
+
specification_version: 4
|
96
|
+
summary: AWS SDK for Ruby - Amazon Workspaces Instances
|
97
|
+
test_files: []
|