aws-sdk-s3outposts 1.23.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2baf3d828fb44e32118711b55156b4a5b0852c2675893eaac73ba92b78efded1
4
- data.tar.gz: 48bdd37120923ebaa444bca0c0ced782777dfaee78f00a371feadf5205c71b94
3
+ metadata.gz: 54e39ad0d529accd26ce730c82374b198ee53d03ce7e0d183833639d7c9dd7bf
4
+ data.tar.gz: bdb754869c33095ad54584b05f6d947f41e3b385a19e48d47e743d433f6d8a49
5
5
  SHA512:
6
- metadata.gz: c92060a894d355de5897389d12353395f787bb8b3c06fcaf8354bb96b452d196a63ded11070ec6b723d746bdc836af80cc0b18a67a49510f9d684654699071b8
7
- data.tar.gz: 717d8c3ac4c7f229c6102f1247b589416b4e670990acd2df81ca3241a73371042868ce65456ae691c497fa371613cdeacd0a9720b2ef880237020471d80f17d4
6
+ metadata.gz: 3b1717fd2a9fb8464026f376589d419b091b5c3ce1119f39f375c4abadbbcc9d584458feb85f79b074373c3c6f75817de6d5a855b683521345f4867069b962f5
7
+ data.tar.gz: 8c83058a730181be48e3e6371d949ff74ad1e4b3744d7aeb2a87e977fdacef61bc2fea91afc5ff6318f2af1603d1aea699d92c510abd42adf394fabe6057c687
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2023-10-30)
5
+ ------------------
6
+
7
+ * Feature - Updated ListOutpostsWithS3 API response to include S3OutpostArn for use with AWS RAM.
8
+
9
+ 1.24.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.23.0 (2023-09-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.25.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.23.0'
695
+ context[:gem_version] = '1.25.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.23.0'
55
+ GEM_VERSION = '1.25.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.23.0
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: 2023-09-19 00:00:00.000000000 Z
11
+ date: 2023-10-30 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.177.0
22
+ version: 3.184.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.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement