aws-sdk-outposts 1.71.0 → 1.73.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +171 -15
- data/lib/aws-sdk-outposts/client_api.rb +126 -2
- data/lib/aws-sdk-outposts/types.rb +283 -4
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +48 -7
- data/sig/types.rbs +75 -7
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -37,11 +37,33 @@ module Aws::Outposts
|
|
37
37
|
SENSITIVE: []
|
38
38
|
end
|
39
39
|
|
40
|
+
class AssetInstance
|
41
|
+
attr_accessor instance_id: ::String
|
42
|
+
attr_accessor instance_type: ::String
|
43
|
+
attr_accessor asset_id: ::String
|
44
|
+
attr_accessor account_id: ::String
|
45
|
+
attr_accessor aws_service_name: ("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class AssetInstanceTypeCapacity
|
50
|
+
attr_accessor instance_type: ::String
|
51
|
+
attr_accessor count: ::Integer
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
40
55
|
class AssetLocation
|
41
56
|
attr_accessor rack_elevation: ::Float
|
42
57
|
SENSITIVE: []
|
43
58
|
end
|
44
59
|
|
60
|
+
class BlockingInstance
|
61
|
+
attr_accessor instance_id: ::String
|
62
|
+
attr_accessor account_id: ::String
|
63
|
+
attr_accessor aws_service_name: ("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
45
67
|
class CancelCapacityTaskInput
|
46
68
|
attr_accessor capacity_task_id: ::String
|
47
69
|
attr_accessor outpost_identifier: ::String
|
@@ -61,7 +83,7 @@ module Aws::Outposts
|
|
61
83
|
|
62
84
|
class CapacityTaskFailure
|
63
85
|
attr_accessor reason: ::String
|
64
|
-
attr_accessor type: ("UNSUPPORTED_CAPACITY_CONFIGURATION")
|
86
|
+
attr_accessor type: ("UNSUPPORTED_CAPACITY_CONFIGURATION" | "UNEXPECTED_ASSET_STATE" | "BLOCKING_INSTANCES_NOT_EVACUATED" | "INTERNAL_SERVER_ERROR" | "RESOURCE_NOT_FOUND")
|
65
87
|
SENSITIVE: []
|
66
88
|
end
|
67
89
|
|
@@ -69,7 +91,7 @@ module Aws::Outposts
|
|
69
91
|
attr_accessor capacity_task_id: ::String
|
70
92
|
attr_accessor outpost_id: ::String
|
71
93
|
attr_accessor order_id: ::String
|
72
|
-
attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")
|
94
|
+
attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "WAITING_FOR_EVACUATION" | "CANCELLATION_IN_PROGRESS" | "CANCELLED")
|
73
95
|
attr_accessor creation_date: ::Time
|
74
96
|
attr_accessor completion_date: ::Time
|
75
97
|
attr_accessor last_modified_date: ::Time
|
@@ -91,6 +113,8 @@ module Aws::Outposts
|
|
91
113
|
attr_accessor host_id: ::String
|
92
114
|
attr_accessor state: ("ACTIVE" | "ISOLATED" | "RETIRING")
|
93
115
|
attr_accessor instance_families: ::Array[::String]
|
116
|
+
attr_accessor instance_type_capacities: ::Array[Types::AssetInstanceTypeCapacity]
|
117
|
+
attr_accessor max_vcpus: ::Integer
|
94
118
|
SENSITIVE: []
|
95
119
|
end
|
96
120
|
|
@@ -115,7 +139,7 @@ module Aws::Outposts
|
|
115
139
|
attr_accessor outpost_identifier: ::String
|
116
140
|
attr_accessor line_items: ::Array[Types::LineItemRequest]
|
117
141
|
attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
|
118
|
-
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR")
|
142
|
+
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
|
119
143
|
SENSITIVE: []
|
120
144
|
end
|
121
145
|
|
@@ -190,12 +214,14 @@ module Aws::Outposts
|
|
190
214
|
attr_accessor outpost_id: ::String
|
191
215
|
attr_accessor order_id: ::String
|
192
216
|
attr_accessor requested_instance_pools: ::Array[Types::InstanceTypeCapacity]
|
217
|
+
attr_accessor instances_to_exclude: Types::InstancesToExclude
|
193
218
|
attr_accessor dry_run: bool
|
194
|
-
attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")
|
219
|
+
attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "WAITING_FOR_EVACUATION" | "CANCELLATION_IN_PROGRESS" | "CANCELLED")
|
195
220
|
attr_accessor failed: Types::CapacityTaskFailure
|
196
221
|
attr_accessor creation_date: ::Time
|
197
222
|
attr_accessor completion_date: ::Time
|
198
223
|
attr_accessor last_modified_date: ::Time
|
224
|
+
attr_accessor task_action_on_blocking_instances: ("WAIT_FOR_EVACUATION" | "FAIL_TASK")
|
199
225
|
SENSITIVE: []
|
200
226
|
end
|
201
227
|
|
@@ -304,6 +330,13 @@ module Aws::Outposts
|
|
304
330
|
SENSITIVE: []
|
305
331
|
end
|
306
332
|
|
333
|
+
class InstancesToExclude
|
334
|
+
attr_accessor instances: ::Array[::String]
|
335
|
+
attr_accessor account_ids: ::Array[::String]
|
336
|
+
attr_accessor services: ::Array[("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
307
340
|
class InternalServerException
|
308
341
|
attr_accessor message: ::String
|
309
342
|
SENSITIVE: []
|
@@ -333,6 +366,23 @@ module Aws::Outposts
|
|
333
366
|
SENSITIVE: []
|
334
367
|
end
|
335
368
|
|
369
|
+
class ListAssetInstancesInput
|
370
|
+
attr_accessor outpost_identifier: ::String
|
371
|
+
attr_accessor asset_id_filter: ::Array[::String]
|
372
|
+
attr_accessor instance_type_filter: ::Array[::String]
|
373
|
+
attr_accessor account_id_filter: ::Array[::String]
|
374
|
+
attr_accessor aws_service_filter: ::Array[("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]
|
375
|
+
attr_accessor max_results: ::Integer
|
376
|
+
attr_accessor next_token: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class ListAssetInstancesOutput
|
381
|
+
attr_accessor asset_instances: ::Array[Types::AssetInstance]
|
382
|
+
attr_accessor next_token: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
336
386
|
class ListAssetsInput
|
337
387
|
attr_accessor outpost_identifier: ::String
|
338
388
|
attr_accessor host_id_filter: ::Array[::String]
|
@@ -348,11 +398,25 @@ module Aws::Outposts
|
|
348
398
|
SENSITIVE: []
|
349
399
|
end
|
350
400
|
|
401
|
+
class ListBlockingInstancesForCapacityTaskInput
|
402
|
+
attr_accessor outpost_identifier: ::String
|
403
|
+
attr_accessor capacity_task_id: ::String
|
404
|
+
attr_accessor max_results: ::Integer
|
405
|
+
attr_accessor next_token: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class ListBlockingInstancesForCapacityTaskOutput
|
410
|
+
attr_accessor blocking_instances: ::Array[Types::BlockingInstance]
|
411
|
+
attr_accessor next_token: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
351
415
|
class ListCapacityTasksInput
|
352
416
|
attr_accessor outpost_identifier_filter: ::String
|
353
417
|
attr_accessor max_results: ::Integer
|
354
418
|
attr_accessor next_token: ::String
|
355
|
-
attr_accessor capacity_task_status_filter: ::Array[("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")]
|
419
|
+
attr_accessor capacity_task_status_filter: ::Array[("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "WAITING_FOR_EVACUATION" | "CANCELLATION_IN_PROGRESS" | "CANCELLED")]
|
356
420
|
SENSITIVE: []
|
357
421
|
end
|
358
422
|
|
@@ -443,7 +507,7 @@ module Aws::Outposts
|
|
443
507
|
attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
|
444
508
|
attr_accessor order_submission_date: ::Time
|
445
509
|
attr_accessor order_fulfilled_date: ::Time
|
446
|
-
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR")
|
510
|
+
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
|
447
511
|
attr_accessor order_type: ("OUTPOST" | "REPLACEMENT")
|
448
512
|
SENSITIVE: []
|
449
513
|
end
|
@@ -518,7 +582,9 @@ module Aws::Outposts
|
|
518
582
|
attr_accessor outpost_identifier: ::String
|
519
583
|
attr_accessor order_id: ::String
|
520
584
|
attr_accessor instance_pools: ::Array[Types::InstanceTypeCapacity]
|
585
|
+
attr_accessor instances_to_exclude: Types::InstancesToExclude
|
521
586
|
attr_accessor dry_run: bool
|
587
|
+
attr_accessor task_action_on_blocking_instances: ("WAIT_FOR_EVACUATION" | "FAIL_TASK")
|
522
588
|
SENSITIVE: []
|
523
589
|
end
|
524
590
|
|
@@ -527,12 +593,14 @@ module Aws::Outposts
|
|
527
593
|
attr_accessor outpost_id: ::String
|
528
594
|
attr_accessor order_id: ::String
|
529
595
|
attr_accessor requested_instance_pools: ::Array[Types::InstanceTypeCapacity]
|
596
|
+
attr_accessor instances_to_exclude: Types::InstancesToExclude
|
530
597
|
attr_accessor dry_run: bool
|
531
|
-
attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")
|
598
|
+
attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "WAITING_FOR_EVACUATION" | "CANCELLATION_IN_PROGRESS" | "CANCELLED")
|
532
599
|
attr_accessor failed: Types::CapacityTaskFailure
|
533
600
|
attr_accessor creation_date: ::Time
|
534
601
|
attr_accessor completion_date: ::Time
|
535
602
|
attr_accessor last_modified_date: ::Time
|
603
|
+
attr_accessor task_action_on_blocking_instances: ("WAIT_FOR_EVACUATION" | "FAIL_TASK")
|
536
604
|
SENSITIVE: []
|
537
605
|
end
|
538
606
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-outposts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.73.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|