aws-sdk-glacier 1.26.0 → 1.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-glacier.rb +9 -4
- data/lib/aws-sdk-glacier/account.rb +18 -12
- data/lib/aws-sdk-glacier/archive.rb +17 -11
- data/lib/aws-sdk-glacier/client.rb +90 -18
- data/lib/aws-sdk-glacier/client_api.rb +2 -0
- data/lib/aws-sdk-glacier/customizations.rb +1 -0
- data/lib/aws-sdk-glacier/errors.rb +32 -8
- data/lib/aws-sdk-glacier/job.rb +17 -11
- data/lib/aws-sdk-glacier/multipart_upload.rb +17 -11
- data/lib/aws-sdk-glacier/notification.rb +17 -11
- data/lib/aws-sdk-glacier/plugins/account_id.rb +2 -0
- data/lib/aws-sdk-glacier/plugins/api_version.rb +2 -0
- data/lib/aws-sdk-glacier/plugins/checksums.rb +2 -0
- data/lib/aws-sdk-glacier/resource.rb +15 -1
- data/lib/aws-sdk-glacier/tree_hash.rb +2 -0
- data/lib/aws-sdk-glacier/types.rb +84 -0
- data/lib/aws-sdk-glacier/vault.rb +17 -11
- data/lib/aws-sdk-glacier/waiters.rb +64 -0
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,36 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Glacier
|
11
|
+
|
12
|
+
# When Glacier returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::Glacier::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all Glacier errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::Glacier::Errors::ServiceError
|
20
|
+
# # rescues all Glacier API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {InsufficientCapacityException}
|
31
|
+
# * {InvalidParameterValueException}
|
32
|
+
# * {LimitExceededException}
|
33
|
+
# * {MissingParameterValueException}
|
34
|
+
# * {PolicyEnforcedException}
|
35
|
+
# * {RequestTimeoutException}
|
36
|
+
# * {ResourceNotFoundException}
|
37
|
+
# * {ServiceUnavailableException}
|
38
|
+
#
|
39
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
40
|
+
# if they are not defined above.
|
9
41
|
module Errors
|
10
42
|
|
11
43
|
extend Aws::Errors::DynamicErrors
|
@@ -33,7 +65,6 @@ module Aws::Glacier
|
|
33
65
|
def message
|
34
66
|
@message || @data[:message]
|
35
67
|
end
|
36
|
-
|
37
68
|
end
|
38
69
|
|
39
70
|
class InvalidParameterValueException < ServiceError
|
@@ -59,7 +90,6 @@ module Aws::Glacier
|
|
59
90
|
def message
|
60
91
|
@message || @data[:message]
|
61
92
|
end
|
62
|
-
|
63
93
|
end
|
64
94
|
|
65
95
|
class LimitExceededException < ServiceError
|
@@ -85,7 +115,6 @@ module Aws::Glacier
|
|
85
115
|
def message
|
86
116
|
@message || @data[:message]
|
87
117
|
end
|
88
|
-
|
89
118
|
end
|
90
119
|
|
91
120
|
class MissingParameterValueException < ServiceError
|
@@ -111,7 +140,6 @@ module Aws::Glacier
|
|
111
140
|
def message
|
112
141
|
@message || @data[:message]
|
113
142
|
end
|
114
|
-
|
115
143
|
end
|
116
144
|
|
117
145
|
class PolicyEnforcedException < ServiceError
|
@@ -137,7 +165,6 @@ module Aws::Glacier
|
|
137
165
|
def message
|
138
166
|
@message || @data[:message]
|
139
167
|
end
|
140
|
-
|
141
168
|
end
|
142
169
|
|
143
170
|
class RequestTimeoutException < ServiceError
|
@@ -163,7 +190,6 @@ module Aws::Glacier
|
|
163
190
|
def message
|
164
191
|
@message || @data[:message]
|
165
192
|
end
|
166
|
-
|
167
193
|
end
|
168
194
|
|
169
195
|
class ResourceNotFoundException < ServiceError
|
@@ -189,7 +215,6 @@ module Aws::Glacier
|
|
189
215
|
def message
|
190
216
|
@message || @data[:message]
|
191
217
|
end
|
192
|
-
|
193
218
|
end
|
194
219
|
|
195
220
|
class ServiceUnavailableException < ServiceError
|
@@ -215,7 +240,6 @@ module Aws::Glacier
|
|
215
240
|
def message
|
216
241
|
@message || @data[:message]
|
217
242
|
end
|
218
|
-
|
219
243
|
end
|
220
244
|
|
221
245
|
end
|
data/lib/aws-sdk-glacier/job.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Glacier
|
11
|
+
|
9
12
|
class Job
|
10
13
|
|
11
14
|
extend Aws::Deprecations
|
@@ -27,6 +30,7 @@ module Aws::Glacier
|
|
27
30
|
@id = extract_id(args, options)
|
28
31
|
@data = options.delete(:data)
|
29
32
|
@client = options.delete(:client) || Client.new(options)
|
33
|
+
@waiter_block_warned = false
|
30
34
|
end
|
31
35
|
|
32
36
|
# @!group Read-Only Attributes
|
@@ -256,7 +260,8 @@ module Aws::Glacier
|
|
256
260
|
# Waiter polls an API operation until a resource enters a desired
|
257
261
|
# state.
|
258
262
|
#
|
259
|
-
# @note The waiting operation is performed on a copy. The original resource
|
263
|
+
# @note The waiting operation is performed on a copy. The original resource
|
264
|
+
# remains unchanged.
|
260
265
|
#
|
261
266
|
# ## Basic Usage
|
262
267
|
#
|
@@ -269,13 +274,15 @@ module Aws::Glacier
|
|
269
274
|
#
|
270
275
|
# ## Example
|
271
276
|
#
|
272
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
277
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
278
|
+
# instance.state.name == 'running'
|
279
|
+
# end
|
273
280
|
#
|
274
281
|
# ## Configuration
|
275
282
|
#
|
276
283
|
# You can configure the maximum number of polling attempts, and the
|
277
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
278
|
-
# by passing a block to {#wait_until}:
|
284
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
285
|
+
# set by passing a block to {#wait_until}:
|
279
286
|
#
|
280
287
|
# # poll for ~25 seconds
|
281
288
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -306,17 +313,16 @@ module Aws::Glacier
|
|
306
313
|
# # resource did not enter the desired state in time
|
307
314
|
# end
|
308
315
|
#
|
316
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
309
317
|
#
|
310
|
-
# @
|
311
|
-
#
|
312
|
-
#
|
313
|
-
# because the waiter has entered a state that it will not transition
|
314
|
-
# out of, preventing success.
|
318
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
319
|
+
# terminates because the waiter has entered a state that it will not
|
320
|
+
# transition out of, preventing success.
|
315
321
|
#
|
316
322
|
# yet successful.
|
317
323
|
#
|
318
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
319
|
-
# while polling for a resource that is not expected.
|
324
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
325
|
+
# encountered while polling for a resource that is not expected.
|
320
326
|
#
|
321
327
|
# @raise [NotImplementedError] Raised when the resource does not
|
322
328
|
#
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Glacier
|
11
|
+
|
9
12
|
class MultipartUpload
|
10
13
|
|
11
14
|
extend Aws::Deprecations
|
@@ -27,6 +30,7 @@ module Aws::Glacier
|
|
27
30
|
@id = extract_id(args, options)
|
28
31
|
@data = options.delete(:data)
|
29
32
|
@client = options.delete(:client) || Client.new(options)
|
33
|
+
@waiter_block_warned = false
|
30
34
|
end
|
31
35
|
|
32
36
|
# @!group Read-Only Attributes
|
@@ -109,7 +113,8 @@ module Aws::Glacier
|
|
109
113
|
# Waiter polls an API operation until a resource enters a desired
|
110
114
|
# state.
|
111
115
|
#
|
112
|
-
# @note The waiting operation is performed on a copy. The original resource
|
116
|
+
# @note The waiting operation is performed on a copy. The original resource
|
117
|
+
# remains unchanged.
|
113
118
|
#
|
114
119
|
# ## Basic Usage
|
115
120
|
#
|
@@ -122,13 +127,15 @@ module Aws::Glacier
|
|
122
127
|
#
|
123
128
|
# ## Example
|
124
129
|
#
|
125
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
130
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
131
|
+
# instance.state.name == 'running'
|
132
|
+
# end
|
126
133
|
#
|
127
134
|
# ## Configuration
|
128
135
|
#
|
129
136
|
# You can configure the maximum number of polling attempts, and the
|
130
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
131
|
-
# by passing a block to {#wait_until}:
|
137
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
138
|
+
# set by passing a block to {#wait_until}:
|
132
139
|
#
|
133
140
|
# # poll for ~25 seconds
|
134
141
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -159,17 +166,16 @@ module Aws::Glacier
|
|
159
166
|
# # resource did not enter the desired state in time
|
160
167
|
# end
|
161
168
|
#
|
169
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
162
170
|
#
|
163
|
-
# @
|
164
|
-
#
|
165
|
-
#
|
166
|
-
# because the waiter has entered a state that it will not transition
|
167
|
-
# out of, preventing success.
|
171
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
172
|
+
# terminates because the waiter has entered a state that it will not
|
173
|
+
# transition out of, preventing success.
|
168
174
|
#
|
169
175
|
# yet successful.
|
170
176
|
#
|
171
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
172
|
-
# while polling for a resource that is not expected.
|
177
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
178
|
+
# encountered while polling for a resource that is not expected.
|
173
179
|
#
|
174
180
|
# @raise [NotImplementedError] Raised when the resource does not
|
175
181
|
#
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Glacier
|
11
|
+
|
9
12
|
class Notification
|
10
13
|
|
11
14
|
extend Aws::Deprecations
|
@@ -24,6 +27,7 @@ module Aws::Glacier
|
|
24
27
|
@vault_name = extract_vault_name(args, options)
|
25
28
|
@data = options.delete(:data)
|
26
29
|
@client = options.delete(:client) || Client.new(options)
|
30
|
+
@waiter_block_warned = false
|
27
31
|
end
|
28
32
|
|
29
33
|
# @!group Read-Only Attributes
|
@@ -95,7 +99,8 @@ module Aws::Glacier
|
|
95
99
|
# Waiter polls an API operation until a resource enters a desired
|
96
100
|
# state.
|
97
101
|
#
|
98
|
-
# @note The waiting operation is performed on a copy. The original resource
|
102
|
+
# @note The waiting operation is performed on a copy. The original resource
|
103
|
+
# remains unchanged.
|
99
104
|
#
|
100
105
|
# ## Basic Usage
|
101
106
|
#
|
@@ -108,13 +113,15 @@ module Aws::Glacier
|
|
108
113
|
#
|
109
114
|
# ## Example
|
110
115
|
#
|
111
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
116
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
117
|
+
# instance.state.name == 'running'
|
118
|
+
# end
|
112
119
|
#
|
113
120
|
# ## Configuration
|
114
121
|
#
|
115
122
|
# You can configure the maximum number of polling attempts, and the
|
116
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
117
|
-
# by passing a block to {#wait_until}:
|
123
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
124
|
+
# set by passing a block to {#wait_until}:
|
118
125
|
#
|
119
126
|
# # poll for ~25 seconds
|
120
127
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -145,17 +152,16 @@ module Aws::Glacier
|
|
145
152
|
# # resource did not enter the desired state in time
|
146
153
|
# end
|
147
154
|
#
|
155
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
148
156
|
#
|
149
|
-
# @
|
150
|
-
#
|
151
|
-
#
|
152
|
-
# because the waiter has entered a state that it will not transition
|
153
|
-
# out of, preventing success.
|
157
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
158
|
+
# terminates because the waiter has entered a state that it will not
|
159
|
+
# transition out of, preventing success.
|
154
160
|
#
|
155
161
|
# yet successful.
|
156
162
|
#
|
157
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
158
|
-
# while polling for a resource that is not expected.
|
163
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
164
|
+
# encountered while polling for a resource that is not expected.
|
159
165
|
#
|
160
166
|
# @raise [NotImplementedError] Raised when the resource does not
|
161
167
|
#
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,18 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Glacier
|
11
|
+
|
12
|
+
# This class provides a resource oriented interface for Glacier.
|
13
|
+
# To create a resource object:
|
14
|
+
#
|
15
|
+
# resource = Aws::Glacier::Resource.new(region: 'us-west-2')
|
16
|
+
#
|
17
|
+
# You can supply a client object with custom configuration that will be used for all resource operations.
|
18
|
+
# If you do not pass `:client`, a default client will be constructed.
|
19
|
+
#
|
20
|
+
# client = Aws::Glacier::Client.new(region: 'us-west-2')
|
21
|
+
# resource = Aws::Glacier::Resource.new(client: client)
|
22
|
+
#
|
9
23
|
class Resource
|
10
24
|
|
11
25
|
# @param options ({})
|
@@ -32,7 +46,7 @@ module Aws::Glacier
|
|
32
46
|
# @return [Vault]
|
33
47
|
def create_vault(options = {})
|
34
48
|
options = options.merge(account_id: "-")
|
35
|
-
|
49
|
+
@client.create_vault(options)
|
36
50
|
Vault.new(
|
37
51
|
account_id: options[:account_id],
|
38
52
|
name: options[:vault_name],
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -50,6 +52,7 @@ module Aws::Glacier
|
|
50
52
|
:account_id,
|
51
53
|
:vault_name,
|
52
54
|
:upload_id)
|
55
|
+
SENSITIVE = []
|
53
56
|
include Aws::Structure
|
54
57
|
end
|
55
58
|
|
@@ -80,6 +83,7 @@ module Aws::Glacier
|
|
80
83
|
class AbortVaultLockInput < Struct.new(
|
81
84
|
:account_id,
|
82
85
|
:vault_name)
|
86
|
+
SENSITIVE = []
|
83
87
|
include Aws::Structure
|
84
88
|
end
|
85
89
|
|
@@ -118,6 +122,7 @@ module Aws::Glacier
|
|
118
122
|
:account_id,
|
119
123
|
:vault_name,
|
120
124
|
:tags)
|
125
|
+
SENSITIVE = []
|
121
126
|
include Aws::Structure
|
122
127
|
end
|
123
128
|
|
@@ -149,6 +154,7 @@ module Aws::Glacier
|
|
149
154
|
:location,
|
150
155
|
:checksum,
|
151
156
|
:archive_id)
|
157
|
+
SENSITIVE = []
|
152
158
|
include Aws::Structure
|
153
159
|
end
|
154
160
|
|
@@ -203,6 +209,7 @@ module Aws::Glacier
|
|
203
209
|
:record_delimiter,
|
204
210
|
:field_delimiter,
|
205
211
|
:quote_character)
|
212
|
+
SENSITIVE = []
|
206
213
|
include Aws::Structure
|
207
214
|
end
|
208
215
|
|
@@ -250,6 +257,7 @@ module Aws::Glacier
|
|
250
257
|
:record_delimiter,
|
251
258
|
:field_delimiter,
|
252
259
|
:quote_character)
|
260
|
+
SENSITIVE = []
|
253
261
|
include Aws::Structure
|
254
262
|
end
|
255
263
|
|
@@ -307,6 +315,7 @@ module Aws::Glacier
|
|
307
315
|
:upload_id,
|
308
316
|
:archive_size,
|
309
317
|
:checksum)
|
318
|
+
SENSITIVE = []
|
310
319
|
include Aws::Structure
|
311
320
|
end
|
312
321
|
|
@@ -344,6 +353,7 @@ module Aws::Glacier
|
|
344
353
|
:account_id,
|
345
354
|
:vault_name,
|
346
355
|
:lock_id)
|
356
|
+
SENSITIVE = []
|
347
357
|
include Aws::Structure
|
348
358
|
end
|
349
359
|
|
@@ -374,6 +384,7 @@ module Aws::Glacier
|
|
374
384
|
class CreateVaultInput < Struct.new(
|
375
385
|
:account_id,
|
376
386
|
:vault_name)
|
387
|
+
SENSITIVE = []
|
377
388
|
include Aws::Structure
|
378
389
|
end
|
379
390
|
|
@@ -385,6 +396,7 @@ module Aws::Glacier
|
|
385
396
|
#
|
386
397
|
class CreateVaultOutput < Struct.new(
|
387
398
|
:location)
|
399
|
+
SENSITIVE = []
|
388
400
|
include Aws::Structure
|
389
401
|
end
|
390
402
|
|
@@ -410,6 +422,7 @@ module Aws::Glacier
|
|
410
422
|
#
|
411
423
|
class DataRetrievalPolicy < Struct.new(
|
412
424
|
:rules)
|
425
|
+
SENSITIVE = []
|
413
426
|
include Aws::Structure
|
414
427
|
end
|
415
428
|
|
@@ -440,6 +453,7 @@ module Aws::Glacier
|
|
440
453
|
class DataRetrievalRule < Struct.new(
|
441
454
|
:strategy,
|
442
455
|
:bytes_per_hour)
|
456
|
+
SENSITIVE = []
|
443
457
|
include Aws::Structure
|
444
458
|
end
|
445
459
|
|
@@ -476,6 +490,7 @@ module Aws::Glacier
|
|
476
490
|
:account_id,
|
477
491
|
:vault_name,
|
478
492
|
:archive_id)
|
493
|
+
SENSITIVE = []
|
479
494
|
include Aws::Structure
|
480
495
|
end
|
481
496
|
|
@@ -505,6 +520,7 @@ module Aws::Glacier
|
|
505
520
|
class DeleteVaultAccessPolicyInput < Struct.new(
|
506
521
|
:account_id,
|
507
522
|
:vault_name)
|
523
|
+
SENSITIVE = []
|
508
524
|
include Aws::Structure
|
509
525
|
end
|
510
526
|
|
@@ -534,6 +550,7 @@ module Aws::Glacier
|
|
534
550
|
class DeleteVaultInput < Struct.new(
|
535
551
|
:account_id,
|
536
552
|
:vault_name)
|
553
|
+
SENSITIVE = []
|
537
554
|
include Aws::Structure
|
538
555
|
end
|
539
556
|
|
@@ -564,6 +581,7 @@ module Aws::Glacier
|
|
564
581
|
class DeleteVaultNotificationsInput < Struct.new(
|
565
582
|
:account_id,
|
566
583
|
:vault_name)
|
584
|
+
SENSITIVE = []
|
567
585
|
include Aws::Structure
|
568
586
|
end
|
569
587
|
|
@@ -599,6 +617,7 @@ module Aws::Glacier
|
|
599
617
|
:account_id,
|
600
618
|
:vault_name,
|
601
619
|
:job_id)
|
620
|
+
SENSITIVE = []
|
602
621
|
include Aws::Structure
|
603
622
|
end
|
604
623
|
|
@@ -629,6 +648,7 @@ module Aws::Glacier
|
|
629
648
|
class DescribeVaultInput < Struct.new(
|
630
649
|
:account_id,
|
631
650
|
:vault_name)
|
651
|
+
SENSITIVE = []
|
632
652
|
include Aws::Structure
|
633
653
|
end
|
634
654
|
|
@@ -673,6 +693,7 @@ module Aws::Glacier
|
|
673
693
|
:last_inventory_date,
|
674
694
|
:number_of_archives,
|
675
695
|
:size_in_bytes)
|
696
|
+
SENSITIVE = []
|
676
697
|
include Aws::Structure
|
677
698
|
end
|
678
699
|
|
@@ -708,6 +729,7 @@ module Aws::Glacier
|
|
708
729
|
:encryption_type,
|
709
730
|
:kms_key_id,
|
710
731
|
:kms_context)
|
732
|
+
SENSITIVE = []
|
711
733
|
include Aws::Structure
|
712
734
|
end
|
713
735
|
|
@@ -732,6 +754,7 @@ module Aws::Glacier
|
|
732
754
|
#
|
733
755
|
class GetDataRetrievalPolicyInput < Struct.new(
|
734
756
|
:account_id)
|
757
|
+
SENSITIVE = []
|
735
758
|
include Aws::Structure
|
736
759
|
end
|
737
760
|
|
@@ -744,6 +767,7 @@ module Aws::Glacier
|
|
744
767
|
#
|
745
768
|
class GetDataRetrievalPolicyOutput < Struct.new(
|
746
769
|
:policy)
|
770
|
+
SENSITIVE = []
|
747
771
|
include Aws::Structure
|
748
772
|
end
|
749
773
|
|
@@ -815,6 +839,7 @@ module Aws::Glacier
|
|
815
839
|
:vault_name,
|
816
840
|
:job_id,
|
817
841
|
:range)
|
842
|
+
SENSITIVE = []
|
818
843
|
include Aws::Structure
|
819
844
|
end
|
820
845
|
|
@@ -887,6 +912,7 @@ module Aws::Glacier
|
|
887
912
|
:accept_ranges,
|
888
913
|
:content_type,
|
889
914
|
:archive_description)
|
915
|
+
SENSITIVE = []
|
890
916
|
include Aws::Structure
|
891
917
|
end
|
892
918
|
|
@@ -916,6 +942,7 @@ module Aws::Glacier
|
|
916
942
|
class GetVaultAccessPolicyInput < Struct.new(
|
917
943
|
:account_id,
|
918
944
|
:vault_name)
|
945
|
+
SENSITIVE = []
|
919
946
|
include Aws::Structure
|
920
947
|
end
|
921
948
|
|
@@ -927,6 +954,7 @@ module Aws::Glacier
|
|
927
954
|
#
|
928
955
|
class GetVaultAccessPolicyOutput < Struct.new(
|
929
956
|
:policy)
|
957
|
+
SENSITIVE = []
|
930
958
|
include Aws::Structure
|
931
959
|
end
|
932
960
|
|
@@ -956,6 +984,7 @@ module Aws::Glacier
|
|
956
984
|
class GetVaultLockInput < Struct.new(
|
957
985
|
:account_id,
|
958
986
|
:vault_name)
|
987
|
+
SENSITIVE = []
|
959
988
|
include Aws::Structure
|
960
989
|
end
|
961
990
|
|
@@ -985,6 +1014,7 @@ module Aws::Glacier
|
|
985
1014
|
:state,
|
986
1015
|
:expiration_date,
|
987
1016
|
:creation_date)
|
1017
|
+
SENSITIVE = []
|
988
1018
|
include Aws::Structure
|
989
1019
|
end
|
990
1020
|
|
@@ -1015,6 +1045,7 @@ module Aws::Glacier
|
|
1015
1045
|
class GetVaultNotificationsInput < Struct.new(
|
1016
1046
|
:account_id,
|
1017
1047
|
:vault_name)
|
1048
|
+
SENSITIVE = []
|
1018
1049
|
include Aws::Structure
|
1019
1050
|
end
|
1020
1051
|
|
@@ -1026,6 +1057,7 @@ module Aws::Glacier
|
|
1026
1057
|
#
|
1027
1058
|
class GetVaultNotificationsOutput < Struct.new(
|
1028
1059
|
:vault_notification_config)
|
1060
|
+
SENSITIVE = []
|
1029
1061
|
include Aws::Structure
|
1030
1062
|
end
|
1031
1063
|
|
@@ -1182,6 +1214,7 @@ module Aws::Glacier
|
|
1182
1214
|
:job_output_path,
|
1183
1215
|
:select_parameters,
|
1184
1216
|
:output_location)
|
1217
|
+
SENSITIVE = []
|
1185
1218
|
include Aws::Structure
|
1186
1219
|
end
|
1187
1220
|
|
@@ -1212,6 +1245,7 @@ module Aws::Glacier
|
|
1212
1245
|
class Grant < Struct.new(
|
1213
1246
|
:grantee,
|
1214
1247
|
:permission)
|
1248
|
+
SENSITIVE = []
|
1215
1249
|
include Aws::Structure
|
1216
1250
|
end
|
1217
1251
|
|
@@ -1254,6 +1288,7 @@ module Aws::Glacier
|
|
1254
1288
|
:uri,
|
1255
1289
|
:id,
|
1256
1290
|
:email_address)
|
1291
|
+
SENSITIVE = []
|
1257
1292
|
include Aws::Structure
|
1258
1293
|
end
|
1259
1294
|
|
@@ -1357,6 +1392,7 @@ module Aws::Glacier
|
|
1357
1392
|
:account_id,
|
1358
1393
|
:vault_name,
|
1359
1394
|
:job_parameters)
|
1395
|
+
SENSITIVE = []
|
1360
1396
|
include Aws::Structure
|
1361
1397
|
end
|
1362
1398
|
|
@@ -1378,6 +1414,7 @@ module Aws::Glacier
|
|
1378
1414
|
:location,
|
1379
1415
|
:job_id,
|
1380
1416
|
:job_output_path)
|
1417
|
+
SENSITIVE = []
|
1381
1418
|
include Aws::Structure
|
1382
1419
|
end
|
1383
1420
|
|
@@ -1426,6 +1463,7 @@ module Aws::Glacier
|
|
1426
1463
|
:vault_name,
|
1427
1464
|
:archive_description,
|
1428
1465
|
:part_size)
|
1466
|
+
SENSITIVE = []
|
1429
1467
|
include Aws::Structure
|
1430
1468
|
end
|
1431
1469
|
|
@@ -1444,6 +1482,7 @@ module Aws::Glacier
|
|
1444
1482
|
class InitiateMultipartUploadOutput < Struct.new(
|
1445
1483
|
:location,
|
1446
1484
|
:upload_id)
|
1485
|
+
SENSITIVE = []
|
1447
1486
|
include Aws::Structure
|
1448
1487
|
end
|
1449
1488
|
|
@@ -1483,6 +1522,7 @@ module Aws::Glacier
|
|
1483
1522
|
:account_id,
|
1484
1523
|
:vault_name,
|
1485
1524
|
:policy)
|
1525
|
+
SENSITIVE = []
|
1486
1526
|
include Aws::Structure
|
1487
1527
|
end
|
1488
1528
|
|
@@ -1494,6 +1534,7 @@ module Aws::Glacier
|
|
1494
1534
|
#
|
1495
1535
|
class InitiateVaultLockOutput < Struct.new(
|
1496
1536
|
:lock_id)
|
1537
|
+
SENSITIVE = []
|
1497
1538
|
include Aws::Structure
|
1498
1539
|
end
|
1499
1540
|
|
@@ -1519,6 +1560,7 @@ module Aws::Glacier
|
|
1519
1560
|
#
|
1520
1561
|
class InputSerialization < Struct.new(
|
1521
1562
|
:csv)
|
1563
|
+
SENSITIVE = []
|
1522
1564
|
include Aws::Structure
|
1523
1565
|
end
|
1524
1566
|
|
@@ -1539,6 +1581,7 @@ module Aws::Glacier
|
|
1539
1581
|
:type,
|
1540
1582
|
:code,
|
1541
1583
|
:message)
|
1584
|
+
SENSITIVE = []
|
1542
1585
|
include Aws::Structure
|
1543
1586
|
end
|
1544
1587
|
|
@@ -1560,6 +1603,7 @@ module Aws::Glacier
|
|
1560
1603
|
:type,
|
1561
1604
|
:code,
|
1562
1605
|
:message)
|
1606
|
+
SENSITIVE = []
|
1563
1607
|
include Aws::Structure
|
1564
1608
|
end
|
1565
1609
|
|
@@ -1609,6 +1653,7 @@ module Aws::Glacier
|
|
1609
1653
|
:end_date,
|
1610
1654
|
:limit,
|
1611
1655
|
:marker)
|
1656
|
+
SENSITIVE = []
|
1612
1657
|
include Aws::Structure
|
1613
1658
|
end
|
1614
1659
|
|
@@ -1656,6 +1701,7 @@ module Aws::Glacier
|
|
1656
1701
|
:end_date,
|
1657
1702
|
:limit,
|
1658
1703
|
:marker)
|
1704
|
+
SENSITIVE = []
|
1659
1705
|
include Aws::Structure
|
1660
1706
|
end
|
1661
1707
|
|
@@ -1814,6 +1860,7 @@ module Aws::Glacier
|
|
1814
1860
|
:inventory_retrieval_parameters,
|
1815
1861
|
:select_parameters,
|
1816
1862
|
:output_location)
|
1863
|
+
SENSITIVE = []
|
1817
1864
|
include Aws::Structure
|
1818
1865
|
end
|
1819
1866
|
|
@@ -1837,6 +1884,7 @@ module Aws::Glacier
|
|
1837
1884
|
:type,
|
1838
1885
|
:code,
|
1839
1886
|
:message)
|
1887
|
+
SENSITIVE = []
|
1840
1888
|
include Aws::Structure
|
1841
1889
|
end
|
1842
1890
|
|
@@ -1898,6 +1946,7 @@ module Aws::Glacier
|
|
1898
1946
|
:marker,
|
1899
1947
|
:statuscode,
|
1900
1948
|
:completed)
|
1949
|
+
SENSITIVE = []
|
1901
1950
|
include Aws::Structure
|
1902
1951
|
end
|
1903
1952
|
|
@@ -1919,6 +1968,7 @@ module Aws::Glacier
|
|
1919
1968
|
class ListJobsOutput < Struct.new(
|
1920
1969
|
:job_list,
|
1921
1970
|
:marker)
|
1971
|
+
SENSITIVE = []
|
1922
1972
|
include Aws::Structure
|
1923
1973
|
end
|
1924
1974
|
|
@@ -1967,6 +2017,7 @@ module Aws::Glacier
|
|
1967
2017
|
:vault_name,
|
1968
2018
|
:marker,
|
1969
2019
|
:limit)
|
2020
|
+
SENSITIVE = []
|
1970
2021
|
include Aws::Structure
|
1971
2022
|
end
|
1972
2023
|
|
@@ -1986,6 +2037,7 @@ module Aws::Glacier
|
|
1986
2037
|
class ListMultipartUploadsOutput < Struct.new(
|
1987
2038
|
:uploads_list,
|
1988
2039
|
:marker)
|
2040
|
+
SENSITIVE = []
|
1989
2041
|
include Aws::Structure
|
1990
2042
|
end
|
1991
2043
|
|
@@ -2040,6 +2092,7 @@ module Aws::Glacier
|
|
2040
2092
|
:upload_id,
|
2041
2093
|
:marker,
|
2042
2094
|
:limit)
|
2095
|
+
SENSITIVE = []
|
2043
2096
|
include Aws::Structure
|
2044
2097
|
end
|
2045
2098
|
|
@@ -2089,6 +2142,7 @@ module Aws::Glacier
|
|
2089
2142
|
:creation_date,
|
2090
2143
|
:parts,
|
2091
2144
|
:marker)
|
2145
|
+
SENSITIVE = []
|
2092
2146
|
include Aws::Structure
|
2093
2147
|
end
|
2094
2148
|
|
@@ -2109,6 +2163,7 @@ module Aws::Glacier
|
|
2109
2163
|
#
|
2110
2164
|
class ListProvisionedCapacityInput < Struct.new(
|
2111
2165
|
:account_id)
|
2166
|
+
SENSITIVE = []
|
2112
2167
|
include Aws::Structure
|
2113
2168
|
end
|
2114
2169
|
|
@@ -2118,6 +2173,7 @@ module Aws::Glacier
|
|
2118
2173
|
#
|
2119
2174
|
class ListProvisionedCapacityOutput < Struct.new(
|
2120
2175
|
:provisioned_capacity_list)
|
2176
|
+
SENSITIVE = []
|
2121
2177
|
include Aws::Structure
|
2122
2178
|
end
|
2123
2179
|
|
@@ -2147,6 +2203,7 @@ module Aws::Glacier
|
|
2147
2203
|
class ListTagsForVaultInput < Struct.new(
|
2148
2204
|
:account_id,
|
2149
2205
|
:vault_name)
|
2206
|
+
SENSITIVE = []
|
2150
2207
|
include Aws::Structure
|
2151
2208
|
end
|
2152
2209
|
|
@@ -2159,6 +2216,7 @@ module Aws::Glacier
|
|
2159
2216
|
#
|
2160
2217
|
class ListTagsForVaultOutput < Struct.new(
|
2161
2218
|
:tags)
|
2219
|
+
SENSITIVE = []
|
2162
2220
|
include Aws::Structure
|
2163
2221
|
end
|
2164
2222
|
|
@@ -2200,6 +2258,7 @@ module Aws::Glacier
|
|
2200
2258
|
:account_id,
|
2201
2259
|
:marker,
|
2202
2260
|
:limit)
|
2261
|
+
SENSITIVE = []
|
2203
2262
|
include Aws::Structure
|
2204
2263
|
end
|
2205
2264
|
|
@@ -2218,6 +2277,7 @@ module Aws::Glacier
|
|
2218
2277
|
class ListVaultsOutput < Struct.new(
|
2219
2278
|
:vault_list,
|
2220
2279
|
:marker)
|
2280
|
+
SENSITIVE = []
|
2221
2281
|
include Aws::Structure
|
2222
2282
|
end
|
2223
2283
|
|
@@ -2240,6 +2300,7 @@ module Aws::Glacier
|
|
2240
2300
|
:type,
|
2241
2301
|
:code,
|
2242
2302
|
:message)
|
2303
|
+
SENSITIVE = []
|
2243
2304
|
include Aws::Structure
|
2244
2305
|
end
|
2245
2306
|
|
@@ -2288,6 +2349,7 @@ module Aws::Glacier
|
|
2288
2349
|
#
|
2289
2350
|
class OutputLocation < Struct.new(
|
2290
2351
|
:s3)
|
2352
|
+
SENSITIVE = []
|
2291
2353
|
include Aws::Structure
|
2292
2354
|
end
|
2293
2355
|
|
@@ -2312,6 +2374,7 @@ module Aws::Glacier
|
|
2312
2374
|
#
|
2313
2375
|
class OutputSerialization < Struct.new(
|
2314
2376
|
:csv)
|
2377
|
+
SENSITIVE = []
|
2315
2378
|
include Aws::Structure
|
2316
2379
|
end
|
2317
2380
|
|
@@ -2329,6 +2392,7 @@ module Aws::Glacier
|
|
2329
2392
|
class PartListElement < Struct.new(
|
2330
2393
|
:range_in_bytes,
|
2331
2394
|
:sha256_tree_hash)
|
2395
|
+
SENSITIVE = []
|
2332
2396
|
include Aws::Structure
|
2333
2397
|
end
|
2334
2398
|
|
@@ -2352,6 +2416,7 @@ module Aws::Glacier
|
|
2352
2416
|
:type,
|
2353
2417
|
:code,
|
2354
2418
|
:message)
|
2419
|
+
SENSITIVE = []
|
2355
2420
|
include Aws::Structure
|
2356
2421
|
end
|
2357
2422
|
|
@@ -2375,6 +2440,7 @@ module Aws::Glacier
|
|
2375
2440
|
:capacity_id,
|
2376
2441
|
:start_date,
|
2377
2442
|
:expiration_date)
|
2443
|
+
SENSITIVE = []
|
2378
2444
|
include Aws::Structure
|
2379
2445
|
end
|
2380
2446
|
|
@@ -2395,6 +2461,7 @@ module Aws::Glacier
|
|
2395
2461
|
#
|
2396
2462
|
class PurchaseProvisionedCapacityInput < Struct.new(
|
2397
2463
|
:account_id)
|
2464
|
+
SENSITIVE = []
|
2398
2465
|
include Aws::Structure
|
2399
2466
|
end
|
2400
2467
|
|
@@ -2404,6 +2471,7 @@ module Aws::Glacier
|
|
2404
2471
|
#
|
2405
2472
|
class PurchaseProvisionedCapacityOutput < Struct.new(
|
2406
2473
|
:capacity_id)
|
2474
|
+
SENSITIVE = []
|
2407
2475
|
include Aws::Structure
|
2408
2476
|
end
|
2409
2477
|
|
@@ -2440,6 +2508,7 @@ module Aws::Glacier
|
|
2440
2508
|
:account_id,
|
2441
2509
|
:vault_name,
|
2442
2510
|
:tag_keys)
|
2511
|
+
SENSITIVE = []
|
2443
2512
|
include Aws::Structure
|
2444
2513
|
end
|
2445
2514
|
|
@@ -2463,6 +2532,7 @@ module Aws::Glacier
|
|
2463
2532
|
:type,
|
2464
2533
|
:code,
|
2465
2534
|
:message)
|
2535
|
+
SENSITIVE = []
|
2466
2536
|
include Aws::Structure
|
2467
2537
|
end
|
2468
2538
|
|
@@ -2486,6 +2556,7 @@ module Aws::Glacier
|
|
2486
2556
|
:type,
|
2487
2557
|
:code,
|
2488
2558
|
:message)
|
2559
|
+
SENSITIVE = []
|
2489
2560
|
include Aws::Structure
|
2490
2561
|
end
|
2491
2562
|
|
@@ -2567,6 +2638,7 @@ module Aws::Glacier
|
|
2567
2638
|
:tagging,
|
2568
2639
|
:user_metadata,
|
2569
2640
|
:storage_class)
|
2641
|
+
SENSITIVE = []
|
2570
2642
|
include Aws::Structure
|
2571
2643
|
end
|
2572
2644
|
|
@@ -2620,6 +2692,7 @@ module Aws::Glacier
|
|
2620
2692
|
:expression_type,
|
2621
2693
|
:expression,
|
2622
2694
|
:output_serialization)
|
2695
|
+
SENSITIVE = []
|
2623
2696
|
include Aws::Structure
|
2624
2697
|
end
|
2625
2698
|
|
@@ -2641,6 +2714,7 @@ module Aws::Glacier
|
|
2641
2714
|
:type,
|
2642
2715
|
:code,
|
2643
2716
|
:message)
|
2717
|
+
SENSITIVE = []
|
2644
2718
|
include Aws::Structure
|
2645
2719
|
end
|
2646
2720
|
|
@@ -2678,6 +2752,7 @@ module Aws::Glacier
|
|
2678
2752
|
class SetDataRetrievalPolicyInput < Struct.new(
|
2679
2753
|
:account_id,
|
2680
2754
|
:policy)
|
2755
|
+
SENSITIVE = []
|
2681
2756
|
include Aws::Structure
|
2682
2757
|
end
|
2683
2758
|
|
@@ -2715,6 +2790,7 @@ module Aws::Glacier
|
|
2715
2790
|
:account_id,
|
2716
2791
|
:vault_name,
|
2717
2792
|
:policy)
|
2793
|
+
SENSITIVE = []
|
2718
2794
|
include Aws::Structure
|
2719
2795
|
end
|
2720
2796
|
|
@@ -2754,6 +2830,7 @@ module Aws::Glacier
|
|
2754
2830
|
:account_id,
|
2755
2831
|
:vault_name,
|
2756
2832
|
:vault_notification_config)
|
2833
|
+
SENSITIVE = []
|
2757
2834
|
include Aws::Structure
|
2758
2835
|
end
|
2759
2836
|
|
@@ -2801,6 +2878,7 @@ module Aws::Glacier
|
|
2801
2878
|
:archive_description,
|
2802
2879
|
:checksum,
|
2803
2880
|
:body)
|
2881
|
+
SENSITIVE = []
|
2804
2882
|
include Aws::Structure
|
2805
2883
|
end
|
2806
2884
|
|
@@ -2836,6 +2914,7 @@ module Aws::Glacier
|
|
2836
2914
|
:archive_description,
|
2837
2915
|
:part_size_in_bytes,
|
2838
2916
|
:creation_date)
|
2917
|
+
SENSITIVE = []
|
2839
2918
|
include Aws::Structure
|
2840
2919
|
end
|
2841
2920
|
|
@@ -2894,6 +2973,7 @@ module Aws::Glacier
|
|
2894
2973
|
:checksum,
|
2895
2974
|
:range,
|
2896
2975
|
:body)
|
2976
|
+
SENSITIVE = []
|
2897
2977
|
include Aws::Structure
|
2898
2978
|
end
|
2899
2979
|
|
@@ -2906,6 +2986,7 @@ module Aws::Glacier
|
|
2906
2986
|
#
|
2907
2987
|
class UploadMultipartPartOutput < Struct.new(
|
2908
2988
|
:checksum)
|
2989
|
+
SENSITIVE = []
|
2909
2990
|
include Aws::Structure
|
2910
2991
|
end
|
2911
2992
|
|
@@ -2924,6 +3005,7 @@ module Aws::Glacier
|
|
2924
3005
|
#
|
2925
3006
|
class VaultAccessPolicy < Struct.new(
|
2926
3007
|
:policy)
|
3008
|
+
SENSITIVE = []
|
2927
3009
|
include Aws::Structure
|
2928
3010
|
end
|
2929
3011
|
|
@@ -2942,6 +3024,7 @@ module Aws::Glacier
|
|
2942
3024
|
#
|
2943
3025
|
class VaultLockPolicy < Struct.new(
|
2944
3026
|
:policy)
|
3027
|
+
SENSITIVE = []
|
2945
3028
|
include Aws::Structure
|
2946
3029
|
end
|
2947
3030
|
|
@@ -2968,6 +3051,7 @@ module Aws::Glacier
|
|
2968
3051
|
class VaultNotificationConfig < Struct.new(
|
2969
3052
|
:sns_topic,
|
2970
3053
|
:events)
|
3054
|
+
SENSITIVE = []
|
2971
3055
|
include Aws::Structure
|
2972
3056
|
end
|
2973
3057
|
|