aws-sdk-glacier 1.58.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: 21e3b0a2c75935a2f4addee82c22d0f791aebe3adbc88d41ff517519976fa2d2
4
- data.tar.gz: 03b7eaf76c68edf915bd49ee9390e9ac6e905b62d89c14ba579ce3e837935f5f
3
+ metadata.gz: 2dcf2656656679aab0e420445013342bfe3e66e6e48c0c67e259e57fe2846adc
4
+ data.tar.gz: a086dd8907274f15a32616c3515a616078e6872e833f5e3fc622a8065f968ddc
5
5
  SHA512:
6
- metadata.gz: f372ea24a038409f3e5d0e55b2bbdff95d57042155ef39367f0e2b124c3d015aef216411dd52235b7f82de11cbeedc7fcffc348fb0bdf0759bced24df84ee15e
7
- data.tar.gz: e0c01f3ec1cec5eb204c2ca4f779ee4d1fa53b6346e6889e74b62edf46f76c9bd6b366e1c81097df55c59b90e4634a02484ad5a0212474e246b76d203f1020be
6
+ metadata.gz: 7717d34a80fc5bf87367d20d81cc07f4e30dead40c2875ab09ec1b74f43a0a06f867a723be8518464ce248036fb5586cd15ad2326e39ca170a0a3716e62198cd
7
+ data.tar.gz: 14c3cea51141ee64dae892e5d87136fef810d228a8c4ec0e61646a0cafd57e2589bc753ed1f2ed8efc692462e87139bb07d450520721549d49cf1deade2adedd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.58.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.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.58.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 '\
@@ -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.58.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