aws-sdk-route53domains 1.55.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -384,6 +384,8 @@ module Aws::Route53Domains
384
384
  GetDomainDetailResponse.add_member(:dns_sec, Shapes::ShapeRef.new(shape: DNSSec, location_name: "DnsSec"))
385
385
  GetDomainDetailResponse.add_member(:status_list, Shapes::ShapeRef.new(shape: DomainStatusList, location_name: "StatusList"))
386
386
  GetDomainDetailResponse.add_member(:dnssec_keys, Shapes::ShapeRef.new(shape: DnssecKeyList, location_name: "DnssecKeys"))
387
+ GetDomainDetailResponse.add_member(:billing_contact, Shapes::ShapeRef.new(shape: ContactDetail, location_name: "BillingContact"))
388
+ GetDomainDetailResponse.add_member(:billing_privacy, Shapes::ShapeRef.new(shape: Boolean, location_name: "BillingPrivacy"))
387
389
  GetDomainDetailResponse.struct_class = Types::GetDomainDetailResponse
388
390
 
389
391
  GetDomainSuggestionsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
@@ -493,6 +495,8 @@ module Aws::Route53Domains
493
495
  RegisterDomainRequest.add_member(:privacy_protect_admin_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectAdminContact"))
494
496
  RegisterDomainRequest.add_member(:privacy_protect_registrant_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectRegistrantContact"))
495
497
  RegisterDomainRequest.add_member(:privacy_protect_tech_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectTechContact"))
498
+ RegisterDomainRequest.add_member(:billing_contact, Shapes::ShapeRef.new(shape: ContactDetail, location_name: "BillingContact"))
499
+ RegisterDomainRequest.add_member(:privacy_protect_billing_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectBillingContact"))
496
500
  RegisterDomainRequest.struct_class = Types::RegisterDomainRequest
497
501
 
498
502
  RegisterDomainResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
@@ -556,6 +560,8 @@ module Aws::Route53Domains
556
560
  TransferDomainRequest.add_member(:privacy_protect_admin_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectAdminContact"))
557
561
  TransferDomainRequest.add_member(:privacy_protect_registrant_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectRegistrantContact"))
558
562
  TransferDomainRequest.add_member(:privacy_protect_tech_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectTechContact"))
563
+ TransferDomainRequest.add_member(:billing_contact, Shapes::ShapeRef.new(shape: ContactDetail, location_name: "BillingContact"))
564
+ TransferDomainRequest.add_member(:privacy_protect_billing_contact, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivacyProtectBillingContact"))
559
565
  TransferDomainRequest.struct_class = Types::TransferDomainRequest
560
566
 
561
567
  TransferDomainResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
@@ -576,6 +582,7 @@ module Aws::Route53Domains
576
582
  UpdateDomainContactPrivacyRequest.add_member(:admin_privacy, Shapes::ShapeRef.new(shape: Boolean, location_name: "AdminPrivacy"))
577
583
  UpdateDomainContactPrivacyRequest.add_member(:registrant_privacy, Shapes::ShapeRef.new(shape: Boolean, location_name: "RegistrantPrivacy"))
578
584
  UpdateDomainContactPrivacyRequest.add_member(:tech_privacy, Shapes::ShapeRef.new(shape: Boolean, location_name: "TechPrivacy"))
585
+ UpdateDomainContactPrivacyRequest.add_member(:billing_privacy, Shapes::ShapeRef.new(shape: Boolean, location_name: "BillingPrivacy"))
579
586
  UpdateDomainContactPrivacyRequest.struct_class = Types::UpdateDomainContactPrivacyRequest
580
587
 
581
588
  UpdateDomainContactPrivacyResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
@@ -586,6 +593,7 @@ module Aws::Route53Domains
586
593
  UpdateDomainContactRequest.add_member(:registrant_contact, Shapes::ShapeRef.new(shape: ContactDetail, location_name: "RegistrantContact"))
587
594
  UpdateDomainContactRequest.add_member(:tech_contact, Shapes::ShapeRef.new(shape: ContactDetail, location_name: "TechContact"))
588
595
  UpdateDomainContactRequest.add_member(:consent, Shapes::ShapeRef.new(shape: Consent, location_name: "Consent"))
596
+ UpdateDomainContactRequest.add_member(:billing_contact, Shapes::ShapeRef.new(shape: ContactDetail, location_name: "BillingContact"))
589
597
  UpdateDomainContactRequest.struct_class = Types::UpdateDomainContactRequest
590
598
 
591
599
  UpdateDomainContactResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
@@ -32,7 +32,7 @@ module Aws::Route53Domains
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://route53domains-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -250,6 +250,11 @@ module Aws::Route53Domains
250
250
  # response for a variety of reasons, for example, the registry is
251
251
  # performing maintenance. Try again later.
252
252
  #
253
+ # INVALID\_NAME\_FOR\_TLD
254
+ #
255
+ # : The TLD isn't valid. For example, it can contain characters that
256
+ # aren't allowed.
257
+ #
253
258
  # PENDING
254
259
  #
255
260
  # : The TLD registry didn't return a response in the expected amount
@@ -942,7 +947,7 @@ module Aws::Route53Domains
942
947
  #
943
948
  # DOMAIN\_IN\_ANOTHER\_ACCOUNT
944
949
  #
945
- # : the domain exists in another Amazon Web Services account.
950
+ # : The domain exists in another Amazon Web Services account.
946
951
  #
947
952
  # PREMIUM\_DOMAIN
948
953
  #
@@ -1535,36 +1540,30 @@ module Aws::Route53Domains
1535
1540
  # @!attribute [rw] admin_privacy
1536
1541
  # Specifies whether contact information is concealed from WHOIS
1537
1542
  # queries. If the value is `true`, WHOIS ("who is") queries return
1538
- # contact information either for Amazon Registrar (for .com, .net, and
1539
- # .org domains) or for our registrar associate, Gandi (for all other
1540
- # TLDs). If the value is `false`, WHOIS queries return the information
1541
- # that you entered for the admin contact.
1543
+ # contact information either for Amazon Registrar or for our registrar
1544
+ # associate, Gandi. If the value is `false`, WHOIS queries return the
1545
+ # information that you entered for the admin contact.
1542
1546
  # @return [Boolean]
1543
1547
  #
1544
1548
  # @!attribute [rw] registrant_privacy
1545
1549
  # Specifies whether contact information is concealed from WHOIS
1546
1550
  # queries. If the value is `true`, WHOIS ("who is") queries return
1547
- # contact information either for Amazon Registrar (for .com, .net, and
1548
- # .org domains) or for our registrar associate, Gandi (for all other
1549
- # TLDs). If the value is `false`, WHOIS queries return the information
1550
- # that you entered for the registrant contact (domain owner).
1551
+ # contact information either for Amazon Registrar or for our registrar
1552
+ # associate, Gandi. If the value is `false`, WHOIS queries return the
1553
+ # information that you entered for the registrant contact (domain
1554
+ # owner).
1551
1555
  # @return [Boolean]
1552
1556
  #
1553
1557
  # @!attribute [rw] tech_privacy
1554
1558
  # Specifies whether contact information is concealed from WHOIS
1555
1559
  # queries. If the value is `true`, WHOIS ("who is") queries return
1556
- # contact information either for Amazon Registrar (for .com, .net, and
1557
- # .org domains) or for our registrar associate, Gandi (for all other
1558
- # TLDs). If the value is `false`, WHOIS queries return the information
1559
- # that you entered for the technical contact.
1560
+ # contact information either for Amazon Registrar or for our registrar
1561
+ # associate, Gandi. If the value is `false`, WHOIS queries return the
1562
+ # information that you entered for the technical contact.
1560
1563
  # @return [Boolean]
1561
1564
  #
1562
1565
  # @!attribute [rw] registrar_name
1563
1566
  # Name of the registrar of the domain as identified in the registry.
1564
- # Domains with a .com, .net, or .org TLD are registered by Amazon
1565
- # Registrar. All other domains are registered by our registrar
1566
- # associate, Gandi. The value for domains that are registered by Gandi
1567
- # is `"GANDI SAS"`.
1568
1567
  # @return [String]
1569
1568
  #
1570
1569
  # @!attribute [rw] who_is_server
@@ -1644,6 +1643,18 @@ module Aws::Route53Domains
1644
1643
  # configuration.
1645
1644
  # @return [Array<Types::DnssecKey>]
1646
1645
  #
1646
+ # @!attribute [rw] billing_contact
1647
+ # Provides details about the domain billing contact.
1648
+ # @return [Types::ContactDetail]
1649
+ #
1650
+ # @!attribute [rw] billing_privacy
1651
+ # Specifies whether contact information is concealed from WHOIS
1652
+ # queries. If the value is `true`, WHOIS ("who is") queries return
1653
+ # contact information either for Amazon Registrar or for our registrar
1654
+ # associate, Gandi. If the value is `false`, WHOIS queries return the
1655
+ # information that you entered for the billing contact.
1656
+ # @return [Boolean]
1657
+ #
1647
1658
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainDetailResponse AWS API Documentation
1648
1659
  #
1649
1660
  class GetDomainDetailResponse < Struct.new(
@@ -1668,8 +1679,10 @@ module Aws::Route53Domains
1668
1679
  :reseller,
1669
1680
  :dns_sec,
1670
1681
  :status_list,
1671
- :dnssec_keys)
1672
- SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact, :abuse_contact_email, :abuse_contact_phone]
1682
+ :dnssec_keys,
1683
+ :billing_contact,
1684
+ :billing_privacy)
1685
+ SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact, :abuse_contact_email, :abuse_contact_phone, :billing_contact]
1673
1686
  include Aws::Structure
1674
1687
  end
1675
1688
 
@@ -2319,13 +2332,12 @@ module Aws::Route53Domains
2319
2332
  # @!attribute [rw] privacy_protect_admin_contact
2320
2333
  # Whether you want to conceal contact information from WHOIS queries.
2321
2334
  # If you specify `true`, WHOIS ("who is") queries return contact
2322
- # information either for Amazon Registrar (for .com, .net, and .org
2323
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2324
- # If you specify `false`, WHOIS queries return the information that
2325
- # you entered for the admin contact.
2335
+ # information either for Amazon Registrar or for our registrar
2336
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2337
+ # information that you entered for the admin contact.
2326
2338
  #
2327
2339
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2328
- # registrant, and technical contacts.
2340
+ # billing, registrant, and technical contacts.
2329
2341
  #
2330
2342
  # </note>
2331
2343
  #
@@ -2335,13 +2347,13 @@ module Aws::Route53Domains
2335
2347
  # @!attribute [rw] privacy_protect_registrant_contact
2336
2348
  # Whether you want to conceal contact information from WHOIS queries.
2337
2349
  # If you specify `true`, WHOIS ("who is") queries return contact
2338
- # information either for Amazon Registrar (for .com, .net, and .org
2339
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2340
- # If you specify `false`, WHOIS queries return the information that
2341
- # you entered for the registrant contact (the domain owner).
2350
+ # information either for Amazon Registrar or for our registrar
2351
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2352
+ # information that you entered for the registrant contact (the domain
2353
+ # owner).
2342
2354
  #
2343
2355
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2344
- # registrant, and technical contacts.
2356
+ # billing, registrant, and technical contacts.
2345
2357
  #
2346
2358
  # </note>
2347
2359
  #
@@ -2351,19 +2363,40 @@ module Aws::Route53Domains
2351
2363
  # @!attribute [rw] privacy_protect_tech_contact
2352
2364
  # Whether you want to conceal contact information from WHOIS queries.
2353
2365
  # If you specify `true`, WHOIS ("who is") queries return contact
2354
- # information either for Amazon Registrar (for .com, .net, and .org
2355
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2356
- # If you specify `false`, WHOIS queries return the information that
2357
- # you entered for the technical contact.
2366
+ # information either for Amazon Registrar or for our registrar
2367
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2368
+ # information that you entered for the technical contact.
2358
2369
  #
2359
2370
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2360
- # registrant, and technical contacts.
2371
+ # billing, registrant, and technical contacts.
2361
2372
  #
2362
2373
  # </note>
2363
2374
  #
2364
2375
  # Default: `true`
2365
2376
  # @return [Boolean]
2366
2377
  #
2378
+ # @!attribute [rw] billing_contact
2379
+ # Provides detailed contact information. For information about the
2380
+ # values that you specify for each element, see [ContactDetail][1].
2381
+ #
2382
+ #
2383
+ #
2384
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
2385
+ # @return [Types::ContactDetail]
2386
+ #
2387
+ # @!attribute [rw] privacy_protect_billing_contact
2388
+ # Whether you want to conceal contact information from WHOIS queries.
2389
+ # If you specify `true`, WHOIS ("who is") queries return contact
2390
+ # information either for Amazon Registrar or for our registrar
2391
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2392
+ # information that you entered for the billing contact.
2393
+ #
2394
+ # <note markdown="1"> You must specify the same privacy setting for the administrative,
2395
+ # billing, registrant, and technical contacts.
2396
+ #
2397
+ # </note>
2398
+ # @return [Boolean]
2399
+ #
2367
2400
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RegisterDomainRequest AWS API Documentation
2368
2401
  #
2369
2402
  class RegisterDomainRequest < Struct.new(
@@ -2376,8 +2409,10 @@ module Aws::Route53Domains
2376
2409
  :tech_contact,
2377
2410
  :privacy_protect_admin_contact,
2378
2411
  :privacy_protect_registrant_contact,
2379
- :privacy_protect_tech_contact)
2380
- SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
2412
+ :privacy_protect_tech_contact,
2413
+ :billing_contact,
2414
+ :privacy_protect_billing_contact)
2415
+ SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact, :billing_contact]
2381
2416
  include Aws::Structure
2382
2417
  end
2383
2418
 
@@ -2726,13 +2761,13 @@ module Aws::Route53Domains
2726
2761
  # @!attribute [rw] privacy_protect_registrant_contact
2727
2762
  # Whether you want to conceal contact information from WHOIS queries.
2728
2763
  # If you specify `true`, WHOIS ("who is") queries return contact
2729
- # information either for Amazon Registrar (for .com, .net, and .org
2730
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2731
- # If you specify `false`, WHOIS queries return the information that
2732
- # you entered for the registrant contact (domain owner).
2764
+ # information either for Amazon Registrar or for our registrar
2765
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2766
+ # information that you entered for the registrant contact (domain
2767
+ # owner).
2733
2768
  #
2734
2769
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2735
- # registrant, and technical contacts.
2770
+ # billing, registrant, and technical contacts.
2736
2771
  #
2737
2772
  # </note>
2738
2773
  #
@@ -2742,19 +2777,35 @@ module Aws::Route53Domains
2742
2777
  # @!attribute [rw] privacy_protect_tech_contact
2743
2778
  # Whether you want to conceal contact information from WHOIS queries.
2744
2779
  # If you specify `true`, WHOIS ("who is") queries return contact
2745
- # information either for Amazon Registrar (for .com, .net, and .org
2746
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2747
- # If you specify `false`, WHOIS queries return the information that
2748
- # you entered for the technical contact.
2780
+ # information either for Amazon Registrar or for our registrar
2781
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2782
+ # information that you entered for the technical contact.
2749
2783
  #
2750
2784
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2751
- # registrant, and technical contacts.
2785
+ # billing, registrant, and technical contacts.
2752
2786
  #
2753
2787
  # </note>
2754
2788
  #
2755
2789
  # Default: `true`
2756
2790
  # @return [Boolean]
2757
2791
  #
2792
+ # @!attribute [rw] billing_contact
2793
+ # Provides detailed contact information.
2794
+ # @return [Types::ContactDetail]
2795
+ #
2796
+ # @!attribute [rw] privacy_protect_billing_contact
2797
+ # Whether you want to conceal contact information from WHOIS queries.
2798
+ # If you specify `true`, WHOIS ("who is") queries return contact
2799
+ # information either for Amazon Registrar or for our registrar
2800
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2801
+ # information that you entered for the billing contact.
2802
+ #
2803
+ # <note markdown="1"> You must specify the same privacy setting for the administrative,
2804
+ # billing, registrant, and technical contacts.
2805
+ #
2806
+ # </note>
2807
+ # @return [Boolean]
2808
+ #
2758
2809
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainRequest AWS API Documentation
2759
2810
  #
2760
2811
  class TransferDomainRequest < Struct.new(
@@ -2769,8 +2820,10 @@ module Aws::Route53Domains
2769
2820
  :tech_contact,
2770
2821
  :privacy_protect_admin_contact,
2771
2822
  :privacy_protect_registrant_contact,
2772
- :privacy_protect_tech_contact)
2773
- SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact]
2823
+ :privacy_protect_tech_contact,
2824
+ :billing_contact,
2825
+ :privacy_protect_billing_contact)
2826
+ SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact]
2774
2827
  include Aws::Structure
2775
2828
  end
2776
2829
 
@@ -2873,13 +2926,12 @@ module Aws::Route53Domains
2873
2926
  # @!attribute [rw] admin_privacy
2874
2927
  # Whether you want to conceal contact information from WHOIS queries.
2875
2928
  # If you specify `true`, WHOIS ("who is") queries return contact
2876
- # information either for Amazon Registrar (for .com, .net, and .org
2877
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2878
- # If you specify `false`, WHOIS queries return the information that
2879
- # you entered for the admin contact.
2929
+ # information either for Amazon Registrar or for our registrar
2930
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2931
+ # information that you entered for the admin contact.
2880
2932
  #
2881
2933
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2882
- # registrant, and technical contacts.
2934
+ # billing, registrant, and technical contacts.
2883
2935
  #
2884
2936
  # </note>
2885
2937
  # @return [Boolean]
@@ -2887,13 +2939,13 @@ module Aws::Route53Domains
2887
2939
  # @!attribute [rw] registrant_privacy
2888
2940
  # Whether you want to conceal contact information from WHOIS queries.
2889
2941
  # If you specify `true`, WHOIS ("who is") queries return contact
2890
- # information either for Amazon Registrar (for .com, .net, and .org
2891
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2892
- # If you specify `false`, WHOIS queries return the information that
2893
- # you entered for the registrant contact (domain owner).
2942
+ # information either for Amazon Registrar or for our registrar
2943
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2944
+ # information that you entered for the registrant contact (domain
2945
+ # owner).
2894
2946
  #
2895
2947
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2896
- # registrant, and technical contacts.
2948
+ # billing, registrant, and technical contacts.
2897
2949
  #
2898
2950
  # </note>
2899
2951
  # @return [Boolean]
@@ -2901,13 +2953,25 @@ module Aws::Route53Domains
2901
2953
  # @!attribute [rw] tech_privacy
2902
2954
  # Whether you want to conceal contact information from WHOIS queries.
2903
2955
  # If you specify `true`, WHOIS ("who is") queries return contact
2904
- # information either for Amazon Registrar (for .com, .net, and .org
2905
- # domains) or for our registrar associate, Gandi (for all other TLDs).
2906
- # If you specify `false`, WHOIS queries return the information that
2907
- # you entered for the technical contact.
2956
+ # information either for Amazon Registrar or for our registrar
2957
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2958
+ # information that you entered for the technical contact.
2908
2959
  #
2909
2960
  # <note markdown="1"> You must specify the same privacy setting for the administrative,
2910
- # registrant, and technical contacts.
2961
+ # billing, registrant, and technical contacts.
2962
+ #
2963
+ # </note>
2964
+ # @return [Boolean]
2965
+ #
2966
+ # @!attribute [rw] billing_privacy
2967
+ # Whether you want to conceal contact information from WHOIS queries.
2968
+ # If you specify `true`, WHOIS ("who is") queries return contact
2969
+ # information either for Amazon Registrar or for our registrar
2970
+ # associate, Gandi. If you specify `false`, WHOIS queries return the
2971
+ # information that you entered for the billing contact.
2972
+ #
2973
+ # <note markdown="1"> You must specify the same privacy setting for the administrative,
2974
+ # billing, registrant, and technical contacts.
2911
2975
  #
