aws-sdk-outposts 1.61.0 → 1.63.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: ca2f9d07939c8c648a197c865401da87d252a01581ce6c72e1079ce3420f0e62
4
- data.tar.gz: 9dde1e05212207a817898f8d765d1fcc9043f70c14fa4018e703e1f5a7927e6d
3
+ metadata.gz: 14a9de90ac7f89ad0ae6c146b9b4bcba4735f455d5ff0a067ca831949f061048
4
+ data.tar.gz: e51100e209c4c8837579fef5cf10af2e6b425f4260eaf0bf6ed826416e3589bc
5
5
  SHA512:
6
- metadata.gz: 334d85446955d172560be9020c6d84d10fd51e190d4aa4d14f5ff69c445f67a1d0536e71f6cd6fab279ebce101f958fa21b6209680fe9f5c81baef0805c315a4
7
- data.tar.gz: 606ba857718840f58f15c73898a6b1ba0af3cbe5ce730a602c273dd8425d231595da97185ee6f0e30f34f9374ec226e99dbb60e477b6fec7a5cca73c3cb4acca
6
+ metadata.gz: c0922e2c8052013dde672c97cd9e58e17809fe8d2022fb9348562845cf8b2801df8f43f08b0073c356d64ed12e8ce3c39c2931963d49918579670709950572bb
7
+ data.tar.gz: 0be3e7ccb3e049892f53111932afcba76108e05a99e2e81d3945a8b1b25ba014476558b5fa39d500e4631d17d344976515ae79bf59c7683a259bc894d5058b61
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.62.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.61.0 (2024-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.63.0
@@ -312,6 +312,15 @@ module Aws::Outposts
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -1025,6 +1034,7 @@ module Aws::Outposts
1025
1034
  #
1026
1035
  # resp.instance_types #=> Array
1027
1036
  # resp.instance_types[0].instance_type #=> String
1037
+ # resp.instance_types[0].vcp_us #=> Integer
1028
1038
  # resp.next_token #=> String
1029
1039
  # resp.outpost_id #=> String
1030
1040
  # resp.outpost_arn #=> String
@@ -1075,6 +1085,7 @@ module Aws::Outposts
1075
1085
  #
1076
1086
  # resp.instance_types #=> Array
1077
1087
  # resp.instance_types[0].instance_type #=> String
1088
+ # resp.instance_types[0].vcp_us #=> Integer
1078
1089
  # resp.next_token #=> String
1079
1090
  #
1080
1091
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpostSupportedInstanceTypes AWS API Documentation
@@ -2118,7 +2129,7 @@ module Aws::Outposts
2118
2129
  params: params,
2119
2130
  config: config)
2120
2131
  context[:gem_name] = 'aws-sdk-outposts'
2121
- context[:gem_version] = '1.61.0'
2132
+ context[:gem_version] = '1.63.0'
2122
2133
  Seahorse::Client::Request.new(handlers, context)
2123
2134
  end
2124
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.61.0'
55
+ GEM_VERSION = '1.63.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
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.61.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-06-28 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Outposts (Outposts). This gem is part of
48
48
  the AWS SDK for Ruby.
49
49
  email: