aws-sdk-glacier 1.47.0 → 1.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f5957bd487e71afb4f69eeca264ac5a1dd90b909a1fba20b462841c579e62f2
4
- data.tar.gz: 3fb97899543125474e1d9271bb4b15d02848b022c03af888bb207817bf51526c
3
+ metadata.gz: 27911af528b42a19642b8db741b485a347b892c5d381724ec60765c727245d2f
4
+ data.tar.gz: 60253bfbadb101937d981c19c5b5e9a07d6947f2c1d2abef3ff880ae16b52806
5
5
  SHA512:
6
- metadata.gz: 555bb1b41137ef720818efd9e86d897e00c0c09f78716613f3f2e3fb94fa82a44bdbc1c65fb180fb505e400fb10dbde5458c77bcd0c28be715a5915ee44c1778
7
- data.tar.gz: 83d30bd30e9bf44150b941db14988a6862f8a617508a01e3ab3a957bea4a8e2a17702dbc6fc90b1a89a12b39cf27846b791ea687d950d542b31af20fe6437629
6
+ metadata.gz: ebe885310d44386fabe6bed904f2f4490dfcc0295985af9c99ef3dbfa9fcd2e9005bdba61dd345f868a278501e57638a3fc1ca3a21fdef9eb0e64e35dc5c49c4
7
+ data.tar.gz: d0f120c763aa5137dbeeccadf2d93265f481d3fd48655d9d2896f4c11841e3523fbdb1bfbc054ed1f347678da6106895ac7d1930c26c804222b26f05413c505b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.47.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -302,4 +309,4 @@ Unreleased Changes
302
309
  1.0.0.rc1 (2016-12-05)
303
310
  ------------------
304
311
 
305
- * Feature - Initial preview release of the `aws-sdk-glacier` gem.
312
+ * Feature - Initial preview release of the `aws-sdk-glacier` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -3419,7 +3419,7 @@ module Aws::Glacier
3419
3419
  params: params,
3420
3420
  config: config)
3421
3421
  context[:gem_name] = 'aws-sdk-glacier'
3422
- context[:gem_version] = '1.47.0'
3422
+ context[:gem_version] = '1.48.0'
3423
3423
  Seahorse::Client::Request.new(handlers, context)
3424
3424
  end
3425
3425
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::Glacier
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://glacier-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://glacier-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://glacier.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://glacier.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2dsYWNpZXItZmlwcy57UmVnaW9ufS57UGFy
77
- dGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
78
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29u
79
- ZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBl
80
- bmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBv
81
- bmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
82
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
83
- In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
84
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
85
- ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
86
- c3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
87
- b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
88
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZ2xhY2llci1m
89
- aXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
90
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
91
- XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxl
92
- ZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwi
93
- dHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVh
94
- bkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVd
95
- fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
96
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRy
97
- IiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRz
98
- RHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
99
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9nbGFjaWVy
100
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4
101
- fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
102
- b2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sg
103
- aXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
104
- dCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
105
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZ2xhY2llci57UmVnaW9u
106
- fS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
107
- fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -22,15 +22,6 @@ module Aws::Glacier
22
22
  # [1]: https://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-abort-upload.html
23
23
  # [2]: https://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html
24
24
  #
25
- # @note When making an API call, you may pass AbortMultipartUploadInput
26
- # data as a hash:
27
- #
28
- # {
29
- # account_id: "string", # required
30
- # vault_name: "string", # required
31
- # upload_id: "string", # required
32
- # }
33
- #
34
25
  # @!attribute [rw] account_id
35
26
  # The `AccountId` value is the AWS account ID of the account that owns
36
27
  # the vault. You can either specify an AWS account ID or optionally a
@@ -58,14 +49,6 @@ module Aws::Glacier
58
49
 
59
50
  # The input values for `AbortVaultLock`.
60
51
  #
61
- # @note When making an API call, you may pass AbortVaultLockInput
62
- # data as a hash:
63
- #
64
- # {
65
- # account_id: "string", # required
66
- # vault_name: "string", # required
67
- # }
68
- #
69
52
  # @!attribute [rw] account_id
70
53
  # The `AccountId` value is the AWS account ID. This value must match
71
54
  # the AWS account ID associated with the credentials used to sign the
@@ -89,17 +72,6 @@ module Aws::Glacier
89
72
 
90
73
  # The input values for `AddTagsToVault`.
91
74
  #
92
- # @note When making an API call, you may pass AddTagsToVaultInput
93
- # data as a hash:
94
- #
95
- # {
96
- # account_id: "string", # required
97
- # vault_name: "string", # required
98
- # tags: {
99
- # "TagKey" => "TagValue",
100
- # },
101
- # }
102
- #
103
75
  # @!attribute [rw] account_id
104
76
  # The `AccountId` value is the AWS account ID of the account that owns
105
77
  # the vault. You can either specify an AWS account ID or optionally a
@@ -161,18 +133,6 @@ module Aws::Glacier
161
133
  # Contains information about the comma-separated value (CSV) file to
162
134
  # select from.
163
135
  #
164
- # @note When making an API call, you may pass CSVInput
165
- # data as a hash:
166
- #
167
- # {
168
- # file_header_info: "USE", # accepts USE, IGNORE, NONE
169
- # comments: "string",
170
- # quote_escape_character: "string",
171
- # record_delimiter: "string",
172
- # field_delimiter: "string",
173
- # quote_character: "string",
174
- # }
175
- #
176
136
  # @!attribute [rw] file_header_info
177
137
  # Describes the first line of input. Valid values are `None`,
178
138
  # `Ignore`, and `Use`.
@@ -216,17 +176,6 @@ module Aws::Glacier
216
176
  # Contains information about the comma-separated value (CSV) file that
217
177
  # the job results are stored in.
218
178
  #
219
- # @note When making an API call, you may pass CSVOutput
220
- # data as a hash:
221
- #
222
- # {
223
- # quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
224
- # quote_escape_character: "string",
225
- # record_delimiter: "string",
226
- # field_delimiter: "string",
227
- # quote_character: "string",
228
- # }
229
- #
230
179
  # @!attribute [rw] quote_fields
231
180
  # A value that indicates whether all output fields should be contained
232
181
  # within quotation marks.
@@ -267,17 +216,6 @@ module Aws::Glacier
267
216
  # uploaded parts. After assembling and saving the archive to the vault,
268
217
  # Glacier returns the URI path of the newly created archive resource.
269
218
  #
270
- # @note When making an API call, you may pass CompleteMultipartUploadInput
271
- # data as a hash:
272
- #
273
- # {
274
- # account_id: "string", # required
275
- # vault_name: "string", # required
276
- # upload_id: "string", # required
277
- # archive_size: 1,
278
- # checksum: "string",
279
- # }
280
- #
281
219
  # @!attribute [rw] account_id
282
220
  # The `AccountId` value is the AWS account ID of the account that owns
283
221
  # the vault. You can either specify an AWS account ID or optionally a
@@ -321,15 +259,6 @@ module Aws::Glacier
321
259
 
322
260
  # The input values for `CompleteVaultLock`.
323
261
  #
324
- # @note When making an API call, you may pass CompleteVaultLockInput
325
- # data as a hash:
326
- #
327
- # {
328
- # account_id: "string", # required
329
- # vault_name: "string", # required
330
- # lock_id: "string", # required
331
- # }
332
- #
333
262
  # @!attribute [rw] account_id
334
263
  # The `AccountId` value is the AWS account ID. This value must match
335
264
  # the AWS account ID associated with the credentials used to sign the
@@ -359,14 +288,6 @@ module Aws::Glacier
359
288
 
360
289
  # Provides options to create a vault.
361
290
  #
362
- # @note When making an API call, you may pass CreateVaultInput
363
- # data as a hash:
364
- #
365
- # {
366
- # account_id: "string", # required
367
- # vault_name: "string", # required
368
- # }
369
- #
370
291
  # @!attribute [rw] account_id
371
292
  # The `AccountId` value is the AWS account ID. This value must match
372
293
  # the AWS account ID associated with the credentials used to sign the
@@ -402,18 +323,6 @@ module Aws::Glacier
402
323
 
403
324
  # Data retrieval policy.
404
325
  #
405
- # @note When making an API call, you may pass DataRetrievalPolicy
406
- # data as a hash:
407
- #
408
- # {
409
- # rules: [
410
- # {
411
- # strategy: "string",
412
- # bytes_per_hour: 1,
413
- # },
414
- # ],
415
- # }
416
- #
417
326
  # @!attribute [rw] rules
418
327
  # The policy rule. Although this is a list type, currently there must
419
328
  # be only one rule, which contains a Strategy field and optionally a
@@ -428,14 +337,6 @@ module Aws::Glacier
428
337
 
429
338
  # Data retrieval policy rule.
430
339
  #
431
- # @note When making an API call, you may pass DataRetrievalRule
432
- # data as a hash:
433
- #
434
- # {
435
- # strategy: "string",
436
- # bytes_per_hour: 1,
437
- # }
438
- #
439
340
  # @!attribute [rw] strategy
440
341
  # The type of data retrieval policy to set.
441
342
  #
@@ -460,15 +361,6 @@ module Aws::Glacier
460
361
  # Provides options for deleting an archive from an Amazon S3 Glacier
461
362
  # vault.
462
363
  #
463
- # @note When making an API call, you may pass DeleteArchiveInput
464
- # data as a hash:
465
- #
466
- # {
467
- # account_id: "string", # required
468
- # vault_name: "string", # required
469
- # archive_id: "string", # required
470
- # }
471
- #
472
364
  # @!attribute [rw] account_id
473
365
  # The `AccountId` value is the AWS account ID of the account that owns
474
366
  # the vault. You can either specify an AWS account ID or optionally a
@@ -496,14 +388,6 @@ module Aws::Glacier
496
388
 
497
389
  # DeleteVaultAccessPolicy input.
498
390
  #
499
- # @note When making an API call, you may pass DeleteVaultAccessPolicyInput
500
- # data as a hash:
501
- #
502
- # {
503
- # account_id: "string", # required
504
- # vault_name: "string", # required
505
- # }
506
- #
507
391
  # @!attribute [rw] account_id
