aws-sdk-outposts 1.103.0 → 1.105.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.
@@ -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.103.0'
57
+ GEM_VERSION = '1.105.0'
58
58
 
59
59
  end
60
60
 
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?,
@@ -131,6 +133,33 @@ module Aws
131
133
  ) -> _CreateOutpostResponseSuccess
132
134
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOutpostResponseSuccess
133
135
 
136
+ interface _CreateQuoteResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateQuoteOutput]
138
+ def quote: () -> Types::Quote
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_quote-instance_method
141
+ def create_quote: (
142
+ ?outpost_identifier: ::String,
143
+ country_code: ::String,
144
+ requested_capacities: Array[
145
+ {
146
+ quote_capacity_type: ("EC2" | "EBS" | "S3")?,
147
+ unit: ::String?,
148
+ quantity: ::Float?
149
+ }
150
+ ],
151
+ ?requested_constraints: Array[
152
+ {
153
+ quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS")?,
154
+ value: ::String?
155
+ }
156
+ ],
157
+ ?requested_payment_options: Array[("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")],
158
+ ?requested_payment_terms: Array[("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")],
159
+ ?description: ::String
160
+ ) -> _CreateQuoteResponseSuccess
161
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateQuoteResponseSuccess
162
+
134
163
  interface _CreateRenewalResponseSuccess
135
164
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateRenewalOutput]
136
165
  def payment_option: () -> ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
@@ -138,6 +167,7 @@ module Aws
138
167
  def outpost_id: () -> ::String
139
168
  def upfront_price: () -> ::Float
140
169
  def monthly_recurring_price: () -> ::Float
170
+ def currency: () -> ("USD")
141
171
  end
142
172
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_renewal-instance_method
143
173
  def create_renewal: (
@@ -183,6 +213,15 @@ module Aws
183
213
  ) -> _DeleteOutpostResponseSuccess
184
214
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOutpostResponseSuccess
185
215
 
216
+ interface _DeleteQuoteResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteQuoteOutput]
218
+ end
219
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#delete_quote-instance_method
220
+ def delete_quote: (
221
+ quote_identifier: ::String
222
+ ) -> _DeleteQuoteResponseSuccess
223
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteQuoteResponseSuccess
224
+
186
225
  interface _DeleteSiteResponseSuccess
187
226
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSiteOutput]
188
227
  end
@@ -302,6 +341,16 @@ module Aws
302
341
  ) -> _GetOutpostSupportedInstanceTypesResponseSuccess
303
342
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOutpostSupportedInstanceTypesResponseSuccess
304
343
 
344
+ interface _GetQuoteResponseSuccess
345
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetQuoteOutput]
346
+ def quote: () -> Types::Quote
347
+ end
348
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_quote-instance_method
349
+ def get_quote: (
350
+ quote_identifier: ::String
351
+ ) -> _GetQuoteResponseSuccess
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetQuoteResponseSuccess
353
+
305
354
  interface _GetRenewalPricingResponseSuccess
306
355
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRenewalPricingOutput]
307
356
  def pricing_result: () -> ("PRICED" | "UNABLE_TO_PRICE")
@@ -412,6 +461,19 @@ module Aws
412
461
  ) -> _ListCatalogItemsResponseSuccess
413
462
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCatalogItemsResponseSuccess
414
463
 
464
+ interface _ListOrderableInstanceTypesResponseSuccess
465
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOrderableInstanceTypesOutput]
466
+ def instance_types: () -> ::Array[Types::DetailedInstanceTypeItem]
467
+ def next_token: () -> ::String
468
+ end
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_orderable_instance_types-instance_method
470
+ def list_orderable_instance_types: (
471
+ ?outpost_generation_filter: ("GENERATION_2" | "GENERATION_1"),
472
+ ?max_results: ::Integer,
473
+ ?next_token: ::String
474
+ ) -> _ListOrderableInstanceTypesResponseSuccess
475
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOrderableInstanceTypesResponseSuccess
476
+
415
477
  interface _ListOrdersResponseSuccess
416
478
  include ::Seahorse::Client::_ResponseSuccess[Types::ListOrdersOutput]
417
479
  def orders: () -> ::Array[Types::OrderSummary]
@@ -440,6 +502,18 @@ module Aws
440
502
  ) -> _ListOutpostsResponseSuccess
441
503
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOutpostsResponseSuccess
442
504
 
