aws-sdk-recyclebin 1.7.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35bfe58e724308c363f220ae012d8bc1bfff6995c7312d5a80af1cbc5fde2859
4
- data.tar.gz: 1b5aca716fee385a44d9690a4938386018765673e54814349f0907d931ac9d8a
3
+ metadata.gz: 4265c12cf05b21af45f746f097e298359cabf93b410dab3d703dd2f3db6b9477
4
+ data.tar.gz: 1a861ba273184ac2872fd18391e6e5834ecca8c67a28c5a14d3830e25aad8849
5
5
  SHA512:
6
- metadata.gz: adb7b22323cafab6b5a093d3b22d324d174297ca0d6d2772dc3d24c2284206f17b7d7cc0308df28ebd38971b2b0cd5f89dae41e82609c55f562fce90762b754e
7
- data.tar.gz: f8e6ffde0850048044bef3feb5f60f60ce1c84320f3882354bf730740a6756a53326d8d05509ad6a11dfd52fc6f59afdb3c6eecb153e07a2f5e441dc6530a00c
6
+ metadata.gz: ee084dcb931c3e02af015ebdc8bfab7bc671ab3206260ef6a1422914b16ded3ca1bec7dfaf655bdc5b3d733847c5834c6c5c5bf94cc555959c891ed748cfebe0
7
+ data.tar.gz: c8425069a00ef4e8e0d63d1eeb6331255b566b39e9ca1f191d4b42860cacd98f7539b57df3e6c4d7fa2f5e1e3c61668d182d45e697e2fa58ce8e80b4c99e4aa4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.8.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.7.0 (2022-11-23)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.9.0
@@ -275,6 +275,11 @@ module Aws::RecycleBin
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -926,7 +931,7 @@ module Aws::RecycleBin
926
931
  params: params,
927
932
  config: config)
928
933
  context[:gem_name] = 'aws-sdk-recyclebin'
929
- context[:gem_version] = '1.7.0'
934
+ context[:gem_version] = '1.9.0'
930
935
  Seahorse::Client::Request.new(handlers, context)
931
936
  end
932
937
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::RecycleBin
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://rbin-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://rbin-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://rbin.#{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://rbin.#{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
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vcmJpbi1maXBzLntSZWdpb259LntQYXJ0aXRp
77
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
- b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
- ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
- ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
- b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
- dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yYmluLWZpcHMue1Jl
89
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
90
- cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsi
91
- Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0
92
- aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoi
93
- ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxz
94
- IiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlw
95
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
96
- ZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2
97
- IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3Rh
98
- Y2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
99
- OltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3JiaW4ue1JlZ2lvbn0u
100
- e1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVy
101
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
102
- ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVk
103
- IGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFj
104
- ayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9p
105
- bnQiOnsidXJsIjoiaHR0cHM6Ly9yYmluLntSZWdpb259LntQYXJ0aXRpb25S
106
- ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
107
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -28,36 +28,6 @@ module Aws::RecycleBin
28
28
  include Aws::Structure
29
29
  end
30
30
 
31
- # @note When making an API call, you may pass CreateRuleRequest
32
- # data as a hash:
33
- #
34
- # {
35
- # retention_period: { # required
36
- # retention_period_value: 1, # required
37
- # retention_period_unit: "DAYS", # required, accepts DAYS
38
- # },
39
- # description: "Description",
40
- # tags: [
41
- # {
42
- # key: "TagKey", # required
43
- # value: "TagValue", # required
44
- # },
45
- # ],
46
- # resource_type: "EBS_SNAPSHOT", # required, accepts EBS_SNAPSHOT, EC2_IMAGE
47
- # resource_tags: [
48
- # {
49
- # resource_tag_key: "ResourceTagKey", # required
50
- # resource_tag_value: "ResourceTagValue",
51
- # },
52
- # ],
53
- # lock_configuration: {
54
- # unlock_delay: { # required
55
- # unlock_delay_value: 1, # required
56
- # unlock_delay_unit: "DAYS", # required, accepts DAYS
57
- # },
58
- # },
59
- # }
60
- #
61
31
  # @!attribute [rw] retention_period
62
32
  # Information about the retention period for which the retention rule
63
33
  # is to retain resources.
@@ -185,13 +155,6 @@ module Aws::RecycleBin
185
155
  include Aws::Structure
186
156
  end
187
157
 
188
- # @note When making an API call, you may pass DeleteRuleRequest
189
- # data as a hash:
190
- #
191
- # {
192
- # identifier: "RuleIdentifier", # required
193
- # }
194
- #
195
158
  # @!attribute [rw] identifier
196
159
  # The unique ID of the retention rule.
197
160
  # @return [String]
@@ -208,13 +171,6 @@ module Aws::RecycleBin
208
171
  #
209
172
  class DeleteRuleResponse < Aws::EmptyStructure; end
210
173
 
211
- # @note When making an API call, you may pass GetRuleRequest
212
- # data as a hash:
213
- #
214
- # {
215
- # identifier: "RuleIdentifier", # required
216
- # }
217
- #
218
174
  # @!attribute [rw] identifier
219
175
  # The unique ID of the retention rule.
220
176
  # @return [String]
@@ -314,22 +270,6 @@ module Aws::RecycleBin
314
270
  include Aws::Structure
315
271
  end
316
272
 
317
- # @note When making an API call, you may pass ListRulesRequest
318
- # data as a hash:
319
- #
320
- # {
321
- # max_results: 1,
322
- # next_token: "NextToken",
323
- # resource_type: "EBS_SNAPSHOT", # required, accepts EBS_SNAPSHOT, EC2_IMAGE
324
- # resource_tags: [
325
- # {
326
- # resource_tag_key: "ResourceTagKey", # required
327
- # resource_tag_value: "ResourceTagValue",
328
- # },
329
- # ],
330
- # lock_state: "locked", # accepts locked, pending_unlock, unlocked
331
- # }
332
- #
333
273
  # @!attribute [rw] max_results
334
274
  # The maximum number of results to return with a single call. To
335
275
  # retrieve the remaining results, make another call with the returned
@@ -389,13 +329,6 @@ module Aws::RecycleBin
389
329
  include Aws::Structure
390
330
  end
391
331
 
392
- # @note When making an API call, you may pass ListTagsForResourceRequest
393
- # data as a hash:
394
- #
395
- # {
396
- # resource_arn: "RuleArn", # required
397
- # }
398
- #
399
332
  # @!attribute [rw] resource_arn
400
333
  # The Amazon Resource Name (ARN) of the retention rule.
401
334
  # @return [String]
@@ -422,16 +355,6 @@ module Aws::RecycleBin
422
355
 
423
356
  # Information about a retention rule lock configuration.
424
357
  #
425
- # @note When making an API call, you may pass LockConfiguration
426
- # data as a hash:
427
- #
428
- # {
429
- # unlock_delay: { # required
430
- # unlock_delay_value: 1, # required
431
- # unlock_delay_unit: "DAYS", # required, accepts DAYS
432
- # },
433
- # }
434
- #
435
358
  # @!attribute [rw] unlock_delay
436
359
  # Information about the retention rule unlock delay.
437
360
  # @return [Types::UnlockDelay]
@@ -444,19 +367,6 @@ module Aws::RecycleBin
444
367
  include Aws::Structure
445
368
  end
446
369
 
447
- # @note When making an API call, you may pass LockRuleRequest
448
- # data as a hash:
449
- #
450
- # {
451
- # identifier: "RuleIdentifier", # required
452
- # lock_configuration: { # required
453
- # unlock_delay: { # required
454
- # unlock_delay_value: 1, # required
455
- # unlock_delay_unit: "DAYS", # required, accepts DAYS
456
- # },
457
- # },
458
- # }
459
- #
460
370
  # @!attribute [rw] identifier
461
371
  # The unique ID of the retention rule.
462
372
  # @return [String]
@@ -561,14 +471,6 @@ module Aws::RecycleBin
561
471
  # Information about the resource tags used to identify resources that
562
472
  # are retained by the retention rule.
563
473
  #
564
- # @note When making an API call, you may pass ResourceTag
565
- # data as a hash:
566
- #
567
- # {
568
- # resource_tag_key: "ResourceTagKey", # required
569
- # resource_tag_value: "ResourceTagValue",
570
- # }
571
- #
572
474
  # @!attribute [rw] resource_tag_key
573
475
  # The tag key.
574
476
  # @return [String]
@@ -589,14 +491,6 @@ module Aws::RecycleBin
589
491
  # Information about the retention period for which the retention rule is
590
492
  # to retain resources.
591
493
  #