508
392
  # The `AccountId` value is the AWS account ID of the account that owns
509
393
  # the vault. You can either specify an AWS account ID or optionally a
@@ -526,14 +410,6 @@ module Aws::Glacier
526
410
 
527
411
  # Provides options for deleting a vault from Amazon S3 Glacier.
528
412
  #
529
- # @note When making an API call, you may pass DeleteVaultInput
530
- # data as a hash:
531
- #
532
- # {
533
- # account_id: "string", # required
534
- # vault_name: "string", # required
535
- # }
536
- #
537
413
  # @!attribute [rw] account_id
538
414
  # The `AccountId` value is the AWS account ID of the account that owns
539
415
  # the vault. You can either specify an AWS account ID or optionally a
@@ -557,14 +433,6 @@ module Aws::Glacier
557
433
  # Provides options for deleting a vault notification configuration from
558
434
  # an Amazon Glacier vault.
559
435
  #
560
- # @note When making an API call, you may pass DeleteVaultNotificationsInput
561
- # data as a hash:
562
- #
563
- # {
564
- # account_id: "string", # required
565
- # vault_name: "string", # required
566
- # }
567
- #
568
436
  # @!attribute [rw] account_id
569
437
  # The `AccountId` value is the AWS account ID of the account that owns
570
438
  # the vault. You can either specify an AWS account ID or optionally a
@@ -587,15 +455,6 @@ module Aws::Glacier
587
455
 
588
456
  # Provides options for retrieving a job description.
589
457
  #
590
- # @note When making an API call, you may pass DescribeJobInput
591
- # data as a hash:
592
- #
593
- # {
594
- # account_id: "string", # required
595
- # vault_name: "string", # required
596
- # job_id: "string", # required
597
- # }
598
- #
599
458
  # @!attribute [rw] account_id
600
459
  # The `AccountId` value is the AWS account ID of the account that owns
601
460
  # the vault. You can either specify an AWS account ID or optionally a
@@ -624,14 +483,6 @@ module Aws::Glacier
624
483
  # Provides options for retrieving metadata for a specific vault in
625
484
  # Amazon Glacier.
626
485
  #
627
- # @note When making an API call, you may pass DescribeVaultInput
628
- # data as a hash:
629
- #
630
- # {
631
- # account_id: "string", # required
632
- # vault_name: "string", # required
633
- # }
634
- #
635
486
  # @!attribute [rw] account_id
636
487
  # The `AccountId` value is the AWS account ID of the account that owns
637
488
  # the vault. You can either specify an AWS account ID or optionally a
@@ -700,15 +551,6 @@ module Aws::Glacier
700
551
  # Contains information about the encryption used to store the job
701
552
  # results in Amazon S3.
702
553
  #
703
- # @note When making an API call, you may pass Encryption
704
- # data as a hash:
705
- #
706
- # {
707
- # encryption_type: "aws:kms", # accepts aws:kms, AES256
708
- # kms_key_id: "string",
709
- # kms_context: "string",
710
- # }
711
- #
712
554
  # @!attribute [rw] encryption_type
713
555
  # The server-side encryption algorithm used when storing job results
714
556
  # in Amazon S3, for example `AES256` or `aws:kms`.
@@ -735,13 +577,6 @@ module Aws::Glacier
735
577
 
736
578
  # Input for GetDataRetrievalPolicy.
737
579
  #
738
- # @note When making an API call, you may pass GetDataRetrievalPolicyInput
739
- # data as a hash:
740
- #
741
- # {
742
- # account_id: "string", # required
743
- # }
744
- #
745
580
  # @!attribute [rw] account_id
746
581
  # The `AccountId` value is the AWS account ID. This value must match
747
582
  # the AWS account ID associated with the credentials used to sign the
@@ -773,16 +608,6 @@ module Aws::Glacier
773
608
 
774
609
  # Provides options for downloading output of an Amazon S3 Glacier job.
775
610
  #
776
- # @note When making an API call, you may pass GetJobOutputInput
777
- # data as a hash:
778
- #
779
- # {
780
- # account_id: "string", # required
781
- # vault_name: "string", # required
782
- # job_id: "string", # required
783
- # range: "string",
784
- # }
785
- #
786
611
  # @!attribute [rw] account_id
787
612
  # The `AccountId` value is the AWS account ID of the account that owns
788
613
  # the vault. You can either specify an AWS account ID or optionally a
@@ -918,14 +743,6 @@ module Aws::Glacier
918
743
 
919
744
  # Input for GetVaultAccessPolicy.
920
745
  #
921
- # @note When making an API call, you may pass GetVaultAccessPolicyInput
922
- # data as a hash:
923
- #
924
- # {
925
- # account_id: "string", # required
926
- # vault_name: "string", # required
927
- # }
928
- #
929
746
  # @!attribute [rw] account_id
930
747
  # The `AccountId` value is the AWS account ID of the account that owns
931
748
  # the vault. You can either specify an AWS account ID or optionally a
@@ -960,14 +777,6 @@ module Aws::Glacier
960
777
 
961
778
  # The input values for `GetVaultLock`.
962
779
  #
