aws-sdk-glacier 1.57.0 → 1.59.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: 83df90bb76c646e79d01bde7180121d0ee8b4a1ba32808cd38629c778dfad1f0
4
- data.tar.gz: 3a857f3da4730c878dc57a87e8deb1316c466b09bfc85bc8c33c8009b35582ba
3
+ metadata.gz: 2dcf2656656679aab0e420445013342bfe3e66e6e48c0c67e259e57fe2846adc
4
+ data.tar.gz: a086dd8907274f15a32616c3515a616078e6872e833f5e3fc622a8065f968ddc
5
5
  SHA512:
6
- metadata.gz: 1da4ef2c682a901e18c42b72d117c6e18528746fa2c14f58190b160f15427212f96ff7ced5e0971239f3748c1d8c005dbea7a0f8f08c891b671fa5037850e838
7
- data.tar.gz: 7dfff45b3e1029353704dfb2f0e296b84a78a454c0a890135ef18d14dc8da009ee669e255850dca15e721d822a61846bcdc1736fbd3a44cff830786b1d3e8273
6
+ metadata.gz: 7717d34a80fc5bf87367d20d81cc07f4e30dead40c2875ab09ec1b74f43a0a06f867a723be8518464ce248036fb5586cd15ad2326e39ca170a0a3716e62198cd
7
+ data.tar.gz: 14c3cea51141ee64dae892e5d87136fef810d228a8c4ec0e61646a0cafd57e2589bc753ed1f2ed8efc692462e87139bb07d450520721549d49cf1deade2adedd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.58.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.57.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.59.0
@@ -3439,7 +3439,7 @@ module Aws::Glacier
3439
3439
  params: params,
3440
3440
  config: config)
3441
3441
  context[:gem_name] = 'aws-sdk-glacier'
3442
- context[:gem_version] = '1.57.0'
3442
+ context[:gem_version] = '1.59.0'
3443
3443
  Seahorse::Client::Request.new(handlers, context)
3444
3444
  end
3445
3445
 
@@ -14,6 +14,7 @@ module Aws::Glacier
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Glacier::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::Glacier
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
@@ -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.57.0'
62
+ GEM_VERSION = '1.59.0'
63
63
 
64
64
  end
data/sig/account.rbs ADDED
@@ -0,0 +1,48 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Glacier
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html
11
+ class Account
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#initialize-instance_method
13
+ def initialize: (String id, Hash[Symbol, untyped] options) -> void
14
+ | (id: String, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#id-instance_method
18
+ def id: () -> String
19
+
20
+ def client: () -> Client
21
+
22
+
23
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#data-instance_method
24
+ def data: () -> EmptyStructure
25
+
26
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#data_loaded?-instance_method
27
+ def data_loaded?: () -> bool
28
+
29
+
30
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#create_vault-instance_method
31
+ def create_vault: (
32
+ vault_name: ::String
33
+ ) -> Vault
34
+ | (?Hash[Symbol, untyped]) -> Vault
35
+
36
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#vault-instance_method
37
+ def vault: (String name) -> Vault
38
+
39
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Account.html#vaults-instance_method
40
+ def vaults: (
41
+ ) -> Vault::Collection
42
+ | (?Hash[Symbol, untyped]) -> Vault::Collection
43
+
44
+ class Collection < ::Aws::Resources::Collection[Account]
45
+ end
46
+ end
47
+ end
48
+ end
data/sig/archive.rbs ADDED
@@ -0,0 +1,53 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Glacier
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html
11
+ class Archive
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#initialize-instance_method
13
+ def initialize: (String account_id, String vault_name, String id, Hash[Symbol, untyped] options) -> void
14
+ | (account_id: String, vault_name: String, id: String, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#account_id-instance_method
18
+ def account_id: () -> String
19
+
20
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#vault_name-instance_method
21
+ def vault_name: () -> String
22
+
23
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#id-instance_method
24
+ def id: () -> String
25
+
26
+ def client: () -> Client
27
+
28
+
29
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#data-instance_method
30
+ def data: () -> EmptyStructure
31
+
32
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#data_loaded?-instance_method
33
+ def data_loaded?: () -> bool
34
+
35
+
36
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#delete-instance_method
37
+ def delete: (
38
+ ) -> ::Aws::EmptyStructure
39
+ | (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
40
+
41
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#initiate_archive_retrieval-instance_method
42
+ def initiate_archive_retrieval: (
43
+ ) -> Job
44
+ | (?Hash[Symbol, untyped]) -> Job
45
+
46
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glacier/Archive.html#vault-instance_method
47
+ def vault: () -> Vault
48
+
49
+ class Collection < ::Aws::Resources::Collection[Archive]
50
+ end
51
+ end
52
+ end
53
+ end