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
|
@@ -15,7 +15,7 @@ module Aws::Glacier
|
|
|
15
15
|
#
|
|
16
16
|
# For information about the underlying REST API, see [Abort Multipart
|
|
17
17
|
# Upload][1]. For conceptual information, see [Working with Archives in
|
|
18
|
-
# Amazon
|
|
18
|
+
# Amazon Glacier][2].
|
|
19
19
|
#
|
|
20
20
|
#
|
|
21
21
|
#
|
|
@@ -25,10 +25,10 @@ module Aws::Glacier
|
|
|
25
25
|
# @!attribute [rw] account_id
|
|
26
26
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
27
27
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
28
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
29
|
-
#
|
|
30
|
-
#
|
|
31
|
-
#
|
|
28
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
29
|
+
# account ID associated with the credentials used to sign the request.
|
|
30
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
31
|
+
# ID.
|
|
32
32
|
# @return [String]
|
|
33
33
|
#
|
|
34
34
|
# @!attribute [rw] vault_name
|
|
@@ -75,10 +75,10 @@ module Aws::Glacier
|
|
|
75
75
|
# @!attribute [rw] account_id
|
|
76
76
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
77
77
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
78
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
79
|
-
#
|
|
80
|
-
#
|
|
81
|
-
#
|
|
78
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
79
|
+
# account ID associated with the credentials used to sign the request.
|
|
80
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
81
|
+
# ID.
|
|
82
82
|
# @return [String]
|
|
83
83
|
#
|
|
84
84
|
# @!attribute [rw] vault_name
|
|
@@ -98,11 +98,11 @@ module Aws::Glacier
|
|
|
98
98
|
include Aws::Structure
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
-
# Contains the Amazon
|
|
101
|
+
# Contains the Amazon Glacier response to your request.
|
|
102
102
|
#
|
|
103
103
|
# For information about the underlying REST API, see [Upload
|
|
104
104
|
# Archive][1]. For conceptual information, see [Working with Archives in
|
|
105
|
-
# Amazon
|
|
105
|
+
# Amazon Glacier][2].
|
|
106
106
|
#
|
|
107
107
|
#
|
|
108
108
|
#
|
|
@@ -114,7 +114,7 @@ module Aws::Glacier
|
|
|
114
114
|
# @return [String]
|
|
115
115
|
#
|
|
116
116
|
# @!attribute [rw] checksum
|
|
117
|
-
# The checksum of the archive computed by Amazon
|
|
117
|
+
# The checksum of the archive computed by Amazon Glacier.
|
|
118
118
|
# @return [String]
|
|
119
119
|
#
|
|
120
120
|
# @!attribute [rw] archive_id
|
|
@@ -212,17 +212,17 @@ module Aws::Glacier
|
|
|
212
212
|
|
|
213
213
|
# Provides options to complete a multipart upload operation. This
|
|
214
214
|
# informs Amazon Glacier that all the archive parts have been uploaded
|
|
215
|
-
# and Amazon
|
|
215
|
+
# and Amazon Glacier (Glacier) can now assemble the archive from the
|
|
216
216
|
# uploaded parts. After assembling and saving the archive to the vault,
|
|
217
217
|
# Glacier returns the URI path of the newly created archive resource.
|
|
218
218
|
#
|
|
219
219
|
# @!attribute [rw] account_id
|
|
220
220
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
221
221
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
222
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
223
|
-
#
|
|
224
|
-
#
|
|
225
|
-
#
|
|
222
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
223
|
+
# account ID associated with the credentials used to sign the request.
|
|
224
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
225
|
+
# ID.
|
|
226
226
|
# @return [String]
|
|
227
227
|
#
|
|
228
228
|
# @!attribute [rw] vault_name
|
|
@@ -243,8 +243,8 @@ module Aws::Glacier
|
|
|
243
243
|
# The SHA256 tree hash of the entire archive. It is the tree hash of
|
|
244
244
|
# SHA256 tree hash of the individual parts. If the value you specify
|
|
245
245
|
# in the request does not match the SHA256 tree hash of the final
|
|
246
|
-
# assembled archive as computed by Amazon
|
|
247
|
-
#
|
|
246
|
+
# assembled archive as computed by Amazon Glacier (Glacier), Glacier
|
|
247
|
+
# returns an error and the request fails.
|
|
248
248
|
# @return [String]
|
|
249
249
|
#
|
|
250
250
|
class CompleteMultipartUploadInput < Struct.new(
|
|
@@ -309,7 +309,7 @@ module Aws::Glacier
|
|
|
309
309
|
include Aws::Structure
|
|
310
310
|
end
|
|
311
311
|
|
|
312
|
-
# Contains the Amazon
|
|
312
|
+
# Contains the Amazon Glacier response to your request.
|
|
313
313
|
#
|
|
314
314
|
# @!attribute [rw] location
|
|
315
315
|
# The URI of the vault that was created.
|
|
@@ -358,16 +358,15 @@ module Aws::Glacier
|
|
|
358
358
|
include Aws::Structure
|
|
359
359
|
end
|
|
360
360
|
|
|
361
|
-
# Provides options for deleting an archive from an Amazon
|
|
362
|
-
# vault.
|
|
361
|
+
# Provides options for deleting an archive from an Amazon Glacier vault.
|
|
363
362
|
#
|
|
364
363
|
# @!attribute [rw] account_id
|
|
365
364
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
366
365
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
367
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
368
|
-
#
|
|
369
|
-
#
|
|
370
|
-
#
|
|
366
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
367
|
+
# account ID associated with the credentials used to sign the request.
|
|
368
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
369
|
+
# ID.
|
|
371
370
|
# @return [String]
|
|
372
371
|
#
|
|
373
372
|
# @!attribute [rw] vault_name
|
|
@@ -391,10 +390,10 @@ module Aws::Glacier
|
|
|
391
390
|
# @!attribute [rw] account_id
|
|
392
391
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
393
392
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
394
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
395
|
-
#
|
|
396
|
-
#
|
|
397
|
-
#
|
|
393
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
394
|
+
# account ID associated with the credentials used to sign the request.
|
|
395
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
396
|
+
# ID.
|
|
398
397
|
# @return [String]
|
|
399
398
|
#
|
|
400
399
|
# @!attribute [rw] vault_name
|
|
@@ -408,15 +407,15 @@ module Aws::Glacier
|
|
|
408
407
|
include Aws::Structure
|
|
409
408
|
end
|
|
410
409
|
|
|
411
|
-
# Provides options for deleting a vault from Amazon
|
|
410
|
+
# Provides options for deleting a vault from Amazon Glacier.
|
|
412
411
|
#
|
|
413
412
|
# @!attribute [rw] account_id
|
|
414
413
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
415
414
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
416
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
417
|
-
#
|
|
418
|
-
#
|
|
419
|
-
#
|
|
415
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
416
|
+
# account ID associated with the credentials used to sign the request.
|
|
417
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
418
|
+
# ID.
|
|
420
419
|
# @return [String]
|
|
421
420
|
#
|
|
422
421
|
# @!attribute [rw] vault_name
|
|
@@ -436,10 +435,10 @@ module Aws::Glacier
|
|
|
436
435
|
# @!attribute [rw] account_id
|
|
437
436
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
438
437
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
439
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
440
|
-
#
|
|
441
|
-
#
|
|
442
|
-
#
|
|
438
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
439
|
+
# account ID associated with the credentials used to sign the request.
|
|
440
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
441
|
+
# ID.
|
|
443
442
|
# @return [String]
|
|
444
443
|
#
|
|
445
444
|
# @!attribute [rw] vault_name
|
|
@@ -458,10 +457,10 @@ module Aws::Glacier
|
|
|
458
457
|
# @!attribute [rw] account_id
|
|
459
458
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
460
459
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
461
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
462
|
-
#
|
|
463
|
-
#
|
|
464
|
-
#
|
|
460
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
461
|
+
# account ID associated with the credentials used to sign the request.
|
|
462
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
463
|
+
# ID.
|
|
465
464
|
# @return [String]
|
|
466
465
|
#
|
|
467
466
|
# @!attribute [rw] vault_name
|
|
@@ -486,10 +485,10 @@ module Aws::Glacier
|
|
|
486
485
|
# @!attribute [rw] account_id
|
|
487
486
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
488
487
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
489
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
490
|
-
#
|
|
491
|
-
#
|
|
492
|
-
#
|
|
488
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
489
|
+
# account ID associated with the credentials used to sign the request.
|
|
490
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
491
|
+
# ID.
|
|
493
492
|
# @return [String]
|
|
494
493
|
#
|
|
495
494
|
# @!attribute [rw] vault_name
|
|
@@ -503,7 +502,7 @@ module Aws::Glacier
|
|
|
503
502
|
include Aws::Structure
|
|
504
503
|
end
|
|
505
504
|
|
|
506
|
-
# Contains the Amazon
|
|
505
|
+
# Contains the Amazon Glacier response to your request.
|
|
507
506
|
#
|
|
508
507
|
# @!attribute [rw] vault_arn
|
|
509
508
|
# The Amazon Resource Name (ARN) of the vault.
|
|
@@ -520,7 +519,7 @@ module Aws::Glacier
|
|
|
520
519
|
# @return [Time]
|
|
521
520
|
#
|
|
522
521
|
# @!attribute [rw] last_inventory_date
|
|
523
|
-
# The Universal Coordinated Time (UTC) date when Amazon
|
|
522
|
+
# The Universal Coordinated Time (UTC) date when Amazon Glacier
|
|
524
523
|
# completed the last vault inventory. This value should be a string in
|
|
525
524
|
# the ISO 8601 date format, for example `2012-03-20T17:03:43.221Z`.
|
|
526
525
|
# @return [Time]
|
|
@@ -593,8 +592,8 @@ module Aws::Glacier
|
|
|
593
592
|
include Aws::Structure
|
|
594
593
|
end
|
|
595
594
|
|
|
596
|
-
# Contains the Amazon
|
|
597
|
-
#
|
|
595
|
+
# Contains the Amazon Glacier response to the `GetDataRetrievalPolicy`
|
|
596
|
+
# request.
|
|
598
597
|
#
|
|
599
598
|
# @!attribute [rw] policy
|
|
600
599
|
# Contains the returned data retrieval policy in JSON format.
|
|
@@ -606,15 +605,15 @@ module Aws::Glacier
|
|
|
606
605
|
include Aws::Structure
|
|
607
606
|
end
|
|
608
607
|
|
|
609
|
-
# Provides options for downloading output of an Amazon
|
|
608
|
+
# Provides options for downloading output of an Amazon Glacier job.
|
|
610
609
|
#
|
|
611
610
|
# @!attribute [rw] account_id
|
|
612
611
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
613
612
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
614
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
615
|
-
#
|
|
616
|
-
#
|
|
617
|
-
#
|
|
613
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
614
|
+
# account ID associated with the credentials used to sign the request.
|
|
615
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
616
|
+
# ID.
|
|
618
617
|
# @return [String]
|
|
619
618
|
#
|
|
620
619
|
# @!attribute [rw] vault_name
|
|
@@ -654,7 +653,7 @@ module Aws::Glacier
|
|
|
654
653
|
# values to find the checksum of the entire output. Using the
|
|
655
654
|
# DescribeJob API, obtain job information of the job that provided
|
|
656
655
|
# you the output. The response includes the checksum of the entire
|
|
657
|
-
# archive stored in Amazon
|
|
656
|
+
# archive stored in Amazon Glacier. You compare this value with
|
|
658
657
|
# the checksum you computed to ensure you have downloaded the
|
|
659
658
|
# entire archive content with no errors.
|
|
660
659
|
# @return [String]
|
|
@@ -668,7 +667,7 @@ module Aws::Glacier
|
|
|
668
667
|
include Aws::Structure
|
|
669
668
|
end
|
|
670
669
|
|
|
671
|
-
# Contains the Amazon
|
|
670
|
+
# Contains the Amazon Glacier response to your request.
|
|
672
671
|
#
|
|
673
672
|
# @!attribute [rw] body
|
|
674
673
|
# The job data, either archive data or inventory data.
|
|
@@ -701,9 +700,9 @@ module Aws::Glacier
|
|
|
701
700
|
# @return [Integer]
|
|
702
701
|
#
|
|
703
702
|
# @!attribute [rw] content_range
|
|
704
|
-
# The range of bytes returned by Amazon
|
|
703
|
+
# The range of bytes returned by Amazon Glacier. If only partial
|
|
705
704
|
# output is downloaded, the response provides the range of bytes
|
|
706
|
-
# Amazon
|
|
705
|
+
# Amazon Glacier returned. For example, bytes 0-1048575/8388608
|
|
707
706
|
# returns the first 1 MB from 8 MB.
|
|
708
707
|
# @return [String]
|
|
709
708
|
#
|
|
@@ -746,10 +745,10 @@ module Aws::Glacier
|
|
|
746
745
|
# @!attribute [rw] account_id
|
|
747
746
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
748
747
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
749
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
750
|
-
#
|
|
751
|
-
#
|
|
752
|
-
#
|
|
748
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
749
|
+
# account ID associated with the credentials used to sign the request.
|
|
750
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
751
|
+
# ID.
|
|
753
752
|
# @return [String]
|
|
754
753
|
#
|
|
755
754
|
# @!attribute [rw] vault_name
|
|
@@ -780,10 +779,10 @@ module Aws::Glacier
|
|
|
780
779
|
# @!attribute [rw] account_id
|
|
781
780
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
782
781
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
783
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
784
|
-
#
|
|
785
|
-
#
|
|
786
|
-
#
|
|
782
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
783
|
+
# account ID associated with the credentials used to sign the request.
|
|
784
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
785
|
+
# ID.
|
|
787
786
|
# @return [String]
|
|
788
787
|
#
|
|
789
788
|
# @!attribute [rw] vault_name
|
|
@@ -797,7 +796,7 @@ module Aws::Glacier
|
|
|
797
796
|
include Aws::Structure
|
|
798
797
|
end
|
|
799
798
|
|
|
800
|
-
# Contains the Amazon
|
|
799
|
+
# Contains the Amazon Glacier response to your request.
|
|
801
800
|
#
|
|
802
801
|
# @!attribute [rw] policy
|
|
803
802
|
# The vault lock policy as a JSON string, which uses "\\" as an
|
|
@@ -833,10 +832,10 @@ module Aws::Glacier
|
|
|
833
832
|
# @!attribute [rw] account_id
|
|
834
833
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
835
834
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
836
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
837
|
-
#
|
|
838
|
-
#
|
|
839
|
-
#
|
|
835
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
836
|
+
# account ID associated with the credentials used to sign the request.
|
|
837
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
838
|
+
# ID.
|
|
840
839
|
# @return [String]
|
|
841
840
|
#
|
|
842
841
|
# @!attribute [rw] vault_name
|
|
@@ -850,7 +849,7 @@ module Aws::Glacier
|
|
|
850
849
|
include Aws::Structure
|
|
851
850
|
end
|
|
852
851
|
|
|
853
|
-
# Contains the Amazon
|
|
852
|
+
# Contains the Amazon Glacier response to your request.
|
|
854
853
|
#
|
|
855
854
|
# @!attribute [rw] vault_notification_config
|
|
856
855
|
# Returns the notification configuration set on the vault.
|
|
@@ -1068,15 +1067,15 @@ module Aws::Glacier
|
|
|
1068
1067
|
include Aws::Structure
|
|
1069
1068
|
end
|
|
1070
1069
|
|
|
1071
|
-
# Provides options for initiating an Amazon
|
|
1070
|
+
# Provides options for initiating an Amazon Glacier job.
|
|
1072
1071
|
#
|
|
1073
1072
|
# @!attribute [rw] account_id
|
|
1074
1073
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1075
1074
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1076
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1077
|
-
#
|
|
1078
|
-
#
|
|
1079
|
-
#
|
|
1075
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1076
|
+
# account ID associated with the credentials used to sign the request.
|
|
1077
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1078
|
+
# ID.
|
|
1080
1079
|
# @return [String]
|
|
1081
1080
|
#
|
|
1082
1081
|
# @!attribute [rw] vault_name
|
|
@@ -1095,7 +1094,7 @@ module Aws::Glacier
|
|
|
1095
1094
|
include Aws::Structure
|
|
1096
1095
|
end
|
|
1097
1096
|
|
|
1098
|
-
# Contains the Amazon
|
|
1097
|
+
# Contains the Amazon Glacier response to your request.
|
|
1099
1098
|
#
|
|
1100
1099
|
# @!attribute [rw] location
|
|
1101
1100
|
# The relative URI path of the job.
|
|
@@ -1117,16 +1116,16 @@ module Aws::Glacier
|
|
|
1117
1116
|
include Aws::Structure
|
|
1118
1117
|
end
|
|
1119
1118
|
|
|
1120
|
-
# Provides options for initiating a multipart upload to an Amazon
|
|
1119
|
+
# Provides options for initiating a multipart upload to an Amazon
|
|
1121
1120
|
# Glacier vault.
|
|
1122
1121
|
#
|
|
1123
1122
|
# @!attribute [rw] account_id
|
|
1124
1123
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1125
1124
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1126
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1127
|
-
#
|
|
1128
|
-
#
|
|
1129
|
-
#
|
|
1125
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1126
|
+
# account ID associated with the credentials used to sign the request.
|
|
1127
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1128
|
+
# ID.
|
|
1130
1129
|
# @return [String]
|
|
1131
1130
|
#
|
|
1132
1131
|
# @!attribute [rw] vault_name
|
|
@@ -1156,10 +1155,10 @@ module Aws::Glacier
|
|
|
1156
1155
|
include Aws::Structure
|
|
1157
1156
|
end
|
|
1158
1157
|
|
|
1159
|
-
# The Amazon
|
|
1158
|
+
# The Amazon Glacier response to your request.
|
|
1160
1159
|
#
|
|
1161
1160
|
# @!attribute [rw] location
|
|
1162
|
-
# The relative URI path of the multipart upload ID Amazon
|
|
1161
|
+
# The relative URI path of the multipart upload ID Amazon Glacier
|
|
1163
1162
|
# created.
|
|
1164
1163
|
# @return [String]
|
|
1165
1164
|
#
|
|
@@ -1204,7 +1203,7 @@ module Aws::Glacier
|
|
|
1204
1203
|
include Aws::Structure
|
|
1205
1204
|
end
|
|
1206
1205
|
|
|
1207
|
-
# Contains the Amazon
|
|
1206
|
+
# Contains the Amazon Glacier response to your request.
|
|
1208
1207
|
#
|
|
1209
1208
|
# @!attribute [rw] lock_id
|
|
1210
1209
|
# The lock ID, which is used to complete the vault locking process.
|
|
@@ -1391,7 +1390,7 @@ module Aws::Glacier
|
|
|
1391
1390
|
# @return [String]
|
|
1392
1391
|
#
|
|
1393
1392
|
# @!attribute [rw] sns_topic
|
|
1394
|
-
# The Amazon SNS topic ARN to which Amazon
|
|
1393
|
+
# The Amazon SNS topic ARN to which Amazon Glacier sends a
|
|
1395
1394
|
# notification when the job is completed and the output is ready for
|
|
1396
1395
|
# you to download. The specified topic publishes the notification to
|
|
1397
1396
|
# its subscribers. The SNS topic must exist.
|
|
@@ -1469,16 +1468,16 @@ module Aws::Glacier
|
|
|
1469
1468
|
include Aws::Structure
|
|
1470
1469
|
end
|
|
1471
1470
|
|
|
1472
|
-
# Provides options for retrieving a job list for an Amazon
|
|
1471
|
+
# Provides options for retrieving a job list for an Amazon Glacier
|
|
1473
1472
|
# vault.
|
|
1474
1473
|
#
|
|
1475
1474
|
# @!attribute [rw] account_id
|
|
1476
1475
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1477
1476
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1478
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1479
|
-
#
|
|
1480
|
-
#
|
|
1481
|
-
#
|
|
1477
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1478
|
+
# account ID associated with the credentials used to sign the request.
|
|
1479
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1480
|
+
# ID.
|
|
1482
1481
|
# @return [String]
|
|
1483
1482
|
#
|
|
1484
1483
|
# @!attribute [rw] vault_name
|
|
@@ -1519,7 +1518,7 @@ module Aws::Glacier
|
|
|
1519
1518
|
include Aws::Structure
|
|
1520
1519
|
end
|
|
1521
1520
|
|
|
1522
|
-
# Contains the Amazon
|
|
1521
|
+
# Contains the Amazon Glacier response to your request.
|
|
1523
1522
|
#
|
|
1524
1523
|
# @!attribute [rw] job_list
|
|
1525
1524
|
# A list of job objects. Each job object contains metadata describing
|
|
@@ -1547,10 +1546,10 @@ module Aws::Glacier
|
|
|
1547
1546
|
# @!attribute [rw] account_id
|
|
1548
1547
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1549
1548
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1550
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1551
|
-
#
|
|
1552
|
-
#
|
|
1553
|
-
#
|
|
1549
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1550
|
+
# account ID associated with the credentials used to sign the request.
|
|
1551
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1552
|
+
# ID.
|
|
1554
1553
|
# @return [String]
|
|
1555
1554
|
#
|
|
1556
1555
|
# @!attribute [rw] vault_name
|
|
@@ -1580,7 +1579,7 @@ module Aws::Glacier
|
|
|
1580
1579
|
include Aws::Structure
|
|
1581
1580
|
end
|
|
1582
1581
|
|
|
1583
|
-
# Contains the Amazon
|
|
1582
|
+
# Contains the Amazon Glacier response to your request.
|
|
1584
1583
|
#
|
|
1585
1584
|
# @!attribute [rw] uploads_list
|
|
1586
1585
|
# A list of in-progress multipart uploads.
|
|
@@ -1606,10 +1605,10 @@ module Aws::Glacier
|
|
|
1606
1605
|
# @!attribute [rw] account_id
|
|
1607
1606
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1608
1607
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1609
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1610
|
-
#
|
|
1611
|
-
#
|
|
1612
|
-
#
|
|
1608
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1609
|
+
# account ID associated with the credentials used to sign the request.
|
|
1610
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1611
|
+
# ID.
|
|
1613
1612
|
# @return [String]
|
|
1614
1613
|
#
|
|
1615
1614
|
# @!attribute [rw] vault_name
|
|
@@ -1644,7 +1643,7 @@ module Aws::Glacier
|
|
|
1644
1643
|
include Aws::Structure
|
|
1645
1644
|
end
|
|
1646
1645
|
|
|
1647
|
-
# Contains the Amazon
|
|
1646
|
+
# Contains the Amazon Glacier response to your request.
|
|
1648
1647
|
#
|
|
1649
1648
|
# @!attribute [rw] multipart_upload_id
|
|
1650
1649
|
# The ID of the upload to which the parts are associated.
|
|
@@ -1697,7 +1696,7 @@ module Aws::Glacier
|
|
|
1697
1696
|
# @!attribute [rw] account_id
|
|
1698
1697
|
# The AWS account ID of the account that owns the vault. You can
|
|
1699
1698
|
# either specify an AWS account ID or optionally a single '-'
|
|
1700
|
-
# (hyphen), in which case Amazon
|
|
1699
|
+
# (hyphen), in which case Amazon Glacier uses the AWS account ID
|
|
1701
1700
|
# associated with the credentials used to sign the request. If you use
|
|
1702
1701
|
# an account ID, don't include any hyphens ('-') in the ID.
|
|
1703
1702
|
# @return [String]
|
|
@@ -1723,10 +1722,10 @@ module Aws::Glacier
|
|
|
1723
1722
|
# @!attribute [rw] account_id
|
|
1724
1723
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1725
1724
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1726
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1727
|
-
#
|
|
1728
|
-
#
|
|
1729
|
-
#
|
|
1725
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1726
|
+
# account ID associated with the credentials used to sign the request.
|
|
1727
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1728
|
+
# ID.
|
|
1730
1729
|
# @return [String]
|
|
1731
1730
|
#
|
|
1732
1731
|
# @!attribute [rw] vault_name
|
|
@@ -1740,7 +1739,7 @@ module Aws::Glacier
|
|
|
1740
1739
|
include Aws::Structure
|
|
1741
1740
|
end
|
|
1742
1741
|
|
|
1743
|
-
# Contains the Amazon
|
|
1742
|
+
# Contains the Amazon Glacier response to your request.
|
|
1744
1743
|
#
|
|
1745
1744
|
# @!attribute [rw] tags
|
|
1746
1745
|
# The tags attached to the vault. Each tag is composed of a key and a
|
|
@@ -1786,7 +1785,7 @@ module Aws::Glacier
|
|
|
1786
1785
|
include Aws::Structure
|
|
1787
1786
|
end
|
|
1788
1787
|
|
|
1789
|
-
# Contains the Amazon
|
|
1788
|
+
# Contains the Amazon Glacier response to your request.
|
|
1790
1789
|
#
|
|
1791
1790
|
# @!attribute [rw] vault_list
|
|
1792
1791
|
# List of vaults.
|
|
@@ -1828,6 +1827,23 @@ module Aws::Glacier
|
|
|
1828
1827
|
include Aws::Structure
|
|
1829
1828
|
end
|
|
1830
1829
|
|
|
1830
|
+
# @!attribute [rw] type
|
|
1831
|
+
# @return [String]
|
|
1832
|
+
#
|
|
1833
|
+
# @!attribute [rw] code
|
|
1834
|
+
# @return [String]
|
|
1835
|
+
#
|
|
1836
|
+
# @!attribute [rw] message
|
|
1837
|
+
# @return [String]
|
|
1838
|
+
#
|
|
1839
|
+
class NoLongerSupportedException < Struct.new(
|
|
1840
|
+
:type,
|
|
1841
|
+
:code,
|
|
1842
|
+
:message)
|
|
1843
|
+
SENSITIVE = []
|
|
1844
|
+
include Aws::Structure
|
|
1845
|
+
end
|
|
1846
|
+
|
|
1831
1847
|
# Contains information about the location where the select job results
|
|
1832
1848
|
# are stored.
|
|
1833
1849
|
#
|
|
@@ -1861,7 +1877,7 @@ module Aws::Glacier
|
|
|
1861
1877
|
# @return [String]
|
|
1862
1878
|
#
|
|
1863
1879
|
# @!attribute [rw] sha256_tree_hash
|
|
1864
|
-
# The SHA256 tree hash value that Amazon
|
|
1880
|
+
# The SHA256 tree hash value that Amazon Glacier calculated for the
|
|
1865
1881
|
# part. This field is never `null`.
|
|
1866
1882
|
# @return [String]
|
|
1867
1883
|
#
|
|
@@ -1923,7 +1939,7 @@ module Aws::Glacier
|
|
|
1923
1939
|
# @!attribute [rw] account_id
|
|
1924
1940
|
# The AWS account ID of the account that owns the vault. You can
|
|
1925
1941
|
# either specify an AWS account ID or optionally a single '-'
|
|
1926
|
-
# (hyphen), in which case Amazon
|
|
1942
|
+
# (hyphen), in which case Amazon Glacier uses the AWS account ID
|
|
1927
1943
|
# associated with the credentials used to sign the request. If you use
|
|
1928
1944
|
# an account ID, don't include any hyphens ('-') in the ID.
|
|
1929
1945
|
# @return [String]
|
|
@@ -1949,10 +1965,10 @@ module Aws::Glacier
|
|
|
1949
1965
|
# @!attribute [rw] account_id
|
|
1950
1966
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
1951
1967
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
1952
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
1953
|
-
#
|
|
1954
|
-
#
|
|
1955
|
-
#
|
|
1968
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
1969
|
+
# account ID associated with the credentials used to sign the request.
|
|
1970
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
1971
|
+
# ID.
|
|
1956
1972
|
# @return [String]
|
|
1957
1973
|
#
|
|
1958
1974
|
# @!attribute [rw] vault_name
|
|
@@ -1972,8 +1988,8 @@ module Aws::Glacier
|
|
|
1972
1988
|
include Aws::Structure
|
|
1973
1989
|
end
|
|
1974
1990
|
|
|
1975
|
-
# Returned if, when uploading an archive, Amazon
|
|
1976
|
-
#
|
|
1991
|
+
# Returned if, when uploading an archive, Amazon Glacier times out while
|
|
1992
|
+
# receiving the upload.
|
|
1977
1993
|
#
|
|
1978
1994
|
# @!attribute [rw] type
|
|
1979
1995
|
# Client
|
|
@@ -1984,7 +2000,7 @@ module Aws::Glacier
|
|
|
1984
2000
|
# @return [String]
|
|
1985
2001
|
#
|
|
1986
2002
|
# @!attribute [rw] message
|
|
1987
|
-
# Returned if, when uploading an archive, Amazon
|
|
2003
|
+
# Returned if, when uploading an archive, Amazon Glacier times out
|
|
1988
2004
|
# while receiving the upload.
|
|
1989
2005
|
# @return [String]
|
|
1990
2006
|
#
|
|
@@ -2146,10 +2162,10 @@ module Aws::Glacier
|
|
|
2146
2162
|
# @!attribute [rw] account_id
|
|
2147
2163
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
2148
2164
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
2149
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
2150
|
-
#
|
|
2151
|
-
#
|
|
2152
|
-
#
|
|
2165
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
2166
|
+
# account ID associated with the credentials used to sign the request.
|
|
2167
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
2168
|
+
# ID.
|
|
2153
2169
|
# @return [String]
|
|
2154
2170
|
#
|
|
2155
2171
|
# @!attribute [rw] vault_name
|
|
@@ -2174,10 +2190,10 @@ module Aws::Glacier
|
|
|
2174
2190
|
# @!attribute [rw] account_id
|
|
2175
2191
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
2176
2192
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
2177
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
2178
|
-
#
|
|
2179
|
-
#
|
|
2180
|
-
#
|
|
2193
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
2194
|
+
# account ID associated with the credentials used to sign the request.
|
|
2195
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
2196
|
+
# ID.
|
|
2181
2197
|
# @return [String]
|
|
2182
2198
|
#
|
|
2183
2199
|
# @!attribute [rw] vault_name
|
|
@@ -2205,10 +2221,10 @@ module Aws::Glacier
|
|
|
2205
2221
|
# @!attribute [rw] account_id
|
|
2206
2222
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
2207
2223
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
2208
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
2209
|
-
#
|
|
2210
|
-
#
|
|
2211
|
-
#
|
|
2224
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
2225
|
+
# account ID associated with the credentials used to sign the request.
|
|
2226
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
2227
|
+
# ID.
|
|
2212
2228
|
# @return [String]
|
|
2213
2229
|
#
|
|
2214
2230
|
# @!attribute [rw] archive_description
|
|
@@ -2275,10 +2291,10 @@ module Aws::Glacier
|
|
|
2275
2291
|
# @!attribute [rw] account_id
|
|
2276
2292
|
# The `AccountId` value is the AWS account ID of the account that owns
|
|
2277
2293
|
# the vault. You can either specify an AWS account ID or optionally a
|
|
2278
|
-
# single '`-`' (hyphen), in which case Amazon
|
|
2279
|
-
#
|
|
2280
|
-
#
|
|
2281
|
-
#
|
|
2294
|
+
# single '`-`' (hyphen), in which case Amazon Glacier uses the AWS
|
|
2295
|
+
# account ID associated with the credentials used to sign the request.
|
|
2296
|
+
# If you use an account ID, do not include any hyphens ('-') in the
|
|
2297
|
+
# ID.
|
|
2282
2298
|
# @return [String]
|
|
2283
2299
|
#
|
|
2284
2300
|
# @!attribute [rw] vault_name
|
|
@@ -2295,7 +2311,7 @@ module Aws::Glacier
|
|
|
2295
2311
|
#
|
|
2296
2312
|
# @!attribute [rw] range
|
|
2297
2313
|
# Identifies the range of bytes in the assembled archive that will be
|
|
2298
|
-
# uploaded in this part. Amazon
|
|
2314
|
+
# uploaded in this part. Amazon Glacier uses this information to
|
|
2299
2315
|
# assemble the archive in the proper sequence. The format of this
|
|
2300
2316
|
# header follows RFC 2616. An example header is Content-Range:bytes
|
|
2301
2317
|
# 0-4194303/*.
|
|
@@ -2316,11 +2332,11 @@ module Aws::Glacier
|
|
|
2316
2332
|
include Aws::Structure
|
|
2317
2333
|
end
|
|
2318
2334
|
|
|
2319
|
-
# Contains the Amazon
|
|
2335
|
+
# Contains the Amazon Glacier response to your request.
|
|
2320
2336
|
#
|
|
2321
2337
|
# @!attribute [rw] checksum
|
|
2322
|
-
# The SHA256 tree hash that Amazon
|
|
2323
|
-
#
|
|
2338
|
+
# The SHA256 tree hash that Amazon Glacier computed for the uploaded
|
|
2339
|
+
# part.
|
|
2324
2340
|
# @return [String]
|
|
2325
2341
|
#
|
|
2326
2342
|
class UploadMultipartPartOutput < Struct.new(
|
|
@@ -2361,7 +2377,7 @@ module Aws::Glacier
|
|
|
2361
2377
|
# @return [String]
|
|
2362
2378
|
#
|
|
2363
2379
|
# @!attribute [rw] events
|
|
2364
|
-
# A list of one or more events for which Amazon
|
|
2380
|
+
# A list of one or more events for which Amazon Glacier will send a
|
|
2365
2381
|
# notification to the specified Amazon SNS topic.
|
|
2366
2382
|
# @return [Array<String>]
|
|
2367
2383
|
#
|