963
- # @note When making an API call, you may pass GetVaultLockInput
964
- # data as a hash:
965
- #
966
- # {
967
- # account_id: "string", # required
968
- # vault_name: "string", # required
969
- # }
970
- #
971
780
  # @!attribute [rw] account_id
972
781
  # The `AccountId` value is the AWS account ID of the account that owns
973
782
  # the vault. You can either specify an AWS account ID or optionally a
@@ -1021,14 +830,6 @@ module Aws::Glacier
1021
830
  # Provides options for retrieving the notification configuration set on
1022
831
  # an Amazon Glacier vault.
1023
832
  #
1024
- # @note When making an API call, you may pass GetVaultNotificationsInput
1025
- # data as a hash:
1026
- #
1027
- # {
1028
- # account_id: "string", # required
1029
- # vault_name: "string", # required
1030
- # }
1031
- #
1032
833
  # @!attribute [rw] account_id
1033
834
  # The `AccountId` value is the AWS account ID of the account that owns
1034
835
  # the vault. You can either specify an AWS account ID or optionally a
@@ -1220,20 +1021,6 @@ module Aws::Glacier
1220
1021
 
1221
1022
  # Contains information about a grant.
1222
1023
  #
1223
- # @note When making an API call, you may pass Grant
1224
- # data as a hash:
1225
- #
1226
- # {
1227
- # grantee: {
1228
- # type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
1229
- # display_name: "string",
1230
- # uri: "string",
1231
- # id: "string",
1232
- # email_address: "string",
1233
- # },
1234
- # permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
1235
- # }
1236
- #
1237
1024
  # @!attribute [rw] grantee
1238
1025
  # The grantee.
1239
1026
  # @return [Types::Grantee]
@@ -1251,17 +1038,6 @@ module Aws::Glacier
1251
1038
 
1252
1039
  # Contains information about the grantee.
1253
1040
  #
1254
- # @note When making an API call, you may pass Grantee
1255
- # data as a hash:
1256
- #
1257
- # {
1258
- # type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
1259
- # display_name: "string",
1260
- # uri: "string",
1261
- # id: "string",
1262
- # email_address: "string",
1263
- # }
1264
- #
1265
1041
  # @!attribute [rw] type
1266
1042
  # Type of grantee
1267
1043
  # @return [String]
@@ -1294,83 +1070,6 @@ module Aws::Glacier
1294
1070
 
1295
1071
  # Provides options for initiating an Amazon S3 Glacier job.
1296
1072
  #
1297
- # @note When making an API call, you may pass InitiateJobInput
1298
- # data as a hash:
1299
- #
1300
- # {
1301
- # account_id: "string", # required
1302
- # vault_name: "string", # required
1303
- # job_parameters: {
1304
- # format: "string",
1305
- # type: "string",
1306
- # archive_id: "string",
1307
- # description: "string",
1308
- # sns_topic: "string",
1309
- # retrieval_byte_range: "string",
1310
- # tier: "string",
1311
- # inventory_retrieval_parameters: {
1312
- # start_date: Time.now,
1313
- # end_date: Time.now,
1314
- # limit: "string",
1315
- # marker: "string",
1316
- # },
1317
- # select_parameters: {
1318
- # input_serialization: {
1319
- # csv: {
1320
- # file_header_info: "USE", # accepts USE, IGNORE, NONE
1321
- # comments: "string",
1322
- # quote_escape_character: "string",
1323
- # record_delimiter: "string",
1324
- # field_delimiter: "string",
1325
- # quote_character: "string",
1326
- # },
1327
- # },
1328
- # expression_type: "SQL", # accepts SQL
1329
- # expression: "string",
1330
- # output_serialization: {
1331
- # csv: {
1332
- # quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
1333
- # quote_escape_character: "string",
1334
- # record_delimiter: "string",
1335
- # field_delimiter: "string",
1336
- # quote_character: "string",
1337
- # },
1338
- # },
1339
- # },
1340
- # output_location: {
1341
- # s3: {
1342
- # bucket_name: "string",
1343
- # prefix: "string",
1344
- # encryption: {
1345
- # encryption_type: "aws:kms", # accepts aws:kms, AES256
1346
- # kms_key_id: "string",
1347
- # kms_context: "string",
1348
- # },
1349
- # canned_acl: "private", # accepts private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control
1350
- # access_control_list: [
1351
- # {
1352
- # grantee: {
1353
- # type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
1354
- # display_name: "string",
1355
- # uri: "string",
1356
- # id: "string",
1357
- # email_address: "string",
1358
- # },
1359
- # permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
1360
- # },
1361
- # ],
1362
- # tagging: {
1363
- # "string" => "string",
1364
- # },
1365
- # user_metadata: {
1366
- # "string" => "string",
1367
- # },
1368
- # storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA
1369
- # },
1370
- # },
1371
- # },
1372
- # }
1373
- #
1374
1073
  # @!attribute [rw] account_id
1375
1074
  # The `AccountId` value is the AWS account ID of the account that owns
1376
1075
  # the vault. You can either specify an AWS account ID or optionally a
