aws-sdk-route53globalresolver 1.10.0 → 1.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1cc3d4b4d6bacaa4799e6416a8e96dde71dfd3d7f5e4dd3d03cf34d102e6cbb
4
- data.tar.gz: 0a698db9356593151949036d78bc6054a673ae733b653759e6077538295ecfa0
3
+ metadata.gz: af59c115d86f354438c299461f313acacb7357d6baf92b7156e45974d20707e2
4
+ data.tar.gz: 6b095390dd090952627e9dadf12e4f0d9b8653ea2d531fb245ea874e58a3fb32
5
5
  SHA512:
6
- metadata.gz: 69847164426ad792f6b53836d0db5ca6000132bf25b1b9f997f4993b18da9df45ef6260cd286e003dc0672695e85a9c8ee75749736b0a9e3745043ce87a967de
7
- data.tar.gz: 44f46592e4a2f4a7415503619b0d69f8d9d0eaf4998f9da1848a34119a811d9eda57abb274a17721df5743bcecfe95417c78e8a80d78fa4bb0e207e53791cbab
6
+ metadata.gz: 1f7d71964e22a718b93ae7bf1fb2b79fe3777e66e2971dd8a6a685e7f97ec330f0c0fbf596f9473f3ae0ca3e96e0041d31fa84977715cccc78183e9b8570ad17
7
+ data.tar.gz: fd0c4fdd9f005a3542e0ec2d15889978b842e769d816ab0a1d787fcdb5efe35fe6cea003dda888ae503bc7852f4129f3d03f0447a614a95857ca1d5b37f980cb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2026-07-07)
5
+ ------------------
6
+
7
+ * Feature - Adds ListSharedDNSViews operation to list all DNS Views shared with caller using AWS Resource Access Manager. Also updates ListHostedZoneAssociations operation so that resource ARN param is optional, allowing caller to list all HostedZoneAssociations in account.
8
+
4
9
  1.10.0 (2026-05-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -2793,8 +2793,10 @@ module Aws::Route53GlobalResolver
2793
2793
  req.send_request(options)
2794
2794
  end
2795
2795
 
2796
- # Lists all hosted zone associations for a Route 53 Global Resolver
2797
- # resource with pagination support.
2796
+ # Lists hosted zone associations with pagination support. Specify a DNS
2797
+ # view through the `resourceArn` parameter to list the hosted zone
2798
+ # associations for that DNS view, or omit it to list all hosted zone
2799
+ # associations in your Amazon Web Services account.
2798
2800
  #
2799
2801
  # Route 53 Global Resolver is a global service that supports resolvers
2800
2802
  # in multiple Amazon Web Services Regions but you must specify the US
@@ -2809,8 +2811,11 @@ module Aws::Route53GlobalResolver
2809
2811
  # A pagination token used for large sets of results that can't be
2810
2812
  # returned in a single response.
2811
2813
  #
2812
- # @option params [required, String] :resource_arn
2813
- # Amazon Resource Name (ARN) of the DNS view.
2814
+ # @option params [String] :resource_arn
2815
+ # The Amazon Resource Name (ARN) of the DNS view to list hosted zone
2816
+ # associations for. This parameter is optional; if you omit it, all
2817
+ # hosted zone associations in your Amazon Web Services account are
2818
+ # returned.
2814
2819
  #
2815
2820
  # @return [Types::ListHostedZoneAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2816
2821
  #
@@ -2824,7 +2829,7 @@ module Aws::Route53GlobalResolver
2824
2829
  # resp = client.list_hosted_zone_associations({
2825
2830
  # max_results: 1,
2826
2831
  # next_token: "String",
2827
- # resource_arn: "ResourceArn", # required
2832
+ # resource_arn: "ResourceArn",
2828
2833
  # })
2829
2834
  #
2830
2835
  # @example Response structure
@@ -2902,6 +2907,64 @@ module Aws::Route53GlobalResolver
2902
2907
  req.send_request(options)
2903
2908
  end
2904
2909
 
2910
+ # Lists the DNS views that have been shared with your Amazon Web
2911
+ # Services account through Amazon Web Services Resource Access Manager
2912
+ # (Amazon Web Services RAM), with pagination support.
2913
+ #
2914
+ # Route 53 Global Resolver is a global service that supports resolvers
2915
+ # in multiple Amazon Web Services Regions but you must specify the US
2916
+ # East (Ohio) Region to create, update, or otherwise work with Route 53
2917
+ # Global Resolver resources. That is, for example, specify `--region
2918
+ # us-east-2` on Amazon Web Services CLI commands.
2919
+ #
2920
+ # @option params [Integer] :max_results
2921
+ # The maximum number of results to retrieve in a single call.
2922
+ #
2923
+ # @option params [String] :next_token
2924
+ # A pagination token used for large sets of results that can't be
2925
+ # returned in a single response.
2926
+ #
2927
+ # @return [Types::ListSharedDNSViewsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2928
+ #
2929
+ # * {Types::ListSharedDNSViewsOutput#next_token #next_token} => String
2930
+ # * {Types::ListSharedDNSViewsOutput#dns_views #dns_views} => Array<Types::SharedDNSViewSummary>
2931
+ #
2932
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2933
+ #
2934
+ # @example Request syntax with placeholder values
2935
+ #
2936
+ # resp = client.list_shared_dns_views({
2937
+ # max_results: 1,
2938
+ # next_token: "String",
2939
+ # })
2940
+ #
2941
+ # @example Response structure
2942
+ #
2943
+ # resp.next_token #=> String
2944
+ # resp.dns_views #=> Array
2945
+ # resp.dns_views[0].id #=> String
2946
+ # resp.dns_views[0].arn #=> String
2947
+ # resp.dns_views[0].client_token #=> String
2948
+ # resp.dns_views[0].dnssec_validation #=> String, one of "ENABLED", "DISABLED"
2949
+ # resp.dns_views[0].edns_client_subnet #=> String, one of "ENABLED", "DISABLED"
2950
+ # resp.dns_views[0].firewall_rules_fail_open #=> String, one of "ENABLED", "DISABLED"
2951
+ # resp.dns_views[0].name #=> String
2952
+ # resp.dns_views[0].description #=> String
2953
+ # resp.dns_views[0].global_resolver_id #=> String
2954
+ # resp.dns_views[0].created_at #=> Time
2955
+ # resp.dns_views[0].updated_at #=> Time
2956
+ # resp.dns_views[0].status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "ENABLING", "DISABLING", "DISABLED", "DELETING"
2957
+ # resp.dns_views[0].owner_account_id #=> String
2958
+ #
2959
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListSharedDNSViews AWS API Documentation
2960
+ #
2961
+ # @overload list_shared_dns_views(params = {})
2962
+ # @param [Hash] params ({})
2963
+ def list_shared_dns_views(params = {}, options = {})
2964
+ req = build_request(:list_shared_dns_views, params)
2965
+ req.send_request(options)
2966
+ end
2967
+
2905
2968
  # Lists the tags associated with a Route 53 Global Resolver resource.
2906
2969
  #
2907
2970
  # Route 53 Global Resolver is a global service that supports resolvers
@@ -3522,7 +3585,7 @@ module Aws::Route53GlobalResolver
3522
3585
  tracer: tracer
3523
3586
  )
3524
3587
  context[:gem_name] = 'aws-sdk-route53globalresolver'
3525
- context[:gem_version] = '1.10.0'
3588
+ context[:gem_version] = '1.11.0'
3526
3589
  Seahorse::Client::Request.new(handlers, context)
3527
3590
  end
3528
3591
 
@@ -20,6 +20,7 @@ module Aws::Route53GlobalResolver
20
20
  AccessTokenItem = Shapes::StructureShape.new(name: 'AccessTokenItem')
21
21
  AccessTokenValue = Shapes::StringShape.new(name: 'AccessTokenValue')
22
22
  AccessTokens = Shapes::ListShape.new(name: 'AccessTokens')
23
+ AccountId = Shapes::StringShape.new(name: 'AccountId')
23
24
  AssociateHostedZoneInput = Shapes::StructureShape.new(name: 'AssociateHostedZoneInput')
24
25
  AssociateHostedZoneOutput = Shapes::StructureShape.new(name: 'AssociateHostedZoneOutput')
25
26
  BatchCreateFirewallRuleInput = Shapes::StructureShape.new(name: 'BatchCreateFirewallRuleInput')
@@ -150,6 +151,8 @@ module Aws::Route53GlobalResolver
150
151
  ListHostedZoneAssociationsOutput = Shapes::StructureShape.new(name: 'ListHostedZoneAssociationsOutput')
