aws-sdk-outposts 1.72.0 → 1.73.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18bad98746442fb4c1ecc6914260c48b6587c2850846fd2929afd35094ddd6b0
4
- data.tar.gz: 9f44c89047a5feff833b48b32ab91f48938b55420cf67f0efb233e62d3b88b62
3
+ metadata.gz: ab25bbbe6de0458c5d57a137c505bb48313e79564b4fcdb55db0a7af9abfa815
4
+ data.tar.gz: 0b8475998b462fcfa58fd1ae975a658588c659f15fa186295d5b56893461af72
5
5
  SHA512:
6
- metadata.gz: 30f1ab15433a96b0df1b767486127cca96ce293ade0a10d1182d49ecdcbadb5332e3a09c37c38589bc0cd122eae46023233c8d18569deeddab5df1b309d55e90
7
- data.tar.gz: 1252516211b671fa883375ac5273918ef30e5fe452bd1c719627f0f3bfffd446490c2d013693f22049903dd08c2a4beb56b8b752cfcd9b998a84cc68989412dd
6
+ metadata.gz: 154ecf8a196d10ca20f7046b83b5a32cc174b6deda455121f9565c29acc9d11aa7608e550802a150ec3a9a9cbc4ae26ccaad7c621c46295ae36238131ecf8521
7
+ data.tar.gz: 12b10dfb28280abcba41dceb9141f831aaa42b5f4b66f89ef4b8f8bed7da7ff7d73b15837d85074ba16c6a86bf77fe4cbb95cb63a5d9b15db799c6dbfe6d5bd5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2024-11-15)
5
+ ------------------
6
+
7
+ * Feature - You can now purchase AWS Outposts rack or server capacity for a 5-year term with one of the following payment options: All Upfront, Partial Upfront, and No Upfront.
8
+
4
9
  1.72.0 (2024-11-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -525,7 +525,7 @@ module Aws::Outposts
525
525
  # },
526
526
  # ],
527
527
  # payment_option: "ALL_UPFRONT", # required, accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
528
- # payment_term: "THREE_YEARS", # accepts THREE_YEARS, ONE_YEAR
528
+ # payment_term: "THREE_YEARS", # accepts THREE_YEARS, ONE_YEAR, FIVE_YEARS
529
529
  # })
530
530
  #
531
531
  # @example Response structure
@@ -549,7 +549,7 @@ module Aws::Outposts
549
549
  # resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
550
550
  # resp.order.order_submission_date #=> Time
551
551
  # resp.order.order_fulfilled_date #=> Time
552
- # resp.order.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR"
552
+ # resp.order.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
553
553
  # resp.order.order_type #=> String, one of "OUTPOST", "REPLACEMENT"
554
554
  #
555
555
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOrder AWS API Documentation
@@ -981,7 +981,7 @@ module Aws::Outposts
981
981
  # resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
982
982
  # resp.order.order_submission_date #=> Time
983
983
  # resp.order.order_fulfilled_date #=> Time
984
- # resp.order.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR"
984
+ # resp.order.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
985
985
  # resp.order.order_type #=> String, one of "OUTPOST", "REPLACEMENT"
986
986
  #
987
987
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrder AWS API Documentation
@@ -2312,7 +2312,7 @@ module Aws::Outposts
2312
2312
  tracer: tracer
2313
2313
  )
2314
2314
  context[:gem_name] = 'aws-sdk-outposts'
2315
- context[:gem_version] = '1.72.0'
2315
+ context[:gem_version] = '1.73.0'
2316
2316
  Seahorse::Client::Request.new(handlers, context)
2317
2317
  end
2318
2318
 
@@ -54,7 +54,7 @@ module Aws::Outposts
54
54
  autoload :EndpointProvider, 'aws-sdk-outposts/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-outposts/endpoints'
56
56
 
57
- GEM_VERSION = '1.72.0'
57
+ GEM_VERSION = '1.73.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -108,7 +108,7 @@ module Aws
108
108
  },
109
109
  ],
110
110
  payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT"),
111
- ?payment_term: ("THREE_YEARS" | "ONE_YEAR")
111
+ ?payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
112
112
  ) -> _CreateOrderResponseSuccess
113
113
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOrderResponseSuccess
114
114
 
data/sig/types.rbs CHANGED
@@ -139,7 +139,7 @@ module Aws::Outposts
139
139
  attr_accessor outpost_identifier: ::String
140
140
  attr_accessor line_items: ::Array[Types::LineItemRequest]
141
141
  attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
142
- attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR")
142
+ attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
143
143
  SENSITIVE: []
144
144
  end
145
145
 
@@ -507,7 +507,7 @@ module Aws::Outposts
507
507
  attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
508
508
  attr_accessor order_submission_date: ::Time
509
509
  attr_accessor order_fulfilled_date: ::Time
510
- attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR")
510
+ attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
511
511
  attr_accessor order_type: ("OUTPOST" | "REPLACEMENT")
512
512
  SENSITIVE: []
513
513
  end
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.72.0
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-11 00:00:00.000000000 Z
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