aws-sdk-route53resolver 1.45.0 → 1.47.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: e497dd536f1033492de2f19eb8f07e86462103aaf99f87201659a142266c60a8
4
- data.tar.gz: 7338067f87019264f63337b3a1fa89b606332bc403354d48f9c21f4cbb91cdf4
3
+ metadata.gz: 00511ffc73c3688c45ca6f2f946d7f3587c28e848ea9749b460525f0901136fb
4
+ data.tar.gz: 9450de02667928b2ebc10b46b9b71bedd195f289c5c8671b4670c31bf8c431c7
5
5
  SHA512:
6
- metadata.gz: b75074870c07f0a97afaa4b82ac76928a0beaed2a58625960da774f06d1bb01f3ceddc1103d9cf93ab677140846d568b0f4ebfe35cc78745095dca18f9856a9c
7
- data.tar.gz: 45d88dff7baf26a9cc1b7af3928295847971283c000b477e836d2ef66c7ecf9ad55428fc1f851e453ea5ea1d5e99804bc804c115e67e800d54676ccdac7c7fcb
6
+ metadata.gz: 5f0966f70773c70b705eb1e20e1a3cd6cef3d17dc0b4415604fada649c3a6223ef582d47bebdeeaf18535f76c1d03bcc9986241c811bfb1fa3d701dba9dbd7d8
7
+ data.tar.gz: 0ae16aed15572f246c455b788cf35b046f08323db5cb7a4b81f3491a86505ad2b559d8d973b808603aaf2e79fbdecf8265f86061e2bb0dd095987abdf754eacd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2023-07-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Route 53 On Outposts, a new feature that allows customers to run Route 53 Resolver and Resolver endpoints locally on their Outposts.
8
+
9
+ 1.46.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.45.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.47.0
@@ -216,6 +216,10 @@ module Aws::Route53Resolver
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -538,6 +542,8 @@ module Aws::Route53Resolver
538
542
  # resp.resolver_endpoint.creation_time #=> String
539
543
  # resp.resolver_endpoint.modification_time #=> String
540
544
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
545
+ # resp.resolver_endpoint.outpost_arn #=> String
546
+ # resp.resolver_endpoint.preferred_instance_type #=> String
541
547
  #
542
548
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/AssociateResolverEndpointIpAddress AWS API Documentation
543
549
  #
@@ -907,6 +913,78 @@ module Aws::Route53Resolver
907
913
  req.send_request(options)
908
914
  end
909
915
 
916
+ # Creates an Route 53 Resolver on an Outpost.
917
+ #
918
+ # @option params [required, String] :creator_request_id
919
+ # A unique string that identifies the request and that allows failed
920
+ # requests to be retried without the risk of running the operation
921
+ # twice.
922
+ #
923
+ # `CreatorRequestId` can be any unique string, for example, a date/time
924
+ # stamp.
925
+ #
926
+ # @option params [required, String] :name
927
+ # A friendly name that lets you easily find a configuration in the
928
+ # Resolver dashboard in the Route 53 console.
929
+ #
930
+ # @option params [Integer] :instance_count
931
+ # Number of Amazon EC2 instances for the Resolver on Outpost. The
932
+ # default and minimal value is 4.
933
+ #
934
+ # @option params [required, String] :preferred_instance_type
935
+ # The Amazon EC2 instance type. If you specify this, you must also
936
+ # specify a value for the `OutpostArn`.
937
+ #
938
+ # @option params [required, String] :outpost_arn
939
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
940
+ # you must also specify a value for the `PreferredInstanceType`.
941
+ #
942
+ # @option params [Array<Types::Tag>] :tags
943
+ # A string that helps identify the Route 53 Resolvers on Outpost.
944
+ #
945
+ # @return [Types::CreateOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
946
+ #
947
+ # * {Types::CreateOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
948
+ #
949
+ # @example Request syntax with placeholder values
950
+ #
951
+ # resp = client.create_outpost_resolver({
952
+ # creator_request_id: "CreatorRequestId", # required
953
+ # name: "OutpostResolverName", # required
954
+ # instance_count: 1,
955
+ # preferred_instance_type: "OutpostInstanceType", # required
956
+ # outpost_arn: "OutpostArn", # required
957
+ # tags: [
958
+ # {
959
+ # key: "TagKey", # required
960
+ # value: "TagValue", # required
961
+ # },
962
+ # ],
963
+ # })
964
+ #
965
+ # @example Response structure
966
+ #
967
+ # resp.outpost_resolver.arn #=> String
968
+ # resp.outpost_resolver.creation_time #=> String
969
+ # resp.outpost_resolver.modification_time #=> String
970
+ # resp.outpost_resolver.creator_request_id #=> String
971
+ # resp.outpost_resolver.id #=> String
972
+ # resp.outpost_resolver.instance_count #=> Integer
973
+ # resp.outpost_resolver.preferred_instance_type #=> String
974
+ # resp.outpost_resolver.name #=> String
975
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
976
+ # resp.outpost_resolver.status_message #=> String
977
+ # resp.outpost_resolver.outpost_arn #=> String
978
+ #
979
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateOutpostResolver AWS API Documentation
980
+ #
981
+ # @overload create_outpost_resolver(params = {})
982
+ # @param [Hash] params ({})
983
+ def create_outpost_resolver(params = {}, options = {})
984
+ req = build_request(:create_outpost_resolver, params)
985
+ req.send_request(options)
986
+ end
987
+
910
988
  # Creates a Resolver endpoint. There are two types of Resolver
911
989
  # endpoints, inbound and outbound:
912
990
  #
@@ -954,10 +1032,18 @@ module Aws::Route53Resolver
954
1032
  # endpoint.
955
1033
  #
956
1034
  # @option params [String] :resolver_endpoint_type
957
- # For the endpoint type you can choose either IPv4, IPv6. or dual-stack.
1035
+ # For the endpoint type you can choose either IPv4, IPv6, or dual-stack.
958
1036
  # A dual-stack endpoint means that it will resolve via both IPv4 and
959
1037
  # IPv6. This endpoint type is applied to all IP addresses.
960
1038
  #
1039
+ # @option params [String] :outpost_arn
1040
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
1041
+ # you must also specify a value for the `PreferredInstanceType`.
1042
+ #
1043
+ # @option params [String] :preferred_instance_type
1044
+ # The instance type. If you specify this, you must also specify a value
1045
+ # for the `OutpostArn`.
1046
+ #
961
1047
  # @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
962
1048
  #
963
1049
  # * {Types::CreateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
@@ -983,6 +1069,8 @@ module Aws::Route53Resolver
983
1069
  # },
984
1070
  # ],
985
1071
  # resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
1072
+ # outpost_arn: "OutpostArn",
1073
+ # preferred_instance_type: "OutpostInstanceType",
986
1074
  # })
987
1075
  #
988
1076
  # @example Response structure
@@ -1001,6 +1089,8 @@ module Aws::Route53Resolver
1001
1089
  # resp.resolver_endpoint.creation_time #=> String
1002
1090
  # resp.resolver_endpoint.modification_time #=> String
1003
1091
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1092
+ # resp.resolver_endpoint.outpost_arn #=> String
1093
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1004
1094
  #
1005
1095
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
1006
1096
  #
@@ -1149,7 +1239,8 @@ module Aws::Route53Resolver
1149
1239
  #
1150
1240
  # @option params [Array<Types::TargetAddress>] :target_ips
1151
1241
  # The IPs that you want Resolver to forward DNS queries to. You can
1152
- # specify only IPv4 addresses. Separate IP addresses with a space.
1242
+ # specify either Ipv4 or Ipv6 addresses but not both in the same rule.
1243
+ # Separate IP addresses with a space.
1153
1244
  #
1154
1245
  # `TargetIps` is available only when the value of `Rule type` is
1155
1246
  # `FORWARD`.
@@ -1338,6 +1429,44 @@ module Aws::Route53Resolver
1338
1429
  req.send_request(options)
1339
1430
  end
1340
1431
 
1432
+ # Deletes a Resolver on the Outpost.
1433
+ #
1434
+ # @option params [required, String] :id
1435
+ # A unique string that identifies the Resolver on the Outpost.
1436
+ #
1437
+ # @return [Types::DeleteOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1438
+ #
1439
+ # * {Types::DeleteOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
1440
+ #
1441
+ # @example Request syntax with placeholder values
1442
+ #
1443
+ # resp = client.delete_outpost_resolver({
1444
+ # id: "ResourceId", # required
1445
+ # })
1446
+ #
1447
+ # @example Response structure
1448
+ #
1449
+ # resp.outpost_resolver.arn #=> String
1450
+ # resp.outpost_resolver.creation_time #=> String
1451
+ # resp.outpost_resolver.modification_time #=> String
1452
+ # resp.outpost_resolver.creator_request_id #=> String
1453
+ # resp.outpost_resolver.id #=> String
1454
+ # resp.outpost_resolver.instance_count #=> Integer
1455
+ # resp.outpost_resolver.preferred_instance_type #=> String
1456
+ # resp.outpost_resolver.name #=> String
1457
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
1458
+ # resp.outpost_resolver.status_message #=> String
1459
+ # resp.outpost_resolver.outpost_arn #=> String
1460
+ #
1461
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteOutpostResolver AWS API Documentation
1462
+ #
1463
+ # @overload delete_outpost_resolver(params = {})
1464
+ # @param [Hash] params ({})
1465
+ def delete_outpost_resolver(params = {}, options = {})
1466
+ req = build_request(:delete_outpost_resolver, params)
1467
+ req.send_request(options)
1468
+ end
1469
+
1341
1470
  # Deletes a Resolver endpoint. The effect of deleting a Resolver
1342
1471
  # endpoint depends on whether it's an inbound or an outbound Resolver
1343
1472
  # endpoint:
@@ -1377,6 +1506,8 @@ module Aws::Route53Resolver
1377
1506
  # resp.resolver_endpoint.creation_time #=> String
1378
1507
  # resp.resolver_endpoint.modification_time #=> String
1379
1508
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1509
+ # resp.resolver_endpoint.outpost_arn #=> String
1510
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1380
1511
  #
1381
1512
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
1382
1513
  #
@@ -1587,6 +1718,8 @@ module Aws::Route53Resolver
1587
1718
  # resp.resolver_endpoint.creation_time #=> String
1588
1719
  # resp.resolver_endpoint.modification_time #=> String
1589
1720
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1721
+ # resp.resolver_endpoint.outpost_arn #=> String
1722
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1590
1723
  #
1591
1724
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
1592
1725
  #
@@ -1875,6 +2008,46 @@ module Aws::Route53Resolver
1875
2008
  req.send_request(options)
1876
2009
  end
1877
2010
 
2011
+ # Gets information about a specified Resolver on the Outpost, such as
2012
+ # its instance count and type, name, and the current status of the
2013
+ # Resolver.
2014
+ #
2015
+ # @option params [required, String] :id
2016
+ # The ID of the Resolver on the Outpost.
2017
+ #
2018
+ # @return [Types::GetOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2019
+ #
2020
+ # * {Types::GetOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
2021
+ #
2022
+ # @example Request syntax with placeholder values
2023
+ #
2024
+ # resp = client.get_outpost_resolver({
2025
+ # id: "ResourceId", # required
2026
+ # })
2027
+ #
2028
+ # @example Response structure
2029
+ #
2030
+ # resp.outpost_resolver.arn #=> String
2031
+ # resp.outpost_resolver.creation_time #=> String
2032
+ # resp.outpost_resolver.modification_time #=> String
2033
+ # resp.outpost_resolver.creator_request_id #=> String
2034
+ # resp.outpost_resolver.id #=> String
2035
+ # resp.outpost_resolver.instance_count #=> Integer
2036
+ # resp.outpost_resolver.preferred_instance_type #=> String
2037
+ # resp.outpost_resolver.name #=> String
2038
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
2039
+ # resp.outpost_resolver.status_message #=> String
2040
+ # resp.outpost_resolver.outpost_arn #=> String
2041
+ #
2042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetOutpostResolver AWS API Documentation
2043
+ #
2044
+ # @overload get_outpost_resolver(params = {})
2045
+ # @param [Hash] params ({})
2046
+ def get_outpost_resolver(params = {}, options = {})
2047
+ req = build_request(:get_outpost_resolver, params)
2048
+ req.send_request(options)
2049
+ end
2050
+
1878
2051
  # Retrieves the behavior configuration of Route 53 Resolver behavior for
1879
2052
  # a single VPC from Amazon Virtual Private Cloud.
1880
2053
  #
@@ -1973,6 +2146,8 @@ module Aws::Route53Resolver
1973
2146
  # resp.resolver_endpoint.creation_time #=> String
1974
2147
  # resp.resolver_endpoint.modification_time #=> String
1975
2148
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2149
+ # resp.resolver_endpoint.outpost_arn #=> String
2150
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1976
2151
  #
1977
2152
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
1978
2153
  #
@@ -2686,6 +2861,61 @@ module Aws::Route53Resolver
2686
2861
  req.send_request(options)
2687
2862
  end
2688
2863
 
2864
+ # Lists all the Resolvers on Outposts that were created using the
2865
+ # current Amazon Web Services account.
2866
+ #
2867
+ # @option params [String] :outpost_arn
2868
+ # The Amazon Resource Name (ARN) of the Outpost.
2869
+ #
2870
+ # @option params [Integer] :max_results
2871
+ # The maximum number of Resolvers on the Outpost that you want to return
2872
+ # in the response to a `ListOutpostResolver` request. If you don't
2873
+ # specify a value for `MaxResults`, the request returns up to 100
2874
+ # Resolvers.
2875
+ #
2876
+ # @option params [String] :next_token
2877
+ # For the first `ListOutpostResolver` request, omit this value.
2878
+ #
2879
+ # @return [Types::ListOutpostResolversResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2880
+ #
2881
+ # * {Types::ListOutpostResolversResponse#outpost_resolvers #outpost_resolvers} => Array&lt;Types::OutpostResolver&gt;
2882
+ # * {Types::ListOutpostResolversResponse#next_token #next_token} => String
2883
+ #
2884
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2885
+ #
2886
+ # @example Request syntax with placeholder values
2887
+ #
2888
+ # resp = client.list_outpost_resolvers({
2889
+ # outpost_arn: "OutpostArn",
2890
+ # max_results: 1,
2891
+ # next_token: "NextToken",
2892
+ # })
2893
+ #
2894
+ # @example Response structure
2895
+ #
2896
+ # resp.outpost_resolvers #=> Array
2897
+ # resp.outpost_resolvers[0].arn #=> String
2898
+ # resp.outpost_resolvers[0].creation_time #=> String
2899
+ # resp.outpost_resolvers[0].modification_time #=> String
2900
+ # resp.outpost_resolvers[0].creator_request_id #=> String
2901
+ # resp.outpost_resolvers[0].id #=> String
2902
+ # resp.outpost_resolvers[0].instance_count #=> Integer
2903
+ # resp.outpost_resolvers[0].preferred_instance_type #=> String
2904
+ # resp.outpost_resolvers[0].name #=> String
2905
+ # resp.outpost_resolvers[0].status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
2906
+ # resp.outpost_resolvers[0].status_message #=> String
2907
+ # resp.outpost_resolvers[0].outpost_arn #=> String
2908
+ # resp.next_token #=> String
2909
+ #
2910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListOutpostResolvers AWS API Documentation
2911
+ #
2912
+ # @overload list_outpost_resolvers(params = {})
2913
+ # @param [Hash] params ({})
2914
+ def list_outpost_resolvers(params = {}, options = {})
2915
+ req = build_request(:list_outpost_resolvers, params)
2916
+ req.send_request(options)
2917
+ end
2918
+
2689
2919
  # Retrieves the Resolver configurations that you have defined. Route 53
2690
2920
  # Resolver uses the configurations to manage DNS resolution behavior for
2691
2921
  # your VPCs.
@@ -2845,7 +3075,7 @@ module Aws::Route53Resolver
2845
3075
  # resp.ip_addresses[0].subnet_id #=> String
2846
3076
  # resp.ip_addresses[0].ip #=> String
2847
3077
  # resp.ip_addresses[0].ipv_6 #=> String
2848
- # resp.ip_addresses[0].status #=> String, one of "CREATING", "FAILED_CREATION", "ATTACHING", "ATTACHED", "REMAP_DETACHING", "REMAP_ATTACHING", "DETACHING", "FAILED_RESOURCE_GONE", "DELETING", "DELETE_FAILED_FAS_EXPIRED", "UPDATING"
3078
+ # resp.ip_addresses[0].status #=> String, one of "CREATING", "FAILED_CREATION", "ATTACHING", "ATTACHED", "REMAP_DETACHING", "REMAP_ATTACHING", "DETACHING", "FAILED_RESOURCE_GONE", "DELETING", "DELETE_FAILED_FAS_EXPIRED", "UPDATING", "UPDATE_FAILED"
2849
3079
  # resp.ip_addresses[0].status_message #=> String
2850
3080
  # resp.ip_addresses[0].creation_time #=> String
2851
3081
  # resp.ip_addresses[0].modification_time #=> String
@@ -2926,6 +3156,8 @@ module Aws::Route53Resolver
2926
3156
  # resp.resolver_endpoints[0].creation_time #=> String
2927
3157
  # resp.resolver_endpoints[0].modification_time #=> String
2928
3158
  # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
3159
+ # resp.resolver_endpoints[0].outpost_arn #=> String
3160
+ # resp.resolver_endpoints[0].preferred_instance_type #=> String
2929
3161
  #
2930
3162
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
2931
3163
  #
@@ -3478,8 +3710,6 @@ module Aws::Route53Resolver
3478
3710
  #
3479
3711
  # * `route53resolver:DisassociateResolverQueryLogConfig`
3480
3712
  #
