aws-sdk-glacier 1.23.0 → 1.24.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/lib/aws-sdk-glacier.rb +1 -1
- data/lib/aws-sdk-glacier/client.rb +196 -193
- data/lib/aws-sdk-glacier/job.rb +1 -1
- data/lib/aws-sdk-glacier/multipart_upload.rb +3 -3
- data/lib/aws-sdk-glacier/notification.rb +1 -1
- data/lib/aws-sdk-glacier/types.rb +154 -153
- data/lib/aws-sdk-glacier/vault.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-glacier/job.rb
CHANGED
@@ -383,7 +383,7 @@ module Aws::Glacier
|
|
383
383
|
# find the checksum of the entire output. Using the DescribeJob API,
|
384
384
|
# obtain job information of the job that provided you the output.
|
385
385
|
# The response includes the checksum of the entire archive stored in
|
386
|
-
# Amazon Glacier. You compare this value with the checksum you
|
386
|
+
# Amazon S3 Glacier. You compare this value with the checksum you
|
387
387
|
# computed to ensure you have downloaded the entire archive content
|
388
388
|
# with no errors.
|
389
389
|
# @return [Types::GetJobOutputOutput]
|
@@ -230,8 +230,8 @@ module Aws::Glacier
|
|
230
230
|
# The SHA256 tree hash of the entire archive. It is the tree hash of
|
231
231
|
# SHA256 tree hash of the individual parts. If the value you specify in
|
232
232
|
# the request does not match the SHA256 tree hash of the final assembled
|
233
|
-
# archive as computed by Amazon Glacier,
|
234
|
-
# and the request fails.
|
233
|
+
# archive as computed by Amazon S3 Glacier (Glacier), Glacier returns an
|
234
|
+
# error and the request fails.
|
235
235
|
# @return [Types::ArchiveCreationOutput]
|
236
236
|
def complete(options = {})
|
237
237
|
options = options.merge(
|
@@ -283,7 +283,7 @@ module Aws::Glacier
|
|
283
283
|
# The SHA256 tree hash of the data being uploaded.
|
284
284
|
# @option options [String] :range
|
285
285
|
# Identifies the range of bytes in the assembled archive that will be
|
286
|
-
# uploaded in this part. Amazon Glacier uses this information to
|
286
|
+
# uploaded in this part. Amazon S3 Glacier uses this information to
|
287
287
|
# assemble the archive in the proper sequence. The format of this header
|
288
288
|
# follows RFC 2616. An example header is Content-Range:bytes
|
289
289
|
# 0-4194303/*.
|
@@ -45,7 +45,7 @@ module Aws::Glacier
|
|
45
45
|
data[:sns_topic]
|
46
46
|
end
|
47
47
|
|
48
|
-
# A list of one or more events for which Amazon Glacier will send a
|
48
|
+
# A list of one or more events for which Amazon S3 Glacier will send a
|
49
49
|
# notification to the specified Amazon SNS topic.
|
50
50
|
# @return [Array<String>]
|
51
51
|
def events
|
@@ -13,12 +13,12 @@ module Aws::Glacier
|
|
13
13
|
#
|
14
14
|
# For information about the underlying REST API, see [Abort Multipart
|
15
15
|
# Upload][1]. For conceptual information, see [Working with Archives in
|
16
|
-
# Amazon Glacier][2].
|
16
|
+
# Amazon S3 Glacier][2].
|
17
17
|
#
|
18
18
|
#
|
19
19
|
#
|
20
|
-
# [1]:
|
21
|
-
# [2]:
|
20
|
+
# [1]: https://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-abort-upload.html
|
21
|
+
# [2]: https://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html
|
22
22
|
#
|
23
23
|
# @note When making an API call, you may pass AbortMultipartUploadInput
|
24
24
|
# data as a hash:
|
@@ -32,10 +32,10 @@ module Aws::Glacier
|
|
32
32
|
# @!attribute [rw] account_id
|
33
33
|
# The `AccountId` value is the AWS account ID of the account that owns
|
34
34
|
# the vault. You can either specify an AWS account ID or optionally a
|
35
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
36
|
-
# account ID associated with the credentials used to sign the
|
37
|
-
# If you use an account ID, do not include any hyphens
|
38
|
-
# ID.
|
35
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
36
|
+
# AWS account ID associated with the credentials used to sign the
|
37
|
+
# request. If you use an account ID, do not include any hyphens
|
38
|
+
# ('-') in the ID.
|
39
39
|
# @return [String]
|
40
40
|
#
|
41
41
|
# @!attribute [rw] vault_name
|
@@ -99,10 +99,10 @@ module Aws::Glacier
|
|
99
99
|
# @!attribute [rw] account_id
|
100
100
|
# The `AccountId` value is the AWS account ID of the account that owns
|
101
101
|
# the vault. You can either specify an AWS account ID or optionally a
|
102
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
103
|
-
# account ID associated with the credentials used to sign the
|
104
|
-
# If you use an account ID, do not include any hyphens
|
105
|
-
# ID.
|
102
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
103
|
+
# AWS account ID associated with the credentials used to sign the
|
104
|
+
# request. If you use an account ID, do not include any hyphens
|
105
|
+
# ('-') in the ID.
|
106
106
|
# @return [String]
|
107
107
|
#
|
108
108
|
# @!attribute [rw] vault_name
|
@@ -121,23 +121,23 @@ module Aws::Glacier
|
|
121
121
|
include Aws::Structure
|
122
122
|
end
|
123
123
|
|
124
|
-
# Contains the Amazon Glacier response to your request.
|
124
|
+
# Contains the Amazon S3 Glacier response to your request.
|
125
125
|
#
|
126
126
|
# For information about the underlying REST API, see [Upload
|
127
127
|
# Archive][1]. For conceptual information, see [Working with Archives in
|
128
|
-
# Amazon Glacier][2].
|
128
|
+
# Amazon S3 Glacier][2].
|
129
129
|
#
|
130
130
|
#
|
131
131
|
#
|
132
|
-
# [1]:
|
133
|
-
# [2]:
|
132
|
+
# [1]: https://docs.aws.amazon.com/amazonglacier/latest/dev/api-archive-post.html
|
133
|
+
# [2]: https://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html
|
134
134
|
#
|
135
135
|
# @!attribute [rw] location
|
136
136
|
# The relative URI path of the newly added archive resource.
|
137
137
|
# @return [String]
|
138
138
|
#
|
139
139
|
# @!attribute [rw] checksum
|
140
|
-
# The checksum of the archive computed by Amazon Glacier.
|
140
|
+
# The checksum of the archive computed by Amazon S3 Glacier.
|
141
141
|
# @return [String]
|
142
142
|
#
|
143
143
|
# @!attribute [rw] archive_id
|
@@ -255,8 +255,8 @@ module Aws::Glacier
|
|
255
255
|
|
256
256
|
# Provides options to complete a multipart upload operation. This
|
257
257
|
# informs Amazon Glacier that all the archive parts have been uploaded
|
258
|
-
# and Amazon Glacier can now assemble the archive from the
|
259
|
-
# parts. After assembling and saving the archive to the vault,
|
258
|
+
# and Amazon S3 Glacier (Glacier) can now assemble the archive from the
|
259
|
+
# uploaded parts. After assembling and saving the archive to the vault,
|
260
260
|
# Glacier returns the URI path of the newly created archive resource.
|
261
261
|
#
|
262
262
|
# @note When making an API call, you may pass CompleteMultipartUploadInput
|
@@ -273,10 +273,10 @@ module Aws::Glacier
|
|
273
273
|
# @!attribute [rw] account_id
|
274
274
|
# The `AccountId` value is the AWS account ID of the account that owns
|
275
275
|
# the vault. You can either specify an AWS account ID or optionally a
|
276
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
277
|
-
# account ID associated with the credentials used to sign the
|
278
|
-
# If you use an account ID, do not include any hyphens
|
279
|
-
# ID.
|
276
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
277
|
+
# AWS account ID associated with the credentials used to sign the
|
278
|
+
# request. If you use an account ID, do not include any hyphens
|
279
|
+
# ('-') in the ID.
|
280
280
|
# @return [String]
|
281
281
|
#
|
282
282
|
# @!attribute [rw] vault_name
|
@@ -297,8 +297,8 @@ module Aws::Glacier
|
|
297
297
|
# The SHA256 tree hash of the entire archive. It is the tree hash of
|
298
298
|
# SHA256 tree hash of the individual parts. If the value you specify
|
299
299
|
# in the request does not match the SHA256 tree hash of the final
|
300
|
-
# assembled archive as computed by Amazon Glacier
|
301
|
-
# returns an error and the request fails.
|
300
|
+
# assembled archive as computed by Amazon S3 Glacier (Glacier),
|
301
|
+
# Glacier returns an error and the request fails.
|
302
302
|
# @return [String]
|
303
303
|
#
|
304
304
|
class CompleteMultipartUploadInput < Struct.new(
|
@@ -361,10 +361,10 @@ module Aws::Glacier
|
|
361
361
|
# The `AccountId` value is the AWS account ID. This value must match
|
362
362
|
# the AWS account ID associated with the credentials used to sign the
|
363
363
|
# request. You can either specify an AWS account ID or optionally a
|
364
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
365
|
-
# account ID associated with the credentials used to sign the
|
366
|
-
# If you specify your account ID, do not include any hyphens
|
367
|
-
# in the ID.
|
364
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
365
|
+
# AWS account ID associated with the credentials used to sign the
|
366
|
+
# request. If you specify your account ID, do not include any hyphens
|
367
|
+
# ('-') in the ID.
|
368
368
|
# @return [String]
|
369
369
|
#
|
370
370
|
# @!attribute [rw] vault_name
|
@@ -377,7 +377,7 @@ module Aws::Glacier
|
|
377
377
|
include Aws::Structure
|
378
378
|
end
|
379
379
|
|
380
|
-
# Contains the Amazon Glacier response to your request.
|
380
|
+
# Contains the Amazon S3 Glacier response to your request.
|
381
381
|
#
|
382
382
|
# @!attribute [rw] location
|
383
383
|
# The URI of the vault that was created.
|
@@ -443,7 +443,8 @@ module Aws::Glacier
|
|
443
443
|
include Aws::Structure
|
444
444
|
end
|
445
445
|
|
446
|
-
# Provides options for deleting an archive from an Amazon Glacier
|
446
|
+
# Provides options for deleting an archive from an Amazon S3 Glacier
|
447
|
+
# vault.
|
447
448
|
#
|
448
449
|
# @note When making an API call, you may pass DeleteArchiveInput
|
449
450
|
# data as a hash:
|
@@ -457,10 +458,10 @@ module Aws::Glacier
|
|
457
458
|
# @!attribute [rw] account_id
|
458
459
|
# The `AccountId` value is the AWS account ID of the account that owns
|
459
460
|
# the vault. You can either specify an AWS account ID or optionally a
|
460
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
461
|
-
# account ID associated with the credentials used to sign the
|
462
|
-
# If you use an account ID, do not include any hyphens
|
463
|
-
# ID.
|
461
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
462
|
+
# AWS account ID associated with the credentials used to sign the
|
463
|
+
# request. If you use an account ID, do not include any hyphens
|
464
|
+
# ('-') in the ID.
|
464
465
|
# @return [String]
|
465
466
|
#
|
466
467
|
# @!attribute [rw] vault_name
|
@@ -491,10 +492,10 @@ module Aws::Glacier
|
|
491
492
|
# @!attribute [rw] account_id
|
492
493
|
# The `AccountId` value is the AWS account ID of the account that owns
|
493
494
|
# the vault. You can either specify an AWS account ID or optionally a
|
494
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
495
|
-
# account ID associated with the credentials used to sign the
|
496
|
-
# If you use an account ID, do not include any hyphens
|
497
|
-
# ID.
|
495
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
496
|
+
# AWS account ID associated with the credentials used to sign the
|
497
|
+
# request. If you use an account ID, do not include any hyphens
|
498
|
+
# ('-') in the ID.
|
498
499
|
# @return [String]
|
499
500
|
#
|
500
501
|
# @!attribute [rw] vault_name
|
@@ -507,7 +508,7 @@ module Aws::Glacier
|
|
507
508
|
include Aws::Structure
|
508
509
|
end
|
509
510
|
|
510
|
-
# Provides options for deleting a vault from Amazon Glacier.
|
511
|
+
# Provides options for deleting a vault from Amazon S3 Glacier.
|
511
512
|
#
|
512
513
|
# @note When making an API call, you may pass DeleteVaultInput
|
513
514
|
# data as a hash:
|
@@ -520,10 +521,10 @@ module Aws::Glacier
|
|
520
521
|
# @!attribute [rw] account_id
|
521
522
|
# The `AccountId` value is the AWS account ID of the account that owns
|
522
523
|
# the vault. You can either specify an AWS account ID or optionally a
|
523
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
524
|
-
# account ID associated with the credentials used to sign the
|
525
|
-
# If you use an account ID, do not include any hyphens
|
526
|
-
# ID.
|
524
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
525
|
+
# AWS account ID associated with the credentials used to sign the
|
526
|
+
# request. If you use an account ID, do not include any hyphens
|
527
|
+
# ('-') in the ID.
|
527
528
|
# @return [String]
|
528
529
|
#
|
529
530
|
# @!attribute [rw] vault_name
|
@@ -550,10 +551,10 @@ module Aws::Glacier
|
|
550
551
|
# @!attribute [rw] account_id
|
551
552
|
# The `AccountId` value is the AWS account ID of the account that owns
|
552
553
|
# the vault. You can either specify an AWS account ID or optionally a
|
553
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
554
|
-
# account ID associated with the credentials used to sign the
|
555
|
-
# If you use an account ID, do not include any hyphens
|
556
|
-
# ID.
|
554
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
555
|
+
# AWS account ID associated with the credentials used to sign the
|
556
|
+
# request. If you use an account ID, do not include any hyphens
|
557
|
+
# ('-') in the ID.
|
557
558
|
# @return [String]
|
558
559
|
#
|
559
560
|
# @!attribute [rw] vault_name
|
@@ -580,10 +581,10 @@ module Aws::Glacier
|
|
580
581
|
# @!attribute [rw] account_id
|
581
582
|
# The `AccountId` value is the AWS account ID of the account that owns
|
582
583
|
# the vault. You can either specify an AWS account ID or optionally a
|
583
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
584
|
-
# account ID associated with the credentials used to sign the
|
585
|
-
# If you use an account ID, do not include any hyphens
|
586
|
-
# ID.
|
584
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
585
|
+
# AWS account ID associated with the credentials used to sign the
|
586
|
+
# request. If you use an account ID, do not include any hyphens
|
587
|
+
# ('-') in the ID.
|
587
588
|
# @return [String]
|
588
589
|
#
|
589
590
|
# @!attribute [rw] vault_name
|
@@ -615,10 +616,10 @@ module Aws::Glacier
|
|
615
616
|
# @!attribute [rw] account_id
|
616
617
|
# The `AccountId` value is the AWS account ID of the account that owns
|
617
618
|
# the vault. You can either specify an AWS account ID or optionally a
|
618
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
619
|
-
# account ID associated with the credentials used to sign the
|
620
|
-
# If you use an account ID, do not include any hyphens
|
621
|
-
# ID.
|
619
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
620
|
+
# AWS account ID associated with the credentials used to sign the
|
621
|
+
# request. If you use an account ID, do not include any hyphens
|
622
|
+
# ('-') in the ID.
|
622
623
|
# @return [String]
|
623
624
|
#
|
624
625
|
# @!attribute [rw] vault_name
|
@@ -631,7 +632,7 @@ module Aws::Glacier
|
|
631
632
|
include Aws::Structure
|
632
633
|
end
|
633
634
|
|
634
|
-
# Contains the Amazon Glacier response to your request.
|
635
|
+
# Contains the Amazon S3 Glacier response to your request.
|
635
636
|
#
|
636
637
|
# @!attribute [rw] vault_arn
|
637
638
|
# The Amazon Resource Name (ARN) of the vault.
|
@@ -648,7 +649,7 @@ module Aws::Glacier
|
|
648
649
|
# @return [Time]
|
649
650
|
#
|
650
651
|
# @!attribute [rw] last_inventory_date
|
651
|
-
# The Universal Coordinated Time (UTC) date when Amazon Glacier
|
652
|
+
# The Universal Coordinated Time (UTC) date when Amazon S3 Glacier
|
652
653
|
# completed the last vault inventory. This value should be a string in
|
653
654
|
# the ISO 8601 date format, for example `2012-03-20T17:03:43.221Z`.
|
654
655
|
# @return [Time]
|
@@ -734,8 +735,8 @@ module Aws::Glacier
|
|
734
735
|
include Aws::Structure
|
735
736
|
end
|
736
737
|
|
737
|
-
# Contains the Amazon Glacier response to the
|
738
|
-
# request.
|
738
|
+
# Contains the Amazon S3 Glacier response to the
|
739
|
+
# `GetDataRetrievalPolicy` request.
|
739
740
|
#
|
740
741
|
# @!attribute [rw] policy
|
741
742
|
# Contains the returned data retrieval policy in JSON format.
|
@@ -746,7 +747,7 @@ module Aws::Glacier
|
|
746
747
|
include Aws::Structure
|
747
748
|
end
|
748
749
|
|
749
|
-
# Provides options for downloading output of an Amazon Glacier job.
|
750
|
+
# Provides options for downloading output of an Amazon S3 Glacier job.
|
750
751
|
#
|
751
752
|
# @note When making an API call, you may pass GetJobOutputInput
|
752
753
|
# data as a hash:
|
@@ -761,10 +762,10 @@ module Aws::Glacier
|
|
761
762
|
# @!attribute [rw] account_id
|
762
763
|
# The `AccountId` value is the AWS account ID of the account that owns
|
763
764
|
# the vault. You can either specify an AWS account ID or optionally a
|
764
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
765
|
-
# account ID associated with the credentials used to sign the
|
766
|
-
# If you use an account ID, do not include any hyphens
|
767
|
-
# ID.
|
765
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
766
|
+
# AWS account ID associated with the credentials used to sign the
|
767
|
+
# request. If you use an account ID, do not include any hyphens
|
768
|
+
# ('-') in the ID.
|
768
769
|
# @return [String]
|
769
770
|
#
|
770
771
|
# @!attribute [rw] vault_name
|
@@ -804,7 +805,7 @@ module Aws::Glacier
|
|
804
805
|
# values to find the checksum of the entire output. Using the
|
805
806
|
# DescribeJob API, obtain job information of the job that provided
|
806
807
|
# you the output. The response includes the checksum of the entire
|
807
|
-
# archive stored in Amazon Glacier. You compare this value with
|
808
|
+
# archive stored in Amazon S3 Glacier. You compare this value with
|
808
809
|
# the checksum you computed to ensure you have downloaded the
|
809
810
|
# entire archive content with no errors.
|
810
811
|
# @return [String]
|
@@ -817,7 +818,7 @@ module Aws::Glacier
|
|
817
818
|
include Aws::Structure
|
818
819
|
end
|
819
820
|
|
820
|
-
# Contains the Amazon Glacier response to your request.
|
821
|
+
# Contains the Amazon S3 Glacier response to your request.
|
821
822
|
#
|
822
823
|
# @!attribute [rw] body
|
823
824
|
# The job data, either archive data or inventory data.
|
@@ -850,9 +851,9 @@ module Aws::Glacier
|
|
850
851
|
# @return [Integer]
|
851
852
|
#
|
852
853
|
# @!attribute [rw] content_range
|
853
|
-
# The range of bytes returned by Amazon Glacier. If only partial
|
854
|
+
# The range of bytes returned by Amazon S3 Glacier. If only partial
|
854
855
|
# output is downloaded, the response provides the range of bytes
|
855
|
-
# Amazon Glacier returned. For example, bytes 0-1048575/8388608
|
856
|
+
# Amazon S3 Glacier returned. For example, bytes 0-1048575/8388608
|
856
857
|
# returns the first 1 MB from 8 MB.
|
857
858
|
# @return [String]
|
858
859
|
#
|
@@ -902,10 +903,10 @@ module Aws::Glacier
|
|
902
903
|
# @!attribute [rw] account_id
|
903
904
|
# The `AccountId` value is the AWS account ID of the account that owns
|
904
905
|
# the vault. You can either specify an AWS account ID or optionally a
|
905
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
906
|
-
# account ID associated with the credentials used to sign the
|
907
|
-
# If you use an account ID, do not include any hyphens
|
908
|
-
# ID.
|
906
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
907
|
+
# AWS account ID associated with the credentials used to sign the
|
908
|
+
# request. If you use an account ID, do not include any hyphens
|
909
|
+
# ('-') in the ID.
|
909
910
|
# @return [String]
|
910
911
|
#
|
911
912
|
# @!attribute [rw] vault_name
|
@@ -942,10 +943,10 @@ module Aws::Glacier
|
|
942
943
|
# @!attribute [rw] account_id
|
943
944
|
# The `AccountId` value is the AWS account ID of the account that owns
|
944
945
|
# the vault. You can either specify an AWS account ID or optionally a
|
945
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
946
|
-
# account ID associated with the credentials used to sign the
|
947
|
-
# If you use an account ID, do not include any hyphens
|
948
|
-
# ID.
|
946
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
947
|
+
# AWS account ID associated with the credentials used to sign the
|
948
|
+
# request. If you use an account ID, do not include any hyphens
|
949
|
+
# ('-') in the ID.
|
949
950
|
# @return [String]
|
950
951
|
#
|
951
952
|
# @!attribute [rw] vault_name
|
@@ -958,7 +959,7 @@ module Aws::Glacier
|
|
958
959
|
include Aws::Structure
|
959
960
|
end
|
960
961
|
|
961
|
-
# Contains the Amazon Glacier response to your request.
|
962
|
+
# Contains the Amazon S3 Glacier response to your request.
|
962
963
|
#
|
963
964
|
# @!attribute [rw] policy
|
964
965
|
# The vault lock policy as a JSON string, which uses "\\" as an
|
@@ -1001,10 +1002,10 @@ module Aws::Glacier
|
|
1001
1002
|
# @!attribute [rw] account_id
|
1002
1003
|
# The `AccountId` value is the AWS account ID of the account that owns
|
1003
1004
|
# the vault. You can either specify an AWS account ID or optionally a
|
1004
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
1005
|
-
# account ID associated with the credentials used to sign the
|
1006
|
-
# If you use an account ID, do not include any hyphens
|
1007
|
-
# ID.
|
1005
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
1006
|
+
# AWS account ID associated with the credentials used to sign the
|
1007
|
+
# request. If you use an account ID, do not include any hyphens
|
1008
|
+
# ('-') in the ID.
|
1008
1009
|
# @return [String]
|
1009
1010
|
#
|
1010
1011
|
# @!attribute [rw] vault_name
|
@@ -1017,7 +1018,7 @@ module Aws::Glacier
|
|
1017
1018
|
include Aws::Structure
|
1018
1019
|
end
|
1019
1020
|
|
1020
|
-
# Contains the Amazon Glacier response to your request.
|
1021
|
+
# Contains the Amazon S3 Glacier response to your request.
|
1021
1022
|
#
|
1022
1023
|
# @!attribute [rw] vault_notification_config
|
1023
1024
|
# Returns the notification configuration set on the vault.
|
@@ -1028,10 +1029,10 @@ module Aws::Glacier
|
|
1028
1029
|
include Aws::Structure
|
1029
1030
|
end
|
1030
1031
|
|
1031
|
-
# Contains the description of an Amazon Glacier job.
|
1032
|
+
# Contains the description of an Amazon S3 Glacier job.
|
1032
1033
|
#
|
1033
1034
|
# @!attribute [rw] job_id
|
1034
|
-
# An opaque string that identifies an Amazon Glacier job.
|
1035
|
+
# An opaque string that identifies an Amazon S3 Glacier job.
|
1035
1036
|
# @return [String]
|
1036
1037
|
#
|
1037
1038
|
# @!attribute [rw] job_description
|
@@ -1256,7 +1257,7 @@ module Aws::Glacier
|
|
1256
1257
|
include Aws::Structure
|
1257
1258
|
end
|
1258
1259
|
|
1259
|
-
# Provides options for initiating an Amazon Glacier job.
|
1260
|
+
# Provides options for initiating an Amazon S3 Glacier job.
|
1260
1261
|
#
|
1261
1262
|
# @note When making an API call, you may pass InitiateJobInput
|
1262
1263
|
# data as a hash:
|
@@ -1338,10 +1339,10 @@ module Aws::Glacier
|
|
1338
1339
|
# @!attribute [rw] account_id
|
1339
1340
|
# The `AccountId` value is the AWS account ID of the account that owns
|
1340
1341
|
# the vault. You can either specify an AWS account ID or optionally a
|
1341
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
1342
|
-
# account ID associated with the credentials used to sign the
|
1343
|
-
# If you use an account ID, do not include any hyphens
|
1344
|
-
# ID.
|
1342
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
1343
|
+
# AWS account ID associated with the credentials used to sign the
|
1344
|
+
# request. If you use an account ID, do not include any hyphens
|
1345
|
+
# ('-') in the ID.
|
1345
1346
|
# @return [String]
|
1346
1347
|
#
|
1347
1348
|
# @!attribute [rw] vault_name
|
@@ -1359,7 +1360,7 @@ module Aws::Glacier
|
|
1359
1360
|
include Aws::Structure
|
1360
1361
|
end
|
1361
1362
|
|
1362
|
-
# Contains the Amazon Glacier response to your request.
|
1363
|
+
# Contains the Amazon S3 Glacier response to your request.
|
1363
1364
|
#
|
1364
1365
|
# @!attribute [rw] location
|
1365
1366
|
# The relative URI path of the job.
|
@@ -1380,7 +1381,7 @@ module Aws::Glacier
|
|
1380
1381
|
include Aws::Structure
|
1381
1382
|
end
|
1382
1383
|
|
1383
|
-
# Provides options for initiating a multipart upload to an Amazon
|
1384
|
+
# Provides options for initiating a multipart upload to an Amazon S3
|
1384
1385
|
# Glacier vault.
|
1385
1386
|
#
|
1386
1387
|
# @note When making an API call, you may pass InitiateMultipartUploadInput
|
@@ -1396,10 +1397,10 @@ module Aws::Glacier
|
|
1396
1397
|
# @!attribute [rw] account_id
|
1397
1398
|
# The `AccountId` value is the AWS account ID of the account that owns
|
1398
1399
|
# the vault. You can either specify an AWS account ID or optionally a
|
1399
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
1400
|
-
# account ID associated with the credentials used to sign the
|
1401
|
-
# If you use an account ID, do not include any hyphens
|
1402
|
-
# ID.
|
1400
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
1401
|
+
# AWS account ID associated with the credentials used to sign the
|
1402
|
+
# request. If you use an account ID, do not include any hyphens
|
1403
|
+
# ('-') in the ID.
|
1403
1404
|
# @return [String]
|
1404
1405
|
#
|
1405
1406
|
# @!attribute [rw] vault_name
|
@@ -1428,10 +1429,10 @@ module Aws::Glacier
|
|
1428
1429
|
include Aws::Structure
|
1429
1430
|
end
|
1430
1431
|
|
1431
|
-
# The Amazon Glacier response to your request.
|
1432
|
+
# The Amazon S3 Glacier response to your request.
|
1432
1433
|
#
|
1433
1434
|
# @!attribute [rw] location
|
1434
|
-
# The relative URI path of the multipart upload ID Amazon Glacier
|
1435
|
+
# The relative URI path of the multipart upload ID Amazon S3 Glacier
|
1435
1436
|
# created.
|
1436
1437
|
# @return [String]
|
1437
1438
|
#
|
@@ -1485,7 +1486,7 @@ module Aws::Glacier
|
|
1485
1486
|
include Aws::Structure
|
1486
1487
|
end
|
1487
1488
|
|
1488
|
-
# Contains the Amazon Glacier response to your request.
|
1489
|
+
# Contains the Amazon S3 Glacier response to your request.
|
1489
1490
|
#
|
1490
1491
|
# @!attribute [rw] lock_id
|
1491
1492
|
# The lock ID, which is used to complete the vault locking process.
|
@@ -1599,7 +1600,7 @@ module Aws::Glacier
|
|
1599
1600
|
#
|
1600
1601
|
#
|
1601
1602
|
#
|
1602
|
-
# [1]:
|
1603
|
+
# [1]: https://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html#api-initiate-job-post-vault-inventory-list-filtering
|
1603
1604
|
# @return [String]
|
1604
1605
|
#
|
1605
1606
|
class InventoryRetrievalJobDescription < Struct.new(
|
@@ -1763,7 +1764,7 @@ module Aws::Glacier
|
|
1763
1764
|
# @return [String]
|
1764
1765
|
#
|
1765
1766
|
# @!attribute [rw] sns_topic
|
1766
|
-
# The Amazon SNS topic ARN to which Amazon Glacier sends a
|
1767
|
+
# The Amazon SNS topic ARN to which Amazon S3 Glacier sends a
|
1767
1768
|
# notification when the job is completed and the output is ready for
|
1768
1769
|
# you to download. The specified topic publishes the notification to
|
1769
1770
|
# its subscribers. The SNS topic must exist.
|
@@ -1839,7 +1840,7 @@ module Aws::Glacier
|
|
1839
1840
|
include Aws::Structure
|
1840
1841
|
end
|
1841
1842
|
|
1842
|
-
# Provides options for retrieving a job list for an Amazon Glacier
|
1843
|
+
# Provides options for retrieving a job list for an Amazon S3 Glacier
|
1843
1844
|
# vault.
|
1844
1845
|
#
|
1845
1846
|
# @note When making an API call, you may pass ListJobsInput
|
@@ -1857,10 +1858,10 @@ module Aws::Glacier
|
|
1857
1858
|
# @!attribute [rw] account_id
|
1858
1859
|
# The `AccountId` value is the AWS account ID of the account that owns
|
1859
1860
|
# the vault. You can either specify an AWS account ID or optionally a
|
1860
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
1861
|
-
# account ID associated with the credentials used to sign the
|
1862
|
-
# If you use an account ID, do not include any hyphens
|
1863
|
-
# ID.
|
1861
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
1862
|
+
# AWS account ID associated with the credentials used to sign the
|
1863
|
+
# request. If you use an account ID, do not include any hyphens
|
1864
|
+
# ('-') in the ID.
|
1864
1865
|
# @return [String]
|
1865
1866
|
#
|
1866
1867
|
# @!attribute [rw] vault_name
|
@@ -1900,7 +1901,7 @@ module Aws::Glacier
|
|
1900
1901
|
include Aws::Structure
|
1901
1902
|
end
|
1902
1903
|
|
1903
|
-
# Contains the Amazon Glacier response to your request.
|
1904
|
+
# Contains the Amazon S3 Glacier response to your request.
|
1904
1905
|
#
|
1905
1906
|
# @!attribute [rw] job_list
|
1906
1907
|
# A list of job objects. Each job object contains metadata describing
|
@@ -1937,10 +1938,10 @@ module Aws::Glacier
|
|
1937
1938
|
# @!attribute [rw] account_id
|
1938
1939
|
# The `AccountId` value is the AWS account ID of the account that owns
|
1939
1940
|
# the vault. You can either specify an AWS account ID or optionally a
|
1940
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
1941
|
-
# account ID associated with the credentials used to sign the
|
1942
|
-
# If you use an account ID, do not include any hyphens
|
1943
|
-
# ID.
|
1941
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
1942
|
+
# AWS account ID associated with the credentials used to sign the
|
1943
|
+
# request. If you use an account ID, do not include any hyphens
|
1944
|
+
# ('-') in the ID.
|
1944
1945
|
# @return [String]
|
1945
1946
|
#
|
1946
1947
|
# @!attribute [rw] vault_name
|
@@ -1969,7 +1970,7 @@ module Aws::Glacier
|
|
1969
1970
|
include Aws::Structure
|
1970
1971
|
end
|
1971
1972
|
|
1972
|
-
# Contains the Amazon Glacier response to your request.
|
1973
|
+
# Contains the Amazon S3 Glacier response to your request.
|
1973
1974
|
#
|
1974
1975
|
# @!attribute [rw] uploads_list
|
1975
1976
|
# A list of in-progress multipart uploads.
|
@@ -2005,10 +2006,10 @@ module Aws::Glacier
|
|
2005
2006
|
# @!attribute [rw] account_id
|
2006
2007
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2007
2008
|
# the vault. You can either specify an AWS account ID or optionally a
|
2008
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2009
|
-
# account ID associated with the credentials used to sign the
|
2010
|
-
# If you use an account ID, do not include any hyphens
|
2011
|
-
# ID.
|
2009
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2010
|
+
# AWS account ID associated with the credentials used to sign the
|
2011
|
+
# request. If you use an account ID, do not include any hyphens
|
2012
|
+
# ('-') in the ID.
|
2012
2013
|
# @return [String]
|
2013
2014
|
#
|
2014
2015
|
# @!attribute [rw] vault_name
|
@@ -2042,7 +2043,7 @@ module Aws::Glacier
|
|
2042
2043
|
include Aws::Structure
|
2043
2044
|
end
|
2044
2045
|
|
2045
|
-
# Contains the Amazon Glacier response to your request.
|
2046
|
+
# Contains the Amazon S3 Glacier response to your request.
|
2046
2047
|
#
|
2047
2048
|
# @!attribute [rw] multipart_upload_id
|
2048
2049
|
# The ID of the upload to which the parts are associated.
|
@@ -2101,7 +2102,7 @@ module Aws::Glacier
|
|
2101
2102
|
# @!attribute [rw] account_id
|
2102
2103
|
# The AWS account ID of the account that owns the vault. You can
|
2103
2104
|
# either specify an AWS account ID or optionally a single '-'
|
2104
|
-
# (hyphen), in which case Amazon Glacier uses the AWS account ID
|
2105
|
+
# (hyphen), in which case Amazon S3 Glacier uses the AWS account ID
|
2105
2106
|
# associated with the credentials used to sign the request. If you use
|
2106
2107
|
# an account ID, don't include any hyphens ('-') in the ID.
|
2107
2108
|
# @return [String]
|
@@ -2133,10 +2134,10 @@ module Aws::Glacier
|
|
2133
2134
|
# @!attribute [rw] account_id
|
2134
2135
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2135
2136
|
# the vault. You can either specify an AWS account ID or optionally a
|
2136
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2137
|
-
# account ID associated with the credentials used to sign the
|
2138
|
-
# If you use an account ID, do not include any hyphens
|
2139
|
-
# ID.
|
2137
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2138
|
+
# AWS account ID associated with the credentials used to sign the
|
2139
|
+
# request. If you use an account ID, do not include any hyphens
|
2140
|
+
# ('-') in the ID.
|
2140
2141
|
# @return [String]
|
2141
2142
|
#
|
2142
2143
|
# @!attribute [rw] vault_name
|
@@ -2149,7 +2150,7 @@ module Aws::Glacier
|
|
2149
2150
|
include Aws::Structure
|
2150
2151
|
end
|
2151
2152
|
|
2152
|
-
# Contains the Amazon Glacier response to your request.
|
2153
|
+
# Contains the Amazon S3 Glacier response to your request.
|
2153
2154
|
#
|
2154
2155
|
# @!attribute [rw] tags
|
2155
2156
|
# The tags attached to the vault. Each tag is composed of a key and a
|
@@ -2202,7 +2203,7 @@ module Aws::Glacier
|
|
2202
2203
|
include Aws::Structure
|
2203
2204
|
end
|
2204
2205
|
|
2205
|
-
# Contains the Amazon Glacier response to your request.
|
2206
|
+
# Contains the Amazon S3 Glacier response to your request.
|
2206
2207
|
#
|
2207
2208
|
# @!attribute [rw] vault_list
|
2208
2209
|
# List of vaults.
|
@@ -2321,7 +2322,7 @@ module Aws::Glacier
|
|
2321
2322
|
# @return [String]
|
2322
2323
|
#
|
2323
2324
|
# @!attribute [rw] sha256_tree_hash
|
2324
|
-
# The SHA256 tree hash value that Amazon Glacier calculated for the
|
2325
|
+
# The SHA256 tree hash value that Amazon S3 Glacier calculated for the
|
2325
2326
|
# part. This field is never `null`.
|
2326
2327
|
# @return [String]
|
2327
2328
|
#
|
@@ -2387,7 +2388,7 @@ module Aws::Glacier
|
|
2387
2388
|
# @!attribute [rw] account_id
|
2388
2389
|
# The AWS account ID of the account that owns the vault. You can
|
2389
2390
|
# either specify an AWS account ID or optionally a single '-'
|
2390
|
-
# (hyphen), in which case Amazon Glacier uses the AWS account ID
|
2391
|
+
# (hyphen), in which case Amazon S3 Glacier uses the AWS account ID
|
2391
2392
|
# associated with the credentials used to sign the request. If you use
|
2392
2393
|
# an account ID, don't include any hyphens ('-') in the ID.
|
2393
2394
|
# @return [String]
|
@@ -2420,10 +2421,10 @@ module Aws::Glacier
|
|
2420
2421
|
# @!attribute [rw] account_id
|
2421
2422
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2422
2423
|
# the vault. You can either specify an AWS account ID or optionally a
|
2423
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2424
|
-
# account ID associated with the credentials used to sign the
|
2425
|
-
# If you use an account ID, do not include any hyphens
|
2426
|
-
# ID.
|
2424
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2425
|
+
# AWS account ID associated with the credentials used to sign the
|
2426
|
+
# request. If you use an account ID, do not include any hyphens
|
2427
|
+
# ('-') in the ID.
|
2427
2428
|
# @return [String]
|
2428
2429
|
#
|
2429
2430
|
# @!attribute [rw] vault_name
|
@@ -2442,8 +2443,8 @@ module Aws::Glacier
|
|
2442
2443
|
include Aws::Structure
|
2443
2444
|
end
|
2444
2445
|
|
2445
|
-
# Returned if, when uploading an archive, Amazon Glacier times out
|
2446
|
-
# receiving the upload.
|
2446
|
+
# Returned if, when uploading an archive, Amazon S3 Glacier times out
|
2447
|
+
# while receiving the upload.
|
2447
2448
|
#
|
2448
2449
|
# @!attribute [rw] type
|
2449
2450
|
# Client
|
@@ -2454,7 +2455,7 @@ module Aws::Glacier
|
|
2454
2455
|
# @return [String]
|
2455
2456
|
#
|
2456
2457
|
# @!attribute [rw] message
|
2457
|
-
# Returned if, when uploading an archive, Amazon Glacier times out
|
2458
|
+
# Returned if, when uploading an archive, Amazon S3 Glacier times out
|
2458
2459
|
# while receiving the upload.
|
2459
2460
|
# @return [String]
|
2460
2461
|
#
|
@@ -2696,10 +2697,10 @@ module Aws::Glacier
|
|
2696
2697
|
# @!attribute [rw] account_id
|
2697
2698
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2698
2699
|
# the vault. You can either specify an AWS account ID or optionally a
|
2699
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2700
|
-
# account ID associated with the credentials used to sign the
|
2701
|
-
# If you use an account ID, do not include any hyphens
|
2702
|
-
# ID.
|
2700
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2701
|
+
# AWS account ID associated with the credentials used to sign the
|
2702
|
+
# request. If you use an account ID, do not include any hyphens
|
2703
|
+
# ('-') in the ID.
|
2703
2704
|
# @return [String]
|
2704
2705
|
#
|
2705
2706
|
# @!attribute [rw] vault_name
|
@@ -2735,10 +2736,10 @@ module Aws::Glacier
|
|
2735
2736
|
# @!attribute [rw] account_id
|
2736
2737
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2737
2738
|
# the vault. You can either specify an AWS account ID or optionally a
|
2738
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2739
|
-
# account ID associated with the credentials used to sign the
|
2740
|
-
# If you use an account ID, do not include any hyphens
|
2741
|
-
# ID.
|
2739
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2740
|
+
# AWS account ID associated with the credentials used to sign the
|
2741
|
+
# request. If you use an account ID, do not include any hyphens
|
2742
|
+
# ('-') in the ID.
|
2742
2743
|
# @return [String]
|
2743
2744
|
#
|
2744
2745
|
# @!attribute [rw] vault_name
|
@@ -2776,10 +2777,10 @@ module Aws::Glacier
|
|
2776
2777
|
# @!attribute [rw] account_id
|
2777
2778
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2778
2779
|
# the vault. You can either specify an AWS account ID or optionally a
|
2779
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2780
|
-
# account ID associated with the credentials used to sign the
|
2781
|
-
# If you use an account ID, do not include any hyphens
|
2782
|
-
# ID.
|
2780
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2781
|
+
# AWS account ID associated with the credentials used to sign the
|
2782
|
+
# request. If you use an account ID, do not include any hyphens
|
2783
|
+
# ('-') in the ID.
|
2783
2784
|
# @return [String]
|
2784
2785
|
#
|
2785
2786
|
# @!attribute [rw] archive_description
|
@@ -2856,10 +2857,10 @@ module Aws::Glacier
|
|
2856
2857
|
# @!attribute [rw] account_id
|
2857
2858
|
# The `AccountId` value is the AWS account ID of the account that owns
|
2858
2859
|
# the vault. You can either specify an AWS account ID or optionally a
|
2859
|
-
# single '`-`' (hyphen), in which case Amazon Glacier uses the
|
2860
|
-
# account ID associated with the credentials used to sign the
|
2861
|
-
# If you use an account ID, do not include any hyphens
|
2862
|
-
# ID.
|
2860
|
+
# single '`-`' (hyphen), in which case Amazon S3 Glacier uses the
|
2861
|
+
# AWS account ID associated with the credentials used to sign the
|
2862
|
+
# request. If you use an account ID, do not include any hyphens
|
2863
|
+
# ('-') in the ID.
|
2863
2864
|
# @return [String]
|
2864
2865
|
#
|
2865
2866
|
# @!attribute [rw] vault_name
|
@@ -2876,7 +2877,7 @@ module Aws::Glacier
|
|
2876
2877
|
#
|
2877
2878
|
# @!attribute [rw] range
|
2878
2879
|
# Identifies the range of bytes in the assembled archive that will be
|
2879
|
-
# uploaded in this part. Amazon Glacier uses this information to
|
2880
|
+
# uploaded in this part. Amazon S3 Glacier uses this information to
|
2880
2881
|
# assemble the archive in the proper sequence. The format of this
|
2881
2882
|
# header follows RFC 2616. An example header is Content-Range:bytes
|
2882
2883
|
# 0-4194303/*.
|
@@ -2896,11 +2897,11 @@ module Aws::Glacier
|
|
2896
2897
|
include Aws::Structure
|
2897
2898
|
end
|
2898
2899
|
|
2899
|
-
# Contains the Amazon Glacier response to your request.
|
2900
|
+
# Contains the Amazon S3 Glacier response to your request.
|
2900
2901
|
#
|
2901
2902
|
# @!attribute [rw] checksum
|
2902
|
-
# The SHA256 tree hash that Amazon Glacier computed for the
|
2903
|
-
# part.
|
2903
|
+
# The SHA256 tree hash that Amazon S3 Glacier computed for the
|
2904
|
+
# uploaded part.
|
2904
2905
|
# @return [String]
|
2905
2906
|
#
|
2906
2907
|
class UploadMultipartPartOutput < Struct.new(
|
@@ -2960,7 +2961,7 @@ module Aws::Glacier
|
|
2960
2961
|
# @return [String]
|
2961
2962
|
#
|
2962
2963
|
# @!attribute [rw] events
|
2963
|
-
# A list of one or more events for which Amazon Glacier will send a
|
2964
|
+
# A list of one or more events for which Amazon S3 Glacier will send a
|
2964
2965
|
# notification to the specified Amazon SNS topic.
|
2965
2966
|
# @return [Array<String>]
|
2966
2967
|
#
|