aws-sdk-s3control 1.62.0 → 1.64.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: 8518ed858e8b2f55cc59a5ba939feb0f5e7b7bfe21a0e3a423b8bae74184fabf
4
- data.tar.gz: 6e537fe63981ff225cc819c21e68e52c1a56cf25ac596baa9163a4f3a78ded7f
3
+ metadata.gz: 1f80bb4864b3f2c33df351bc692406fc08f369d65c18e3efe40db8c9ecf81820
4
+ data.tar.gz: fe953bc95b2a9058ba88384c5931c13f1f2c870a9ef5e0cd947f6b886ba9ecdd
5
5
  SHA512:
6
- metadata.gz: 3b606c032e2c572b0063123d8a58cfc8ed2a9d2f49366eaa6d3aef4968ec59271359cdb95ec8e76ea728904608ec00693742ec9cc231e94648edea22036d663a
7
- data.tar.gz: 76b09c1a108e43e798fa2eae868728c17739f978b79cec0b11dc6f262bdd61be6c74111c8c2489d3aed2372c7afac7039400b4aa052e74982a5ae483a6ad8cc6
6
+ metadata.gz: 72816bf6162871ca8453622bfc3b57f2b9bbb330aa53bb01fbf4ed7034c7fdd68f01aa4a63a96799230cea97a329f832c0837360a2f49e9468ba467251f9a6fb
7
+ data.tar.gz: f53352f71df2c88c7e36694faf041c7ab0777dda50db971fab2f19d78124910adbe91bb526b213b19492e983b08b5f3db0eff0eeb432deb06591648e1d62dfc9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.63.0 (2023-04-19)
10
+ ------------------
11
+
12
+ * Feature - Provides support for overriding endpoint when region is "snow". This will enable bucket APIs for Amazon S3 Compatible storage on Snow Family devices.
13
+
4
14
  1.62.0 (2023-03-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.64.0
@@ -287,6 +287,11 @@ module Aws::S3Control
287
287
  # for cross-region requests to be made. Set to `false` to use the
288
288
  # client's region instead.
289
289
  #
290
+ # @option options [String] :sdk_ua_app_id
291
+ # A unique and opaque application ID that is appended to the
292
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
293
+ # maximum length of 50.
294
+ #
290
295
  # @option options [String] :secret_access_key
291
296
  #
292
297
  # @option options [String] :session_token
@@ -5548,7 +5553,7 @@ module Aws::S3Control
5548
5553
  params: params,
5549
5554
  config: config)
5550
5555
  context[:gem_name] = 'aws-sdk-s3control'
5551
- context[:gem_version] = '1.62.0'
5556
+ context[:gem_version] = '1.64.0'
5552
5557
  Seahorse::Client::Request.new(handlers, context)
5553
5558
  end
5554
5559
 
@@ -21,6 +21,18 @@ module Aws::S3Control
21
21
  access_point_name = parameters.access_point_name
22
22
  use_arn_region = parameters.use_arn_region
23
23
  if Aws::Endpoints::Matchers.set?(region)
24
+ if Aws::Endpoints::Matchers.string_equals?(region, "snow") && Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
25
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
26
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
27
+ raise ArgumentError, "S3 Snow does not support Dual-stack"
28
+ end
29
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
30
+ raise ArgumentError, "S3 Snow does not support FIPS"
31
+ end
32
+ return Aws::Endpoints::Endpoint.new(url: "#{url['scheme']}://#{url['authority']}", headers: {}, properties: {"authSchemes"=>[{"disableDoubleEncoding"=>true, "name"=>"sigv4", "signingName"=>"s3", "signingRegion"=>"#{region}"}]})
33
+ end
34
+ raise ArgumentError, "A valid partition could not be determined"
35
+ end
24
36
  if Aws::Endpoints::Matchers.set?(outpost_id)
25
37
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
26
38
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn")
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-s3control/customizations'
52
52
  # @!group service
53
53
  module Aws::S3Control
54
54
 
55
- GEM_VERSION = '1.62.0'
55
+ GEM_VERSION = '1.64.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.64.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-03-15 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.165.0
36
+ version: 3.174.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.165.0
46
+ version: 3.174.0
47
47
  description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email: