aws-sdk-outposts 1.24.0 → 1.25.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 +11 -2
- data/lib/aws-sdk-outposts/client_api.rb +3 -0
- data/lib/aws-sdk-outposts/types.rb +13 -2
- data/lib/aws-sdk-outposts.rb +1 -1
- 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: 8b1549dfe48146459ee3cae896b1fbb0b10b3deea33919e9733a327ea2cdf67d
|
4
|
+
data.tar.gz: c9a0354011e7c0ba41ba382fe57b7c8dd0da5bf72cb3623b65097691e3461ba7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ead2c475f4837230d458ee8b013363e2650aec1730baa69f517c27ba0e0ef0082279adee6c49c8fb4350706184f7d6394c513028973ce097fa3f84671f5361c
|
7
|
+
data.tar.gz: 9080046c02d376b8975b1de027275adf3a1906d6dc6976ea6c2da1a1e22d2939f8a612f0954fe8c00e223ec5a6c2ae21ea4b9b131bacfa10978eda54897a1bbd
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -119,7 +119,9 @@ module Aws::Outposts
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -435,6 +437,9 @@ module Aws::Outposts
|
|
435
437
|
# @option params [Hash<String,String>] :tags
|
436
438
|
# The tags to apply to the Outpost.
|
437
439
|
#
|
440
|
+
# @option params [String] :supported_hardware_type
|
441
|
+
# The type of hardware for this Outpost.
|
442
|
+
#
|
438
443
|
# @return [Types::CreateOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
439
444
|
#
|
440
445
|
# * {Types::CreateOutpostOutput#outpost #outpost} => Types::Outpost
|
@@ -450,6 +455,7 @@ module Aws::Outposts
|
|
450
455
|
# tags: {
|
451
456
|
# "TagKey" => "TagValue",
|
452
457
|
# },
|
458
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
453
459
|
# })
|
454
460
|
#
|
455
461
|
# @example Response structure
|
@@ -466,6 +472,7 @@ module Aws::Outposts
|
|
466
472
|
# resp.outpost.tags #=> Hash
|
467
473
|
# resp.outpost.tags["TagKey"] #=> String
|
468
474
|
# resp.outpost.site_arn #=> String
|
475
|
+
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
469
476
|
#
|
470
477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpost AWS API Documentation
|
471
478
|
#
|
@@ -745,6 +752,7 @@ module Aws::Outposts
|
|
745
752
|
# resp.outpost.tags #=> Hash
|
746
753
|
# resp.outpost.tags["TagKey"] #=> String
|
747
754
|
# resp.outpost.site_arn #=> String
|
755
|
+
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
748
756
|
#
|
749
757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpost AWS API Documentation
|
750
758
|
#
|
@@ -1087,6 +1095,7 @@ module Aws::Outposts
|
|
1087
1095
|
# resp.outposts[0].tags #=> Hash
|
1088
1096
|
# resp.outposts[0].tags["TagKey"] #=> String
|
1089
1097
|
# resp.outposts[0].site_arn #=> String
|
1098
|
+
# resp.outposts[0].supported_hardware_type #=> String, one of "RACK", "SERVER"
|
1090
1099
|
# resp.next_token #=> String
|
1091
1100
|
#
|
1092
1101
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutposts AWS API Documentation
|
@@ -1536,7 +1545,7 @@ module Aws::Outposts
|
|
1536
1545
|
params: params,
|
1537
1546
|
config: config)
|
1538
1547
|
context[:gem_name] = 'aws-sdk-outposts'
|
1539
|
-
context[:gem_version] = '1.
|
1548
|
+
context[:gem_version] = '1.25.0'
|
1540
1549
|
Seahorse::Client::Request.new(handlers, context)
|
1541
1550
|
end
|
1542
1551
|
|
@@ -133,6 +133,7 @@ module Aws::Outposts
|
|
133
133
|
SkuCode = Shapes::StringShape.new(name: 'SkuCode')
|
134
134
|
StateOrRegion = Shapes::StringShape.new(name: 'StateOrRegion')
|
135
135
|
String = Shapes::StringShape.new(name: 'String')
|
136
|
+
SupportedHardwareType = Shapes::StringShape.new(name: 'SupportedHardwareType')
|
136
137
|
SupportedStorageEnum = Shapes::StringShape.new(name: 'SupportedStorageEnum')
|
137
138
|
SupportedStorageList = Shapes::ListShape.new(name: 'SupportedStorageList')
|
138
139
|
SupportedUplinkGbps = Shapes::IntegerShape.new(name: 'SupportedUplinkGbps')
|
@@ -216,6 +217,7 @@ module Aws::Outposts
|
|
216
217
|
CreateOutpostInput.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "AvailabilityZone"))
|
217
218
|
CreateOutpostInput.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "AvailabilityZoneId"))
|
218
219
|
CreateOutpostInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
220
|
+
CreateOutpostInput.add_member(:supported_hardware_type, Shapes::ShapeRef.new(shape: SupportedHardwareType, location_name: "SupportedHardwareType"))
|
219
221
|
CreateOutpostInput.struct_class = Types::CreateOutpostInput
|
220
222
|
|
221
223
|
CreateOutpostOutput.add_member(:outpost, Shapes::ShapeRef.new(shape: Outpost, location_name: "Outpost"))
|
@@ -402,6 +404,7 @@ module Aws::Outposts
|
|
402
404
|
Outpost.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "AvailabilityZoneId"))
|
403
405
|
Outpost.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
404
406
|
Outpost.add_member(:site_arn, Shapes::ShapeRef.new(shape: SiteArn, location_name: "SiteArn"))
|
407
|
+
Outpost.add_member(:supported_hardware_type, Shapes::ShapeRef.new(shape: SupportedHardwareType, location_name: "SupportedHardwareType"))
|
405
408
|
Outpost.struct_class = Types::Outpost
|
406
409
|
|
407
410
|
RackPhysicalProperties.add_member(:power_draw_kva, Shapes::ShapeRef.new(shape: PowerDrawKva, location_name: "PowerDrawKva"))
|
@@ -261,6 +261,7 @@ module Aws::Outposts
|
|
261
261
|
# tags: {
|
262
262
|
# "TagKey" => "TagValue",
|
263
263
|
# },
|
264
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
264
265
|
# }
|
265
266
|
#
|
266
267
|
# @!attribute [rw] name
|
@@ -287,6 +288,10 @@ module Aws::Outposts
|
|
287
288
|
# The tags to apply to the Outpost.
|
288
289
|
# @return [Hash<String,String>]
|
289
290
|
#
|
291
|
+
# @!attribute [rw] supported_hardware_type
|
292
|
+
# The type of hardware for this Outpost.
|
293
|
+
# @return [String]
|
294
|
+
#
|
290
295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpostInput AWS API Documentation
|
291
296
|
#
|
292
297
|
class CreateOutpostInput < Struct.new(
|
@@ -295,7 +300,8 @@ module Aws::Outposts
|
|
295
300
|
:site_id,
|
296
301
|
:availability_zone,
|
297
302
|
:availability_zone_id,
|
298
|
-
:tags
|
303
|
+
:tags,
|
304
|
+
:supported_hardware_type)
|
299
305
|
SENSITIVE = []
|
300
306
|
include Aws::Structure
|
301
307
|
end
|
@@ -1253,6 +1259,10 @@ module Aws::Outposts
|
|
1253
1259
|
# The Amazon Resource Name (ARN) of the site.
|
1254
1260
|
# @return [String]
|
1255
1261
|
#
|
1262
|
+
# @!attribute [rw] supported_hardware_type
|
1263
|
+
# The hardware type.
|
1264
|
+
# @return [String]
|
1265
|
+
#
|
1256
1266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Outpost AWS API Documentation
|
1257
1267
|
#
|
1258
1268
|
class Outpost < Struct.new(
|
@@ -1266,7 +1276,8 @@ module Aws::Outposts
|
|
1266
1276
|
:availability_zone,
|
1267
1277
|
:availability_zone_id,
|
1268
1278
|
:tags,
|
1269
|
-
:site_arn
|
1279
|
+
:site_arn,
|
1280
|
+
:supported_hardware_type)
|
1270
1281
|
SENSITIVE = []
|
1271
1282
|
include Aws::Structure
|
1272
1283
|
end
|
data/lib/aws-sdk-outposts.rb
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.25.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: 2021-11-
|
11
|
+
date: 2021-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|