@@ -1421,16 +1120,6 @@ module Aws::Glacier
1421
1120
  # Provides options for initiating a multipart upload to an Amazon S3
1422
1121
  # Glacier vault.
1423
1122
  #
1424
- # @note When making an API call, you may pass InitiateMultipartUploadInput
1425
- # data as a hash:
1426
- #
1427
- # {
1428
- # account_id: "string", # required
1429
- # vault_name: "string", # required
1430
- # archive_description: "string",
1431
- # part_size: 1,
1432
- # }
1433
- #
1434
1123
  # @!attribute [rw] account_id
1435
1124
  # The `AccountId` value is the AWS account ID of the account that owns
1436
1125
  # the vault. You can either specify an AWS account ID or optionally a
@@ -1488,17 +1177,6 @@ module Aws::Glacier
1488
1177
 
1489
1178
  # The input values for `InitiateVaultLock`.
1490
1179
  #
1491
- # @note When making an API call, you may pass InitiateVaultLockInput
1492
- # data as a hash:
1493
- #
1494
- # {
1495
- # account_id: "string", # required
1496
- # vault_name: "string", # required
1497
- # policy: {
1498
- # policy: "string",
1499
- # },
1500
- # }
1501
- #
1502
1180
  # @!attribute [rw] account_id
1503
1181
  # The `AccountId` value is the AWS account ID. This value must match
1504
1182
  # the AWS account ID associated with the credentials used to sign the
@@ -1540,20 +1218,6 @@ module Aws::Glacier
1540
1218
 
1541
1219
  # Describes how the archive is serialized.
1542
1220
  #
1543
- # @note When making an API call, you may pass InputSerialization
1544
- # data as a hash:
1545
- #
1546
- # {
1547
- # csv: {
1548
- # file_header_info: "USE", # accepts USE, IGNORE, NONE
1549
- # comments: "string",
1550
- # quote_escape_character: "string",
1551
- # record_delimiter: "string",
1552
- # field_delimiter: "string",
1553
- # quote_character: "string",
1554
- # },
1555
- # }
1556
- #
1557
1221
  # @!attribute [rw] csv
1558
1222
  # Describes the serialization of a CSV-encoded object.
1559
1223
  # @return [Types::CSVInput]
@@ -1659,16 +1323,6 @@ module Aws::Glacier
1659
1323
 
1660
1324
  # Provides options for specifying a range inventory retrieval job.
1661
1325
  #
1662
- # @note When making an API call, you may pass InventoryRetrievalJobInput
1663
- # data as a hash:
1664
- #
1665
- # {
1666
- # start_date: Time.now,
1667
- # end_date: Time.now,
1668
- # limit: "string",
1669
- # marker: "string",
1670
- # }
1671
- #
1672
1326
  # @!attribute [rw] start_date
1673
1327
  # The start of the date range in UTC for vault inventory retrieval
1674
1328
  # that includes archives created on or after this date. This value
@@ -1707,79 +1361,6 @@ module Aws::Glacier
1707
1361
 
1708
1362
  # Provides options for defining a job.
1709
1363
  #
1710
- # @note When making an API call, you may pass JobParameters
1711
- # data as a hash:
1712
- #
1713
- # {
1714
- # format: "string",
1715
- # type: "string",
1716
- # archive_id: "string",
1717
- # description: "string",
1718
- # sns_topic: "string",
1719
- # retrieval_byte_range: "string",
1720
- # tier: "string",
1721
- # inventory_retrieval_parameters: {
1722
- # start_date: Time.now,
1723
- # end_date: Time.now,
1724
- # limit: "string",
1725
- # marker: "string",
1726
- # },
1727
- # select_parameters: {
1728
- # input_serialization: {
1729
- # csv: {
1730
- # file_header_info: "USE", # accepts USE, IGNORE, NONE
1731
- # comments: "string",
1732
- # quote_escape_character: "string",
1733
- # record_delimiter: "string",
1734
- # field_delimiter: "string",
1735
- # quote_character: "string",
1736
- # },
1737
- # },
1738
- # expression_type: "SQL", # accepts SQL
1739
- # expression: "string",
1740
- # output_serialization: {
1741
- # csv: {
1742
- # quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
1743
- # quote_escape_character: "string",
1744
- # record_delimiter: "string",
1745
- # field_delimiter: "string",
1746
- # quote_character: "string",
1747
- # },
1748
- # },
1749
- # },
1750
- # output_location: {
1751
- # s3: {
1752
- # bucket_name: "string",
1753
- # prefix: "string",
1754
- # encryption: {
1755
- # encryption_type: "aws:kms", # accepts aws:kms, AES256
1756
- # kms_key_id: "string",
1757
- # kms_context: "string",
1758
- # },
1759
- # canned_acl: "private", # accepts private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control
1760
- # access_control_list: [
1761
- # {
1762
- # grantee: {
1763
- # type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
1764
- # display_name: "string",
1765
- # uri: "string",
1766
- # id: "string",
1767
- # email_address: "string",
1768
- # },
1769
- # permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
1770
- # },
1771
- # ],
1772
- # tagging: {
1773
- # "string" => "string",
1774
- # },
1775
- # user_metadata: {
1776
- # "string" => "string",
1777
- # },
1778
- # storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA
1779
- # },
1780
- # },
1781
- # }
1782
- #
1783
1364
  # @!attribute [rw] format