505
+ interface _ListQuotesResponseSuccess
506
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListQuotesOutput]
507
+ def quotes: () -> ::Array[Types::QuoteSummary]
508
+ def next_token: () -> ::String
509
+ end
510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_quotes-instance_method
511
+ def list_quotes: (
512
+ ?next_token: ::String,
513
+ ?max_results: ::Integer
514
+ ) -> _ListQuotesResponseSuccess
515
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListQuotesResponseSuccess
516
+
443
517
  interface _ListSitesResponseSuccess
444
518
  include ::Seahorse::Client::_ResponseSuccess[Types::ListSitesOutput]
445
519
  def sites: () -> ::Array[Types::Site]
@@ -561,6 +635,34 @@ module Aws
561
635
  ) -> _UpdateOutpostResponseSuccess
562
636
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOutpostResponseSuccess
563
637
 
638
+ interface _UpdateQuoteResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateQuoteOutput]
640
+ def quote: () -> Types::Quote
641
+ end
642
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#update_quote-instance_method
643
+ def update_quote: (
644
+ quote_identifier: ::String,
645
+ ?outpost_identifier: ::String,
646
+ ?country_code: ::String,
647
+ ?requested_capacities: Array[
648
+ {
649
+ quote_capacity_type: ("EC2" | "EBS" | "S3")?,
650
+ unit: ::String?,
651
+ quantity: ::Float?
652
+ }
653
+ ],
654
+ ?requested_constraints: Array[
655
+ {
656
+ quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS")?,
657
+ value: ::String?
658
+ }
659
+ ],
660
+ ?requested_payment_options: Array[("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")],
661
+ ?requested_payment_terms: Array[("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")],
662
+ ?description: ::String
663
+ ) -> _UpdateQuoteResponseSuccess
664
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateQuoteResponseSuccess
665
+
564
666
  interface _UpdateSiteResponseSuccess
565
667
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSiteOutput]
566
668
  def site: () -> Types::Site
data/sig/types.rbs CHANGED
@@ -81,6 +81,13 @@ module Aws::Outposts
81
81
  class CancelOrderOutput < Aws::EmptyStructure
82
82
  end
83
83
 
84
+ class CapacitySummary
85
+ attr_accessor existing_capacities: ::Array[Types::QuoteCapacity]
86
+ attr_accessor final_capacities: ::Array[Types::QuoteCapacity]
87
+ attr_accessor capacity_change: ::Array[Types::QuoteCapacity]
88
+ SENSITIVE: []
89
+ end
90
+
84
91
  class CapacityTaskFailure
85
92
  attr_accessor reason: ::String
86
93
  attr_accessor type: ("UNSUPPORTED_CAPACITY_CONFIGURATION" | "UNEXPECTED_ASSET_STATE" | "BLOCKING_INSTANCES_NOT_EVACUATED" | "INTERNAL_SERVER_ERROR" | "RESOURCE_NOT_FOUND")
@@ -138,6 +145,8 @@ module Aws::Outposts
138
145
 
139
146
  class CreateOrderInput
140
147
  attr_accessor outpost_identifier: ::String
148
+ attr_accessor quote_identifier: ::String
149
+ attr_accessor quote_option_identifier: ::String
141
150
  attr_accessor line_items: ::Array[Types::LineItemRequest]
142
151
  attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
143
152
  attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
@@ -165,6 +174,22 @@ module Aws::Outposts
165
174
  SENSITIVE: []
166
175
  end
167
176
 
177
+ class CreateQuoteInput
178
+ attr_accessor outpost_identifier: ::String
179
+ attr_accessor country_code: ::String
180
+ attr_accessor requested_capacities: ::Array[Types::QuoteCapacity]
181
+ attr_accessor requested_constraints: ::Array[Types::QuoteConstraint]
182
+ attr_accessor requested_payment_options: ::Array[("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")]
183
+ attr_accessor requested_payment_terms: ::Array[("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")]
184
+ attr_accessor description: ::String
185
+ SENSITIVE: [:description]
186
+ end
187
+
188
+ class CreateQuoteOutput
189
+ attr_accessor quote: Types::Quote
190
+ SENSITIVE: []
191
+ end
192
+
168
193
  class CreateRenewalInput
169
194
  attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
170
195
  attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
@@ -179,6 +204,7 @@ module Aws::Outposts
179
204
  attr_accessor outpost_id: ::String
180
205
  attr_accessor upfront_price: ::Float
