aws-sdk-route53resolver 1.46.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53resolver/client.rb +290 -7
- data/lib/aws-sdk-route53resolver/client_api.rb +157 -0
- data/lib/aws-sdk-route53resolver/endpoints.rb +70 -0
- data/lib/aws-sdk-route53resolver/errors.rb +16 -0
- data/lib/aws-sdk-route53resolver/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-route53resolver/types.rb +310 -9
- data/lib/aws-sdk-route53resolver.rb +1 -1
- metadata +2 -2
@@ -430,6 +430,65 @@ module Aws::Route53Resolver
|
|
430
430
|
include Aws::Structure
|
431
431
|
end
|
432
432
|
|
433
|
+
# @!attribute [rw] creator_request_id
|
434
|
+
# A unique string that identifies the request and that allows failed
|
435
|
+
# requests to be retried without the risk of running the operation
|
436
|
+
# twice.
|
437
|
+
#
|
438
|
+
# `CreatorRequestId` can be any unique string, for example, a
|
439
|
+
# date/time stamp.
|
440
|
+
# @return [String]
|
441
|
+
#
|
442
|
+
# @!attribute [rw] name
|
443
|
+
# A friendly name that lets you easily find a configuration in the
|
444
|
+
# Resolver dashboard in the Route 53 console.
|
445
|
+
# @return [String]
|
446
|
+
#
|
447
|
+
# @!attribute [rw] instance_count
|
448
|
+
# Number of Amazon EC2 instances for the Resolver on Outpost. The
|
449
|
+
# default and minimal value is 4.
|
450
|
+
# @return [Integer]
|
451
|
+
#
|
452
|
+
# @!attribute [rw] preferred_instance_type
|
453
|
+
# The Amazon EC2 instance type. If you specify this, you must also
|
454
|
+
# specify a value for the `OutpostArn`.
|
455
|
+
# @return [String]
|
456
|
+
#
|
457
|
+
# @!attribute [rw] outpost_arn
|
458
|
+
# The Amazon Resource Name (ARN) of the Outpost. If you specify this,
|
459
|
+
# you must also specify a value for the `PreferredInstanceType`.
|
460
|
+
# @return [String]
|
461
|
+
#
|
462
|
+
# @!attribute [rw] tags
|
463
|
+
# A string that helps identify the Route 53 Resolvers on Outpost.
|
464
|
+
# @return [Array<Types::Tag>]
|
465
|
+
#
|
466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateOutpostResolverRequest AWS API Documentation
|
467
|
+
#
|
468
|
+
class CreateOutpostResolverRequest < Struct.new(
|
469
|
+
:creator_request_id,
|
470
|
+
:name,
|
471
|
+
:instance_count,
|
472
|
+
:preferred_instance_type,
|
473
|
+
:outpost_arn,
|
474
|
+
:tags)
|
475
|
+
SENSITIVE = []
|
476
|
+
include Aws::Structure
|
477
|
+
end
|
478
|
+
|
479
|
+
# @!attribute [rw] outpost_resolver
|
480
|
+
# Information about the `CreateOutpostResolver` request, including the
|
481
|
+
# status of the request.
|
482
|
+
# @return [Types::OutpostResolver]
|
483
|
+
#
|
484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateOutpostResolverResponse AWS API Documentation
|
485
|
+
#
|
486
|
+
class CreateOutpostResolverResponse < Struct.new(
|
487
|
+
:outpost_resolver)
|
488
|
+
SENSITIVE = []
|
489
|
+
include Aws::Structure
|
490
|
+
end
|
491
|
+
|
433
492
|
# @!attribute [rw] creator_request_id
|
434
493
|
# A unique string that identifies the request and that allows failed
|
435
494
|
# requests to be retried without the risk of running the operation
|
@@ -474,12 +533,22 @@ module Aws::Route53Resolver
|
|
474
533
|
# @return [Array<Types::Tag>]
|
475
534
|
#
|
476
535
|
# @!attribute [rw] resolver_endpoint_type
|
477
|
-
# For the endpoint type you can choose either IPv4, IPv6
|
536
|
+
# For the endpoint type you can choose either IPv4, IPv6, or
|
478
537
|
# dual-stack. A dual-stack endpoint means that it will resolve via
|
479
538
|
# both IPv4 and IPv6. This endpoint type is applied to all IP
|
480
539
|
# addresses.
|
481
540
|
# @return [String]
|
482
541
|
#
|
542
|
+
# @!attribute [rw] outpost_arn
|
543
|
+
# The Amazon Resource Name (ARN) of the Outpost. If you specify this,
|
544
|
+
# you must also specify a value for the `PreferredInstanceType`.
|
545
|
+
# @return [String]
|
546
|
+
#
|
547
|
+
# @!attribute [rw] preferred_instance_type
|
548
|
+
# The instance type. If you specify this, you must also specify a
|
549
|
+
# value for the `OutpostArn`.
|
550
|
+
# @return [String]
|
551
|
+
#
|
483
552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpointRequest AWS API Documentation
|
484
553
|
#
|
485
554
|
class CreateResolverEndpointRequest < Struct.new(
|
@@ -489,7 +558,9 @@ module Aws::Route53Resolver
|
|
489
558
|
:direction,
|
490
559
|
:ip_addresses,
|
491
560
|
:tags,
|
492
|
-
:resolver_endpoint_type
|
561
|
+
:resolver_endpoint_type,
|
562
|
+
:outpost_arn,
|
563
|
+
:preferred_instance_type)
|
493
564
|
SENSITIVE = []
|
494
565
|
include Aws::Structure
|
495
566
|
end
|
@@ -613,7 +684,8 @@ module Aws::Route53Resolver
|
|
613
684
|
#
|
614
685
|
# @!attribute [rw] target_ips
|
615
686
|
# The IPs that you want Resolver to forward DNS queries to. You can
|
616
|
-
# specify
|
687
|
+
# specify either Ipv4 or Ipv6 addresses but not both in the same rule.
|
688
|
+
# Separate IP addresses with a space.
|
617
689
|
#
|
618
690
|
# `TargetIps` is available only when the value of `Rule type` is
|
619
691
|
# `FORWARD`.
|
@@ -736,6 +808,31 @@ module Aws::Route53Resolver
|
|
736
808
|
include Aws::Structure
|
737
809
|
end
|
738
810
|
|
811
|
+
# @!attribute [rw] id
|
812
|
+
# A unique string that identifies the Resolver on the Outpost.
|
813
|
+
# @return [String]
|
814
|
+
#
|
815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteOutpostResolverRequest AWS API Documentation
|
816
|
+
#
|
817
|
+
class DeleteOutpostResolverRequest < Struct.new(
|
818
|
+
:id)
|
819
|
+
SENSITIVE = []
|
820
|
+
include Aws::Structure
|
821
|
+
end
|
822
|
+
|
823
|
+
# @!attribute [rw] outpost_resolver
|
824
|
+
# Information about the `DeleteOutpostResolver` request, including the
|
825
|
+
# status of the request.
|
826
|
+
# @return [Types::OutpostResolver]
|
827
|
+
#
|
828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteOutpostResolverResponse AWS API Documentation
|
829
|
+
#
|
830
|
+
class DeleteOutpostResolverResponse < Struct.new(
|
831
|
+
:outpost_resolver)
|
832
|
+
SENSITIVE = []
|
833
|
+
include Aws::Structure
|
834
|
+
end
|
835
|
+
|
739
836
|
# @!attribute [rw] resolver_endpoint_id
|
740
837
|
# The ID of the Resolver endpoint that you want to delete.
|
741
838
|
# @return [String]
|
@@ -1756,6 +1853,31 @@ module Aws::Route53Resolver
|
|
1756
1853
|
include Aws::Structure
|
1757
1854
|
end
|
1758
1855
|
|
1856
|
+
# @!attribute [rw] id
|
1857
|
+
# The ID of the Resolver on the Outpost.
|
1858
|
+
# @return [String]
|
1859
|
+
#
|
1860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetOutpostResolverRequest AWS API Documentation
|
1861
|
+
#
|
1862
|
+
class GetOutpostResolverRequest < Struct.new(
|
1863
|
+
:id)
|
1864
|
+
SENSITIVE = []
|
1865
|
+
include Aws::Structure
|
1866
|
+
end
|
1867
|
+
|
1868
|
+
# @!attribute [rw] outpost_resolver
|
1869
|
+
# Information about the `GetOutpostResolver` request, including the
|
1870
|
+
# status of the request.
|
1871
|
+
# @return [Types::OutpostResolver]
|
1872
|
+
#
|
1873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetOutpostResolverResponse AWS API Documentation
|
1874
|
+
#
|
1875
|
+
class GetOutpostResolverResponse < Struct.new(
|
1876
|
+
:outpost_resolver)
|
1877
|
+
SENSITIVE = []
|
1878
|
+
include Aws::Structure
|
1879
|
+
end
|
1880
|
+
|
1759
1881
|
# @!attribute [rw] resource_id
|
1760
1882
|
# Resource ID of the Amazon VPC that you want to get information
|
1761
1883
|
# about.
|
@@ -2657,6 +2779,53 @@ module Aws::Route53Resolver
|
|
2657
2779
|
include Aws::Structure
|
2658
2780
|
end
|
2659
2781
|
|
2782
|
+
# @!attribute [rw] outpost_arn
|
2783
|
+
# The Amazon Resource Name (ARN) of the Outpost.
|
2784
|
+
# @return [String]
|
2785
|
+
#
|
2786
|
+
# @!attribute [rw] max_results
|
2787
|
+
# The maximum number of Resolvers on the Outpost that you want to
|
2788
|
+
# return in the response to a `ListOutpostResolver` request. If you
|
2789
|
+
# don't specify a value for `MaxResults`, the request returns up to
|
2790
|
+
# 100 Resolvers.
|
2791
|
+
# @return [Integer]
|
2792
|
+
#
|
2793
|
+
# @!attribute [rw] next_token
|
2794
|
+
# For the first `ListOutpostResolver` request, omit this value.
|
2795
|
+
# @return [String]
|
2796
|
+
#
|
2797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListOutpostResolversRequest AWS API Documentation
|
2798
|
+
#
|
2799
|
+
class ListOutpostResolversRequest < Struct.new(
|
2800
|
+
:outpost_arn,
|
2801
|
+
:max_results,
|
2802
|
+
:next_token)
|
2803
|
+
SENSITIVE = []
|
2804
|
+
include Aws::Structure
|
2805
|
+
end
|
2806
|
+
|
2807
|
+
# @!attribute [rw] outpost_resolvers
|
2808
|
+
# The Resolvers on Outposts that were created by using the current
|
2809
|
+
# Amazon Web Services account, and that match the specified filters,
|
2810
|
+
# if any.
|
2811
|
+
# @return [Array<Types::OutpostResolver>]
|
2812
|
+
#
|
2813
|
+
# @!attribute [rw] next_token
|
2814
|
+
# If more than `MaxResults` Resolvers match the specified criteria,
|
2815
|
+
# you can submit another `ListOutpostResolver` request to get the next
|
2816
|
+
# group of results. In the next request, specify the value of
|
2817
|
+
# `NextToken` from the previous response.
|
2818
|
+
# @return [String]
|
2819
|
+
#
|
2820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListOutpostResolversResponse AWS API Documentation
|
2821
|
+
#
|
2822
|
+
class ListOutpostResolversResponse < Struct.new(
|
2823
|
+
:outpost_resolvers,
|
2824
|
+
:next_token)
|
2825
|
+
SENSITIVE = []
|
2826
|
+
include Aws::Structure
|
2827
|
+
end
|
2828
|
+
|
2660
2829
|
# @!attribute [rw] max_results
|
2661
2830
|
# The maximum number of Resolver configurations that you want to
|
2662
2831
|
# return in the response to a `ListResolverConfigs` request. If you
|
@@ -3383,6 +3552,75 @@ module Aws::Route53Resolver
|
|
3383
3552
|
include Aws::Structure
|
3384
3553
|
end
|
3385
3554
|
|
3555
|
+
# A complex type that contains settings for an existing Resolver on an
|
3556
|
+
# Outpost.
|
3557
|
+
#
|
3558
|
+
# @!attribute [rw] arn
|
3559
|
+
# The ARN (Amazon Resource Name) for the Resolver on an Outpost.
|
3560
|
+
# @return [String]
|
3561
|
+
#
|
3562
|
+
# @!attribute [rw] creation_time
|
3563
|
+
# The date and time that the Outpost Resolver was created, in Unix
|
3564
|
+
# time format and Coordinated Universal Time (UTC).
|
3565
|
+
# @return [String]
|
3566
|
+
#
|
3567
|
+
# @!attribute [rw] modification_time
|
3568
|
+
# The date and time that the Outpost Resolver was modified, in Unix
|
3569
|
+
# time format and Coordinated Universal Time (UTC).
|
3570
|
+
# @return [String]
|
3571
|
+
#
|
3572
|
+
# @!attribute [rw] creator_request_id
|
3573
|
+
# A unique string that identifies the request that created the
|
3574
|
+
# Resolver endpoint. The `CreatorRequestId` allows failed requests to
|
3575
|
+
# be retried without the risk of running the operation twice.
|
3576
|
+
# @return [String]
|
3577
|
+
#
|
3578
|
+
# @!attribute [rw] id
|
3579
|
+
# The ID of the Resolver on Outpost.
|
3580
|
+
# @return [String]
|
3581
|
+
#
|
3582
|
+
# @!attribute [rw] instance_count
|
3583
|
+
# Amazon EC2 instance count for the Resolver on the Outpost.
|
3584
|
+
# @return [Integer]
|
3585
|
+
#
|
3586
|
+
# @!attribute [rw] preferred_instance_type
|
3587
|
+
# The Amazon EC2 instance type.
|
3588
|
+
# @return [String]
|
3589
|
+
#
|
3590
|
+
# @!attribute [rw] name
|
3591
|
+
# Name of the Resolver.
|
3592
|
+
# @return [String]
|
3593
|
+
#
|
3594
|
+
# @!attribute [rw] status
|
3595
|
+
# Status of the Resolver.
|
3596
|
+
# @return [String]
|
3597
|
+
#
|
3598
|
+
# @!attribute [rw] status_message
|
3599
|
+
# A detailed description of the Resolver.
|
3600
|
+
# @return [String]
|
3601
|
+
#
|
3602
|
+
# @!attribute [rw] outpost_arn
|
3603
|
+
# The ARN (Amazon Resource Name) for the Outpost.
|
3604
|
+
# @return [String]
|
3605
|
+
#
|
3606
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/OutpostResolver AWS API Documentation
|
3607
|
+
#
|
3608
|
+
class OutpostResolver < Struct.new(
|
3609
|
+
:arn,
|
3610
|
+
:creation_time,
|
3611
|
+
:modification_time,
|
3612
|
+
:creator_request_id,
|
3613
|
+
:id,
|
3614
|
+
:instance_count,
|
3615
|
+
:preferred_instance_type,
|
3616
|
+
:name,
|
3617
|
+
:status,
|
3618
|
+
:status_message,
|
3619
|
+
:outpost_arn)
|
3620
|
+
SENSITIVE = []
|
3621
|
+
include Aws::Structure
|
3622
|
+
end
|
3623
|
+
|
3386
3624
|
# @!attribute [rw] arn
|
3387
3625
|
# The ARN (Amazon Resource Name) for the rule group that you want to
|
3388
3626
|
# share.
|
@@ -3429,8 +3667,6 @@ module Aws::Route53Resolver
|
|
3429
3667
|
#
|
3430
3668
|
# * `route53resolver:DisassociateResolverQueryLogConfig`
|
3431
3669
|
#
|
3432
|
-
# * `route53resolver:ListResolverQueryLogConfigAssociations`
|
3433
|
-
#
|
3434
3670
|
# * `route53resolver:ListResolverQueryLogConfigs`
|
3435
3671
|
#
|
3436
3672
|
# In the `Resource` section of the statement, you specify the ARNs for
|
@@ -3725,6 +3961,14 @@ module Aws::Route53Resolver
|
|
3725
3961
|
# The Resolver endpoint IP address type.
|
3726
3962
|
# @return [String]
|
3727
3963
|
#
|
3964
|
+
# @!attribute [rw] outpost_arn
|
3965
|
+
# The ARN (Amazon Resource Name) for the Outpost.
|
3966
|
+
# @return [String]
|
3967
|
+
#
|
3968
|
+
# @!attribute [rw] preferred_instance_type
|
3969
|
+
# The Amazon EC2 instance type.
|
3970
|
+
# @return [String]
|
3971
|
+
#
|
3728
3972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverEndpoint AWS API Documentation
|
3729
3973
|
#
|
3730
3974
|
class ResolverEndpoint < Struct.new(
|
@@ -3740,7 +3984,9 @@ module Aws::Route53Resolver
|
|
3740
3984
|
:status_message,
|
3741
3985
|
:creation_time,
|
3742
3986
|
:modification_time,
|
3743
|
-
:resolver_endpoint_type
|
3987
|
+
:resolver_endpoint_type,
|
3988
|
+
:outpost_arn,
|
3989
|
+
:preferred_instance_type)
|
3744
3990
|
SENSITIVE = []
|
3745
3991
|
include Aws::Structure
|
3746
3992
|
end
|
@@ -4000,8 +4246,7 @@ module Aws::Route53Resolver
|
|
4000
4246
|
# @!attribute [rw] target_ips
|
4001
4247
|
# An array that contains the IP addresses and ports that an outbound
|
4002
4248
|
# endpoint forwards DNS queries to. Typically, these are the IP
|
4003
|
-
# addresses of DNS resolvers on your network.
|
4004
|
-
# IPv6 is not supported.
|
4249
|
+
# addresses of DNS resolvers on your network.
|
4005
4250
|
# @return [Array<Types::TargetAddress>]
|
4006
4251
|
#
|
4007
4252
|
# @!attribute [rw] resolver_endpoint_id
|
@@ -4217,6 +4462,19 @@ module Aws::Route53Resolver
|
|
4217
4462
|
include Aws::Structure
|
4218
4463
|
end
|
4219
4464
|
|
4465
|
+
# Fulfilling the request would cause one or more quotas to be exceeded.
|
4466
|
+
#
|
4467
|
+
# @!attribute [rw] message
|
4468
|
+
# @return [String]
|
4469
|
+
#
|
4470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ServiceQuotaExceededException AWS API Documentation
|
4471
|
+
#
|
4472
|
+
class ServiceQuotaExceededException < Struct.new(
|
4473
|
+
:message)
|
4474
|
+
SENSITIVE = []
|
4475
|
+
include Aws::Structure
|
4476
|
+
end
|
4477
|
+
|
4220
4478
|
# One tag that you want to add to the specified resource. A tag consists
|
4221
4479
|
# of a `Key` (a name for the tag) and a `Value`.
|
4222
4480
|
#
|
@@ -4670,6 +4928,45 @@ module Aws::Route53Resolver
|
|
4670
4928
|
include Aws::Structure
|
4671
4929
|
end
|
4672
4930
|
|
4931
|
+
# @!attribute [rw] id
|
4932
|
+
# A unique string that identifies Resolver on an Outpost.
|
4933
|
+
# @return [String]
|
4934
|
+
#
|
4935
|
+
# @!attribute [rw] name
|
4936
|
+
# Name of the Resolver on the Outpost.
|
4937
|
+
# @return [String]
|
4938
|
+
#
|
4939
|
+
# @!attribute [rw] instance_count
|
4940
|
+
# The Amazon EC2 instance count for a Resolver on the Outpost.
|
4941
|
+
# @return [Integer]
|
4942
|
+
#
|
4943
|
+
# @!attribute [rw] preferred_instance_type
|
4944
|
+
# Amazon EC2 instance type.
|
4945
|
+
# @return [String]
|
4946
|
+
#
|
4947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateOutpostResolverRequest AWS API Documentation
|
4948
|
+
#
|
4949
|
+
class UpdateOutpostResolverRequest < Struct.new(
|
4950
|
+
:id,
|
4951
|
+
:name,
|
4952
|
+
:instance_count,
|
4953
|
+
:preferred_instance_type)
|
4954
|
+
SENSITIVE = []
|
4955
|
+
include Aws::Structure
|
4956
|
+
end
|
4957
|
+
|
4958
|
+
# @!attribute [rw] outpost_resolver
|
4959
|
+
# The response to an `UpdateOutpostResolver` request.
|
4960
|
+
# @return [Types::OutpostResolver]
|
4961
|
+
#
|
4962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateOutpostResolverResponse AWS API Documentation
|
4963
|
+
#
|
4964
|
+
class UpdateOutpostResolverResponse < Struct.new(
|
4965
|
+
:outpost_resolver)
|
4966
|
+
SENSITIVE = []
|
4967
|
+
include Aws::Structure
|
4968
|
+
end
|
4969
|
+
|
4673
4970
|
# @!attribute [rw] resource_id
|
4674
4971
|
# Resource ID of the Amazon VPC that you want to update the Resolver
|
4675
4972
|
# configuration for.
|
@@ -4766,10 +5063,14 @@ module Aws::Route53Resolver
|
|
4766
5063
|
# @!attribute [rw] resolver_endpoint_type
|
4767
5064
|
# Specifies the endpoint type for what type of IP address the endpoint
|
4768
5065
|
# uses to forward DNS queries.
|
5066
|
+
#
|
5067
|
+
# Updating to `IPV6` type isn't currently supported.
|
4769
5068
|
# @return [String]
|
4770
5069
|
#
|
4771
5070
|
# @!attribute [rw] update_ip_addresses
|
4772
|
-
#
|
5071
|
+
# Specifies the IPv6 address when you update the Resolver endpoint
|
5072
|
+
# from IPv4 to dual-stack. If you don't specify an IPv6 address, one
|
5073
|
+
# will be automatically chosen from your subnet.
|
4773
5074
|
# @return [Array<Types::UpdateIpAddress>]
|
4774
5075
|
#
|
4775
5076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpointRequest AWS API Documentation
|
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.
|
4
|
+
version: 1.48.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|