aws-sdk-route53resolver 1.38.0 → 1.39.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: 72cfd0086dc830a3eb837a8d8b52690732101c2bbd6162b5d9443130e4debc21
4
- data.tar.gz: 036caa24bd92c2a63a132bd8468472deaad476a63ba417b1c63d598cb431ae98
3
+ metadata.gz: a2efb60a4882aec71ddcb1dd9cb4b94aafaf22731598ab08bc080e9deb5ff649
4
+ data.tar.gz: 2712e6998b93b5a6af706d6d8d2f851d8d4a000ed7902eac681b1bf4e746b43c
5
5
  SHA512:
6
- metadata.gz: cdbb6c23bb3ad5d764347382599ebb3f94bbbaa077db4d0e577f5e861f77980b0dba3b525540e774716a01cba3ffea644d87c707139352948b3efe3804994529
7
- data.tar.gz: 7d071d6d83ffbc97085b6330f168e9c813f3abaa6f4eaec3bbff2f369adb08cc6649205e960559c7a7bd062254e1c580816fa132c3dbaf1661749eb9f2a4f6e8
6
+ metadata.gz: b26891b385ce14296d3b9d4c956a314c61bb2edde28205e15b6f36fdb3cbcbb19d37985443b3047979a0c84075fa7f2644fb7d0d15862d48498fbfaaa7393054
7
+ data.tar.gz: aefabbcea11f486202399efa0b72cc8b6391b55c41c8e7e03b36f4b689f56b23f88afd10676d3f73777ffdc697c8c17096096e175fa19303628f96342a621f2f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.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.38.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -205,4 +212,4 @@ Unreleased Changes
205
212
  1.0.0 (2018-11-15)
206
213
  ------------------
207
214
 
208
- * Feature - Initial release of `aws-sdk-route53resolver`.
215
+ * Feature - Initial release of `aws-sdk-route53resolver`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.39.0
@@ -4115,7 +4115,7 @@ module Aws::Route53Resolver
4115
4115
  params: params,
4116
4116
  config: config)
4117
4117
  context[:gem_name] = 'aws-sdk-route53resolver'
4118
- context[:gem_version] = '1.38.0'
4118
+ context[:gem_version] = '1.39.0'
4119
4119
  Seahorse::Client::Request.new(handlers, context)
4120
4120
  end
4121
4121
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::Route53Resolver
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://route53resolver-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://route53resolver-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://route53resolver.#{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://route53resolver.#{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
- dCI6eyJ1cmwiOiJodHRwczovL3JvdXRlNTNyZXNvbHZlci1maXBzLntSZWdp
77
- b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
78
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
79
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3Rh
80
- Y2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
81
- dXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
82
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
83
- IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
84
- b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
85
- ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
86
- c3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVs
87
- ZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
88
- eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9y
89
- b3V0ZTUzcmVzb2x2ZXItZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
90
- I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
91
- eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
92
- OiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
93
- IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
94
- IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VE
95
- dWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
96
- b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
97
- ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
98
- c3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUi
99
- LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
100
- Imh0dHBzOi8vcm91dGU1M3Jlc29sdmVyLntSZWdpb259LntQYXJ0aXRpb25S
101
- ZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
102
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
103
- IjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBw
104
- YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoi
105
- ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
106
- Imh0dHBzOi8vcm91dGU1M3Jlc29sdmVyLntSZWdpb259LntQYXJ0aXRpb25S
107
- ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
108
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -24,24 +24,6 @@ module Aws::Route53Resolver
24
24
  include Aws::Structure
25
25
  end
26
26
 
27
- # @note When making an API call, you may pass AssociateFirewallRuleGroupRequest
28
- # data as a hash:
29
- #
30
- # {
31
- # creator_request_id: "CreatorRequestId", # required
32
- # firewall_rule_group_id: "ResourceId", # required
33
- # vpc_id: "ResourceId", # required
34
- # priority: 1, # required
35
- # name: "Name", # required
36
- # mutation_protection: "ENABLED", # accepts ENABLED, DISABLED
37
- # tags: [
38
- # {
39
- # key: "TagKey", # required
40
- # value: "TagValue", # required
41
- # },
42
- # ],
43
- # }
44
- #
45
27
  # @!attribute [rw] creator_request_id
46
28
  # A unique string that identifies the request and that allows failed
47
29
  # requests to be retried without the risk of running the operation
@@ -120,18 +102,6 @@ module Aws::Route53Resolver
120
102
  include Aws::Structure
121
103
  end
122
104
 
123
- # @note When making an API call, you may pass AssociateResolverEndpointIpAddressRequest
124
- # data as a hash:
125
- #
126
- # {
127
- # resolver_endpoint_id: "ResourceId", # required
128
- # ip_address: { # required
129
- # ip_id: "ResourceId",
130
- # subnet_id: "SubnetId",
131
- # ip: "Ip",
132
- # },
133
- # }
134
- #
135
105
  # @!attribute [rw] resolver_endpoint_id
136
106
  # The ID of the Resolver endpoint that you want to associate IP
137
107
  # addresses with.
@@ -164,14 +134,6 @@ module Aws::Route53Resolver
164
134
  include Aws::Structure
165
135
  end
166
136
 
167
- # @note When making an API call, you may pass AssociateResolverQueryLogConfigRequest
168
- # data as a hash:
169
- #
170
- # {
171
- # resolver_query_log_config_id: "ResourceId", # required
172
- # resource_id: "ResourceId", # required
173
- # }
174
- #
175
137
  # @!attribute [rw] resolver_query_log_config_id
176
138
  # The ID of the query logging configuration that you want to associate
177
139
  # a VPC with.
@@ -209,15 +171,6 @@ module Aws::Route53Resolver
209
171
  include Aws::Structure
210
172
  end
211
173
 
212
- # @note When making an API call, you may pass AssociateResolverRuleRequest
213
- # data as a hash:
214
- #
215
- # {
216
- # resolver_rule_id: "ResourceId", # required
217
- # name: "Name",
218
- # vpc_id: "ResourceId", # required
219
- # }
220
- #
221
174
  # @!attribute [rw] resolver_rule_id
222
175
  # The ID of the Resolver rule that you want to associate with the VPC.