1784
1365
  # When initiating a job to retrieve a vault inventory, you can
1785
1366
  # optionally add this parameter to your request to specify the output
@@ -1891,18 +1472,6 @@ module Aws::Glacier
1891
1472
  # Provides options for retrieving a job list for an Amazon S3 Glacier
1892
1473
  # vault.
1893
1474
  #
1894
- # @note When making an API call, you may pass ListJobsInput
1895
- # data as a hash:
1896
- #
1897
- # {
1898
- # account_id: "string", # required
1899
- # vault_name: "string", # required
1900
- # limit: 1,
1901
- # marker: "string",
1902
- # statuscode: "string",
1903
- # completed: "string",
1904
- # }
1905
- #
1906
1475
  # @!attribute [rw] account_id
1907
1476
  # The `AccountId` value is the AWS account ID of the account that owns
1908
1477
  # the vault. You can either specify an AWS account ID or optionally a
@@ -1975,16 +1544,6 @@ module Aws::Glacier
1975
1544
  # Provides options for retrieving list of in-progress multipart uploads
1976
1545
  # for an Amazon Glacier vault.
1977
1546
  #
1978
- # @note When making an API call, you may pass ListMultipartUploadsInput
1979
- # data as a hash:
1980
- #
1981
- # {
1982
- # account_id: "string", # required
1983
- # vault_name: "string", # required
1984
- # marker: "string",
1985
- # limit: 1,
1986
- # }
1987
- #
1988
1547
  # @!attribute [rw] account_id
1989
1548
  # The `AccountId` value is the AWS account ID of the account that owns
1990
1549
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2044,17 +1603,6 @@ module Aws::Glacier
2044
1603
  # Provides options for retrieving a list of parts of an archive that
2045
1604
  # have been uploaded in a specific multipart upload.
2046
1605
  #
2047
- # @note When making an API call, you may pass ListPartsInput
2048
- # data as a hash:
2049
- #
2050
- # {
2051
- # account_id: "string", # required
2052
- # vault_name: "string", # required
2053
- # upload_id: "string", # required
2054
- # marker: "string",
2055
- # limit: 1,
2056
- # }
2057
- #
2058
1606
  # @!attribute [rw] account_id
2059
1607
  # The `AccountId` value is the AWS account ID of the account that owns
2060
1608
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2146,13 +1694,6 @@ module Aws::Glacier
2146
1694
  include Aws::Structure
2147
1695
  end
2148
1696
 
2149
- # @note When making an API call, you may pass ListProvisionedCapacityInput
2150
- # data as a hash:
2151
- #
2152
- # {
2153
- # account_id: "string", # required
2154
- # }
2155
- #
2156
1697
  # @!attribute [rw] account_id
2157
1698
  # The AWS account ID of the account that owns the vault. You can
2158
1699
  # either specify an AWS account ID or optionally a single '-'
@@ -2179,14 +1720,6 @@ module Aws::Glacier
2179
1720
 
2180
1721
  # The input value for `ListTagsForVaultInput`.
2181
1722
  #
2182
- # @note When making an API call, you may pass ListTagsForVaultInput
2183
- # data as a hash:
2184
- #
2185
- # {
2186
- # account_id: "string", # required
2187
- # vault_name: "string", # required
2188
- # }
2189
- #
2190
1723
  # @!attribute [rw] account_id
2191
1724
  # The `AccountId` value is the AWS account ID of the account that owns
2192
1725
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2224,15 +1757,6 @@ module Aws::Glacier
2224
1757
  # user's account. The list provides metadata information for each
2225
1758
  # vault.
2226
1759
  #
2227
- # @note When making an API call, you may pass ListVaultsInput
2228
- # data as a hash:
2229
- #
2230
- # {
2231
- # account_id: "string", # required
2232
- # marker: "string",
2233
- # limit: 1,
2234
- # }
2235
- #
2236
1760
  # @!attribute [rw] account_id
2237
1761
  # The `AccountId` value is the AWS account ID. This value must match
2238
1762
  # the AWS account ID associated with the credentials used to sign the
@@ -2307,41 +1831,6 @@ module Aws::Glacier
2307
1831
  # Contains information about the location where the select job results
2308
1832
  # are stored.
2309
1833
  #
2310
- # @note When making an API call, you may pass OutputLocation
2311
- # data as a hash:
2312
- #
2313
- # {
2314
- # s3: {
2315
- # bucket_name: "string",
2316
- # prefix: "string",
2317
- # encryption: {
2318
- # encryption_type: "aws:kms", # accepts aws:kms, AES256
2319
- # kms_key_id: "string",
2320
- # kms_context: "string",
2321
- # },
2322
- # canned_acl: "private", # accepts private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control
2323
- # access_control_list: [
2324
- # {
2325
- # grantee: {
2326
- # type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
2327
- # display_name: "string",
2328
- # uri: "string",
2329
- # id: "string",
2330
- # email_address: "string",
2331
- # },
2332
- # permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
2333
- # },
2334
- # ],
2335
- # tagging: {
2336
- # "string" => "string",
2337
- # },
2338
- # user_metadata: {
2339
- # "string" => "string",
2340
- # },
2341
- # storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA
2342
- # },
2343
- # }
2344
- #
2345
1834
  # @!attribute [rw] s3
