aws-sdk-outposts 1.104.0 → 1.106.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +16 -4
- data/lib/aws-sdk-outposts/client_api.rb +4 -0
- data/lib/aws-sdk-outposts/types.rb +25 -4
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 270b9a1822ebd90b9719eca7492b3395646b30fa6b5efb60db1c9e7706c2dc7d
|
|
4
|
+
data.tar.gz: 3a44cec0ee333bc1741b40f9700c7db165b4897ff39361cfcfcecf630d614253
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ef70fd7502de03a3e5489220bb2aeadb3145363599450bd1de26517be50344f8aa5732f3bbca9e42cf292a0d8356733c97c2ca239092f77f2bf6072855ff55d
|
|
7
|
+
data.tar.gz: 2e5cb07d8c3cb9780c88b33b82bf9587dd597f87e840768c315bbf86e8adb7a653596f822cb120ee4d264478e1e7c7d19ae45d0b2089758743fa33d266a089ce
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.106.0 (2026-07-02)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Tighten Outpost site ContactPhoneNumber regex to perform phone number validation.
|
|
8
|
+
|
|
9
|
+
1.105.0 (2026-06-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for creating an order from quotes.
|
|
13
|
+
|
|
4
14
|
1.104.0 (2026-06-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.106.0
|
|
@@ -528,6 +528,12 @@ module Aws::Outposts
|
|
|
528
528
|
# @option params [required, String] :outpost_identifier
|
|
529
529
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
530
530
|
#
|
|
531
|
+
# @option params [String] :quote_identifier
|
|
532
|
+
# The ID of the quote to use for the order.
|
|
533
|
+
#
|
|
534
|
+
# @option params [String] :quote_option_identifier
|
|
535
|
+
# The ID of the quote option to use for the order.
|
|
536
|
+
#
|
|
531
537
|
# @option params [Array<Types::LineItemRequest>] :line_items
|
|
532
538
|
# The line items that make up the order.
|
|
533
539
|
#
|
|
@@ -545,6 +551,8 @@ module Aws::Outposts
|
|
|
545
551
|
#
|
|
546
552
|
# resp = client.create_order({
|
|
547
553
|
# outpost_identifier: "OutpostIdentifier", # required
|
|
554
|
+
# quote_identifier: "QuoteIdentifier",
|
|
555
|
+
# quote_option_identifier: "QuoteOptionIdentifier",
|
|
548
556
|
# line_items: [
|
|
549
557
|
# {
|
|
550
558
|
# catalog_item_id: "SkuCode",
|
|
@@ -558,6 +566,8 @@ module Aws::Outposts
|
|
|
558
566
|
# @example Response structure
|
|
559
567
|
#
|
|
560
568
|
# resp.order.outpost_id #=> String
|
|
569
|
+
# resp.order.quote_identifier #=> String
|
|
570
|
+
# resp.order.quote_option_identifier #=> String
|
|
561
571
|
# resp.order.order_id #=> String
|
|
562
572
|
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
|
|
563
573
|
# resp.order.line_items #=> Array
|
|
@@ -1014,7 +1024,7 @@ module Aws::Outposts
|
|
|
1014
1024
|
# Deletes the specified quote.
|
|
1015
1025
|
#
|
|
1016
1026
|
# @option params [required, String] :quote_identifier
|
|
1017
|
-
# The ID
|
|
1027
|
+
# The ID of the quote.
|
|
1018
1028
|
#
|
|
1019
1029
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1020
1030
|
#
|
|
@@ -1228,6 +1238,8 @@ module Aws::Outposts
|
|
|
1228
1238
|
# @example Response structure
|
|
1229
1239
|
#
|
|
1230
1240
|
# resp.order.outpost_id #=> String
|
|
1241
|
+
# resp.order.quote_identifier #=> String
|
|
1242
|
+
# resp.order.quote_option_identifier #=> String
|
|
1231
1243
|
# resp.order.order_id #=> String
|
|
1232
1244
|
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
|
|
1233
1245
|
# resp.order.line_items #=> Array
|
|
@@ -1458,7 +1470,7 @@ module Aws::Outposts
|
|
|
1458
1470
|
# Gets information about the specified quote.
|
|
1459
1471
|
#
|
|
1460
1472
|
# @option params [required, String] :quote_identifier
|
|
1461
|
-
# The ID
|
|
1473
|
+
# The ID of the quote.
|
|
1462
1474
|
#
|
|
1463
1475
|
# @return [Types::GetQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1464
1476
|
#
|
|
@@ -2715,7 +2727,7 @@ module Aws::Outposts
|
|
|
2715
2727
|
# constraints, payment options, payment terms, or Outpost association.
|
|
2716
2728
|
#
|
|
2717
2729
|
# @option params [required, String] :quote_identifier
|
|
2718
|
-
# The ID
|
|
2730
|
+
# The ID of the quote.
|
|
2719
2731
|
#
|
|
2720
2732
|
# @option params [String] :outpost_identifier
|
|
2721
2733
|
# The ID or ARN of the Outpost to associate with the quote. Specify an
|
|
@@ -3170,7 +3182,7 @@ module Aws::Outposts
|
|
|
3170
3182
|
tracer: tracer
|
|
3171
3183
|
)
|
|
3172
3184
|
context[:gem_name] = 'aws-sdk-outposts'
|
|
3173
|
-
context[:gem_version] = '1.
|
|
3185
|
+
context[:gem_version] = '1.106.0'
|
|
3174
3186
|
Seahorse::Client::Request.new(handlers, context)
|
|
3175
3187
|
end
|
|
3176
3188
|
|
|
@@ -466,6 +466,8 @@ module Aws::Outposts
|
|
|
466
466
|
CountryCodeList.member = Shapes::ShapeRef.new(shape: CountryCode)
|
|
467
467
|
|
|
468
468
|
CreateOrderInput.add_member(:outpost_identifier, Shapes::ShapeRef.new(shape: OutpostIdentifier, required: true, location_name: "OutpostIdentifier"))
|
|
469
|
+
CreateOrderInput.add_member(:quote_identifier, Shapes::ShapeRef.new(shape: QuoteIdentifier, location_name: "QuoteIdentifier"))
|
|
470
|
+
CreateOrderInput.add_member(:quote_option_identifier, Shapes::ShapeRef.new(shape: QuoteOptionIdentifier, location_name: "QuoteOptionIdentifier"))
|
|
469
471
|
CreateOrderInput.add_member(:line_items, Shapes::ShapeRef.new(shape: LineItemRequestListDefinition, location_name: "LineItems"))
|
|
470
472
|
CreateOrderInput.add_member(:payment_option, Shapes::ShapeRef.new(shape: PaymentOption, required: true, location_name: "PaymentOption"))
|
|
471
473
|
CreateOrderInput.add_member(:payment_term, Shapes::ShapeRef.new(shape: PaymentTerm, location_name: "PaymentTerm"))
|
|
@@ -838,6 +840,8 @@ module Aws::Outposts
|
|
|
838
840
|
NotFoundException.struct_class = Types::NotFoundException
|
|
839
841
|
|
|
840
842
|
Order.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostIdOnly, location_name: "OutpostId"))
|
|
843
|
+
Order.add_member(:quote_identifier, Shapes::ShapeRef.new(shape: QuoteIdentifier, location_name: "QuoteIdentifier"))
|
|
844
|
+
Order.add_member(:quote_option_identifier, Shapes::ShapeRef.new(shape: QuoteOptionIdentifier, location_name: "QuoteOptionIdentifier"))
|
|
841
845
|
Order.add_member(:order_id, Shapes::ShapeRef.new(shape: OrderId, location_name: "OrderId"))
|
|
842
846
|
Order.add_member(:status, Shapes::ShapeRef.new(shape: OrderStatus, location_name: "Status"))
|
|
843
847
|
Order.add_member(:line_items, Shapes::ShapeRef.new(shape: LineItemListDefinition, location_name: "LineItems"))
|
|
@@ -30,7 +30,8 @@ module Aws::Outposts
|
|
|
30
30
|
# @return [String]
|
|
31
31
|
#
|
|
32
32
|
# @!attribute [rw] contact_phone_number
|
|
33
|
-
# The phone number of the contact
|
|
33
|
+
# The phone number of the contact, including the country code (for
|
|
34
|
+
# example, `+12065550100`).
|
|
34
35
|
# @return [String]
|
|
35
36
|
#
|
|
36
37
|
# @!attribute [rw] address_line_1
|
|
@@ -511,6 +512,14 @@ module Aws::Outposts
|
|
|
511
512
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
512
513
|
# @return [String]
|
|
513
514
|
#
|
|
515
|
+
# @!attribute [rw] quote_identifier
|
|
516
|
+
# The ID of the quote to use for the order.
|
|
517
|
+
# @return [String]
|
|
518
|
+
#
|
|
519
|
+
# @!attribute [rw] quote_option_identifier
|
|
520
|
+
# The ID of the quote option to use for the order.
|
|
521
|
+
# @return [String]
|
|
522
|
+
#
|
|
514
523
|
# @!attribute [rw] line_items
|
|
515
524
|
# The line items that make up the order.
|
|
516
525
|
# @return [Array<Types::LineItemRequest>]
|
|
@@ -527,6 +536,8 @@ module Aws::Outposts
|
|
|
527
536
|
#
|
|
528
537
|
class CreateOrderInput < Struct.new(
|
|
529
538
|
:outpost_identifier,
|
|
539
|
+
:quote_identifier,
|
|
540
|
+
:quote_option_identifier,
|
|
530
541
|
:line_items,
|
|
531
542
|
:payment_option,
|
|
532
543
|
:payment_term)
|
|
@@ -813,7 +824,7 @@ module Aws::Outposts
|
|
|
813
824
|
class DeleteOutpostOutput < Aws::EmptyStructure; end
|
|
814
825
|
|
|
815
826
|
# @!attribute [rw] quote_identifier
|
|
816
|
-
# The ID
|
|
827
|
+
# The ID of the quote.
|
|
817
828
|
# @return [String]
|
|
818
829
|
#
|
|
819
830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuoteInput AWS API Documentation
|
|
@@ -1310,7 +1321,7 @@ module Aws::Outposts
|
|
|
1310
1321
|
end
|
|
1311
1322
|
|
|
1312
1323
|
# @!attribute [rw] quote_identifier
|
|
1313
|
-
# The ID
|
|
1324
|
+
# The ID of the quote.
|
|
1314
1325
|
# @return [String]
|
|
1315
1326
|
#
|
|
1316
1327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuoteInput AWS API Documentation
|
|
@@ -2116,6 +2127,14 @@ module Aws::Outposts
|
|
|
2116
2127
|
# The ID of the Outpost in the order.
|
|
2117
2128
|
# @return [String]
|
|
2118
2129
|
#
|
|
2130
|
+
# @!attribute [rw] quote_identifier
|
|
2131
|
+
# The ID of the quote associated with the order.
|
|
2132
|
+
# @return [String]
|
|
2133
|
+
#
|
|
2134
|
+
# @!attribute [rw] quote_option_identifier
|
|
2135
|
+
# The ID of the quote option associated with the order.
|
|
2136
|
+
# @return [String]
|
|
2137
|
+
#
|
|
2119
2138
|
# @!attribute [rw] order_id
|
|
2120
2139
|
# The ID of the order.
|
|
2121
2140
|
# @return [String]
|
|
@@ -2170,6 +2189,8 @@ module Aws::Outposts
|
|
|
2170
2189
|
#
|
|
2171
2190
|
class Order < Struct.new(
|
|
2172
2191
|
:outpost_id,
|
|
2192
|
+
:quote_identifier,
|
|
2193
|
+
:quote_option_identifier,
|
|
2173
2194
|
:order_id,
|
|
2174
2195
|
:status,
|
|
2175
2196
|
:line_items,
|
|
@@ -3400,7 +3421,7 @@ module Aws::Outposts
|
|
|
3400
3421
|
end
|
|
3401
3422
|
|
|
3402
3423
|
# @!attribute [rw] quote_identifier
|
|
3403
|
-
# The ID
|
|
3424
|
+
# The ID of the quote.
|
|
3404
3425
|
# @return [String]
|
|
3405
3426
|
#
|
|
3406
3427
|
# @!attribute [rw] outpost_identifier
|
data/lib/aws-sdk-outposts.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -104,6 +104,8 @@ module Aws
|
|
|
104
104
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_order-instance_method
|
|
105
105
|
def create_order: (
|
|
106
106
|
outpost_identifier: ::String,
|
|
107
|
+
?quote_identifier: ::String,
|
|
108
|
+
?quote_option_identifier: ::String,
|
|
107
109
|
?line_items: Array[
|
|
108
110
|
{
|
|
109
111
|
catalog_item_id: ::String?,
|
data/sig/types.rbs
CHANGED
|
@@ -145,6 +145,8 @@ module Aws::Outposts
|
|
|
145
145
|
|
|
146
146
|
class CreateOrderInput
|
|
147
147
|
attr_accessor outpost_identifier: ::String
|
|
148
|
+
attr_accessor quote_identifier: ::String
|
|
149
|
+
attr_accessor quote_option_identifier: ::String
|
|
148
150
|
attr_accessor line_items: ::Array[Types::LineItemRequest]
|
|
149
151
|
attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
|
|
150
152
|
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
|
|
@@ -631,6 +633,8 @@ module Aws::Outposts
|
|
|
631
633
|
|
|
632
634
|
class Order
|
|
633
635
|
attr_accessor outpost_id: ::String
|
|
636
|
+
attr_accessor quote_identifier: ::String
|
|
637
|
+
attr_accessor quote_option_identifier: ::String
|
|
634
638
|
attr_accessor order_id: ::String
|
|
635
639
|
attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "DELIVERED" | "COMPLETED" | "ERROR")
|
|
636
640
|
attr_accessor line_items: ::Array[Types::LineItem]
|