aws-sdk-outposts 1.39.0 → 1.40.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +3 -1
- data/lib/aws-sdk-outposts/client_api.rb +1 -0
- data/lib/aws-sdk-outposts/types.rb +6 -1
- data/lib/aws-sdk-outposts.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0c1effd47953d9fdb7b1492e21bffe00e9c78856b546afa7acda1644c21509d
|
4
|
+
data.tar.gz: a2439e0e3c778946819a83af97cec0214414f3f49e00fd23d48cbdb34fb84d94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4fd7947a5b52a7d81ed6a4ec4c4604ee3c47540a4ad69b3147fd545be01d6e9ec5927b6f6accc7b95c9d4f913e4611079924fa05376facbe65c17f125a32c4d
|
7
|
+
data.tar.gz: 9105b83156fc1c09ed79f035a858b3724dafd068bd1fbabbff0b0097058e168a84074d383c6d5019e6025d9a47bb3bc6aa7381e0296e1dd21b4f5dd3c6166b07
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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
|
data/lib/aws-sdk-outposts.rb
CHANGED
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.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-
|
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
|