aws-sdk-route53recoveryreadiness 1.11.0 → 1.12.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: 51a3161060d77c496d7ccbe8878290b79a0c1630c30999d7714fbe7e52a37fd4
4
- data.tar.gz: fb4019a814165f1429b56a88a61bc40366ac95770b5b22f9f9316dc3bdc9ff69
3
+ metadata.gz: e1e1ab32894dd319b5a00a1734a86afa843b2ac5228820c662b724a2eccb8230
4
+ data.tar.gz: fce15e3fe48ae725eaa062eddd3a891262494278664ff9e6b6cc044c05b8fb8e
5
5
  SHA512:
6
- metadata.gz: 351defb70a28b99db7d43402a6315892e518c5056267b14e07e6b2e8c926a0ff8164ac5e5f93efa94191bffccb3e64e4feb0cc6e015e31d6b721f8f8a75f2a72
7
- data.tar.gz: 56d0cfd46b5c027a0cabfd4a27f44826e681a0c808968bf68d6067efa8f360971c1afa4f95191c88ea34fb7866360c651b82993f9f9aabca628f7faf7c00fa62
6
+ metadata.gz: 80582c27ac68d011da85f554352b1ad4e3ddad3c3ea0808fd0203b8c80e969f14879bfcbf97f873b27a88bc0224e67103631a9189ee7f4852cf50ec9d2d42925
7
+ data.tar.gz: ad6a6f3c201b3d3cda0433a8dcdf8fcc3f7efec9d25139698c5dc9042eb0a48d49cfa930c4013905ecb02eb68642c6a95d8a03c8a2abaa29ec4d68731eb9d306
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.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.11.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -1640,7 +1640,7 @@ module Aws::Route53RecoveryReadiness
1640
1640
  params: params,
1641
1641
  config: config)
1642
1642
  context[:gem_name] = 'aws-sdk-route53recoveryreadiness'
1643
- context[:gem_version] = '1.11.0'
1643
+ context[:gem_version] = '1.12.0'
1644
1644
  Seahorse::Client::Request.new(handlers, context)
1645
1645
  end
1646
1646
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::Route53RecoveryReadiness
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://route53-recovery-readiness-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://route53-recovery-readiness-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://route53-recovery-readiness.#{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://route53-recovery-readiness.#{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
- dCI6eyJ1cmwiOiJodHRwczovL3JvdXRlNTMtcmVjb3ZlcnktcmVhZGluZXNz
77
- LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNT
78
- dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
79
- ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMg
80
- YW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9u
81
- IGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3Ii
82
- fV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
83
- diI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwi
84
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
85
- ImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoi
86
- UGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6
87
- InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
88
- InVybCI6Imh0dHBzOi8vcm91dGU1My1yZWNvdmVyeS1yZWFkaW5lc3MtZmlw
89
- cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
90
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
91
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1
92
- dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBl
93
- IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
94
- YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwi
95
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
96
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJh
97
- cmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFs
98
- U3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
99
- bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3JvdXRlNTMtcmVj
100
- b3ZlcnktcmVhZGluZXNzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
101
- bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
102
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
103
- b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
104
- ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
105
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
106
- cm91dGU1My1yZWNvdmVyeS1yZWFkaW5lc3Mue1JlZ2lvbn0ue1BhcnRpdGlv
107
- blJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMi
108
- Ont9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -68,17 +68,6 @@ module Aws::Route53RecoveryReadiness
68
68
  include Aws::Structure
69
69
  end
70
70
 
71
- # @note When making an API call, you may pass CreateCellRequest
72
- # data as a hash:
73
- #
74
- # {
75
- # cell_name: "__string", # required
76
- # cells: ["__string"],
77
- # tags: {
78
- # "__string" => "__string",
79
- # },
80
- # }
81
- #
82
71
  # @!attribute [rw] cell_name
83
72
  # @return [String]
84
73
  #
@@ -127,13 +116,6 @@ module Aws::Route53RecoveryReadiness
127
116
  include Aws::Structure
128
117
  end
129
118
 
130
- # @note When making an API call, you may pass CreateCrossAccountAuthorizationRequest
131
- # data as a hash:
132
- #
133
- # {
134
- # cross_account_authorization: "CrossAccountAuthorization", # required
135
- # }
136
- #
137
119
  # @!attribute [rw] cross_account_authorization