223
176
  # To list the existing Resolver rules, use [ListResolverRules][1].
@@ -270,20 +223,6 @@ module Aws::Route53Resolver
270
223
  include Aws::Structure
271
224
  end
272
225
 
273
- # @note When making an API call, you may pass CreateFirewallDomainListRequest
274
- # data as a hash:
275
- #
276
- # {
277
- # creator_request_id: "CreatorRequestId", # required
278
- # name: "Name", # required
279
- # tags: [
280
- # {
281
- # key: "TagKey", # required
282
- # value: "TagValue", # required
283
- # },
284
- # ],
285
- # }
286
- #
287
226
  # @!attribute [rw] creator_request_id
288
227
  # A unique string that identifies the request and that allows you to
289
228
  # retry failed requests without the risk of running the operation
@@ -325,20 +264,6 @@ module Aws::Route53Resolver
325
264
  include Aws::Structure
326
265
  end
327
266
 
328
- # @note When making an API call, you may pass CreateFirewallRuleGroupRequest
329
- # data as a hash:
330
- #
331
- # {
332
- # creator_request_id: "CreatorRequestId", # required
333
- # name: "Name", # required
334
- # tags: [
335
- # {
336
- # key: "TagKey", # required
337
- # value: "TagValue", # required
338
- # },
339
- # ],
340
- # }
341
- #
342
267
  # @!attribute [rw] creator_request_id
343
268
  # A unique string defined by you to identify the request. This allows
344
269
  # you to retry failed requests without the risk of running the
@@ -380,22 +305,6 @@ module Aws::Route53Resolver
380
305
  include Aws::Structure
381
306
  end
382
307
 
383
- # @note When making an API call, you may pass CreateFirewallRuleRequest
384
- # data as a hash:
385
- #
386
- # {
387
- # creator_request_id: "CreatorRequestId", # required
388
- # firewall_rule_group_id: "ResourceId", # required
389
- # firewall_domain_list_id: "ResourceId", # required
390
- # priority: 1, # required
391
- # action: "ALLOW", # required, accepts ALLOW, BLOCK, ALERT
392
- # block_response: "NODATA", # accepts NODATA, NXDOMAIN, OVERRIDE
393
- # block_override_domain: "BlockOverrideDomain",
394
- # block_override_dns_type: "CNAME", # accepts CNAME
395
- # block_override_ttl: 1,
396
- # name: "Name", # required
397
- # }
398
- #
399
308
  # @!attribute [rw] creator_request_id
400
309
  # A unique string that identifies the request and that allows you to
401
310
  # retry failed requests without the risk of running the operation
@@ -516,28 +425,6 @@ module Aws::Route53Resolver
516
425
  include Aws::Structure
517
426
  end
518
427
 
519
- # @note When making an API call, you may pass CreateResolverEndpointRequest
520
- # data as a hash:
521
- #
522
- # {
523
- # creator_request_id: "CreatorRequestId", # required
524
- # name: "Name",
525
- # security_group_ids: ["ResourceId"], # required
526
- # direction: "INBOUND", # required, accepts INBOUND, OUTBOUND
527
- # ip_addresses: [ # required
528
- # {
529
- # subnet_id: "SubnetId", # required
530
- # ip: "Ip",
531
- # },
532
- # ],
533
- # tags: [
534
- # {
535
- # key: "TagKey", # required
536
- # value: "TagValue", # required
537
- # },
538
- # ],
539
- # }
540
- #
541
428
  # @!attribute [rw] creator_request_id
542
429
  # A unique string that identifies the request and that allows failed
543
430
  # requests to be retried without the risk of running the operation
@@ -607,21 +494,6 @@ module Aws::Route53Resolver
607
494
  include Aws::Structure
608
495
  end
609
496
 
610
- # @note When making an API call, you may pass CreateResolverQueryLogConfigRequest
611
- # data as a hash:
612
- #
613
- # {
614
- # name: "ResolverQueryLogConfigName", # required
615
- # destination_arn: "DestinationArn", # required
616
- # creator_request_id: "CreatorRequestId", # required
617
- # tags: [
618
- # {
619
- # key: "TagKey", # required
620
- # value: "TagValue", # required
621
- # },
622
- # ],
623
- # }
624
- #
625
497
  # @!attribute [rw] name
626
498
  # The name that you want to give the query logging configuration.
627
499
  # @return [String]
@@ -688,29 +560,6 @@ module Aws::Route53Resolver
688
560
  include Aws::Structure
689
561
  end
690
562
 
691
- # @note When making an API call, you may pass CreateResolverRuleRequest
692
- # data as a hash:
693
- #
694
- # {
695
- # creator_request_id: "CreatorRequestId", # required
696
- # name: "Name",
697
- # rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE
698
- # domain_name: "DomainName", # required
699
- # target_ips: [
700
- # {
701
- # ip: "Ip", # required
702
- # port: 1,
703
- # },
704
- # ],
705
- # resolver_endpoint_id: "ResourceId",
706
- # tags: [
707
- # {
708
- # key: "TagKey", # required
709
- # value: "TagValue", # required
710
- # },
711
- # ],
712
- # }
713
- #
714
563
  # @!attribute [rw] creator_request_id
715
564
  # A unique string that identifies the request and that allows failed
716
565
  # requests to be retried without the risk of running the operation
@@ -795,13 +644,6 @@ module Aws::Route53Resolver
795
644
  include Aws::Structure
796
645
  end
797
646
 
798
- # @note When making an API call, you may pass DeleteFirewallDomainListRequest
799
- # data as a hash:
800
- #
801
- # {
802
- # firewall_domain_list_id: "ResourceId", # required
803
- # }
804
- #
805
647
  # @!attribute [rw] firewall_domain_list_id
806
648
  # The ID of the domain list that you want to delete.
807
649
  # @return [String]
@@ -826,13 +668,6 @@ module Aws::Route53Resolver
826
668
  include Aws::Structure
827
669
  end
828
670
 
829
- # @note When making an API call, you may pass DeleteFirewallRuleGroupRequest
830
- # data as a hash:
831
- #
832
- # {
833
- # firewall_rule_group_id: "ResourceId", # required
834
- # }
835
- #
836
671
  # @!attribute [rw] firewall_rule_group_id
837
672
  # The unique identifier of the firewall rule group that you want to
838
673
  # delete.
@@ -858,14 +693,6 @@ module Aws::Route53Resolver
858
693
  include Aws::Structure
859
694
  end
860
695
 
861
- # @note When making an API call, you may pass DeleteFirewallRuleRequest
862
- # data as a hash:
863
- #
864
- # {
865
- # firewall_rule_group_id: "ResourceId", # required
866
- # firewall_domain_list_id: "ResourceId", # required
867
- # }
868
- #
869
696
  # @!attribute [rw] firewall_rule_group_id
870
697
  # The unique identifier of the firewall rule group that you want to
871
698
  # delete the rule from.
@@ -896,13 +723,6 @@ module Aws::Route53Resolver
896
723
  include Aws::Structure
897
724
  end
898
725
 
899
- # @note When making an API call, you may pass DeleteResolverEndpointRequest
900
- # data as a hash:
901
- #
902
- # {
903
- # resolver_endpoint_id: "ResourceId", # required
904
- # }
905
- #
906
726
  # @!attribute [rw] resolver_endpoint_id
907
727
  # The ID of the Resolver endpoint that you want to delete.
908
728
  # @return [String]
@@ -928,13 +748,6 @@ module Aws::Route53Resolver
928
748
  include Aws::Structure
929
749
  end
930
750
 
931
- # @note When making an API call, you may pass DeleteResolverQueryLogConfigRequest
932
- # data as a hash:
933
- #
934
- # {
935
- # resolver_query_log_config_id: "ResourceId", # required
936
- # }
937
- #
938
751
  # @!attribute [rw] resolver_query_log_config_id
939
752
  # The ID of the query logging configuration that you want to delete.
940
753
  # @return [String]
@@ -960,13 +773,6 @@ module Aws::Route53Resolver
960
773
  include Aws::Structure
961
774
  end
962
775
 
963
- # @note When making an API call, you may pass DeleteResolverRuleRequest
964
- # data as a hash:
965
- #
966
- # {
967
- # resolver_rule_id: "ResourceId", # required
968
- # }
969
- #
970
776
  # @!attribute [rw] resolver_rule_id
971
777
  # The ID of the Resolver rule that you want to delete.
972
778
  # @return [String]
@@ -992,13 +798,6 @@ module Aws::Route53Resolver
992
798
  include Aws::Structure
993
799
  end
994
800
 
995
- # @note When making an API call, you may pass DisassociateFirewallRuleGroupRequest
996
- # data as a hash:
997
- #
998
- # {
999
- # firewall_rule_group_association_id: "ResourceId", # required
1000
- # }
1001
- #
1002
801
  # @!attribute [rw] firewall_rule_group_association_id
1003
802
  # The identifier of the FirewallRuleGroupAssociation.
1004
803
  # @return [String]
@@ -1023,18 +822,6 @@ module Aws::Route53Resolver
1023
822
  include Aws::Structure
1024
823
  end
1025
824
 
1026
- # @note When making an API call, you may pass DisassociateResolverEndpointIpAddressRequest
1027
- # data as a hash:
1028
- #
1029
- # {
1030
- # resolver_endpoint_id: "ResourceId", # required
1031
- # ip_address: { # required
1032
- # ip_id: "ResourceId",
1033
- # subnet_id: "SubnetId",
1034
- # ip: "Ip",
1035
- # },
1036
- # }
1037
- #
1038
825
  # @!attribute [rw] resolver_endpoint_id
1039
826
  # The ID of the Resolver endpoint that you want to disassociate an IP
1040
827
  # address from.
@@ -1065,14 +852,6 @@ module Aws::Route53Resolver
1065
852
  include Aws::Structure
1066
853
  end
1067
854
 
1068
- # @note When making an API call, you may pass DisassociateResolverQueryLogConfigRequest
1069
- # data as a hash:
1070
- #
1071
- # {
1072
- # resolver_query_log_config_id: "ResourceId", # required
1073
- # resource_id: "ResourceId", # required
1074
- # }
1075
- #
1076
855
  # @!attribute [rw] resolver_query_log_config_id
1077
856
  # The ID of the query logging configuration that you want to
1078
857
  # disassociate a specified VPC from.
@@ -1105,14 +884,6 @@ module Aws::Route53Resolver
1105
884
  include Aws::Structure
1106
885
  end
1107
886
 
1108
- # @note When making an API call, you may pass DisassociateResolverRuleRequest
1109
- # data as a hash:
1110
- #
1111
- # {
1112
- # vpc_id: "ResourceId", # required
1113
- # resolver_rule_id: "ResourceId", # required
1114
- # }
1115
- #
1116
887
  # @!attribute [rw] vpc_id
1117
888
  # The ID of the VPC that you want to disassociate the Resolver rule
1118
889
  # from.
@@ -1166,14 +937,6 @@ module Aws::Route53Resolver
1166
937
  # [5]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_ListResolverQueryLogConfigAssociations.html
1167
938
  # [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_ListResolverDnssecConfigs.html
1168
939
  #
1169
- # @note When making an API call, you may pass Filter
1170
- # data as a hash:
1171
- #
1172
- # {
1173
- # name: "FilterName",
1174
- # values: ["FilterValue"],
1175
- # }
1176
- #
1177
940
  # @!attribute [rw] name
1178
941
  # The name of the parameter that you want to use to filter objects.
1179
942
  #
@@ -1857,13 +1620,6 @@ module Aws::Route53Resolver
1857
1620
  include Aws::Structure
1858
1621
  end
1859
1622
 
1860
- # @note When making an API call, you may pass GetFirewallConfigRequest
1861
- # data as a hash:
1862
- #
1863
- # {
1864
- # resource_id: "ResourceId", # required
1865
- # }
1866
- #
1867
1623
  # @!attribute [rw] resource_id
1868
1624
  # The ID of the VPC from Amazon VPC that the configuration is for.
1869
1625
  # @return [String]
@@ -1889,13 +1645,6 @@ module Aws::Route53Resolver
1889
1645
  include Aws::Structure
1890
1646
  end
1891
1647
 