2912
2976
  # </note>
2913
2977
  # @return [Boolean]
@@ -2918,7 +2982,8 @@ module Aws::Route53Domains
2918
2982
  :domain_name,
2919
2983
  :admin_privacy,
2920
2984
  :registrant_privacy,
2921
- :tech_privacy)
2985
+ :tech_privacy,
2986
+ :billing_privacy)
2922
2987
  SENSITIVE = []
2923
2988
  include Aws::Structure
2924
2989
  end
@@ -2963,6 +3028,10 @@ module Aws::Route53Domains
2963
3028
  # domain is not free (consent price is more than $0.00).
2964
3029
  # @return [Types::Consent]
2965
3030
  #
3031
+ # @!attribute [rw] billing_contact
3032
+ # Provides detailed contact information.
3033
+ # @return [Types::ContactDetail]
3034
+ #
2966
3035
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactRequest AWS API Documentation
2967
3036
  #
2968
3037
  class UpdateDomainContactRequest < Struct.new(
@@ -2970,8 +3039,9 @@ module Aws::Route53Domains
2970
3039
  :admin_contact,
2971
3040
  :registrant_contact,
2972
3041
  :tech_contact,
2973
- :consent)
2974
- SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
3042
+ :consent,
3043
+ :billing_contact)
3044
+ SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact, :billing_contact]
2975
3045
  include Aws::Structure
2976
3046
  end
2977
3047
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53domains/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53Domains
54
54
 
55
- GEM_VERSION = '1.55.0'
55
+ GEM_VERSION = '1.57.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -111,7 +111,7 @@ module Aws
111
111
 
112
112
  interface _CheckDomainAvailabilityResponseSuccess
113
113
  include ::Seahorse::Client::_ResponseSuccess[Types::CheckDomainAvailabilityResponse]
114
- def availability: () -> ("AVAILABLE" | "AVAILABLE_RESERVED" | "AVAILABLE_PREORDER" | "UNAVAILABLE" | "UNAVAILABLE_PREMIUM" | "UNAVAILABLE_RESTRICTED" | "RESERVED" | "DONT_KNOW")
114
+ def availability: () -> ("AVAILABLE" | "AVAILABLE_RESERVED" | "AVAILABLE_PREORDER" | "UNAVAILABLE" | "UNAVAILABLE_PREMIUM" | "UNAVAILABLE_RESTRICTED" | "RESERVED" | "DONT_KNOW" | "INVALID_NAME_FOR_TLD" | "PENDING")
115
115
  end
