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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glacier/client.rb +1 -1
- data/lib/aws-sdk-glacier/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-glacier.rb +1 -1
- data/sig/account.rbs +48 -0
- data/sig/archive.rbs +53 -0
- data/sig/client.rbs +564 -0
- data/sig/errors.rbs +56 -0
- data/sig/job.rbs +113 -0
- data/sig/multipart_upload.rbs +83 -0
- data/sig/notification.rbs +63 -0
- data/sig/resource.rbs +94 -0
- data/sig/types.rbs +600 -0
- data/sig/vault.rbs +137 -0
- data/sig/waiters.rbs +35 -0
- metadata +19 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2dcf2656656679aab0e420445013342bfe3e66e6e48c0c67e259e57fe2846adc
|
4
|
+
data.tar.gz: a086dd8907274f15a32616c3515a616078e6872e833f5e3fc622a8065f968ddc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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
|
|
data/lib/aws-sdk-glacier.rb
CHANGED
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
|