1892
- # @note When making an API call, you may pass GetFirewallDomainListRequest
1893
- # data as a hash:
1894
- #
1895
- # {
1896
- # firewall_domain_list_id: "ResourceId", # required
1897
- # }
1898
- #
1899
1648
  # @!attribute [rw] firewall_domain_list_id
1900
1649
  # The ID of the domain list.
1901
1650
  # @return [String]
@@ -1920,13 +1669,6 @@ module Aws::Route53Resolver
1920
1669
  include Aws::Structure
1921
1670
  end
1922
1671
 
1923
- # @note When making an API call, you may pass GetFirewallRuleGroupAssociationRequest
1924
- # data as a hash:
1925
- #
1926
- # {
1927
- # firewall_rule_group_association_id: "ResourceId", # required
1928
- # }
1929
- #
1930
1672
  # @!attribute [rw] firewall_rule_group_association_id
1931
1673
  # The identifier of the FirewallRuleGroupAssociation.
1932
1674
  # @return [String]
@@ -1951,13 +1693,6 @@ module Aws::Route53Resolver
1951
1693
  include Aws::Structure
1952
1694
  end
1953
1695
 
1954
- # @note When making an API call, you may pass GetFirewallRuleGroupPolicyRequest
1955
- # data as a hash:
1956
- #
1957
- # {
1958
- # arn: "Arn", # required
1959
- # }
1960
- #
1961
1696
  # @!attribute [rw] arn
1962
1697
  # The ARN (Amazon Resource Name) for the rule group.
1963
1698
  # @return [String]
@@ -1984,13 +1719,6 @@ module Aws::Route53Resolver
1984
1719
  include Aws::Structure
1985
1720
  end
1986
1721
 
1987
- # @note When making an API call, you may pass GetFirewallRuleGroupRequest
1988
- # data as a hash:
1989
- #
1990
- # {
1991
- # firewall_rule_group_id: "ResourceId", # required
1992
- # }
1993
- #
1994
1722
  # @!attribute [rw] firewall_rule_group_id
1995
1723
  # The unique identifier of the firewall rule group.
1996
1724
  # @return [String]
@@ -2015,13 +1743,6 @@ module Aws::Route53Resolver
2015
1743
  include Aws::Structure
2016
1744
  end
2017
1745
 
2018
- # @note When making an API call, you may pass GetResolverConfigRequest
2019
- # data as a hash:
2020
- #
2021
- # {
2022
- # resource_id: "ResourceId", # required
2023
- # }
2024
- #
2025
1746
  # @!attribute [rw] resource_id
2026
1747
  # Resource ID of the Amazon VPC that you want to get information
2027
1748
  # about.
@@ -2049,13 +1770,6 @@ module Aws::Route53Resolver
2049
1770
  include Aws::Structure
2050
1771
  end
2051
1772
 
2052
- # @note When making an API call, you may pass GetResolverDnssecConfigRequest
2053
- # data as a hash:
2054
- #
2055
- # {
2056
- # resource_id: "ResourceId", # required
2057
- # }
2058
- #
2059
1773
  # @!attribute [rw] resource_id
2060
1774
  # The ID of the virtual private cloud (VPC) for the DNSSEC validation
2061
1775
  # status.
@@ -2081,13 +1795,6 @@ module Aws::Route53Resolver
2081
1795
  include Aws::Structure
2082
1796
  end
2083
1797
 
2084
- # @note When making an API call, you may pass GetResolverEndpointRequest
2085
- # data as a hash:
2086
- #
2087
- # {
2088
- # resolver_endpoint_id: "ResourceId", # required
2089
- # }
2090
- #
2091
1798
  # @!attribute [rw] resolver_endpoint_id
2092
1799
  # The ID of the Resolver endpoint that you want to get information
2093
1800
  # about.
@@ -2114,13 +1821,6 @@ module Aws::Route53Resolver
2114
1821
  include Aws::Structure
2115
1822
  end
2116
1823
 
2117
- # @note When making an API call, you may pass GetResolverQueryLogConfigAssociationRequest
2118
- # data as a hash:
2119
- #
2120
- # {
2121
- # resolver_query_log_config_association_id: "ResourceId", # required
2122
- # }
2123
- #
2124
1824
  # @!attribute [rw] resolver_query_log_config_association_id
2125
1825
  # The ID of the Resolver query logging configuration association that
2126
1826
  # you want to get information about.
@@ -2148,13 +1848,6 @@ module Aws::Route53Resolver
2148
1848
  include Aws::Structure
2149
1849
  end
2150
1850
 
2151
- # @note When making an API call, you may pass GetResolverQueryLogConfigPolicyRequest
2152
- # data as a hash:
2153
- #
2154
- # {
2155
- # arn: "Arn", # required
2156
- # }
2157
- #
2158
1851
  # @!attribute [rw] arn
2159
1852
  # The ARN of the query logging configuration that you want to get the
2160
1853
  # query logging policy for.
@@ -2182,13 +1875,6 @@ module Aws::Route53Resolver
2182
1875
  include Aws::Structure
2183
1876
  end
2184
1877
 
2185
- # @note When making an API call, you may pass GetResolverQueryLogConfigRequest
2186
- # data as a hash:
2187
- #
2188
- # {
2189
- # resolver_query_log_config_id: "ResourceId", # required
2190
- # }
2191
- #
2192
1878
  # @!attribute [rw] resolver_query_log_config_id
2193
1879
  # The ID of the Resolver query logging configuration that you want to
2194
1880
  # get information about.
@@ -2215,13 +1901,6 @@ module Aws::Route53Resolver
2215
1901
  include Aws::Structure
2216
1902
  end
2217
1903
 
2218
- # @note When making an API call, you may pass GetResolverRuleAssociationRequest
2219
- # data as a hash:
2220
- #
2221
- # {
2222
- # resolver_rule_association_id: "ResourceId", # required
2223
- # }
2224
- #
2225
1904
  # @!attribute [rw] resolver_rule_association_id
2226
1905
  # The ID of the Resolver rule association that you want to get
2227
1906
  # information about.
@@ -2248,13 +1927,6 @@ module Aws::Route53Resolver
2248
1927
  include Aws::Structure
2249
1928
  end
2250
1929
 