181
206
  attr_accessor monthly_recurring_price: ::Float
207
+ attr_accessor currency: ("USD")
182
208
  SENSITIVE: []
183
209
  end
184
210
 
@@ -206,6 +232,14 @@ module Aws::Outposts
206
232
  class DeleteOutpostOutput < Aws::EmptyStructure
207
233
  end
208
234
 
235
+ class DeleteQuoteInput
236
+ attr_accessor quote_identifier: ::String
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class DeleteQuoteOutput < Aws::EmptyStructure
241
+ end
242
+
209
243
  class DeleteSiteInput
210
244
  attr_accessor site_id: ::String
211
245
  SENSITIVE: []
@@ -214,6 +248,15 @@ module Aws::Outposts
214
248
  class DeleteSiteOutput < Aws::EmptyStructure
215
249
  end
216
250
 
251
+ class DetailedInstanceTypeItem
252
+ attr_accessor instance_type: ::String
253
+ attr_accessor vcp_us: ::Integer
254
+ attr_accessor memory_in_mib: ::Integer
255
+ attr_accessor network_performance: ::String
256
+ attr_accessor form_factor_configs: ::Array[Types::FormFactorConfig]
257
+ SENSITIVE: []
258
+ end
259
+
217
260
  class EC2Capacity
218
261
  attr_accessor family: ::String
219
262
  attr_accessor max_size: ::String
@@ -221,6 +264,12 @@ module Aws::Outposts
221
264
  SENSITIVE: []
222
265
  end
223
266
 
267
+ class FormFactorConfig
268
+ attr_accessor form_factor: ("RACK" | "SERVER")
269
+ attr_accessor outpost_generation: ("GENERATION_2" | "GENERATION_1")
270
+ SENSITIVE: []
271
+ end
272
+
224
273
  class GetCapacityTaskInput
225
274
  attr_accessor capacity_task_id: ::String
226
275
  attr_accessor outpost_identifier: ::String
@@ -331,6 +380,16 @@ module Aws::Outposts
331
380
  SENSITIVE: []
332
381
  end
333
382
 
383
+ class GetQuoteInput
384
+ attr_accessor quote_identifier: ::String
385
+ SENSITIVE: []
386
+ end
387
+
388
+ class GetQuoteOutput
389
+ attr_accessor quote: Types::Quote
390
+ SENSITIVE: []
391
+ end
392
+
334
393
  class GetRenewalPricingInput
335
394
  attr_accessor outpost_identifier: ::String
336
395
  SENSITIVE: []
@@ -489,6 +548,19 @@ module Aws::Outposts
489
548
  SENSITIVE: []
490
549
  end
491
550
 
551
+ class ListOrderableInstanceTypesInput
552
+ attr_accessor outpost_generation_filter: ("GENERATION_2" | "GENERATION_1")
553
+ attr_accessor max_results: ::Integer
554
+ attr_accessor next_token: ::String
555
+ SENSITIVE: []
556
+ end
557
+
558
+ class ListOrderableInstanceTypesOutput
559
+ attr_accessor instance_types: ::Array[Types::DetailedInstanceTypeItem]
560
+ attr_accessor next_token: ::String
561
+ SENSITIVE: []
562
+ end
563
+
492
564
  class ListOrdersInput
493
565
  attr_accessor outpost_identifier_filter: ::String
494
566
  attr_accessor next_token: ::String
@@ -517,6 +589,18 @@ module Aws::Outposts
517
589
  SENSITIVE: []
518
590
  end
519
591
 
592
+ class ListQuotesInput
593
+ attr_accessor next_token: ::String
594
+ attr_accessor max_results: ::Integer
595
+ SENSITIVE: []
596
+ end
597
+
598
+ class ListQuotesOutput
599
+ attr_accessor quotes: ::Array[Types::QuoteSummary]
600
+ attr_accessor next_token: ::String
601
+ SENSITIVE: []
602
+ end
603
+
520
604
  class ListSitesInput
521
605
  attr_accessor next_token: ::String
522
606
  attr_accessor max_results: ::Integer
@@ -549,6 +633,8 @@ module Aws::Outposts
549
633
 
550
634
  class Order
551
635
  attr_accessor outpost_id: ::String
636
+ attr_accessor quote_identifier: ::String
637
+ attr_accessor quote_option_identifier: ::String
552
638
  attr_accessor order_id: ::String
553
639
  attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "DELIVERED" | "COMPLETED" | "ERROR")