2346
1835
  # Describes an S3 location that will receive the results of the job
2347
1836
  # request.
@@ -2355,19 +1844,6 @@ module Aws::Glacier
2355
1844
 
2356
1845
  # Describes how the select output is serialized.
2357
1846
  #
2358
- # @note When making an API call, you may pass OutputSerialization
2359
- # data as a hash:
2360
- #
2361
- # {
2362
- # csv: {
2363
- # quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
2364
- # quote_escape_character: "string",
2365
- # record_delimiter: "string",
2366
- # field_delimiter: "string",
2367
- # quote_character: "string",
2368
- # },
2369
- # }
2370
- #
2371
1847
  # @!attribute [rw] csv
2372
1848
  # Describes the serialization of CSV-encoded query results.
2373
1849
  # @return [Types::CSVOutput]
@@ -2444,13 +1920,6 @@ module Aws::Glacier
2444
1920
  include Aws::Structure
2445
1921
  end
2446
1922
 
2447
- # @note When making an API call, you may pass PurchaseProvisionedCapacityInput
2448
- # data as a hash:
2449
- #
2450
- # {
2451
- # account_id: "string", # required
2452
- # }
2453
- #
2454
1923
  # @!attribute [rw] account_id
2455
1924
  # The AWS account ID of the account that owns the vault. You can
2456
1925
  # either specify an AWS account ID or optionally a single '-'
@@ -2477,15 +1946,6 @@ module Aws::Glacier
2477
1946
 
2478
1947
  # The input value for `RemoveTagsFromVaultInput`.
2479
1948
  #
2480
- # @note When making an API call, you may pass RemoveTagsFromVaultInput
2481
- # data as a hash:
2482
- #
2483
- # {
2484
- # account_id: "string", # required
2485
- # vault_name: "string", # required
2486
- # tag_keys: ["string"],
2487
- # }
2488
- #
2489
1949
  # @!attribute [rw] account_id
2490
1950
  # The `AccountId` value is the AWS account ID of the account that owns
2491
1951
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2563,39 +2023,6 @@ module Aws::Glacier
2563
2023
  # Contains information about the location in Amazon S3 where the select
2564
2024
  # job results are stored.
2565
2025
  #
2566
- # @note When making an API call, you may pass S3Location
2567
- # data as a hash:
2568
- #
2569
- # {
2570
- # bucket_name: "string",
2571
- # prefix: "string",
2572
- # encryption: {
2573
- # encryption_type: "aws:kms", # accepts aws:kms, AES256
2574
- # kms_key_id: "string",
2575
- # kms_context: "string",
2576
- # },
2577
- # canned_acl: "private", # accepts private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control
2578
- # access_control_list: [
2579
- # {
2580
- # grantee: {
2581
- # type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
2582
- # display_name: "string",
2583
- # uri: "string",
2584
- # id: "string",
2585
- # email_address: "string",
2586
- # },
2587
- # permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
2588
- # },
2589
- # ],
2590
- # tagging: {
2591
- # "string" => "string",
2592
- # },
2593
- # user_metadata: {
2594
- # "string" => "string",
2595
- # },
2596
- # storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA
2597
- # }
2598
- #
2599
2026
  # @!attribute [rw] bucket_name
2600
2027
  # The name of the Amazon S3 bucket where the job results are stored.
2601
2028
  # @return [String]
@@ -2644,33 +2071,6 @@ module Aws::Glacier
2644
2071
 
2645
2072
  # Contains information about the parameters used for a select.
2646
2073
  #
2647
- # @note When making an API call, you may pass SelectParameters
2648
- # data as a hash:
2649
- #
2650
- # {
2651
- # input_serialization: {
2652
- # csv: {
2653
- # file_header_info: "USE", # accepts USE, IGNORE, NONE
2654
- # comments: "string",
2655
- # quote_escape_character: "string",
2656
- # record_delimiter: "string",
2657
- # field_delimiter: "string",
2658
- # quote_character: "string",
2659
- # },
2660
- # },
2661
- # expression_type: "SQL", # accepts SQL
2662
- # expression: "string",
2663
- # output_serialization: {
2664
- # csv: {
2665
- # quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
2666
- # quote_escape_character: "string",
2667
- # record_delimiter: "string",
2668
- # field_delimiter: "string",
2669
- # quote_character: "string",
2670
- # },
2671
- # },
2672
- # }
2673
- #
2674
2074
  # @!attribute [rw] input_serialization
2675
2075
  # Describes the serialization format of the object.
2676
2076
  # @return [Types::InputSerialization]
@@ -2720,21 +2120,6 @@ module Aws::Glacier
2720
2120
 
2721
2121
  # SetDataRetrievalPolicy input.
2722
2122
  #