2251
- # @note When making an API call, you may pass GetResolverRulePolicyRequest
2252
- # data as a hash:
2253
- #
2254
- # {
2255
- # arn: "Arn", # required
2256
- # }
2257
- #
2258
1930
  # @!attribute [rw] arn
2259
1931
  # The ID of the Resolver rule that you want to get the Resolver rule
2260
1932
  # policy for.
@@ -2281,13 +1953,6 @@ module Aws::Route53Resolver
2281
1953
  include Aws::Structure
2282
1954
  end
2283
1955
 
2284
- # @note When making an API call, you may pass GetResolverRuleRequest
2285
- # data as a hash:
2286
- #
2287
- # {
2288
- # resolver_rule_id: "ResourceId", # required
2289
- # }
2290
- #
2291
1956
  # @!attribute [rw] resolver_rule_id
2292
1957
  # The ID of the Resolver rule that you want to get information about.
2293
1958
  # @return [String]
@@ -2313,15 +1978,6 @@ module Aws::Route53Resolver
2313
1978
  include Aws::Structure
2314
1979
  end
2315
1980
 
2316
- # @note When making an API call, you may pass ImportFirewallDomainsRequest
2317
- # data as a hash:
2318
- #
2319
- # {
2320
- # firewall_domain_list_id: "ResourceId", # required
2321
- # operation: "REPLACE", # required, accepts REPLACE
2322
- # domain_file_url: "DomainListFileUrl", # required
2323
- # }
2324
- #
2325
1981
  # @!attribute [rw] firewall_domain_list_id
2326
1982
  # The ID of the domain list that you want to modify with the import
2327
1983
  # operation.
@@ -2473,14 +2129,6 @@ module Aws::Route53Resolver
2473
2129
  #
2474
2130
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverEndpoint.html
2475
2131
  #
2476
- # @note When making an API call, you may pass IpAddressRequest
2477
- # data as a hash:
2478
- #
2479
- # {
2480
- # subnet_id: "SubnetId", # required
2481
- # ip: "Ip",
2482
- # }
2483
- #
2484
2132
  # @!attribute [rw] subnet_id
2485
2133
  # The ID of the subnet that contains the IP address.
2486
2134
  # @return [String]
@@ -2558,15 +2206,6 @@ module Aws::Route53Resolver
2558
2206
  #
2559
2207
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverEndpoint.html
2560
2208
  #
2561
- # @note When making an API call, you may pass IpAddressUpdate
2562
- # data as a hash:
2563
- #
2564
- # {
2565
- # ip_id: "ResourceId",
2566
- # subnet_id: "SubnetId",
2567
- # ip: "Ip",
2568
- # }
2569
- #
2570
2209
  # @!attribute [rw] ip_id
2571
2210
  # *Only when removing an IP address from a Resolver endpoint*\: The ID
2572
2211
  # of the IP address that you want to remove. To get this ID, use
@@ -2619,14 +2258,6 @@ module Aws::Route53Resolver
2619
2258
  include Aws::Structure
2620
2259
  end
2621
2260
 
2622
- # @note When making an API call, you may pass ListFirewallConfigsRequest
2623
- # data as a hash:
2624
- #
2625
- # {
2626
- # max_results: 1,
2627
- # next_token: "NextToken",
2628
- # }
2629
- #
2630
2261
  # @!attribute [rw] max_results
2631
2262
  # The maximum number of objects that you want Resolver to return for
2632
2263
  # this request. If more objects are available, in the response,
@@ -2676,14 +2307,6 @@ module Aws::Route53Resolver
2676
2307
  include Aws::Structure
2677
2308
  end
2678
2309
 
2679
- # @note When making an API call, you may pass ListFirewallDomainListsRequest
2680
- # data as a hash:
2681
- #
2682
- # {
2683
- # max_results: 1,
2684
- # next_token: "NextToken",
2685
- # }
2686
- #
2687
2310
  # @!attribute [rw] max_results
2688
2311
  # The maximum number of objects that you want Resolver to return for
2689
2312
  # this request. If more objects are available, in the response,
@@ -2735,15 +2358,6 @@ module Aws::Route53Resolver
2735
2358
  include Aws::Structure
2736
2359
  end
2737
2360
 
2738
- # @note When making an API call, you may pass ListFirewallDomainsRequest
2739
- # data as a hash:
2740
- #
2741
- # {
2742
- # firewall_domain_list_id: "ResourceId", # required
2743
- # max_results: 1,
2744
- # next_token: "NextToken",
2745
- # }
2746
- #
2747
2361
  # @!attribute [rw] firewall_domain_list_id
2748
2362
  # The ID of the domain list whose domains you want to retrieve.
2749
2363
  # @return [String]
@@ -2800,18 +2414,6 @@ module Aws::Route53Resolver
2800
2414
  include Aws::Structure
2801
2415
  end
2802
2416
 
2803
- # @note When making an API call, you may pass ListFirewallRuleGroupAssociationsRequest
2804
- # data as a hash:
2805
- #
2806
- # {
2807
- # firewall_rule_group_id: "ResourceId",
2808
- # vpc_id: "ResourceId",
2809
- # priority: 1,
2810
- # status: "COMPLETE", # accepts COMPLETE, DELETING, UPDATING
2811
- # max_results: 1,
2812
- # next_token: "NextToken",
2813
- # }
2814
- #
2815
2417
  # @!attribute [rw] firewall_rule_group_id
2816
2418
  # The unique identifier of the firewall rule group that you want to
2817
2419
  # retrieve the associations for. Leave this blank to retrieve
@@ -2892,14 +2494,6 @@ module Aws::Route53Resolver
2892
2494
  include Aws::Structure
2893
2495
  end
2894
2496
 
2895
- # @note When making an API call, you may pass ListFirewallRuleGroupsRequest
2896
- # data as a hash:
2897
- #
2898
- # {
2899
- # max_results: 1,
2900
- # next_token: "NextToken",
2901
- # }
2902
- #
2903
2497
  # @!attribute [rw] max_results
2904
2498
  # The maximum number of objects that you want Resolver to return for
2905
2499
  # this request. If more objects are available, in the response,
@@ -2951,17 +2545,6 @@ module Aws::Route53Resolver
2951
2545
  include Aws::Structure
2952
2546
  end