116
116
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53Domains/Client.html#check_domain_availability-instance_method
117
117
  def check_domain_availability: (
@@ -236,6 +236,8 @@ module Aws
236
236
  def dns_sec: () -> ::String
237
237
  def status_list: () -> ::Array[::String]
238
238
  def dnssec_keys: () -> ::Array[Types::DnssecKey]
239
+ def billing_contact: () -> Types::ContactDetail
240
+ def billing_privacy: () -> bool
239
241
  end
240
242
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53Domains/Client.html#get_domain_detail-instance_method
241
243
  def get_domain_detail: (
@@ -261,7 +263,7 @@ module Aws
261
263
  def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "ERROR" | "SUCCESSFUL" | "FAILED")
262
264
  def message: () -> ::String
263
265
  def domain_name: () -> ::String
264
- def type: () -> ("REGISTER_DOMAIN" | "DELETE_DOMAIN" | "TRANSFER_IN_DOMAIN" | "UPDATE_DOMAIN_CONTACT" | "UPDATE_NAMESERVER" | "CHANGE_PRIVACY_PROTECTION" | "DOMAIN_LOCK" | "ENABLE_AUTORENEW" | "DISABLE_AUTORENEW" | "ADD_DNSSEC" | "REMOVE_DNSSEC" | "EXPIRE_DOMAIN" | "TRANSFER_OUT_DOMAIN" | "CHANGE_DOMAIN_OWNER" | "RENEW_DOMAIN" | "PUSH_DOMAIN" | "INTERNAL_TRANSFER_OUT_DOMAIN" | "INTERNAL_TRANSFER_IN_DOMAIN")
266
+ def type: () -> ("REGISTER_DOMAIN" | "DELETE_DOMAIN" | "TRANSFER_IN_DOMAIN" | "UPDATE_DOMAIN_CONTACT" | "UPDATE_NAMESERVER" | "CHANGE_PRIVACY_PROTECTION" | "DOMAIN_LOCK" | "ENABLE_AUTORENEW" | "DISABLE_AUTORENEW" | "ADD_DNSSEC" | "REMOVE_DNSSEC" | "EXPIRE_DOMAIN" | "TRANSFER_OUT_DOMAIN" | "CHANGE_DOMAIN_OWNER" | "RENEW_DOMAIN" | "PUSH_DOMAIN" | "INTERNAL_TRANSFER_OUT_DOMAIN" | "INTERNAL_TRANSFER_IN_DOMAIN" | "RELEASE_TO_GANDI" | "TRANSFER_ON_RENEW")
265
267
  def submitted_date: () -> ::Time
266
268
  def last_updated_date: () -> ::Time
267
269
  def status_flag: () -> ("PENDING_ACCEPTANCE" | "PENDING_CUSTOMER_ACTION" | "PENDING_AUTHORIZATION" | "PENDING_PAYMENT_VERIFICATION" | "PENDING_SUPPORT_CASE")
@@ -306,7 +308,7 @@ module Aws
306
308
  ?marker: ::String,
307
309
  ?max_items: ::Integer,
308
310
  ?status: Array[("SUBMITTED" | "IN_PROGRESS" | "ERROR" | "SUCCESSFUL" | "FAILED")],
309
- ?type: Array[("REGISTER_DOMAIN" | "DELETE_DOMAIN" | "TRANSFER_IN_DOMAIN" | "UPDATE_DOMAIN_CONTACT" | "UPDATE_NAMESERVER" | "CHANGE_PRIVACY_PROTECTION" | "DOMAIN_LOCK" | "ENABLE_AUTORENEW" | "DISABLE_AUTORENEW" | "ADD_DNSSEC" | "REMOVE_DNSSEC" | "EXPIRE_DOMAIN" | "TRANSFER_OUT_DOMAIN" | "CHANGE_DOMAIN_OWNER" | "RENEW_DOMAIN" | "PUSH_DOMAIN" | "INTERNAL_TRANSFER_OUT_DOMAIN" | "INTERNAL_TRANSFER_IN_DOMAIN")],
311
+ ?type: Array[("REGISTER_DOMAIN" | "DELETE_DOMAIN" | "TRANSFER_IN_DOMAIN" | "UPDATE_DOMAIN_CONTACT" | "UPDATE_NAMESERVER" | "CHANGE_PRIVACY_PROTECTION" | "DOMAIN_LOCK" | "ENABLE_AUTORENEW" | "DISABLE_AUTORENEW" | "ADD_DNSSEC" | "REMOVE_DNSSEC" | "EXPIRE_DOMAIN" | "TRANSFER_OUT_DOMAIN" | "CHANGE_DOMAIN_OWNER" | "RENEW_DOMAIN" | "PUSH_DOMAIN" | "INTERNAL_TRANSFER_OUT_DOMAIN" | "INTERNAL_TRANSFER_IN_DOMAIN" | "RELEASE_TO_GANDI" | "TRANSFER_ON_RENEW")],
310
312
  ?sort_by: ("SubmittedDate"),
311
313
  ?sort_order: ("ASC" | "DESC")
312
314
  ) -> _ListOperationsResponseSuccess
@@ -417,7 +419,29 @@ module Aws
417
419
  },
418
420
  ?privacy_protect_admin_contact: bool,
419
421
  ?privacy_protect_registrant_contact: bool,
