aws-sdk-outposts 1.62.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 +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 +2 -0
- data/lib/aws-sdk-outposts/types.rb +6 -1
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/types.rbs +1 -0
- 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: 14a9de90ac7f89ad0ae6c146b9b4bcba4735f455d5ff0a067ca831949f061048
|
|
4
|
+
data.tar.gz: e51100e209c4c8837579fef5cf10af2e6b425f4260eaf0bf6ed826416e3589bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0922e2c8052013dde672c97cd9e58e17809fe8d2022fb9348562845cf8b2801df8f43f08b0073c356d64ed12e8ce3c39c2931963d49918579670709950572bb
|
|
7
|
+
data.tar.gz: 0be3e7ccb3e049892f53111932afcba76108e05a99e2e81d3945a8b1b25ba014476558b5fa39d500e4631d17d344976515ae79bf59c7683a259bc894d5058b61
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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.
|
|
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
|
data/lib/aws-sdk-outposts.rb
CHANGED
data/sig/types.rbs
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.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-
|
|
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
|