2953
2547
 
2954
- # @note When making an API call, you may pass ListFirewallRulesRequest
2955
- # data as a hash:
2956
- #
2957
- # {
2958
- # firewall_rule_group_id: "ResourceId", # required
2959
- # priority: 1,
2960
- # action: "ALLOW", # accepts ALLOW, BLOCK, ALERT
2961
- # max_results: 1,
2962
- # next_token: "NextToken",
2963
- # }
2964
- #
2965
2548
  # @!attribute [rw] firewall_rule_group_id
2966
2549
  # The unique identifier of the firewall rule group that you want to
2967
2550
  # retrieve the rules for.
@@ -3045,14 +2628,6 @@ module Aws::Route53Resolver
3045
2628
  include Aws::Structure
3046
2629
  end
3047
2630
 
3048
- # @note When making an API call, you may pass ListResolverConfigsRequest
3049
- # data as a hash:
3050
- #
3051
- # {
3052
- # max_results: 1,
3053
- # next_token: "NextToken",
3054
- # }
3055
- #
3056
2631
  # @!attribute [rw] max_results
3057
2632
  # The maximum number of Resolver configurations that you want to
3058
2633
  # return in the response to a `ListResolverConfigs` request. If you
@@ -3108,20 +2683,6 @@ module Aws::Route53Resolver
3108
2683
  include Aws::Structure
3109
2684
  end
3110
2685
 
3111
- # @note When making an API call, you may pass ListResolverDnssecConfigsRequest
3112
- # data as a hash:
3113
- #
3114
- # {
3115
- # max_results: 1,
3116
- # next_token: "NextToken",
3117
- # filters: [
3118
- # {
3119
- # name: "FilterName",
3120
- # values: ["FilterValue"],
3121
- # },
3122
- # ],
3123
- # }
3124
- #
3125
2686
  # @!attribute [rw] max_results
3126
2687
  # *Optional*\: An integer that specifies the maximum number of DNSSEC
3127
2688
  # configuration results that you want Amazon Route 53 to return. If
@@ -3190,15 +2751,6 @@ module Aws::Route53Resolver
3190
2751
  include Aws::Structure
3191
2752
  end
3192
2753
 
3193
- # @note When making an API call, you may pass ListResolverEndpointIpAddressesRequest
3194
- # data as a hash:
3195
- #
3196
- # {
3197
- # resolver_endpoint_id: "ResourceId", # required
3198
- # max_results: 1,
3199
- # next_token: "NextToken",
3200
- # }
3201
- #
3202
2754
  # @!attribute [rw] resolver_endpoint_id
3203
2755
  # The ID of the Resolver endpoint that you want to get IP addresses
3204
2756
  # for.
@@ -3258,20 +2810,6 @@ module Aws::Route53Resolver
3258
2810
  include Aws::Structure
3259
2811
  end
3260
2812
 
3261
- # @note When making an API call, you may pass ListResolverEndpointsRequest
3262
- # data as a hash:
3263
- #
3264
- # {
3265
- # max_results: 1,
3266
- # next_token: "NextToken",
3267
- # filters: [
3268
- # {
3269
- # name: "FilterName",
3270
- # values: ["FilterValue"],
3271
- # },
3272
- # ],
3273
- # }
3274
- #
3275
2813
  # @!attribute [rw] max_results
3276
2814
  # The maximum number of Resolver endpoints that you want to return in
3277
2815
  # the response to a `ListResolverEndpoints` request. If you don't
@@ -3335,22 +2873,6 @@ module Aws::Route53Resolver
3335
2873
  include Aws::Structure
3336
2874
  end
3337
2875
 
3338
- # @note When making an API call, you may pass ListResolverQueryLogConfigAssociationsRequest
3339
- # data as a hash:
3340
- #
3341
- # {
3342
- # max_results: 1,
3343
- # next_token: "NextToken",
3344
- # filters: [
3345
- # {
3346
- # name: "FilterName",
3347
- # values: ["FilterValue"],
3348
- # },
3349
- # ],
3350
- # sort_by: "SortByKey",
3351
- # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
3352
- # }
3353
- #
3354
2876
  # @!attribute [rw] max_results
3355
2877
  # The maximum number of query logging associations that you want to
3356
2878
  # return in the response to a `ListResolverQueryLogConfigAssociations`
@@ -3502,22 +3024,6 @@ module Aws::Route53Resolver
3502
3024
  include Aws::Structure
3503
3025
  end
3504
3026
 
3505
- # @note When making an API call, you may pass ListResolverQueryLogConfigsRequest
3506
- # data as a hash:
3507
- #
3508
- # {
3509
- # max_results: 1,
3510
- # next_token: "NextToken",
3511
- # filters: [
3512
- # {
3513
- # name: "FilterName",
3514
- # values: ["FilterValue"],
3515
- # },
3516
- # ],
3517
- # sort_by: "SortByKey",
3518
- # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
3519
- # }
3520
- #
3521
3027
  # @!attribute [rw] max_results
3522
3028
  # The maximum number of query logging configurations that you want to
3523
3029
  # return in the response to a `ListResolverQueryLogConfigs` request.
@@ -3670,20 +3176,6 @@ module Aws::Route53Resolver
3670
3176
  include Aws::Structure
3671
3177
  end
3672
3178
 
3673
- # @note When making an API call, you may pass ListResolverRuleAssociationsRequest
3674
- # data as a hash:
3675
- #
3676
- # {
3677
- # max_results: 1,
3678
- # next_token: "NextToken",
3679
- # filters: [
3680
- # {
3681
- # name: "FilterName",
3682
- # values: ["FilterValue"],
3683
- # },
3684
- # ],
3685
- # }
3686
- #
3687
3179
  # @!attribute [rw] max_results
3688
3180
  # The maximum number of rule associations that you want to return in
3689
3181
  # the response to a `ListResolverRuleAssociations` request. If you
@@ -3749,20 +3241,6 @@ module Aws::Route53Resolver
3749
3241
  include Aws::Structure
3750
3242
  end
3751
3243
 
