aws-sdk-outposts 1.68.0 → 1.70.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 337f4e98077394e3b544456ac374484221926d1059d011f2d28c43fe161b4c42
4
- data.tar.gz: d9e027468404400cdcfcbbd1aa1c189bd1aafc03fcb2993653c1d934f5d2e332
3
+ metadata.gz: bbfd6ab3436966c4c1ab461eb445b11bc4ac7725177d9eec7549b3a7a0a2187f
4
+ data.tar.gz: 480d3e802132da7d97f866e66fc53a6ec42c5666dfb788d00ac312c7671d656b
5
5
  SHA512:
6
- metadata.gz: 1be79a5a36436417e16b869226dbfec7298c8ac137b84fb666e5a40af6b536ec53cb6fa5682af146e1407f0930ad9a6f6683ed19861a73f242b7957acf7a72d0
7
- data.tar.gz: 361c339ab7f1d234f48917e896e4a854c54d22924969059ba1068e61aa68b4bdf7c8165dc28b64ac11454d0e5373292b5958e5be3135eaf252e7690096e734c0
6
+ metadata.gz: 262ab26fef238702f949e32c5b8f3f30f9cc74a676964d3403076437a04351bae66ea83bbed6920979df71fda9321b954471313567f78e5206ca865e83fdd9c7
7
+ data.tar.gz: 97b90079c50218cc008e9f86b8a8a7594ec0623d1d81594e4d411032fac0a235b5f87b87f2e7ac37236e0ccad274d77f5708502fa6abad8d05b2e869a5630091
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2024-10-10)
5
+ ------------------
6
+
7
+ * Feature - Adding new "DELIVERED" enum value for Outposts Order status
8
+
9
+ 1.69.0 (2024-09-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.68.0 (2024-09-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:outposts)
40
-
41
39
  module Aws::Outposts
42
40
  # An API client for Outposts. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -534,7 +532,7 @@ module Aws::Outposts
534
532
  #
535
533
  # resp.order.outpost_id #=> String
536
534
  # resp.order.order_id #=> String
537
- # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
535
+ # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
538
536
  # resp.order.line_items #=> Array
539
537
  # resp.order.line_items[0].catalog_item_id #=> String
540
538
  # resp.order.line_items[0].line_item_id #=> String
@@ -957,7 +955,7 @@ module Aws::Outposts
957
955
  #
958
956
  # resp.order.outpost_id #=> String
959
957
  # resp.order.order_id #=> String
960
- # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
958
+ # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
961
959
  # resp.order.line_items #=> Array
962
960
  # resp.order.line_items[0].catalog_item_id #=> String
963
961
  # resp.order.line_items[0].line_item_id #=> String
@@ -1432,7 +1430,7 @@ module Aws::Outposts
1432
1430
  # resp.orders[0].outpost_id #=> String
1433
1431
  # resp.orders[0].order_id #=> String
1434
1432
  # resp.orders[0].order_type #=> String, one of "OUTPOST", "REPLACEMENT"
1435
- # resp.orders[0].status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
1433
+ # resp.orders[0].status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
1436
1434
  # resp.orders[0].line_item_counts_by_status #=> Hash
1437
1435
  # resp.orders[0].line_item_counts_by_status["LineItemStatus"] #=> Integer
1438
1436
  # resp.orders[0].order_submission_date #=> Time
@@ -2158,7 +2156,7 @@ module Aws::Outposts
2158
2156
  tracer: tracer
2159
2157
  )
2160
2158
  context[:gem_name] = 'aws-sdk-outposts'
2161
- context[:gem_version] = '1.68.0'
2159
+ context[:gem_version] = '1.70.0'
2162
2160
  Seahorse::Client::Request.new(handlers, context)
2163
2161
  end
2164
2162
 
@@ -1414,8 +1414,10 @@ module Aws::Outposts
1414
1414
  #
1415
1415
  # * `PREPARING` - Order is received and being prepared.
1416
1416
  #
1417
- # * `IN_PROGRESS` - Order is either being built, shipped, or
1418
- # installed. To get more details, see the line item status.
1417
+ # * `IN_PROGRESS` - Order is either being built or shipped. To get
1418
+ # more details, see the line item status.
1419
+ #
1420
+ # * `DELIVERED` - Order was delivered to the Outpost site.
1419
1421
  #
1420
1422
  # * `COMPLETED` - Order is complete.
1421
1423
  #
@@ -11,6 +11,8 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:outposts)
15
+
14
16
  # This module provides support for AWS Outposts. This module is available in the
15
17
  # `aws-sdk-outposts` gem.
16
18
  #
@@ -52,7 +54,7 @@ module Aws::Outposts
52
54
  autoload :EndpointProvider, 'aws-sdk-outposts/endpoint_provider'
53
55
  autoload :Endpoints, 'aws-sdk-outposts/endpoints'
54
56
 
55
- GEM_VERSION = '1.68.0'
57
+ GEM_VERSION = '1.70.0'
56
58
 
57
59
  end
58
60
 
data/sig/types.rbs CHANGED
@@ -438,7 +438,7 @@ module Aws::Outposts
438
438
  class Order
439
439
  attr_accessor outpost_id: ::String
440
440
  attr_accessor order_id: ::String
441
- attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "COMPLETED" | "ERROR")
441
+ attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "DELIVERED" | "COMPLETED" | "ERROR")
442
442
  attr_accessor line_items: ::Array[Types::LineItem]
443
443
  attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
444
444
  attr_accessor order_submission_date: ::Time
@@ -452,7 +452,7 @@ module Aws::Outposts
452
452
  attr_accessor outpost_id: ::String
453
453
  attr_accessor order_id: ::String
454
454
  attr_accessor order_type: ("OUTPOST" | "REPLACEMENT")
455
- attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "COMPLETED" | "ERROR")
455
+ attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "DELIVERED" | "COMPLETED" | "ERROR")
456
456
  attr_accessor line_item_counts_by_status: ::Hash[("PREPARING" | "BUILDING" | "SHIPPED" | "DELIVERED" | "INSTALLING" | "INSTALLED" | "ERROR" | "CANCELLED" | "REPLACED"), ::Integer]
457
457
  attr_accessor order_submission_date: ::Time
458
458
  attr_accessor order_fulfilled_date: ::Time
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.68.0
4
+ version: 1.70.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-09-23 00:00:00.000000000 Z
11
+ date: 2024-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core