aws-sdk-outposts 1.39.0 → 1.40.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: ea113dcd674d31326793831f4a0177e411e8e920985528354287202e0fde3aee
4
- data.tar.gz: 8c18bf5b3d59c0d099c543f5360332aa80751e894fd7006ec54932cf5b7e78a8
3
+ metadata.gz: f0c1effd47953d9fdb7b1492e21bffe00e9c78856b546afa7acda1644c21509d
4
+ data.tar.gz: a2439e0e3c778946819a83af97cec0214414f3f49e00fd23d48cbdb34fb84d94
5
5
  SHA512:
6
- metadata.gz: a6fff1c325776523f5481f0e4156d8fc261361cfdbd94c836954d500e437d443e146c403ff8a69e7463d478ddeca82a73eaeec7676046cdd74e77e803a6bac0a
7
- data.tar.gz: a7fcdaecb64a347ddc8937f8cb4a766119e0ae53941db940148442dcef8d1401b432667d999de34828792b4c4fe94a1b2f81011f086e0161a22f48139d9b7b8a
6
+ metadata.gz: e4fd7947a5b52a7d81ed6a4ec4c4604ee3c47540a4ad69b3147fd545be01d6e9ec5927b6f6accc7b95c9d4f913e4611079924fa05376facbe65c17f125a32c4d
7
+ data.tar.gz: 9105b83156fc1c09ed79f035a858b3724dafd068bd1fbabbff0b0097058e168a84074d383c6d5019e6025d9a47bb3bc6aa7381e0296e1dd21b4f5dd3c6166b07
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2023-01-27)
5
+ ------------------
6
+
7
+ * Feature - Adding support for payment term in GetOrder, CreateOrder responses.
8
+
4
9
  1.39.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.40.0
@@ -441,6 +441,7 @@ module Aws::Outposts
441
441
  # resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
442
442
  # resp.order.order_submission_date #=> Time
443
443
  # resp.order.order_fulfilled_date #=> Time
444
+ # resp.order.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR"
444
445
  #
445
446
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOrder AWS API Documentation
446
447
  #
@@ -807,6 +808,7 @@ module Aws::Outposts
807
808
  # resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
808
809
  # resp.order.order_submission_date #=> Time
809
810
  # resp.order.order_fulfilled_date #=> Time
811
+ # resp.order.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR"
810
812
  #
811
813
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrder AWS API Documentation
812
814
  #
@@ -1803,7 +1805,7 @@ module Aws::Outposts
1803
1805
  params: params,
1804
1806
  config: config)
1805
1807
  context[:gem_name] = 'aws-sdk-outposts'
1806
- context[:gem_version] = '1.39.0'
1808
+ context[:gem_version] = '1.40.0'
1807
1809
  Seahorse::Client::Request.new(handlers, context)
1808
1810
  end
1809
1811
 
@@ -483,6 +483,7 @@ module Aws::Outposts
483
483
  Order.add_member(:payment_option, Shapes::ShapeRef.new(shape: PaymentOption, location_name: "PaymentOption"))
484
484
  Order.add_member(:order_submission_date, Shapes::ShapeRef.new(shape: ISO8601Timestamp, location_name: "OrderSubmissionDate"))
485
485
  Order.add_member(:order_fulfilled_date, Shapes::ShapeRef.new(shape: ISO8601Timestamp, location_name: "OrderFulfilledDate"))
486
+ Order.add_member(:payment_term, Shapes::ShapeRef.new(shape: PaymentTerm, location_name: "PaymentTerm"))
486
487
  Order.struct_class = Types::Order
487
488
 
488
489
  OrderSummary.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostIdOnly, location_name: "OutpostId"))
@@ -1140,6 +1140,10 @@ module Aws::Outposts
1140
1140
  # The fulfillment date of the order.
1141
1141
  # @return [Time]
1142
1142
  #
1143
+ # @!attribute [rw] payment_term
1144
+ # The payment term.
1145
+ # @return [String]
1146
+ #
1143
1147
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Order AWS API Documentation
1144
1148
  #
1145
1149
  class Order < Struct.new(
@@ -1149,7 +1153,8 @@ module Aws::Outposts
1149
1153
  :line_items,
1150
1154
  :payment_option,
1151
1155
  :order_submission_date,
1152
- :order_fulfilled_date)
1156
+ :order_fulfilled_date,
1157
+ :payment_term)
1153
1158
  SENSITIVE = []
1154
1159
  include Aws::Structure
1155
1160
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-outposts/customizations'
52
52
  # @!group service
53
53
  module Aws::Outposts
54
54
 
55
- GEM_VERSION = '1.39.0'
55
+ GEM_VERSION = '1.40.0'
56
56
 
57
57
  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.39.0
4
+ version: 1.40.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: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core