aws-sdk-outposts 1.53.0 → 1.55.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.
data/sig/types.rbs CHANGED
@@ -42,6 +42,15 @@ module Aws::Outposts
42
42
  SENSITIVE: []
43
43
  end
44
44
 
45
+ class CancelCapacityTaskInput
46
+ attr_accessor capacity_task_id: ::String
47
+ attr_accessor outpost_identifier: ::String
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CancelCapacityTaskOutput < Aws::EmptyStructure
52
+ end
53
+
45
54
  class CancelOrderInput
46
55
  attr_accessor order_id: ::String
47
56
  SENSITIVE: []
@@ -50,6 +59,23 @@ module Aws::Outposts
50
59
  class CancelOrderOutput < Aws::EmptyStructure
51
60
  end
52
61
 
62
+ class CapacityTaskFailure
63
+ attr_accessor reason: ::String
64
+ attr_accessor type: ("UNSUPPORTED_CAPACITY_CONFIGURATION")
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class CapacityTaskSummary
69
+ attr_accessor capacity_task_id: ::String
70
+ attr_accessor outpost_id: ::String
71
+ attr_accessor order_id: ::String
72
+ attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")
73
+ attr_accessor creation_date: ::Time
74
+ attr_accessor completion_date: ::Time
75
+ attr_accessor last_modified_date: ::Time
76
+ SENSITIVE: []
77
+ end
78
+
53
79
  class CatalogItem
54
80
  attr_accessor catalog_item_id: ::String
55
81
  attr_accessor item_status: ("AVAILABLE" | "DISCONTINUED")
@@ -153,6 +179,26 @@ module Aws::Outposts
153
179
  SENSITIVE: []
154
180
  end
155
181
 
182
+ class GetCapacityTaskInput
183
+ attr_accessor capacity_task_id: ::String
184
+ attr_accessor outpost_identifier: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class GetCapacityTaskOutput
189
+ attr_accessor capacity_task_id: ::String
190
+ attr_accessor outpost_id: ::String
191
+ attr_accessor order_id: ::String
192
+ attr_accessor requested_instance_pools: ::Array[Types::InstanceTypeCapacity]
193
+ attr_accessor dry_run: bool
194
+ attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")
195
+ attr_accessor failed: Types::CapacityTaskFailure
196
+ attr_accessor creation_date: ::Time
197
+ attr_accessor completion_date: ::Time
198
+ attr_accessor last_modified_date: ::Time
199
+ SENSITIVE: []
200
+ end
201
+
156
202
  class GetCatalogItemInput
157
203
  attr_accessor catalog_item_id: ::String
158
204
  SENSITIVE: []
@@ -209,6 +255,20 @@ module Aws::Outposts
209
255
  SENSITIVE: []
210
256
  end
211
257
 
258
+ class GetOutpostSupportedInstanceTypesInput
259
+ attr_accessor outpost_identifier: ::String
260
+ attr_accessor order_id: ::String
261
+ attr_accessor max_results: ::Integer
262
+ attr_accessor next_token: ::String
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class GetOutpostSupportedInstanceTypesOutput
267
+ attr_accessor instance_types: ::Array[Types::InstanceTypeItem]
268
+ attr_accessor next_token: ::String
269
+ SENSITIVE: []
270
+ end
271
+
212
272
  class GetSiteAddressInput
213
273
  attr_accessor site_id: ::String
214
274
  attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
@@ -232,6 +292,12 @@ module Aws::Outposts
232
292
  SENSITIVE: []
233
293
  end
234
294
 
295
+ class InstanceTypeCapacity
296
+ attr_accessor instance_type: ::String
297
+ attr_accessor count: ::Integer
298
+ SENSITIVE: []
299
+ end
300
+
235
301
  class InstanceTypeItem
236
302
  attr_accessor instance_type: ::String
237
303
  SENSITIVE: []
@@ -281,6 +347,20 @@ module Aws::Outposts
281
347
  SENSITIVE: []
282
348
  end
283
349
 
350
+ class ListCapacityTasksInput
351
+ attr_accessor outpost_identifier_filter: ::String
352
+ attr_accessor max_results: ::Integer
353
+ attr_accessor next_token: ::String
354
+ attr_accessor capacity_task_status_filter: ::Array[("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")]
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class ListCapacityTasksOutput
359
+ attr_accessor capacity_tasks: ::Array[Types::CapacityTaskSummary]
360
+ attr_accessor next_token: ::String
361
+ SENSITIVE: []
362
+ end
363
+
284
364
  class ListCatalogItemsInput
285
365
  attr_accessor next_token: ::String
286
366
  attr_accessor max_results: ::Integer
@@ -414,7 +494,7 @@ module Aws::Outposts
414
494
 
415
495
  class ShipmentInformation
416
496
  attr_accessor shipment_tracking_number: ::String
417
- attr_accessor shipment_carrier: ("DHL" | "DBS" | "FEDEX" | "UPS")
497
+ attr_accessor shipment_carrier: ("DHL" | "DBS" | "FEDEX" | "UPS" | "EXPEDITORS")
418
498
  SENSITIVE: []
419
499
  end
420
500
 
@@ -433,6 +513,28 @@ module Aws::Outposts
433
513
  SENSITIVE: []
434
514
  end
435
515
 
516
+ class StartCapacityTaskInput
517
+ attr_accessor outpost_identifier: ::String
518
+ attr_accessor order_id: ::String
519
+ attr_accessor instance_pools: ::Array[Types::InstanceTypeCapacity]
520
+ attr_accessor dry_run: bool
521
+ SENSITIVE: []
522
+ end
523
+
524
+ class StartCapacityTaskOutput
525
+ attr_accessor capacity_task_id: ::String
526
+ attr_accessor outpost_id: ::String
527
+ attr_accessor order_id: ::String
528
+ attr_accessor requested_instance_pools: ::Array[Types::InstanceTypeCapacity]
529
+ attr_accessor dry_run: bool
530
+ attr_accessor capacity_task_status: ("REQUESTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "CANCELLED")
531
+ attr_accessor failed: Types::CapacityTaskFailure
532
+ attr_accessor creation_date: ::Time
533
+ attr_accessor completion_date: ::Time
534
+ attr_accessor last_modified_date: ::Time
535
+ SENSITIVE: []
536
+ end
537
+
436
538
  class StartConnectionRequest
437
539
  attr_accessor device_serial_number: ::String
438
540
  attr_accessor asset_id: ::String
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.53.0
4
+ version: 1.55.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core