3752
- # @note When making an API call, you may pass ListResolverRulesRequest
3753
- # data as a hash:
3754
- #
3755
- # {
3756
- # max_results: 1,
3757
- # next_token: "NextToken",
3758
- # filters: [
3759
- # {
3760
- # name: "FilterName",
3761
- # values: ["FilterValue"],
3762
- # },
3763
- # ],
3764
- # }
3765
- #
3766
3244
  # @!attribute [rw] max_results
3767
3245
  # The maximum number of Resolver rules that you want to return in the
3768
3246
  # response to a `ListResolverRules` request. If you don't specify a
@@ -3826,15 +3304,6 @@ module Aws::Route53Resolver
3826
3304
  include Aws::Structure
3827
3305
  end
3828
3306
 
3829
- # @note When making an API call, you may pass ListTagsForResourceRequest
3830
- # data as a hash:
3831
- #
3832
- # {
3833
- # resource_arn: "Arn", # required
3834
- # max_results: 1,
3835
- # next_token: "NextToken",
3836
- # }
3837
- #
3838
3307
  # @!attribute [rw] resource_arn
3839
3308
  # The Amazon Resource Name (ARN) for the resource that you want to
3840
3309
  # list tags for.
@@ -3886,14 +3355,6 @@ module Aws::Route53Resolver
3886
3355
  include Aws::Structure
3887
3356
  end
3888
3357
 
3889
- # @note When making an API call, you may pass PutFirewallRuleGroupPolicyRequest
3890
- # data as a hash:
3891
- #
3892
- # {
3893
- # arn: "Arn", # required
3894
- # firewall_rule_group_policy: "FirewallRuleGroupPolicy", # required
3895
- # }
3896
- #
3897
3358
  # @!attribute [rw] arn
3898
3359
  # The ARN (Amazon Resource Name) for the rule group that you want to
3899
3360
  # share.
@@ -3924,14 +3385,6 @@ module Aws::Route53Resolver
3924
3385
  include Aws::Structure
3925
3386
  end
3926
3387
 
3927
- # @note When making an API call, you may pass PutResolverQueryLogConfigPolicyRequest
3928
- # data as a hash:
3929
- #
3930
- # {
3931
- # arn: "Arn", # required
3932
- # resolver_query_log_config_policy: "ResolverQueryLogConfigPolicy", # required
3933
- # }
3934
- #
3935
3388
  # @!attribute [rw] arn
3936
3389
  # The Amazon Resource Name (ARN) of the account that you want to share
3937
3390
  # rules with.
@@ -3981,14 +3434,6 @@ module Aws::Route53Resolver
3981
3434
  include Aws::Structure
3982
3435
  end
3983
3436
 
3984
- # @note When making an API call, you may pass PutResolverRulePolicyRequest
3985
- # data as a hash:
3986
- #
3987
- # {
3988
- # arn: "Arn", # required
3989
- # resolver_rule_policy: "ResolverRulePolicy", # required
3990
- # }
3991
- #
3992
3437
  # @!attribute [rw] arn
3993
3438
  # The Amazon Resource Name (ARN) of the rule that you want to share
3994
3439
  # with another account.
@@ -4642,20 +4087,6 @@ module Aws::Route53Resolver
4642
4087
  #
4643
4088
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverRule.html
4644
4089
  #
4645
- # @note When making an API call, you may pass ResolverRuleConfig
4646
- # data as a hash:
4647
- #
4648
- # {
4649
- # name: "Name",
4650
- # target_ips: [
4651
- # {
4652
- # ip: "Ip", # required
4653
- # port: 1,
4654
- # },
4655
- # ],
4656
- # resolver_endpoint_id: "ResourceId",
4657
- # }
4658
- #
4659
4090
  # @!attribute [rw] name
4660
4091
  # The new name for the Resolver rule. The name that you specify
4661
4092
  # appears in the Resolver dashboard in the Route 53 console.
@@ -4761,14 +4192,6 @@ module Aws::Route53Resolver
4761
4192
  # One tag that you want to add to the specified resource. A tag consists
4762
4193
  # of a `Key` (a name for the tag) and a `Value`.
4763
4194
  #
4764
- # @note When making an API call, you may pass Tag
4765
- # data as a hash:
4766
- #
4767
- # {
4768
- # key: "TagKey", # required
4769
- # value: "TagValue", # required
4770
- # }
4771
- #
4772
4195
  # @!attribute [rw] key
4773
4196
  # The name for the tag. For example, if you want to associate Resolver
4774
4197
  # resources with the account IDs of your customers for billing
@@ -4790,19 +4213,6 @@ module Aws::Route53Resolver
4790
4213
  include Aws::Structure
4791
4214
  end
4792
4215
 
4793
- # @note When making an API call, you may pass TagResourceRequest
4794
- # data as a hash:
4795
- #
4796
- # {
4797
- # resource_arn: "Arn", # required
4798
- # tags: [ # required
4799
- # {
4800
- # key: "TagKey", # required
4801
- # value: "TagValue", # required
4802
- # },
4803
- # ],
4804
- # }
4805
- #
4806
4216
  # @!attribute [rw] resource_arn
4807
4217
  # The Amazon Resource Name (ARN) for the resource that you want to add
4808
4218
  # tags to. To get the ARN for a resource, use the applicable `Get` or
@@ -4854,14 +4264,6 @@ module Aws::Route53Resolver
4854
4264
  #
4855
4265
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverRule.html
4856
4266
  #
4857
- # @note When making an API call, you may pass TargetAddress
4858
- # data as a hash:
4859
- #
4860
- # {
4861
- # ip: "Ip", # required
4862
- # port: 1,
4863
- # }
4864
- #
4865
4267
  # @!attribute [rw] ip
4866
4268
  # One IP address that you want to forward DNS queries to. You can
4867
4269
  # specify only IPv4 addresses.
@@ -4906,14 +4308,6 @@ module Aws::Route53Resolver
4906
4308
  include Aws::Structure
4907
4309
  end
4908
4310
 
4909
- # @note When making an API call, you may pass UntagResourceRequest
4910
- # data as a hash:
4911
- #
4912
- # {
4913
- # resource_arn: "Arn", # required
4914
- # tag_keys: ["TagKey"], # required
4915
- # }
4916
- #
4917
4311
  # @!attribute [rw] resource_arn
4918
4312
  # The Amazon Resource Name (ARN) for the resource that you want to