420
- ?privacy_protect_tech_contact: bool
422
+ ?privacy_protect_tech_contact: bool,
423
+ ?billing_contact: {
424
+ first_name: ::String?,
425
+ last_name: ::String?,
426
+ contact_type: ("PERSON" | "COMPANY" | "ASSOCIATION" | "PUBLIC_BODY" | "RESELLER")?,
427
+ organization_name: ::String?,
428
+ address_line_1: ::String?,
429
+ address_line_2: ::String?,
430
+ city: ::String?,
431
+ state: ::String?,
432
+ country_code: ("AC" | "AD" | "AE" | "AF" | "AG" | "AI" | "AL" | "AM" | "AN" | "AO" | "AQ" | "AR" | "AS" | "AT" | "AU" | "AW" | "AX" | "AZ" | "BA" | "BB" | "BD" | "BE" | "BF" | "BG" | "BH" | "BI" | "BJ" | "BL" | "BM" | "BN" | "BO" | "BQ" | "BR" | "BS" | "BT" | "BV" | "BW" | "BY" | "BZ" | "CA" | "CC" | "CD" | "CF" | "CG" | "CH" | "CI" | "CK" | "CL" | "CM" | "CN" | "CO" | "CR" | "CU" | "CV" | "CW" | "CX" | "CY" | "CZ" | "DE" | "DJ" | "DK" | "DM" | "DO" | "DZ" | "EC" | "EE" | "EG" | "EH" | "ER" | "ES" | "ET" | "FI" | "FJ" | "FK" | "FM" | "FO" | "FR" | "GA" | "GB" | "GD" | "GE" | "GF" | "GG" | "GH" | "GI" | "GL" | "GM" | "GN" | "GP" | "GQ" | "GR" | "GS" | "GT" | "GU" | "GW" | "GY" | "HK" | "HM" | "HN" | "HR" | "HT" | "HU" | "ID" | "IE" | "IL" | "IM" | "IN" | "IO" | "IQ" | "IR" | "IS" | "IT" | "JE" | "JM" | "JO" | "JP" | "KE" | "KG" | "KH" | "KI" | "KM" | "KN" | "KP" | "KR" | "KW" | "KY" | "KZ" | "LA" | "LB" | "LC" | "LI" | "LK" | "LR" | "LS" | "LT" | "LU" | "LV" | "LY" | "MA" | "MC" | "MD" | "ME" | "MF" | "MG" | "MH" | "MK" | "ML" | "MM" | "MN" | "MO" | "MP" | "MQ" | "MR" | "MS" | "MT" | "MU" | "MV" | "MW" | "MX" | "MY" | "MZ" | "NA" | "NC" | "NE" | "NF" | "NG" | "NI" | "NL" | "NO" | "NP" | "NR" | "NU" | "NZ" | "OM" | "PA" | "PE" | "PF" | "PG" | "PH" | "PK" | "PL" | "PM" | "PN" | "PR" | "PS" | "PT" | "PW" | "PY" | "QA" | "RE" | "RO" | "RS" | "RU" | "RW" | "SA" | "SB" | "SC" | "SD" | "SE" | "SG" | "SH" | "SI" | "SJ" | "SK" | "SL" | "SM" | "SN" | "SO" | "SR" | "SS" | "ST" | "SV" | "SX" | "SY" | "SZ" | "TC" | "TD" | "TF" | "TG" | "TH" | "TJ" | "TK" | "TL" | "TM" | "TN" | "TO" | "TP" | "TR" | "TT" | "TV" | "TW" | "TZ" | "UA" | "UG" | "US" | "UY" | "UZ" | "VA" | "VC" | "VE" | "VG" | "VI" | "VN" | "VU" | "WF" | "WS" | "YE" | "YT" | "ZA" | "ZM" | "ZW")?,
433
+ zip_code: ::String?,
434
+ phone_number: ::String?,
435
+ email: ::String?,
436
+ fax: ::String?,
437
+ extra_params: Array[
438
+ {
439
+ name: ("DUNS_NUMBER" | "BRAND_NUMBER" | "BIRTH_DEPARTMENT" | "BIRTH_DATE_IN_YYYY_MM_DD" | "BIRTH_COUNTRY" | "BIRTH_CITY" | "DOCUMENT_NUMBER" | "AU_ID_NUMBER" | "AU_ID_TYPE" | "CA_LEGAL_TYPE" | "CA_BUSINESS_ENTITY_TYPE" | "CA_LEGAL_REPRESENTATIVE" | "CA_LEGAL_REPRESENTATIVE_CAPACITY" | "ES_IDENTIFICATION" | "ES_IDENTIFICATION_TYPE" | "ES_LEGAL_FORM" | "FI_BUSINESS_NUMBER" | "FI_ID_NUMBER" | "FI_NATIONALITY" | "FI_ORGANIZATION_TYPE" | "IT_NATIONALITY" | "IT_PIN" | "IT_REGISTRANT_ENTITY_TYPE" | "RU_PASSPORT_DATA" | "SE_ID_NUMBER" | "SG_ID_NUMBER" | "VAT_NUMBER" | "UK_CONTACT_TYPE" | "UK_COMPANY_NUMBER" | "EU_COUNTRY_OF_CITIZENSHIP" | "AU_PRIORITY_TOKEN"),
440
+ value: ::String
441
+ },
442
+ ]?
443
+ },
444
+ ?privacy_protect_billing_contact: bool
421
445
  ) -> _RegisterDomainResponseSuccess
422
446
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterDomainResponseSuccess
423
447
 
@@ -553,7 +577,29 @@ module Aws
553
577
  },
554
578
  ?privacy_protect_admin_contact: bool,
555
579
  ?privacy_protect_registrant_contact: bool,