138
120
  # CrossAccountAuthorization
139
121
  # @return [String]
@@ -158,17 +140,6 @@ module Aws::Route53RecoveryReadiness
158
140
  include Aws::Structure
159
141
  end
160
142
 
161
- # @note When making an API call, you may pass CreateReadinessCheckRequest
162
- # data as a hash:
163
- #
164
- # {
165
- # readiness_check_name: "__string", # required
166
- # resource_set_name: "__string", # required
167
- # tags: {
168
- # "__string" => "__string",
169
- # },
170
- # }
171
- #
172
143
  # @!attribute [rw] readiness_check_name
173
144
  # @return [String]
174
145
  #
@@ -213,17 +184,6 @@ module Aws::Route53RecoveryReadiness
213
184
  include Aws::Structure
214
185
  end
215
186
 
216
- # @note When making an API call, you may pass CreateRecoveryGroupRequest
217
- # data as a hash:
218
- #
219
- # {
220
- # cells: ["__string"],
221
- # recovery_group_name: "__string", # required
222
- # tags: {
223
- # "__string" => "__string",
224
- # },
225
- # }
226
- #
227
187
  # @!attribute [rw] cells
228
188
  # @return [Array<String>]
229
189
  #
@@ -268,39 +228,6 @@ module Aws::Route53RecoveryReadiness
268
228
  include Aws::Structure
269
229
  end
270
230
 
271
- # @note When making an API call, you may pass CreateResourceSetRequest
272
- # data as a hash:
273
- #
274
- # {
275
- # resource_set_name: "__string", # required
276
- # resource_set_type: "__stringPatternAWSAZaZ09AZaZ09", # required
277
- # resources: [ # required
278
- # {
279
- # component_id: "__string",
280
- # dns_target_resource: {
281
- # domain_name: "__string",
282
- # hosted_zone_arn: "__string",
283
- # record_set_id: "__string",
284
- # record_type: "__string",
285
- # target_resource: {
286
- # nlb_resource: {
287
- # arn: "__string",
288
- # },
289
- # r53_resource: {
290
- # domain_name: "__string",
291
- # record_set_id: "__string",
292
- # },
293
- # },
294
- # },
295
- # readiness_scopes: ["__string"],
296
- # resource_arn: "__string",
297
- # },
298
- # ],
299
- # tags: {
300
- # "__string" => "__string",
301
- # },
302
- # }
303
- #
304
231
  # @!attribute [rw] resource_set_name
305
232
  # @return [String]
306
233
  #
@@ -356,25 +283,6 @@ module Aws::Route53RecoveryReadiness
356
283
  # A component for DNS/routing control readiness checks and architecture
357
284
  # checks.
358
285
  #
359
- # @note When making an API call, you may pass DNSTargetResource
360
- # data as a hash:
361
- #
362
- # {
363
- # domain_name: "__string",
364
- # hosted_zone_arn: "__string",
365
- # record_set_id: "__string",
366
- # record_type: "__string",
367
- # target_resource: {
368
- # nlb_resource: {
369
- # arn: "__string",
370
- # },
371
- # r53_resource: {
372
- # domain_name: "__string",
373
- # record_set_id: "__string",
374
- # },
375
- # },
376
- # }
377
- #
378
286
  # @!attribute [rw] domain_name
379
287
  # The domain name that acts as an ingress point to a portion of the
380
288
  # customer application.
@@ -410,13 +318,6 @@ module Aws::Route53RecoveryReadiness
410
318
  include Aws::Structure
411
319
  end
412
320
 
413
- # @note When making an API call, you may pass DeleteCellRequest
414
- # data as a hash:
415
- #
416
- # {
417
- # cell_name: "__string", # required
418
- # }
419
- #
420
321
  # @!attribute [rw] cell_name
421
322
  # @return [String]
422
323
  #
@@ -428,13 +329,6 @@ module Aws::Route53RecoveryReadiness
428
329
  include Aws::Structure
429
330
  end
430
331
 
431
- # @note When making an API call, you may pass DeleteCrossAccountAuthorizationRequest
432
- # data as a hash:
433
- #
434
- # {
435
- # cross_account_authorization: "__string", # required
436
- # }
437
- #
438
332
  # @!attribute [rw] cross_account_authorization
439
333
  # @return [String]
440
334
  #
@@ -450,13 +344,6 @@ module Aws::Route53RecoveryReadiness
450
344
  #
451
345
  class DeleteCrossAccountAuthorizationResponse < Aws::EmptyStructure; end
452
346
 
453
- # @note When making an API call, you may pass DeleteReadinessCheckRequest
454
- # data as a hash:
455
- #
456
- # {
457
- # readiness_check_name: "__string", # required
458
- # }
459
- #
460
347
  # @!attribute [rw] readiness_check_name
461
348
  # @return [String]
462
349
  #
@@ -468,13 +355,6 @@ module Aws::Route53RecoveryReadiness
468
355
  include Aws::Structure
469
356
  end
470
357
 
471
- # @note When making an API call, you may pass DeleteRecoveryGroupRequest
472
- # data as a hash:
473
- #
474
- # {
475
- # recovery_group_name: "__string", # required
476
- # }
477
- #
478
358
  # @!attribute [rw] recovery_group_name
479
359
  # @return [String]
480
360
  #
@@ -486,13 +366,6 @@ module Aws::Route53RecoveryReadiness
486
366
  include Aws::Structure
487
367
  end
488
368
 
489
- # @note When making an API call, you may pass DeleteResourceSetRequest
490
- # data as a hash:
491
- #
492
- # {
493
- # resource_set_name: "__string", # required
494
- # }
495
- #
496
369
  # @!attribute [rw] resource_set_name
497
370
  # @return [String]
498
371
  #
@@ -504,15 +377,6 @@ module Aws::Route53RecoveryReadiness
504
377
  include Aws::Structure
505
378
  end
506
379
 
507
- # @note When making an API call, you may pass GetArchitectureRecommendationsRequest
508
- # data as a hash:
509
- #
510
- # {
511
- # max_results: 1,
512
- # next_token: "__string",
513
- # recovery_group_name: "__string", # required
514
- # }
515
- #
516
380
  # @!attribute [rw] max_results
517
381
  # @return [Integer]
518
382
  #
@@ -553,15 +417,6 @@ module Aws::Route53RecoveryReadiness
553
417
  include Aws::Structure
554
418
  end
555
419
 
556
- # @note When making an API call, you may pass GetCellReadinessSummaryRequest
557
- # data as a hash:
558
- #
559
- # {
560
- # cell_name: "__string", # required
561
- # max_results: 1,
562
- # next_token: "__string",
563
- # }
564
- #
565
420
  # @!attribute [rw] cell_name
566
421
  # @return [String]
567
422
  #
@@ -601,13 +456,6 @@ module Aws::Route53RecoveryReadiness
601
456
  include Aws::Structure
602
457
  end
603
458
 
604
- # @note When making an API call, you may pass GetCellRequest
605
- # data as a hash:
606
- #
607
- # {
608
- # cell_name: "__string", # required
609
- # }
610
- #
611
459
  # @!attribute [rw] cell_name
612
460
  # @return [String]
613
461
  #
@@ -647,13 +495,6 @@ module Aws::Route53RecoveryReadiness
647
495
  include Aws::Structure
648
496
  end
649
497
 
650
- # @note When making an API call, you may pass GetReadinessCheckRequest
651
- # data as a hash:
652
- #
653
- # {
654
- # readiness_check_name: "__string", # required
655
- # }
656
- #
657
498
  # @!attribute [rw] readiness_check_name
658
499
  # @return [String]
659
500
  #
@@ -665,16 +506,6 @@ module Aws::Route53RecoveryReadiness
665
506
  include Aws::Structure
666
507
  end
667
508
 
668
- # @note When making an API call, you may pass GetReadinessCheckResourceStatusRequest
669
- # data as a hash:
670
- #
671
- # {
672
- # max_results: 1,
673
- # next_token: "__string",
674
- # readiness_check_name: "__string", # required
675
- # resource_identifier: "__string", # required
676
- # }
677
- #
678
509
  # @!attribute [rw] max_results
679
510
  # @return [Integer]
680
511
  #
@@ -742,15 +573,6 @@ module Aws::Route53RecoveryReadiness
742
573
  include Aws::Structure
743
574
  end
744
575
 
745
- # @note When making an API call, you may pass GetReadinessCheckStatusRequest
746
- # data as a hash:
747
- #
748
- # {
749
- # max_results: 1,
750
- # next_token: "__string",
751
- # readiness_check_name: "__string", # required
752
- # }
753
- #
754
576
  # @!attribute [rw] max_results
755
577
  # @return [Integer]
756
578
  #
@@ -794,15 +616,6 @@ module Aws::Route53RecoveryReadiness
794
616
  include Aws::Structure
795
617
  end
796
618
 
797
- # @note When making an API call, you may pass GetRecoveryGroupReadinessSummaryRequest
798
- # data as a hash:
799
- #
800
- # {
801
- # max_results: 1,
802
- # next_token: "__string",
803
- # recovery_group_name: "__string", # required
804
- # }
805
- #
806
619
  # @!attribute [rw] max_results
807
620
  # @return [Integer]
808
621
  #
@@ -842,13 +655,6 @@ module Aws::Route53RecoveryReadiness
842
655
  include Aws::Structure
843
656
  end
844
657
 
845
- # @note When making an API call, you may pass GetRecoveryGroupRequest
846
- # data as a hash:
847
- #
848
- # {
849
- # recovery_group_name: "__string", # required
850
- # }
851
- #
852
658
  # @!attribute [rw] recovery_group_name
853
659
  # @return [String]
854
660
  #
@@ -884,13 +690,6 @@ module Aws::Route53RecoveryReadiness
884
690
  include Aws::Structure
885
691
  end
886
692
 
887
- # @note When making an API call, you may pass GetResourceSetRequest
888
- # data as a hash:
889
- #
890
- # {
891
- # resource_set_name: "__string", # required
892
- # }
893
- #
894
693
  # @!attribute [rw] resource_set_name
895
694
  # @return [String]
896
695
  #
@@ -941,14 +740,6 @@ module Aws::Route53RecoveryReadiness
941
740
  include Aws::Structure
942
741
  end
943
742
 
944
- # @note When making an API call, you may pass ListCellsRequest
945
- # data as a hash:
946
- #
947
- # {
948
- # max_results: 1,
949
- # next_token: "__string",
950
- # }
951
- #
952
743
  # @!attribute [rw] max_results
953
744
  # @return [Integer]
954
745
  #
@@ -979,14 +770,6 @@ module Aws::Route53RecoveryReadiness
979
770
  include Aws::Structure
980
771
  end
981
772
 
982
- # @note When making an API call, you may pass ListCrossAccountAuthorizationsRequest
983
- # data as a hash:
984
- #
985
- # {
986
- # max_results: 1,
987
- # next_token: "__string",
988
- # }
989
- #
990
773
  # @!attribute [rw] max_results
991
774
  # @return [Integer]
992
775
  #
@@ -1017,14 +800,6 @@ module Aws::Route53RecoveryReadiness
1017
800
  include Aws::Structure
1018
801
  end
1019
802
 
1020
- # @note When making an API call, you may pass ListReadinessChecksRequest
1021
- # data as a hash:
1022
- #
1023
- # {
1024
- # max_results: 1,
1025
- # next_token: "__string",
1026
- # }
1027
- #
1028
803
  # @!attribute [rw] max_results
1029
804
  # @return [Integer]
1030
805
  #
@@ -1055,14 +830,6 @@ module Aws::Route53RecoveryReadiness
1055
830
  include Aws::Structure
1056
831
  end
1057
832
 
1058
- # @note When making an API call, you may pass ListRecoveryGroupsRequest
1059
- # data as a hash:
1060
- #
1061
- # {
1062
- # max_results: 1,
1063
- # next_token: "__string",
1064
- # }
1065
- #
1066
833
  # @!attribute [rw] max_results
1067
834
  # @return [Integer]
1068
835
  #
@@ -1093,14 +860,6 @@ module Aws::Route53RecoveryReadiness
1093
860
  include Aws::Structure
1094
861
  end
1095
862
 
1096
- # @note When making an API call, you may pass ListResourceSetsRequest
1097
- # data as a hash:
1098
- #
1099
- # {
1100
- # max_results: 1,
1101
- # next_token: "__string",
1102
- # }
1103
- #
1104
863
  # @!attribute [rw] max_results
1105
864
  # @return [Integer]
1106
865
  #
@@ -1156,15 +915,6 @@ module Aws::Route53RecoveryReadiness
1156
915
  include Aws::Structure
1157
916
  end
1158
917
 
1159
- # @note When making an API call, you may pass ListRulesRequest
1160
- # data as a hash:
1161
- #
1162
- # {
1163
- # max_results: 1,
1164
- # next_token: "__string",
1165
- # resource_type: "__string",
1166
- # }
1167
- #
1168
918
  # @!attribute [rw] max_results
1169
919
  # @return [Integer]
1170
920
  #
@@ -1199,13 +949,6 @@ module Aws::Route53RecoveryReadiness
1199
949
  include Aws::Structure
1200
950
  end
1201
951
 
1202
- # @note When making an API call, you may pass ListTagsForResourcesRequest
1203
- # data as a hash:
1204
- #
1205
- # {
1206
- # resource_arn: "__string", # required
1207
- # }
1208
- #
1209
952
  # @!attribute [rw] resource_arn
1210
953
  # @return [String]
1211
954
  #
@@ -1246,13 +989,6 @@ module Aws::Route53RecoveryReadiness
1246
989
  # The Network Load Balancer resource that a DNS target resource points
1247
990
  # to.
1248
991
  #
1249
- # @note When making an API call, you may pass NLBResource
1250
- # data as a hash:
1251
- #
1252
- # {
1253
- # arn: "__string",
1254
- # }
1255
- #
1256
992
  # @!attribute [rw] arn
1257
993
  # The Network Load Balancer resource Amazon Resource Name (ARN).
1258
994
  # @return [String]
@@ -1267,14 +1003,6 @@ module Aws::Route53RecoveryReadiness
1267
1003
 
1268
1004
  # The Route 53 resource that a DNS target resource record points to.
1269
1005
  #
1270
- # @note When making an API call, you may pass R53ResourceRecord
1271
- # data as a hash:
1272
- #
1273
- # {
1274
- # domain_name: "__string",
1275
- # record_set_id: "__string",
1276
- # }
1277
- #
1278
1006
  # @!attribute [rw] domain_name
1279
1007
  # The DNS target domain name.
1280
1008
  # @return [String]
@@ -1389,30 +1117,6 @@ module Aws::Route53RecoveryReadiness
1389
1117
 
1390
1118
  # The resource element of a resource set.
1391
1119
  #
1392
- # @note When making an API call, you may pass Resource
1393
- # data as a hash:
1394
- #
1395
- # {
1396
- # component_id: "__string",
1397
- # dns_target_resource: {
1398
- # domain_name: "__string",
1399
- # hosted_zone_arn: "__string",
1400
- # record_set_id: "__string",
1401
- # record_type: "__string",
1402
- # target_resource: {
1403
- # nlb_resource: {
1404
- # arn: "__string",
1405
- # },
1406
- # r53_resource: {
1407
- # domain_name: "__string",
1408
- # record_set_id: "__string",
1409
- # },
1410
- # },
1411
- # },
1412
- # readiness_scopes: ["__string"],
1413
- # resource_arn: "__string",
1414
- # }
1415
- #
1416
1120
  # @!attribute [rw] component_id
1417
1121
  # The component identifier of the resource, generated when DNS target
1418
1122
  # resource is used.
@@ -1560,16 +1264,6 @@ module Aws::Route53RecoveryReadiness
1560
1264
  include Aws::Structure
1561
1265
  end
1562
1266
 
1563
- # @note When making an API call, you may pass TagResourceRequest
1564
- # data as a hash:
1565
- #
1566
- # {
1567
- # resource_arn: "__string", # required
1568
- # tags: { # required
1569
- # "__string" => "__string",
1570
- # },
1571
- # }
1572
- #
1573
1267
  # @!attribute [rw] resource_arn
1574
1268
  # @return [String]
1575
1269
  #
@@ -1592,19 +1286,6 @@ module Aws::Route53RecoveryReadiness
1592
1286
 
1593
1287
  # The target resource that the Route 53 record points to.
1594
1288
  #