4919
4313
  # remove tags from. To get the ARN for a resource, use the applicable
@@ -4958,14 +4352,6 @@ module Aws::Route53Resolver
4958
4352
  #
4959
4353
  class UntagResourceResponse < Aws::EmptyStructure; end
4960
4354
 
4961
- # @note When making an API call, you may pass UpdateFirewallConfigRequest
4962
- # data as a hash:
4963
- #
4964
- # {
4965
- # resource_id: "ResourceId", # required
4966
- # firewall_fail_open: "ENABLED", # required, accepts ENABLED, DISABLED
4967
- # }
4968
- #
4969
4355
  # @!attribute [rw] resource_id
4970
4356
  # The ID of the VPC that the configuration is for.
4971
4357
  # @return [String]
@@ -5009,15 +4395,6 @@ module Aws::Route53Resolver
5009
4395
  include Aws::Structure
5010
4396
  end
5011
4397
 
5012
- # @note When making an API call, you may pass UpdateFirewallDomainsRequest
5013
- # data as a hash:
5014
- #
5015
- # {
5016
- # firewall_domain_list_id: "ResourceId", # required
5017
- # operation: "ADD", # required, accepts ADD, REMOVE, REPLACE
5018
- # domains: ["FirewallDomainName"], # required
5019
- # }
5020
- #
5021
4398
  # @!attribute [rw] firewall_domain_list_id
5022
4399
  # The ID of the domain list whose domains you want to update.
5023
4400
  # @return [String]
@@ -5087,16 +4464,6 @@ module Aws::Route53Resolver
5087
4464
  include Aws::Structure
5088
4465
  end
5089
4466
 
5090
- # @note When making an API call, you may pass UpdateFirewallRuleGroupAssociationRequest
5091
- # data as a hash:
5092
- #
5093
- # {
5094
- # firewall_rule_group_association_id: "ResourceId", # required
5095
- # priority: 1,
5096
- # mutation_protection: "ENABLED", # accepts ENABLED, DISABLED
5097
- # name: "Name",
5098
- # }
5099
- #
5100
4467
  # @!attribute [rw] firewall_rule_group_association_id
5101
4468
  # The identifier of the FirewallRuleGroupAssociation.
5102
4469
  # @return [String]
@@ -5147,21 +4514,6 @@ module Aws::Route53Resolver
5147
4514
  include Aws::Structure
5148
4515
  end
5149
4516
 
5150
- # @note When making an API call, you may pass UpdateFirewallRuleRequest
5151
- # data as a hash:
5152
- #
5153
- # {
5154
- # firewall_rule_group_id: "ResourceId", # required
5155
- # firewall_domain_list_id: "ResourceId", # required
5156
- # priority: 1,
5157
- # action: "ALLOW", # accepts ALLOW, BLOCK, ALERT
5158
- # block_response: "NODATA", # accepts NODATA, NXDOMAIN, OVERRIDE
5159
- # block_override_domain: "BlockOverrideDomain",
5160
- # block_override_dns_type: "CNAME", # accepts CNAME
5161
- # block_override_ttl: 1,
5162
- # name: "Name",
5163
- # }
5164
- #
5165
4517
  # @!attribute [rw] firewall_rule_group_id
5166
4518
  # The unique identifier of the firewall rule group for the rule.
5167
4519
  # @return [String]
@@ -5259,14 +4611,6 @@ module Aws::Route53Resolver
5259
4611
  include Aws::Structure
5260
4612
  end
5261
4613
 
5262
- # @note When making an API call, you may pass UpdateResolverConfigRequest
5263
- # data as a hash:
5264
- #
5265
- # {
5266
- # resource_id: "ResourceId", # required
5267
- # autodefined_reverse_flag: "ENABLE", # required, accepts ENABLE, DISABLE
5268
- # }
5269
- #
5270
4614
  # @!attribute [rw] resource_id
5271
4615
  # Resource ID of the Amazon VPC that you want to update the Resolver
5272
4616
  # configuration for.
@@ -5311,14 +4655,6 @@ module Aws::Route53Resolver
5311
4655
  include Aws::Structure
5312
4656
  end
5313
4657
 
5314
- # @note When making an API call, you may pass UpdateResolverDnssecConfigRequest
5315
- # data as a hash:
5316
- #
5317
- # {
5318
- # resource_id: "ResourceId", # required
5319
- # validation: "ENABLE", # required, accepts ENABLE, DISABLE
5320
- # }
5321
- #
5322
4658
  # @!attribute [rw] resource_id
5323
4659
  # The ID of the virtual private cloud (VPC) that you're updating the
5324
4660
  # DNSSEC validation status for.
@@ -5352,14 +4688,6 @@ module Aws::Route53Resolver
5352
4688
  include Aws::Structure
5353
4689
  end
5354
4690
 
5355
- # @note When making an API call, you may pass UpdateResolverEndpointRequest
5356
- # data as a hash:
5357
- #
5358
- # {
5359
- # resolver_endpoint_id: "ResourceId", # required
5360
- # name: "Name",
5361
- # }
5362
- #
5363
4691
  # @!attribute [rw] resolver_endpoint_id
5364
4692
  # The ID of the Resolver endpoint that you want to update.
5365
4693
  # @return [String]
@@ -5389,23 +4717,6 @@ module Aws::Route53Resolver
5389
4717
  include Aws::Structure
5390
4718
  end
5391
4719
 
5392
- # @note When making an API call, you may pass UpdateResolverRuleRequest
5393
- # data as a hash:
5394
- #
5395
- # {
5396
- # resolver_rule_id: "ResourceId", # required
5397
- # config: { # required
5398
- # name: "Name",
5399
- # target_ips: [
5400
- # {
5401
- # ip: "Ip", # required
5402
- # port: 1,
5403
- # },
5404
- # ],
5405
- # resolver_endpoint_id: "ResourceId",
5406
- # },
5407
- # }
5408
- #
5409
4720
  # @!attribute [rw] resolver_rule_id
5410
4721
  # The ID of the Resolver rule that you want to update.
5411
4722
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53resolver/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53Resolver
54
54
 
55
- GEM_VERSION = '1.38.0'
55
+ GEM_VERSION = '1.39.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53resolver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.39.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