3481
- # * `route53resolver:ListResolverQueryLogConfigAssociations`
3482
- #
3483
3713
  # * `route53resolver:ListResolverQueryLogConfigs`
3484
3714
  #
3485
3715
  # In the `Resource` section of the statement, you specify the ARNs for
@@ -3949,6 +4179,57 @@ module Aws::Route53Resolver
3949
4179
  req.send_request(options)
3950
4180
  end
3951
4181
 
4182
+ # You can use `UpdateOutpostResolver` to update the instance count,
4183
+ # type, or name of a Resolver on an Outpost.
4184
+ #
4185
+ # @option params [required, String] :id
4186
+ # A unique string that identifies Resolver on an Outpost.
4187
+ #
4188
+ # @option params [String] :name
4189
+ # Name of the Resolver on the Outpost.
4190
+ #
4191
+ # @option params [Integer] :instance_count
4192
+ # The Amazon EC2 instance count for a Resolver on the Outpost.
4193
+ #
4194
+ # @option params [String] :preferred_instance_type
4195
+ # Amazon EC2 instance type.
4196
+ #
4197
+ # @return [Types::UpdateOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4198
+ #
4199
+ # * {Types::UpdateOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
4200
+ #
4201
+ # @example Request syntax with placeholder values
4202
+ #
4203
+ # resp = client.update_outpost_resolver({
4204
+ # id: "ResourceId", # required
4205
+ # name: "OutpostResolverName",
4206
+ # instance_count: 1,
4207
+ # preferred_instance_type: "OutpostInstanceType",
4208
+ # })
4209
+ #
4210
+ # @example Response structure
4211
+ #
4212
+ # resp.outpost_resolver.arn #=> String
4213
+ # resp.outpost_resolver.creation_time #=> String
4214
+ # resp.outpost_resolver.modification_time #=> String
4215
+ # resp.outpost_resolver.creator_request_id #=> String
4216
+ # resp.outpost_resolver.id #=> String
4217
+ # resp.outpost_resolver.instance_count #=> Integer
4218
+ # resp.outpost_resolver.preferred_instance_type #=> String
4219
+ # resp.outpost_resolver.name #=> String
4220
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
4221
+ # resp.outpost_resolver.status_message #=> String
4222
+ # resp.outpost_resolver.outpost_arn #=> String
4223
+ #
4224
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateOutpostResolver AWS API Documentation
4225
+ #
4226
+ # @overload update_outpost_resolver(params = {})
4227
+ # @param [Hash] params ({})
4228
+ def update_outpost_resolver(params = {}, options = {})
4229
+ req = build_request(:update_outpost_resolver, params)
4230
+ req.send_request(options)
4231
+ end
4232
+
3952
4233
  # Updates the behavior configuration of Route 53 Resolver behavior for a
3953
4234
  # single VPC from Amazon Virtual Private Cloud.
3954
4235
  #
@@ -4059,8 +4340,12 @@ module Aws::Route53Resolver
4059
4340
  # Specifies the endpoint type for what type of IP address the endpoint
4060
4341
  # uses to forward DNS queries.
4061
4342
  #
4343
+ # Updating to `IPV6` type isn't currently supported.
4344
+ #
4062
4345
  # @option params [Array<Types::UpdateIpAddress>] :update_ip_addresses
4063
- # Updates the Resolver endpoint type to IpV4, Ipv6, or dual-stack.
4346
+ # Specifies the IPv6 address when you update the Resolver endpoint from
4347
+ # IPv4 to dual-stack. If you don't specify an IPv6 address, one will be
4348
+ # automatically chosen from your subnet.
4064
4349
  #
4065
4350
  # @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4066
4351
  #
@@ -4096,6 +4381,8 @@ module Aws::Route53Resolver
4096
4381
  # resp.resolver_endpoint.creation_time #=> String
4097
4382
  # resp.resolver_endpoint.modification_time #=> String
4098
4383
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4384
+ # resp.resolver_endpoint.outpost_arn #=> String
4385
+ # resp.resolver_endpoint.preferred_instance_type #=> String
4099
4386
  #
4100
4387
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
4101
4388
  #
@@ -4179,7 +4466,7 @@ module Aws::Route53Resolver
4179
4466
  params: params,
4180
4467
  config: config)
4181
4468
  context[:gem_name] = 'aws-sdk-route53resolver'
4182
- context[:gem_version] = '1.45.0'
4469
+ context[:gem_version] = '1.47.0'
4183
4470
  Seahorse::Client::Request.new(handlers, context)
4184
4471
  end
4185
4472