1595
- # @note When making an API call, you may pass TargetResource
1596
- # data as a hash:
1597
- #
1598
- # {
1599
- # nlb_resource: {
1600
- # arn: "__string",
1601
- # },
1602
- # r53_resource: {
1603
- # domain_name: "__string",
1604
- # record_set_id: "__string",
1605
- # },
1606
- # }
1607
- #
1608
1289
  # @!attribute [rw] nlb_resource
1609
1290
  # The Network Load Balancer Resource.
1610
1291
  # @return [Types::NLBResource]
@@ -1633,14 +1314,6 @@ module Aws::Route53RecoveryReadiness
1633
1314
  include Aws::Structure
1634
1315
  end
1635
1316
 
1636
- # @note When making an API call, you may pass UntagResourceRequest
1637
- # data as a hash:
1638
- #
1639
- # {
1640
- # resource_arn: "__string", # required
1641
- # tag_keys: ["__string"], # required
1642
- # }
1643
- #
1644
1317
  # @!attribute [rw] resource_arn
1645
1318
  # @return [String]
1646
1319
  #
@@ -1656,14 +1329,6 @@ module Aws::Route53RecoveryReadiness
1656
1329
  include Aws::Structure
1657
1330
  end
1658
1331
 
1659
- # @note When making an API call, you may pass UpdateCellRequest
1660
- # data as a hash:
1661
- #
1662
- # {
1663
- # cell_name: "__string", # required
1664
- # cells: ["__string"], # required
1665
- # }
1666
- #
1667
1332
  # @!attribute [rw] cell_name
1668
1333
  # @return [String]
1669
1334
  #
@@ -1707,14 +1372,6 @@ module Aws::Route53RecoveryReadiness
1707
1372
  include Aws::Structure
1708
1373
  end
1709
1374
 
1710
- # @note When making an API call, you may pass UpdateReadinessCheckRequest
1711
- # data as a hash:
1712
- #
1713
- # {
1714
- # readiness_check_name: "__string", # required
1715
- # resource_set_name: "__string", # required
1716
- # }
1717
- #
1718
1375
  # @!attribute [rw] readiness_check_name
1719
1376
  # @return [String]
1720
1377
  #
@@ -1754,14 +1411,6 @@ module Aws::Route53RecoveryReadiness
1754
1411
  include Aws::Structure
1755
1412
  end
1756
1413
 
1757
- # @note When making an API call, you may pass UpdateRecoveryGroupRequest
1758
- # data as a hash:
1759
- #
1760
- # {
1761
- # cells: ["__string"], # required
1762
- # recovery_group_name: "__string", # required
1763
- # }
1764
- #
1765
1414
  # @!attribute [rw] cells
1766
1415
  # @return [Array<String>]
1767
1416
  #
@@ -1801,36 +1450,6 @@ module Aws::Route53RecoveryReadiness
1801
1450
  include Aws::Structure
1802
1451
  end
1803
1452
 
1804
- # @note When making an API call, you may pass UpdateResourceSetRequest
1805
- # data as a hash:
1806
- #
1807
- # {
1808
- # resource_set_name: "__string", # required
1809
- # resource_set_type: "__stringPatternAWSAZaZ09AZaZ09", # required
1810
- # resources: [ # required
1811
- # {
1812
- # component_id: "__string",
1813
- # dns_target_resource: {
1814
- # domain_name: "__string",
1815
- # hosted_zone_arn: "__string",
1816
- # record_set_id: "__string",
1817
- # record_type: "__string",
1818
- # target_resource: {
1819
- # nlb_resource: {
1820
- # arn: "__string",
1821
- # },
1822
- # r53_resource: {
1823
- # domain_name: "__string",
1824
- # record_set_id: "__string",
1825
- # },
1826
- # },
1827
- # },
1828
- # readiness_scopes: ["__string"],
1829
- # resource_arn: "__string",
1830
- # },
1831
- # ],
1832
- # }
1833
- #
1834
1453
  # @!attribute [rw] resource_set_name
1835
1454
  # @return [String]
1836
1455
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53recoveryreadiness/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53RecoveryReadiness
54
54
 
55
- GEM_VERSION = '1.11.0'
55
+ GEM_VERSION = '1.12.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53recoveryreadiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.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