151
152
  ListManagedFirewallDomainListsInput = Shapes::StructureShape.new(name: 'ListManagedFirewallDomainListsInput')
152
153
  ListManagedFirewallDomainListsOutput = Shapes::StructureShape.new(name: 'ListManagedFirewallDomainListsOutput')
154
+ ListSharedDNSViewsInput = Shapes::StructureShape.new(name: 'ListSharedDNSViewsInput')
155
+ ListSharedDNSViewsOutput = Shapes::StructureShape.new(name: 'ListSharedDNSViewsOutput')
153
156
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
154
157
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
155
158
  ManagedFirewallDomainLists = Shapes::ListShape.new(name: 'ManagedFirewallDomainLists')
@@ -164,6 +167,8 @@ module Aws::Route53GlobalResolver
164
167
  ResourceNameShort = Shapes::StringShape.new(name: 'ResourceNameShort')
165
168
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
166
169
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
170
+ SharedDNSViewSummary = Shapes::StructureShape.new(name: 'SharedDNSViewSummary')
171
+ SharedDNSViews = Shapes::ListShape.new(name: 'SharedDNSViews')
167
172
  Sni = Shapes::StringShape.new(name: 'Sni')
168
173
  String = Shapes::StringShape.new(name: 'String')
169
174
  Strings = Shapes::ListShape.new(name: 'Strings')
@@ -947,7 +952,7 @@ module Aws::Route53GlobalResolver
947
952
 
948
953
  ListHostedZoneAssociationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location: "querystring", location_name: "max_results"))
949
954
  ListHostedZoneAssociationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next_token"))
950
- ListHostedZoneAssociationsInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
955
+ ListHostedZoneAssociationsInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, location: "querystring", location_name: "resourceArn"))
951
956
  ListHostedZoneAssociationsInput.struct_class = Types::ListHostedZoneAssociationsInput
952
957
 
953
958
  ListHostedZoneAssociationsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
@@ -963,6 +968,14 @@ module Aws::Route53GlobalResolver
963
968
  ListManagedFirewallDomainListsOutput.add_member(:managed_firewall_domain_lists, Shapes::ShapeRef.new(shape: ManagedFirewallDomainLists, required: true, location_name: "managedFirewallDomainLists"))
964
969
  ListManagedFirewallDomainListsOutput.struct_class = Types::ListManagedFirewallDomainListsOutput
965
970
 
971
+ ListSharedDNSViewsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location: "querystring", location_name: "max_results"))
972
+ ListSharedDNSViewsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next_token"))
973
+ ListSharedDNSViewsInput.struct_class = Types::ListSharedDNSViewsInput
974
+
975
+ ListSharedDNSViewsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
976
+ ListSharedDNSViewsOutput.add_member(:dns_views, Shapes::ShapeRef.new(shape: SharedDNSViews, required: true, location_name: "dnsViews"))
977
+ ListSharedDNSViewsOutput.struct_class = Types::ListSharedDNSViewsOutput
978
+
966
979
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "resourceArn"))
967
980
  ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
968
981
 
@@ -991,6 +1004,23 @@ module Aws::Route53GlobalResolver
991
1004
  ServiceQuotaExceededException.add_member(:quota_code, Shapes::ShapeRef.new(shape: String, location_name: "quotaCode"))
992
1005
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
993
1006
 
1007
+ SharedDNSViewSummary.add_member(:id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "id"))
1008
+ SharedDNSViewSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "arn"))
1009
+ SharedDNSViewSummary.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken"))
1010
+ SharedDNSViewSummary.add_member(:dnssec_validation, Shapes::ShapeRef.new(shape: DnsSecValidationType, required: true, location_name: "dnssecValidation"))
1011
+ SharedDNSViewSummary.add_member(:edns_client_subnet, Shapes::ShapeRef.new(shape: EdnsClientSubnetType, required: true, location_name: "ednsClientSubnet"))
1012
+ SharedDNSViewSummary.add_member(:firewall_rules_fail_open, Shapes::ShapeRef.new(shape: FirewallRulesFailOpenType, required: true, location_name: "firewallRulesFailOpen"))
1013
+ SharedDNSViewSummary.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
1014
+ SharedDNSViewSummary.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
1015
+ SharedDNSViewSummary.add_member(:global_resolver_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "globalResolverId"))
1016
+ SharedDNSViewSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: ISO8601TimeString, required: true, location_name: "createdAt"))
1017
+ SharedDNSViewSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: ISO8601TimeString, required: true, location_name: "updatedAt"))
1018
+ SharedDNSViewSummary.add_member(:status, Shapes::ShapeRef.new(shape: ProfileResourceStatus, required: true, location_name: "status"))
1019
+ SharedDNSViewSummary.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
1020
+ SharedDNSViewSummary.struct_class = Types::SharedDNSViewSummary
1021
+
1022
+ SharedDNSViews.member = Shapes::ShapeRef.new(shape: SharedDNSViewSummary)
1023
+
994
1024
  Strings.member = Shapes::ShapeRef.new(shape: String)
995
1025
 
996
1026
  TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
@@ -1697,7 +1727,7 @@ module Aws::Route53GlobalResolver
1697
1727
  api.add_operation(:list_hosted_zone_associations, Seahorse::Model::Operation.new.tap do |o|
1698
1728
  o.name = "ListHostedZoneAssociations"
1699
1729
  o.http_method = "GET"
1700
- o.http_request_uri = "/hosted-zone-associations/resource-arn/{resourceArn+}"
1730
+ o.http_request_uri = "/hosted-zone-associations"
1701
1731
  o.input = Shapes::ShapeRef.new(shape: ListHostedZoneAssociationsInput)
1702
1732
  o.output = Shapes::ShapeRef.new(shape: ListHostedZoneAssociationsOutput)
1703
1733
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
@@ -1731,6 +1761,24 @@ module Aws::Route53GlobalResolver
1731
1761
  )
1732
1762
  end)
1733
1763
 
1764
+ api.add_operation(:list_shared_dns_views, Seahorse::Model::Operation.new.tap do |o|
1765
+ o.name = "ListSharedDNSViews"
1766
+ o.http_method = "GET"
1767
+ o.http_request_uri = "/shared-dns-views"
1768
+ o.input = Shapes::ShapeRef.new(shape: ListSharedDNSViewsInput)
1769
+ o.output = Shapes::ShapeRef.new(shape: ListSharedDNSViewsOutput)
1770
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1771
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1772
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1773
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1774
+ o[:pager] = Aws::Pager.new(
1775
+ limit_key: "max_results",
1776
+ tokens: {
1777
+ "next_token" => "next_token"
1778
+ }
1779
+ )
1780
+ end)
1781
+
1734
1782
  api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
1735
1783
  o.name = "ListTagsForResource"
1736
1784
  o.http_method = "POST"
@@ -3626,7 +3626,10 @@ module Aws::Route53GlobalResolver
3626
3626
  # @return [String]
3627
3627
  #
3628
3628
  # @!attribute [rw] resource_arn
3629
- # Amazon Resource Name (ARN) of the DNS view.
3629
+ # The Amazon Resource Name (ARN) of the DNS view to list hosted zone
3630
+ # associations for. This parameter is optional; if you omit it, all
3631
+ # hosted zone associations in your Amazon Web Services account are
3632
+ # returned.
3630
3633
  # @return [String]
3631
3634
  #
3632
3635
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListHostedZoneAssociationsInput AWS API Documentation
@@ -3700,6 +3703,45 @@ module Aws::Route53GlobalResolver
3700
3703
  include Aws::Structure
3701
3704
  end
3702
3705
 
3706
+ # @!attribute [rw] max_results
3707
+ # The maximum number of results to retrieve in a single call.
3708
+ # @return [Integer]
3709
+ #
3710
+ # @!attribute [rw] next_token
3711
+ # A pagination token used for large sets of results that can't be
3712
+ # returned in a single response.
3713
+ # @return [String]
3714
+ #
3715
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListSharedDNSViewsInput AWS API Documentation
3716
+ #
3717
+ class ListSharedDNSViewsInput < Struct.new(
3718
+ :max_results,
3719
+ :next_token)
3720
+ SENSITIVE = []
3721
+ include Aws::Structure
3722
+ end
3723
+
3724
+ # @!attribute [rw] next_token
3725
+ # A pagination token used for large sets of results that can't be
3726
+ # returned in a single response. Provide this token in the next call
3727
+ # to get the results not returned in this call.
3728
+ # @return [String]
3729
+ #
3730
+ # @!attribute [rw] dns_views
3731
+ # An array of information about the DNS views shared with your Amazon
3732
+ # Web Services account, including the Amazon Web Services account that
3733
+ # owns each DNS view.
3734
+ # @return [Array<Types::SharedDNSViewSummary>]
3735
+ #
3736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListSharedDNSViewsOutput AWS API Documentation
3737
+ #
3738
+ class ListSharedDNSViewsOutput < Struct.new(
3739
+ :next_token,
3740
+ :dns_views)
3741
+ SENSITIVE = []
3742
+ include Aws::Structure
3743
+ end
3744
+
3703
3745
  # @!attribute [rw] resource_arn
3704
3746
  # Amazon Resource Name (ARN) for the resource.
3705
3747
  # @return [String]
@@ -3813,6 +3855,83 @@ module Aws::Route53GlobalResolver
3813
3855
  include Aws::Structure
3814
3856
  end
3815
3857
 
3858
+ # Summary information about a DNS view that has been shared with your
3859
+ # Amazon Web Services account through Amazon Web Services RAM.
3860
+ #
3861
+ # @!attribute [rw] id
3862
+ # The unique identifier of the DNS view.
3863
+ # @return [String]
3864
+ #
3865
+ # @!attribute [rw] arn
3866
+ # The Amazon Resource Name (ARN) of the DNS view.
3867
+ # @return [String]
3868
+ #
3869
+ # @!attribute [rw] client_token
3870
+ # The unique string that identifies the request and ensures
3871
+ # idempotency.
3872
+ # @return [String]
3873
+ #
3874
+ # @!attribute [rw] dnssec_validation
3875
+ # Whether DNSSEC validation is enabled for the DNS view.
3876
+ # @return [String]
3877
+ #
3878
+ # @!attribute [rw] edns_client_subnet
3879
+ # Whether EDNS Client Subnet injection is enabled for the DNS view.
3880
+ # @return [String]
3881
+ #
3882
+ # @!attribute [rw] firewall_rules_fail_open
3883
+ # Whether firewall rules fail open when they cannot be evaluated.
3884
+ # @return [String]
3885
+ #
3886
+ # @!attribute [rw] name
3887
+ # The name of the DNS view.
3888
+ # @return [String]
3889
+ #
3890
+ # @!attribute [rw] description
3891
+ # A description of the DNS view.
3892
+ # @return [String]
3893
+ #
3894
+ # @!attribute [rw] global_resolver_id
3895
+ # The ID of the global resolver that the DNS view is associated with.
3896
+ # @return [String]
3897
+ #
3898
+ # @!attribute [rw] created_at
3899
+ # The date and time when the DNS view was created.
3900
+ # @return [Time]
3901
+ #
3902
+ # @!attribute [rw] updated_at
3903
+ # The date and time when the DNS view was last updated.
3904
+ # @return [Time]
3905
+ #
3906
+ # @!attribute [rw] status
3907
+ # The current status of the DNS view.
3908
+ # @return [String]
3909
+ #
3910
+ # @!attribute [rw] owner_account_id
3911
+ # The ID of the Amazon Web Services account that owns the DNS view and
3912
+ # shared it with your Amazon Web Services account.
3913
+ # @return [String]
3914
+ #
3915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/SharedDNSViewSummary AWS API Documentation
3916
+ #
3917
+ class SharedDNSViewSummary < Struct.new(
3918
+ :id,
3919
+ :arn,
3920
+ :client_token,
3921
+ :dnssec_validation,
3922
+ :edns_client_subnet,
3923
+ :firewall_rules_fail_open,
3924
+ :name,
3925
+ :description,
3926
+ :global_resolver_id,
3927
+ :created_at,
3928
+ :updated_at,
3929
+ :status,
3930
+ :owner_account_id)
3931
+ SENSITIVE = []
3932
+ include Aws::Structure
3933
+ end
3934
+
3816
3935
  # @!attribute [rw] resource_arn
3817
3936
  # Amazon Resource Name (ARN) of the resource to be tagged.
3818
3937
  # @return [String]
@@ -55,7 +55,7 @@ module Aws::Route53GlobalResolver
55
55
  autoload :EndpointProvider, 'aws-sdk-route53globalresolver/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-route53globalresolver/endpoints'
57
57
 
58
- GEM_VERSION = '1.10.0'
58
+ GEM_VERSION = '1.11.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -778,9 +778,9 @@ module Aws
778
778
  def list_hosted_zone_associations: (
779
779
  ?max_results: ::Integer,
780
780
  ?next_token: ::String,
781
- resource_arn: ::String
781
+ ?resource_arn: ::String
782
782
  ) -> _ListHostedZoneAssociationsResponseSuccess
783
- | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHostedZoneAssociationsResponseSuccess
783
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHostedZoneAssociationsResponseSuccess
784
784
 
785
785
  interface _ListManagedFirewallDomainListsResponseSuccess
786
786
  include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedFirewallDomainListsOutput]
@@ -795,6 +795,18 @@ module Aws
795
795
  ) -> _ListManagedFirewallDomainListsResponseSuccess
796
796
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedFirewallDomainListsResponseSuccess
797
797
 
798
+ interface _ListSharedDNSViewsResponseSuccess
799
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSharedDNSViewsOutput]
800
+ def next_token: () -> ::String
801
+ def dns_views: () -> ::Array[Types::SharedDNSViewSummary]
802
+ end
803
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53GlobalResolver/Client.html#list_shared_dns_views-instance_method
804
+ def list_shared_dns_views: (
805
+ ?max_results: ::Integer,
806
+ ?next_token: ::String
807
+ ) -> _ListSharedDNSViewsResponseSuccess
808
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSharedDNSViewsResponseSuccess
809
+
798
810
  interface _ListTagsForResourceResponseSuccess
799
811
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
800
812
  def tags: () -> ::Hash[::String, ::String]
data/sig/types.rbs CHANGED
@@ -926,6 +926,18 @@ module Aws::Route53GlobalResolver
926
926
  SENSITIVE: []
927
927
  end
928
928
 
929
+ class ListSharedDNSViewsInput
930
+ attr_accessor max_results: ::Integer
931
+ attr_accessor next_token: ::String
932
+ SENSITIVE: []
933
+ end
934
+
935
+ class ListSharedDNSViewsOutput
936
+ attr_accessor next_token: ::String
937
+ attr_accessor dns_views: ::Array[Types::SharedDNSViewSummary]
938
+ SENSITIVE: []
939
+ end
940
+
929
941
  class ListTagsForResourceRequest
930
942
  attr_accessor resource_arn: ::String
931
943
  SENSITIVE: []
@@ -960,6 +972,23 @@ module Aws::Route53GlobalResolver
960
972
  SENSITIVE: []
961
973
  end
962
974
 
975
+ class SharedDNSViewSummary
976
+ attr_accessor id: ::String
977
+ attr_accessor arn: ::String
978
+ attr_accessor client_token: ::String
979
+ attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
980
+ attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
981
+ attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
982
+ attr_accessor name: ::String
983
+ attr_accessor description: ::String
984
+ attr_accessor global_resolver_id: ::String
985
+ attr_accessor created_at: ::Time
986
+ attr_accessor updated_at: ::Time
987
+ attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
988
+ attr_accessor owner_account_id: ::String
989
+ SENSITIVE: []
990
+ end
991
+
963
992
  class TagResourceRequest
964
993
  attr_accessor resource_arn: ::String
965
994
  attr_accessor tags: ::Hash[::String, ::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53globalresolver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services