aws-sdk-s3outposts 1.24.0 → 1.26.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: a026e82296091f86a869704c73b95cc0961eb17ba81bef1e048d3f57d223b351
4
- data.tar.gz: '034390a56263a6fffe08fa359e34948f8db1d56137e1286d6bb7862d52acef57'
3
+ metadata.gz: be5c9330a21ba9ec5b51b1cd0025d0f853703cc0c93f4cfe45eac6112e51c9f9
4
+ data.tar.gz: 545f8c3b675e3fade8a7bc54503060998cd037f484185b400aee2c9e0ce82c49
5
5
  SHA512:
6
- metadata.gz: 510e12ea967f71d4c3a80d24fa527f0df46cf1b307a2123d7dea0a2f852b1dc205c38c3e9ab4ea3be28e6caeb0b6678fc2a1dc1e608c787f7160205d2193e64f
7
- data.tar.gz: 6d5cdf808d42ad98a5a6ffd87b279748f973c20e895c26bcb97529cf32cef170515a629b4b2255ce5c95d2f992d6ba9272bfd38cded9655e510e8113b5be3e7c
6
+ metadata.gz: b87785414d7b066377a54738ff8459373fa8f12fd539bd1650fae093e3ad3222b06884fcf538ee5ac549d263a363744ec3f0fb3036fc5f9918a766d547c54e31
7
+ data.tar.gz: 1e5f177081285bcf9835e5ce6464c6483a050ae9935ea6998b664e9fe7790e3238603633f7a7de478fe5e3c66239d7434b524c1e6d18b8c6e6c26b444f12cb38
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2023-11-22)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.25.0 (2023-10-30)
10
+ ------------------
11
+
12
+ * Feature - Updated ListOutpostsWithS3 API response to include S3OutpostArn for use with AWS RAM.
13
+
4
14
  1.24.0 (2023-09-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.26.0
@@ -596,6 +596,7 @@ module Aws::S3Outposts
596
596
  #
597
597
  # resp.outposts #=> Array
598
598
  # resp.outposts[0].outpost_arn #=> String
599
+ # resp.outposts[0].s3_outpost_arn #=> String
599
600
  # resp.outposts[0].outpost_id #=> String
600
601
  # resp.outposts[0].owner_id #=> String
601
602
  # resp.outposts[0].capacity_in_bytes #=> Integer
@@ -691,7 +692,7 @@ module Aws::S3Outposts
691
692
  params: params,
692
693
  config: config)
693
694
  context[:gem_name] = 'aws-sdk-s3outposts'
694
- context[:gem_version] = '1.24.0'
695
+ context[:gem_version] = '1.26.0'
695
696
  Seahorse::Client::Request.new(handlers, context)
696
697
  end
697
698
 
@@ -51,6 +51,7 @@ module Aws::S3Outposts
51
51
  OutpostOfflineException = Shapes::StructureShape.new(name: 'OutpostOfflineException')
52
52
  Outposts = Shapes::ListShape.new(name: 'Outposts')
53
53
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
54
+ S3OutpostArn = Shapes::StringShape.new(name: 'S3OutpostArn')
54
55
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
55
56
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
56
57
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
@@ -131,6 +132,7 @@ module Aws::S3Outposts
131
132
  NetworkInterfaces.member = Shapes::ShapeRef.new(shape: NetworkInterface)
132
133
 
133
134
  Outpost.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: OutpostArn, location_name: "OutpostArn"))
135
+ Outpost.add_member(:s3_outpost_arn, Shapes::ShapeRef.new(shape: S3OutpostArn, location_name: "S3OutpostArn"))
134
136
  Outpost.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, location_name: "OutpostId"))
135
137
  Outpost.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "OwnerId"))
136
138
  Outpost.add_member(:capacity_in_bytes, Shapes::ShapeRef.new(shape: CapacityInBytes, location_name: "CapacityInBytes"))
@@ -32,7 +32,7 @@ module Aws::S3Outposts
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://s3-outposts-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -373,6 +373,11 @@ module Aws::S3Outposts
373
373
  # Specifies the unique Amazon Resource Name (ARN) for the outpost.
374
374
  # @return [String]
375
375
  #
376
+ # @!attribute [rw] s3_outpost_arn
377
+ # Specifies the unique S3 on Outposts ARN for use with Resource Access
378
+ # Manager (RAM).
379
+ # @return [String]
380
+ #
376
381
  # @!attribute [rw] outpost_id
377
382
  # Specifies the unique identifier for the outpost.
378
383
  # @return [String]
@@ -390,6 +395,7 @@ module Aws::S3Outposts
390
395
  #
391
396
  class Outpost < Struct.new(
392
397
  :outpost_arn,
398
+ :s3_outpost_arn,
393
399
  :outpost_id,
394
400
  :owner_id,
395
401
  :capacity_in_bytes)
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-s3outposts/customizations'
52
52
  # @!group service
53
53
  module Aws::S3Outposts
54
54
 
55
- GEM_VERSION = '1.24.0'
55
+ GEM_VERSION = '1.26.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3outposts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.26.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-22 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.184.0
22
+ version: 3.188.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.184.0
32
+ version: 3.188.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: '2.3'
83
+ version: '2.5'
84
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - ">="