592
- # @note When making an API call, you may pass RetentionPeriod
593
- # data as a hash:
594
- #
595
- # {
596
- # retention_period_value: 1, # required
597
- # retention_period_unit: "DAYS", # required, accepts DAYS
598
- # }
599
- #
600
494
  # @!attribute [rw] retention_period_value
601
495
  # The period value for which the retention rule is to retain
602
496
  # resources. The period is measured using the unit specified for
@@ -684,14 +578,6 @@ module Aws::RecycleBin
684
578
 
685
579
  # Information about the tags to assign to the retention rule.
686
580
  #
687
- # @note When making an API call, you may pass Tag
688
- # data as a hash:
689
- #
690
- # {
691
- # key: "TagKey", # required
692
- # value: "TagValue", # required
693
- # }
694
- #
695
581
  # @!attribute [rw] key
696
582
  # The tag key.
697
583
  # @return [String]
@@ -709,19 +595,6 @@ module Aws::RecycleBin
709
595
  include Aws::Structure
710
596
  end
711
597
 
712
- # @note When making an API call, you may pass TagResourceRequest
713
- # data as a hash:
714
- #
715
- # {
716
- # resource_arn: "RuleArn", # required
717
- # tags: [ # required
718
- # {
719
- # key: "TagKey", # required
720
- # value: "TagValue", # required
721
- # },
722
- # ],
723
- # }
724
- #
725
598
  # @!attribute [rw] resource_arn
726
599
  # The Amazon Resource Name (ARN) of the retention rule.
727
600
  # @return [String]
@@ -749,14 +622,6 @@ module Aws::RecycleBin
749
622
  # The retention rule can't be modified or deleted during the unlock
750
623
  # delay.
751
624
  #
752
- # @note When making an API call, you may pass UnlockDelay
753
- # data as a hash:
754
- #
755
- # {
756
- # unlock_delay_value: 1, # required
757
- # unlock_delay_unit: "DAYS", # required, accepts DAYS
758
- # }
759
- #
760
625
  # @!attribute [rw] unlock_delay_value
761
626
  # The unlock delay period, measured in the unit specified for <b>
762
627
  # UnlockDelayUnit</b>.
@@ -776,13 +641,6 @@ module Aws::RecycleBin
776
641
  include Aws::Structure
777
642
  end
778
643
 
779
- # @note When making an API call, you may pass UnlockRuleRequest
780
- # data as a hash:
781
- #
782
- # {
783
- # identifier: "RuleIdentifier", # required
784
- # }
785
- #
786
644
  # @!attribute [rw] identifier
787
645
  # The unique ID of the retention rule.
788
646
  # @return [String]
@@ -868,14 +726,6 @@ module Aws::RecycleBin
868
726
  include Aws::Structure
869
727
  end
870
728
 
871
- # @note When making an API call, you may pass UntagResourceRequest
872
- # data as a hash:
873
- #
874
- # {
875
- # resource_arn: "RuleArn", # required
876
- # tag_keys: ["TagKey"], # required
877
- # }
878
- #
879
729
  # @!attribute [rw] resource_arn
880
730
  # The Amazon Resource Name (ARN) of the retention rule.
881
731
  # @return [String]
@@ -898,25 +748,6 @@ module Aws::RecycleBin
898
748
  #
899
749
  class UntagResourceResponse < Aws::EmptyStructure; end
900
750
 
901
- # @note When making an API call, you may pass UpdateRuleRequest
902
- # data as a hash:
903
- #
904
- # {
905
- # identifier: "RuleIdentifier", # required
906
- # retention_period: {
907
- # retention_period_value: 1, # required
908
- # retention_period_unit: "DAYS", # required, accepts DAYS
909
- # },
910
- # description: "Description",
911
- # resource_type: "EBS_SNAPSHOT", # accepts EBS_SNAPSHOT, EC2_IMAGE
912
- # resource_tags: [
913
- # {
914
- # resource_tag_key: "ResourceTagKey", # required
915
- # resource_tag_value: "ResourceTagValue",
916
- # },
917
- # ],
918
- # }
919
- #
920
751
  # @!attribute [rw] identifier
921
752
  # The unique ID of the retention rule.
922
753
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-recyclebin/customizations'
52
52
  # @!group service
53
53
  module Aws::RecycleBin
54
54
 
55
- GEM_VERSION = '1.7.0'
55
+ GEM_VERSION = '1.9.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-recyclebin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.9.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-11-23 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement