aws-sdk-glacier 1.86.0 → 1.87.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glacier/client.rb +86 -90
- data/lib/aws-sdk-glacier/client_api.rb +39 -0
- data/lib/aws-sdk-glacier/errors.rb +26 -0
- data/lib/aws-sdk-glacier/job.rb +1 -1
- data/lib/aws-sdk-glacier/multipart_upload.rb +2 -2
- data/lib/aws-sdk-glacier/notification.rb +1 -1
- data/lib/aws-sdk-glacier/types.rb +158 -142
- data/lib/aws-sdk-glacier/vault.rb +1 -1
- data/lib/aws-sdk-glacier.rb +1 -1
- data/sig/errors.rbs +5 -0
- data/sig/types.rbs +7 -0
- metadata +1 -1
|
@@ -57,7 +57,7 @@ module Aws::Glacier
|
|
|
57
57
|
data[:creation_date]
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
# The Universal Coordinated Time (UTC) date when Amazon
|
|
60
|
+
# The Universal Coordinated Time (UTC) date when Amazon Glacier
|
|
61
61
|
# completed the last vault inventory. This value should be a string in
|
|
62
62
|
# the ISO 8601 date format, for example `2012-03-20T17:03:43.221Z`.
|
|
63
63
|
# @return [Time]
|
data/lib/aws-sdk-glacier.rb
CHANGED
data/sig/errors.rbs
CHANGED
|
@@ -31,6 +31,11 @@ module Aws
|
|
|
31
31
|
def code: () -> ::String
|
|
32
32
|
def message: () -> ::String
|
|
33
33
|
end
|
|
34
|
+
class NoLongerSupportedException < ::Aws::Errors::ServiceError
|
|
35
|
+
def type: () -> ::String
|
|
36
|
+
def code: () -> ::String
|
|
37
|
+
def message: () -> ::String
|
|
38
|
+
end
|
|
34
39
|
class PolicyEnforcedException < ::Aws::Errors::ServiceError
|
|
35
40
|
def type: () -> ::String
|
|
36
41
|
def code: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -440,6 +440,13 @@ module Aws::Glacier
|
|
|
440
440
|
SENSITIVE: []
|
|
441
441
|
end
|
|
442
442
|
|
|
443
|
+
class NoLongerSupportedException
|
|
444
|
+
attr_accessor type: ::String
|
|
445
|
+
attr_accessor code: ::String
|
|
446
|
+
attr_accessor message: ::String
|
|
447
|
+
SENSITIVE: []
|
|
448
|
+
end
|
|
449
|
+
|
|
443
450
|
class OutputLocation
|
|
444
451
|
attr_accessor s3: Types::S3Location
|
|
445
452
|
SENSITIVE: []
|