aws-sdk-outposts 1.62.0 → 1.63.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: 3a71c19518bba4a630e9aac791303d95f2d739e80a05be1c57cf870e434a2072
4
- data.tar.gz: d7708a1f8c34c8b47502076d9e75e03040f3ef196bb523332bd638838b42d140
3
+ metadata.gz: 14a9de90ac7f89ad0ae6c146b9b4bcba4735f455d5ff0a067ca831949f061048
4
+ data.tar.gz: e51100e209c4c8837579fef5cf10af2e6b425f4260eaf0bf6ed826416e3589bc
5
5
  SHA512:
6
- metadata.gz: 92e0fbd2abec69c85d2e4097e7fa7a7879629bfa3edfa00a01faf32d82bb95e4e2a83c2a441308ff3577e18464774b6af9e495325087755ef2ad3e6b519519c2
7
- data.tar.gz: 685b630c5e2e117f8665b98c3b154b346b6609457b75322b451888668022719afbe273bbc29fd96c70f14eb06715ee2daa4a72cf99b1e75cefede938c34e7e4c
6
+ metadata.gz: c0922e2c8052013dde672c97cd9e58e17809fe8d2022fb9348562845cf8b2801df8f43f08b0073c356d64ed12e8ce3c39c2931963d49918579670709950572bb
7
+ data.tar.gz: 0be3e7ccb3e049892f53111932afcba76108e05a99e2e81d3945a8b1b25ba014476558b5fa39d500e4631d17d344976515ae79bf59c7683a259bc894d5058b61
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2024-07-25)
5
+ ------------------
6
+
7
+ * Feature - Adding default vCPU information to GetOutpostSupportedInstanceTypes and GetOutpostInstanceTypes responses
8
+
4
9
  1.62.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -1034,6 +1034,7 @@ module Aws::Outposts
1034
1034
  #
1035
1035
  # resp.instance_types #=> Array
1036
1036
  # resp.instance_types[0].instance_type #=> String
1037
+ # resp.instance_types[0].vcp_us #=> Integer
1037
1038
  # resp.next_token #=> String
1038
1039
  # resp.outpost_id #=> String
1039
1040
  # resp.outpost_arn #=> String
@@ -1084,6 +1085,7 @@ module Aws::Outposts
1084
1085
  #
1085
1086
  # resp.instance_types #=> Array
1086
1087
  # resp.instance_types[0].instance_type #=> String
1088
+ # resp.instance_types[0].vcp_us #=> Integer
1087
1089
  # resp.next_token #=> String
1088
1090
  #
1089
1091
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpostSupportedInstanceTypes AWS API Documentation
@@ -2127,7 +2129,7 @@ module Aws::Outposts
2127
2129
  params: params,
2128
2130
  config: config)
2129
2131
  context[:gem_name] = 'aws-sdk-outposts'
2130
- context[:gem_version] = '1.62.0'
2132
+ context[:gem_version] = '1.63.0'
2131
2133
  Seahorse::Client::Request.new(handlers, context)
2132
2134
  end
2133
2135
 
@@ -219,6 +219,7 @@ module Aws::Outposts
219
219
  UpdateSiteRackPhysicalPropertiesOutput = Shapes::StructureShape.new(name: 'UpdateSiteRackPhysicalPropertiesOutput')
220
220
  UplinkCount = Shapes::StringShape.new(name: 'UplinkCount')
221
221
  UplinkGbps = Shapes::StringShape.new(name: 'UplinkGbps')
222
+ VCPUCount = Shapes::IntegerShape.new(name: 'VCPUCount')
222
223
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
223
224
  WireGuardPublicKey = Shapes::StringShape.new(name: 'WireGuardPublicKey')
224
225
  outpostListDefinition = Shapes::ListShape.new(name: 'outpostListDefinition')
@@ -459,6 +460,7 @@ module Aws::Outposts
459
460
  InstanceTypeCapacity.struct_class = Types::InstanceTypeCapacity
460
461
 
461
462
  InstanceTypeItem.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
463
+ InstanceTypeItem.add_member(:vcp_us, Shapes::ShapeRef.new(shape: VCPUCount, location_name: "VCPUs"))
462
464
  InstanceTypeItem.struct_class = Types::InstanceTypeItem
463
465
 
464
466
  InstanceTypeListDefinition.member = Shapes::ShapeRef.new(shape: InstanceTypeItem)
@@ -968,10 +968,15 @@ module Aws::Outposts
968
968
  # The instance type.
969
969
  # @return [String]
970
970
  #
971
+ # @!attribute [rw] vcp_us
972
+ # The number of default VCPUs in an instance type.
973
+ # @return [Integer]
974
+ #
971
975
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/InstanceTypeItem AWS API Documentation
972
976
  #
973
977
  class InstanceTypeItem < Struct.new(
974
- :instance_type)
978
+ :instance_type,
979
+ :vcp_us)
975
980
  SENSITIVE = []
976
981
  include Aws::Structure
977
982
  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.62.0'
55
+ GEM_VERSION = '1.63.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -300,6 +300,7 @@ module Aws::Outposts
300
300
 
301
301
  class InstanceTypeItem
302
302
  attr_accessor instance_type: ::String
303
+ attr_accessor vcp_us: ::Integer
303
304
  SENSITIVE: []
304
305
  end
305
306
 
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.62.0
4
+ version: 1.63.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core