aws-sdk-glacier 1.62.0 → 1.62.1

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: fb60d58efa3fe2a18b2c0de9bf10462d6076ac7622b0f9012cdddb6b737f0440
4
- data.tar.gz: fb87f37d257f7a8a105ed05586699ad931014edf2f701cdd413ef95d4fe48520
3
+ metadata.gz: 94b8d6c5a200049a892c19db06dc36496df6499d27594d333917502038f99690
4
+ data.tar.gz: b89afaba46ea29a54cbd8b5f6d939ef9165f7c602da7beb8a771580f55c08b65
5
5
  SHA512:
6
- metadata.gz: 4315f877562455258e35491df0dcb8bd4bfc43238fbb4dac0d06e003e05329fb313ab1a3a8c5f1be2196b6a013ccd38568fff26dcefe1f4d4d6abf908def6687
7
- data.tar.gz: 433ae05b1710068d7e40040adf474a863d98af241f832541da7f4db5495c9193745cff3ed4acfb018c643ec5340c0afaab1855088124849cf83f9ce9e9342943
6
+ metadata.gz: 7fb6853c090f5a5fc3c2f1488b535dd4b751e1cd7bb40e6c2ea372592f8aba3bc0d770fab2660e0e6360f20da09398c2721da2c316128c6001b283b59d1f6ab4
7
+ data.tar.gz: a9e68855c3f12d4e046b12fc54d7924ffbfccf5cb6bc50533e17528c51be7e1824aada5e4ed445db35700fac5923d9ac29eb398c1fdef779e23b3fcd9bf22dc6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.1 (2024-06-20)
5
+ ------------------
6
+
7
+ * Issue - Require `account_id` to be non-empty and set it to the default.
8
+
4
9
  1.62.0 (2024-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.62.1
@@ -3464,7 +3464,7 @@ module Aws::Glacier
3464
3464
  params: params,
3465
3465
  config: config)
3466
3466
  context[:gem_name] = 'aws-sdk-glacier'
3467
- context[:gem_version] = '1.62.0'
3467
+ context[:gem_version] = '1.62.1'
3468
3468
  Seahorse::Client::Request.new(handlers, context)
3469
3469
  end
3470
3470
 
@@ -14,10 +14,18 @@ operations. The default value of `-` uses the account
14
14
  your `:credentials` belong to.
15
15
  DOCS
16
16
 
17
- handle_request(step: :initialize) do |context|
18
- context.params[:account_id] ||= context.config.account_id
17
+ class Handler < Seahorse::Client::Handler
18
+ def call(context)
19
+ context.params[:account_id] ||= context.config.account_id
20
+ if context.params[:account_id].empty?
21
+ context.params[:account_id] = '-'
22
+ end
23
+ @handler.call(context)
24
+ end
19
25
  end
20
26
 
27
+ handler(Handler, step: :initialize)
28
+
21
29
  end
22
30
  end
23
31
  end
@@ -7,13 +7,11 @@ module Aws
7
7
  class ApiVersion < Seahorse::Client::Plugin
8
8
 
9
9
  class Handler < Seahorse::Client::Handler
10
-
11
10
  def call(context)
12
11
  version = context.config.api.version
13
12
  context.http_request.headers['x-amz-glacier-version'] = version
14
13
  @handler.call(context)
15
14
  end
16
-
17
15
  end
18
16
 
19
17
  handler(Handler)
@@ -59,6 +59,6 @@ require_relative 'aws-sdk-glacier/customizations'
59
59
  # @!group service
60
60
  module Aws::Glacier
61
61
 
62
- GEM_VERSION = '1.62.0'
62
+ GEM_VERSION = '1.62.1'
63
63
 
64
64
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glacier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.62.1
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-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core