2723
- # @note When making an API call, you may pass SetDataRetrievalPolicyInput
2724
- # data as a hash:
2725
- #
2726
- # {
2727
- # account_id: "string", # required
2728
- # policy: {
2729
- # rules: [
2730
- # {
2731
- # strategy: "string",
2732
- # bytes_per_hour: 1,
2733
- # },
2734
- # ],
2735
- # },
2736
- # }
2737
- #
2738
2123
  # @!attribute [rw] account_id
2739
2124
  # The `AccountId` value is the AWS account ID. This value must match
2740
2125
  # the AWS account ID associated with the credentials used to sign the
@@ -2758,17 +2143,6 @@ module Aws::Glacier
2758
2143
 
2759
2144
  # SetVaultAccessPolicy input.
2760
2145
  #
2761
- # @note When making an API call, you may pass SetVaultAccessPolicyInput
2762
- # data as a hash:
2763
- #
2764
- # {
2765
- # account_id: "string", # required
2766
- # vault_name: "string", # required
2767
- # policy: {
2768
- # policy: "string",
2769
- # },
2770
- # }
2771
- #
2772
2146
  # @!attribute [rw] account_id
2773
2147
  # The `AccountId` value is the AWS account ID of the account that owns
2774
2148
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2797,18 +2171,6 @@ module Aws::Glacier
2797
2171
  # Provides options to configure notifications that will be sent when
2798
2172
  # specific events happen to a vault.
2799
2173
  #
2800
- # @note When making an API call, you may pass SetVaultNotificationsInput
2801
- # data as a hash:
2802
- #
2803
- # {
2804
- # account_id: "string", # required
2805
- # vault_name: "string", # required
2806
- # vault_notification_config: {
2807
- # sns_topic: "string",
2808
- # events: ["string"],
2809
- # },
2810
- # }
2811
- #
2812
2174
  # @!attribute [rw] account_id
2813
2175
  # The `AccountId` value is the AWS account ID of the account that owns
2814
2176
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2836,17 +2198,6 @@ module Aws::Glacier
2836
2198
 
2837
2199
  # Provides options to add an archive to a vault.
2838
2200
  #
2839
- # @note When making an API call, you may pass UploadArchiveInput
2840
- # data as a hash:
2841
- #
2842
- # {
2843
- # vault_name: "string", # required
2844
- # account_id: "string", # required
2845
- # archive_description: "string",
2846
- # checksum: "string",
2847
- # body: "data",
2848
- # }
2849
- #
2850
2201
  # @!attribute [rw] vault_name
2851
2202
  # The name of the vault.
2852
2203
  # @return [String]
@@ -2921,18 +2272,6 @@ module Aws::Glacier
2921
2272
  # Provides options to upload a part of an archive in a multipart upload
2922
2273
  # operation.
2923
2274
  #
2924
- # @note When making an API call, you may pass UploadMultipartPartInput
2925
- # data as a hash:
2926
- #
2927
- # {
2928
- # account_id: "string", # required
2929
- # vault_name: "string", # required
2930
- # upload_id: "string", # required
2931
- # checksum: "string",
2932
- # range: "string",
2933
- # body: "data",
2934
- # }
2935
- #
2936
2275
  # @!attribute [rw] account_id
2937
2276
  # The `AccountId` value is the AWS account ID of the account that owns
2938
2277
  # the vault. You can either specify an AWS account ID or optionally a
@@ -2992,13 +2331,6 @@ module Aws::Glacier
2992
2331
 
2993
2332
  # Contains the vault access policy.
2994
2333
  #
2995
- # @note When making an API call, you may pass VaultAccessPolicy
2996
- # data as a hash:
2997
- #
2998
- # {
2999
- # policy: "string",
3000
- # }
3001
- #
3002
2334
  # @!attribute [rw] policy
3003
2335
  # The vault access policy.
3004
2336
  # @return [String]
@@ -3011,13 +2343,6 @@ module Aws::Glacier
3011
2343
 
3012
2344
  # Contains the vault lock policy.
3013
2345
  #
3014
- # @note When making an API call, you may pass VaultLockPolicy
3015
- # data as a hash:
3016
- #
3017
- # {
3018
- # policy: "string",
3019
- # }
3020
- #
3021
2346
  # @!attribute [rw] policy
3022
2347
  # The vault lock policy.
3023
2348
  # @return [String]
@@ -3030,14 +2355,6 @@ module Aws::Glacier
3030
2355
 
3031
2356
  # Represents a vault's notification configuration.
3032
2357
  #
3033
- # @note When making an API call, you may pass VaultNotificationConfig
3034
- # data as a hash:
3035
- #
3036
- # {
3037
- # sns_topic: "string",
3038
- # events: ["string"],
3039
- # }
3040
- #
3041
2358
  # @!attribute [rw] sns_topic
3042
2359
  # The Amazon Simple Notification Service (Amazon SNS) topic Amazon
3043
2360
  # Resource Name (ARN).
@@ -59,6 +59,6 @@ require_relative 'aws-sdk-glacier/customizations'
59
59
  # @!group service
60
60
  module Aws::Glacier
61
61
 
62
- GEM_VERSION = '1.47.0'
62
+ GEM_VERSION = '1.48.0'
63
63
 
64
64
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glacier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core