556
- ?privacy_protect_tech_contact: bool
580
+ ?privacy_protect_tech_contact: bool,
581
+ ?billing_contact: {
582
+ first_name: ::String?,
583
+ last_name: ::String?,
584
+ contact_type: ("PERSON" | "COMPANY" | "ASSOCIATION" | "PUBLIC_BODY" | "RESELLER")?,
585
+ organization_name: ::String?,
586
+ address_line_1: ::String?,
587
+ address_line_2: ::String?,
588
+ city: ::String?,
589
+ state: ::String?,
590
+ country_code: ("AC" | "AD" | "AE" | "AF" | "AG" | "AI" | "AL" | "AM" | "AN" | "AO" | "AQ" | "AR" | "AS" | "AT" | "AU" | "AW" | "AX" | "AZ" | "BA" | "BB" | "BD" | "BE" | "BF" | "BG" | "BH" | "BI" | "BJ" | "BL" | "BM" | "BN" | "BO" | "BQ" | "BR" | "BS" | "BT" | "BV" | "BW" | "BY" | "BZ" | "CA" | "CC" | "CD" | "CF" | "CG" | "CH" | "CI" | "CK" | "CL" | "CM" | "CN" | "CO" | "CR" | "CU" | "CV" | "CW" | "CX" | "CY" | "CZ" | "DE" | "DJ" | "DK" | "DM" | "DO" | "DZ" | "EC" | "EE" | "EG" | "EH" | "ER" | "ES" | "ET" | "FI" | "FJ" | "FK" | "FM" | "FO" | "FR" | "GA" | "GB" | "GD" | "GE" | "GF" | "GG" | "GH" | "GI" | "GL" | "GM" | "GN" | "GP" | "GQ" | "GR" | "GS" | "GT" | "GU" | "GW" | "GY" | "HK" | "HM" | "HN" | "HR" | "HT" | "HU" | "ID" | "IE" | "IL" | "IM" | "IN" | "IO" | "IQ" | "IR" | "IS" | "IT" | "JE" | "JM" | "JO" | "JP" | "KE" | "KG" | "KH" | "KI" | "KM" | "KN" | "KP" | "KR" | "KW" | "KY" | "KZ" | "LA" | "LB" | "LC" | "LI" | "LK" | "LR" | "LS" | "LT" | "LU" | "LV" | "LY" | "MA" | "MC" | "MD" | "ME" | "MF" | "MG" | "MH" | "MK" | "ML" | "MM" | "MN" | "MO" | "MP" | "MQ" | "MR" | "MS" | "MT" | "MU" | "MV" | "MW" | "MX" | "MY" | "MZ" | "NA" | "NC" | "NE" | "NF" | "NG" | "NI" | "NL" | "NO" | "NP" | "NR" | "NU" | "NZ" | "OM" | "PA" | "PE" | "PF" | "PG" | "PH" | "PK" | "PL" | "PM" | "PN" | "PR" | "PS" | "PT" | "PW" | "PY" | "QA" | "RE" | "RO" | "RS" | "RU" | "RW" | "SA" | "SB" | "SC" | "SD" | "SE" | "SG" | "SH" | "SI" | "SJ" | "SK" | "SL" | "SM" | "SN" | "SO" | "SR" | "SS" | "ST" | "SV" | "SX" | "SY" | "SZ" | "TC" | "TD" | "TF" | "TG" | "TH" | "TJ" | "TK" | "TL" | "TM" | "TN" | "TO" | "TP" | "TR" | "TT" | "TV" | "TW" | "TZ" | "UA" | "UG" | "US" | "UY" | "UZ" | "VA" | "VC" | "VE" | "VG" | "VI" | "VN" | "VU" | "WF" | "WS" | "YE" | "YT" | "ZA" | "ZM" | "ZW")?,
591
+ zip_code: ::String?,
592
+ phone_number: ::String?,
593
+ email: ::String?,
594
+ fax: ::String?,
595
+ extra_params: Array[
596
+ {
597
+ name: ("DUNS_NUMBER" | "BRAND_NUMBER" | "BIRTH_DEPARTMENT" | "BIRTH_DATE_IN_YYYY_MM_DD" | "BIRTH_COUNTRY" | "BIRTH_CITY" | "DOCUMENT_NUMBER" | "AU_ID_NUMBER" | "AU_ID_TYPE" | "CA_LEGAL_TYPE" | "CA_BUSINESS_ENTITY_TYPE" | "CA_LEGAL_REPRESENTATIVE" | "CA_LEGAL_REPRESENTATIVE_CAPACITY" | "ES_IDENTIFICATION" | "ES_IDENTIFICATION_TYPE" | "ES_LEGAL_FORM" | "FI_BUSINESS_NUMBER" | "FI_ID_NUMBER" | "FI_NATIONALITY" | "FI_ORGANIZATION_TYPE" | "IT_NATIONALITY" | "IT_PIN" | "IT_REGISTRANT_ENTITY_TYPE" | "RU_PASSPORT_DATA" | "SE_ID_NUMBER" | "SG_ID_NUMBER" | "VAT_NUMBER" | "UK_CONTACT_TYPE" | "UK_COMPANY_NUMBER" | "EU_COUNTRY_OF_CITIZENSHIP" | "AU_PRIORITY_TOKEN"),
598
+ value: ::String
599
+ },
600
+ ]?
601
+ },
602
+ ?privacy_protect_billing_contact: bool
557
603
  ) -> _TransferDomainResponseSuccess
558
604
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TransferDomainResponseSuccess
559
605
 