554
640
  attr_accessor line_items: ::Array[Types::LineItem]
@@ -571,6 +657,13 @@ module Aws::Outposts
571
657
  SENSITIVE: []
572
658
  end
573
659
 
660
+ class OrderingRequirement
661
+ attr_accessor status_message: ::String
662
+ attr_accessor ordering_requirement_type: ("OUTPOST_ACTIVE_CHECK_ERROR" | "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR" | "VALID_ZIP_CODE_CHECK_ERROR" | "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR" | "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR" | "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR" | "COUNTRY_CODE_MISMATCH_CHECK_ERROR" | "OUTPOST_GENERATION_MISMATCH_ERROR" | "UNSUPPORTED" | "OUTPOST_ID_MISSING_ON_QUOTE_ERROR" | "ENTERPRISE_SUPPORT_ERROR" | "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR" | "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR" | "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR" | "OUTPOST_STATE_CHANGED_ERROR" | "OUTPOST_NOT_FOUND_ERROR" | "OUTPOST_RENEWAL_REQUIRED_ERROR")
663
+ attr_accessor status: ("PASS" | "FAIL" | "EXEMPT")
664
+ SENSITIVE: []
665
+ end
666
+
574
667
  class Outpost
575
668
  attr_accessor outpost_id: ::String
576
669
  attr_accessor owner_id: ::String
@@ -593,6 +686,75 @@ module Aws::Outposts
593
686
  SENSITIVE: []
594
687
  end
595
688
 
689
+ class Quote
690
+ attr_accessor quote_id: ::String
691
+ attr_accessor account_id: ::String
692
+ attr_accessor quote_status: ("CREATED" | "ORDER_SUBMITTED" | "EXPIRED")
693
+ attr_accessor status_message: ::String
694
+ attr_accessor outpost_arn: ::String
695
+ attr_accessor country_code: ::String
696
+ attr_accessor requested_capacities: ::Array[Types::QuoteCapacity]
697
+ attr_accessor requested_constraints: ::Array[Types::QuoteConstraint]
698
+ attr_accessor requested_payment_options: ::Array[("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")]
699
+ attr_accessor requested_payment_terms: ::Array[("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")]
700
+ attr_accessor quote_options: ::Array[Types::QuoteOption]
701
+ attr_accessor ordering_requirements: ::Array[Types::OrderingRequirement]
702
+ attr_accessor submitted_order_id: ::String
703
+ attr_accessor created_date: ::Time
704
+ attr_accessor expiration_date: ::Time
705
+ attr_accessor description: ::String
706
+ SENSITIVE: [:description]
707
+ end
708
+
709
+ class QuoteCapacity
710
+ attr_accessor quote_capacity_type: ("EC2" | "EBS" | "S3")
711
+ attr_accessor unit: ::String
712
+ attr_accessor quantity: ::Float
713
+ SENSITIVE: []
714
+ end
715
+
716
+ class QuoteConstraint
717
+ attr_accessor quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS")
718
+ attr_accessor value: ::String
719
+ SENSITIVE: []
720
+ end
721
+
722
+ class QuoteOption
723
+ attr_accessor quote_option_identifier: ::String
724
+ attr_accessor capacities: ::Array[Types::QuoteCapacity]
725
+ attr_accessor capacity_summary: Types::CapacitySummary
726
+ attr_accessor specifications: ::Array[Types::QuoteSpecification]
727
+ attr_accessor pricing_options: ::Array[Types::PricingOption]
728
+ SENSITIVE: []
729
+ end
730
+
731
+ class QuoteSpecification
732
+ attr_accessor quote_specification_type: ("UPDATED_RACK" | "NEW_RACK" | "EXISTING_RACK" | "SERVER")
733
+ attr_accessor existing_rack_specification_details: Types::RackSpecificationDetails
734
+ attr_accessor final_rack_specification_details: Types::RackSpecificationDetails
735
+ attr_accessor server_specification_details: Types::ServerSpecificationDetails
736
+ SENSITIVE: []
737
+ end
738
+
739
+ class QuoteSummary
740
+ attr_accessor quote_id: ::String
741
+ attr_accessor account_id: ::String
742
+ attr_accessor quote_status: ("CREATED" | "ORDER_SUBMITTED" | "EXPIRED")
743
+ attr_accessor status_message: ::String
744
+ attr_accessor outpost_arn: ::String
745
+ attr_accessor country_code: ::String
746
+ attr_accessor requested_capacities: ::Array[Types::QuoteCapacity]
747
+ attr_accessor requested_constraints: ::Array[Types::QuoteConstraint]
748
+ attr_accessor requested_payment_options: ::Array[("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")]
749
+ attr_accessor requested_payment_terms: ::Array[("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")]
750
+ attr_accessor quote_options: ::Array[Types::QuoteOption]
751
+ attr_accessor submitted_order_id: ::String
752
+ attr_accessor created_date: ::Time
753
+ attr_accessor expiration_date: ::Time
754
+ attr_accessor description: ::String
755
+ SENSITIVE: [:description]
756
+ end
757
+
596
758
  class RackPhysicalProperties