@@ -642,6 +688,27 @@ module Aws
642
688
  ?consent: {
643
689
  max_price: ::Float,
644
690
  currency: ::String
691
+ },
692
+ ?billing_contact: {
693
+ first_name: ::String?,
694
+ last_name: ::String?,
695
+ contact_type: ("PERSON" | "COMPANY" | "ASSOCIATION" | "PUBLIC_BODY" | "RESELLER")?,
696
+ organization_name: ::String?,
697
+ address_line_1: ::String?,
698
+ address_line_2: ::String?,
699
+ city: ::String?,
700
+ state: ::String?,
701
+ country_code: ("AC" | "AD" | "AE" | "AF" | "AG" | "AI" | "AL" | "AM" | "AN" | "AO" | "AQ" | "AR" | "AS" | "AT" | "AU" | "AW" | "AX" | "AZ" | "BA" | "BB" | "BD" | "BE" | "BF" | "BG" | "BH" | "BI" | "BJ" | "BL" | "BM" | "BN" | "BO" | "BQ" | "BR" | "BS" | "BT" | "BV" | "BW" | "BY" | "BZ" | "CA" | "CC" | "CD" | "CF" | "CG" | "CH" | "CI" | "CK" | "CL" | "CM" | "CN" | "CO" | "CR" | "CU" | "CV" | "CW" | "CX" | "CY" | "CZ" | "DE" | "DJ" | "DK" | "DM" | "DO" | "DZ" | "EC" | "EE" | "EG" | "EH" | "ER" | "ES" | "ET" | "FI" | "FJ" | "FK" | "FM" | "FO" | "FR" | "GA" | "GB" | "GD" | "GE" | "GF" | "GG" | "GH" | "GI" | "GL" | "GM" | "GN" | "GP" | "GQ" | "GR" | "GS" | "GT" | "GU" | "GW" | "GY" | "HK" | "HM" | "HN" | "HR" | "HT" | "HU" | "ID" | "IE" | "IL" | "IM" | "IN" | "IO" | "IQ" | "IR" | "IS" | "IT" | "JE" | "JM" | "JO" | "JP" | "KE" | "KG" | "KH" | "KI" | "KM" | "KN" | "KP" | "KR" | "KW" | "KY" | "KZ" | "LA" | "LB" | "LC" | "LI" | "LK" | "LR" | "LS" | "LT" | "LU" | "LV" | "LY" | "MA" | "MC" | "MD" | "ME" | "MF" | "MG" | "MH" | "MK" | "ML" | "MM" | "MN" | "MO" | "MP" | "MQ" | "MR" | "MS" | "MT" | "MU" | "MV" | "MW" | "MX" | "MY" | "MZ" | "NA" | "NC" | "NE" | "NF" | "NG" | "NI" | "NL" | "NO" | "NP" | "NR" | "NU" | "NZ" | "OM" | "PA" | "PE" | "PF" | "PG" | "PH" | "PK" | "PL" | "PM" | "PN" | "PR" | "PS" | "PT" | "PW" | "PY" | "QA" | "RE" | "RO" | "RS" | "RU" | "RW" | "SA" | "SB" | "SC" | "SD" | "SE" | "SG" | "SH" | "SI" | "SJ" | "SK" | "SL" | "SM" | "SN" | "SO" | "SR" | "SS" | "ST" | "SV" | "SX" | "SY" | "SZ" | "TC" | "TD" | "TF" | "TG" | "TH" | "TJ" | "TK" | "TL" | "TM" | "TN" | "TO" | "TP" | "TR" | "TT" | "TV" | "TW" | "TZ" | "UA" | "UG" | "US" | "UY" | "UZ" | "VA" | "VC" | "VE" | "VG" | "VI" | "VN" | "VU" | "WF" | "WS" | "YE" | "YT" | "ZA" | "ZM" | "ZW")?,
702
+ zip_code: ::String?,
703
+ phone_number: ::String?,
704
+ email: ::String?,
705
+ fax: ::String?,
706
+ extra_params: Array[
707
+ {
708
+ name: ("DUNS_NUMBER" | "BRAND_NUMBER" | "BIRTH_DEPARTMENT" | "BIRTH_DATE_IN_YYYY_MM_DD" | "BIRTH_COUNTRY" | "BIRTH_CITY" | "DOCUMENT_NUMBER" | "AU_ID_NUMBER" | "AU_ID_TYPE" | "CA_LEGAL_TYPE" | "CA_BUSINESS_ENTITY_TYPE" | "CA_LEGAL_REPRESENTATIVE" | "CA_LEGAL_REPRESENTATIVE_CAPACITY" | "ES_IDENTIFICATION" | "ES_IDENTIFICATION_TYPE" | "ES_LEGAL_FORM" | "FI_BUSINESS_NUMBER" | "FI_ID_NUMBER" | "FI_NATIONALITY" | "FI_ORGANIZATION_TYPE" | "IT_NATIONALITY" | "IT_PIN" | "IT_REGISTRANT_ENTITY_TYPE" | "RU_PASSPORT_DATA" | "SE_ID_NUMBER" | "SG_ID_NUMBER" | "VAT_NUMBER" | "UK_CONTACT_TYPE" | "UK_COMPANY_NUMBER" | "EU_COUNTRY_OF_CITIZENSHIP" | "AU_PRIORITY_TOKEN"),
709
+ value: ::String
710
+ },
711
+ ]?
645
712
  }
646
713
  ) -> _UpdateDomainContactResponseSuccess
647
714
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainContactResponseSuccess
@@ -655,7 +722,8 @@ module Aws
655
722
  domain_name: ::String,
656
723
  ?admin_privacy: bool,
657
724
  ?registrant_privacy: bool,
658
- ?tech_privacy: bool
725
+ ?tech_privacy: bool,
726
+ ?billing_privacy: bool
659
727
  ) -> _UpdateDomainContactPrivacyResponseSuccess
660
728
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainContactPrivacyResponseSuccess
661
729