597
759
  attr_accessor power_draw_kva: ("POWER_5_KVA" | "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA")
598
760
  attr_accessor power_phase: ("SINGLE_PHASE" | "THREE_PHASE")
@@ -606,6 +768,30 @@ module Aws::Outposts
606
768
  SENSITIVE: []
607
769
  end
608
770
 
771
+ class RackSpecificationDetails
772
+ attr_accessor rack_id: ::String
773
+ attr_accessor rack_use: ("NETWORKING" | "COMPUTE")
774
+ attr_accessor rack_power_draw_kva: ::Float
775
+ attr_accessor rack_weight_lbs: ::Float
776
+ attr_accessor rack_height_inches: ::Float
777
+ attr_accessor rack_width_inches: ::Float
778
+ attr_accessor rack_depth_inches: ::Float
779
+ attr_accessor rack_unit_height: ("HEIGHT_42U" | "HEIGHT_2U" | "HEIGHT_1U")
780
+ attr_accessor ec2_capacities: ::Array[Types::EC2Capacity]
781
+ SENSITIVE: []
782
+ end
783
+
784
+ class ServerSpecificationDetails
785
+ attr_accessor server_power_draw_kva: ::Float
786
+ attr_accessor server_weight_lbs: ::Float
787
+ attr_accessor server_height_inches: ::Float
788
+ attr_accessor server_width_inches: ::Float
789
+ attr_accessor server_depth_inches: ::Float
790
+ attr_accessor rack_unit_height: ("HEIGHT_42U" | "HEIGHT_2U" | "HEIGHT_1U")
791
+ attr_accessor ec2_capacities: ::Array[Types::EC2Capacity]
792
+ SENSITIVE: []
793
+ end
794
+
609
795
  class ServiceQuotaExceededException
610
796
  attr_accessor message: ::String
611
797
  SENSITIVE: []
@@ -693,6 +879,7 @@ module Aws::Outposts
693
879
  attr_accessor order_ids: ::Array[::String]
694
880
  attr_accessor begin_date: ::Time
695
881
  attr_accessor end_date: ::Time
882
+ attr_accessor currency: ("USD")
696
883
  attr_accessor monthly_recurring_price: ::Float
697
884
  attr_accessor upfront_price: ::Float
698
885
  SENSITIVE: []
@@ -703,6 +890,7 @@ module Aws::Outposts
703
890
  attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")
704
891
  attr_accessor upfront_price: ::Float
705
892
  attr_accessor monthly_recurring_price: ::Float
893
+ attr_accessor currency: ("USD")
706
894
  SENSITIVE: []
707
895
  end
708
896
 
@@ -737,6 +925,23 @@ module Aws::Outposts
737
925
  SENSITIVE: []
738
926
  end
739
927
 
928
+ class UpdateQuoteInput
929
+ attr_accessor quote_identifier: ::String
930
+ attr_accessor outpost_identifier: ::String
931
+ attr_accessor country_code: ::String
932
+ attr_accessor requested_capacities: ::Array[Types::QuoteCapacity]
933
+ attr_accessor requested_constraints: ::Array[Types::QuoteConstraint]
934
+ attr_accessor requested_payment_options: ::Array[("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")]
935
+ attr_accessor requested_payment_terms: ::Array[("THREE_YEARS" | "ONE_YEAR" | "FIVE_YEARS")]
936
+ attr_accessor description: ::String
937
+ SENSITIVE: [:description]
938
+ end
939
+
940
+ class UpdateQuoteOutput
941
+ attr_accessor quote: Types::Quote
942
+ SENSITIVE: []
943
+ end
944
+
740
945
  class UpdateSiteAddressInput
741
946
  attr_accessor site_id: ::String
742
947
  attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-outposts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.103.0
4
+ version: 1.105.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services