aws-sdk-route53domains 1.41.0 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53domains/client.rb +207 -23
- data/lib/aws-sdk-route53domains/client_api.rb +150 -25
- data/lib/aws-sdk-route53domains/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-route53domains/endpoint_provider.rb +73 -74
- data/lib/aws-sdk-route53domains/endpoints.rb +56 -0
- data/lib/aws-sdk-route53domains/errors.rb +16 -0
- data/lib/aws-sdk-route53domains/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-route53domains/types.rb +397 -541
- data/lib/aws-sdk-route53domains.rb +1 -1
- metadata +2 -2
@@ -13,14 +13,6 @@ module Aws::Route53Domains
|
|
13
13
|
# The AcceptDomainTransferFromAnotherAwsAccount request includes the
|
14
14
|
# following elements.
|
15
15
|
#
|
16
|
-
# @note When making an API call, you may pass AcceptDomainTransferFromAnotherAwsAccountRequest
|
17
|
-
# data as a hash:
|
18
|
-
#
|
19
|
-
# {
|
20
|
-
# domain_name: "DomainName", # required
|
21
|
-
# password: "String", # required
|
22
|
-
# }
|
23
|
-
#
|
24
16
|
# @!attribute [rw] domain_name
|
25
17
|
# The name of the domain that was specified when another Amazon Web
|
26
18
|
# Services account submitted a [TransferDomainToAnotherAwsAccount][1]
|
@@ -69,6 +61,41 @@ module Aws::Route53Domains
|
|
69
61
|
include Aws::Structure
|
70
62
|
end
|
71
63
|
|
64
|
+
# @!attribute [rw] domain_name
|
65
|
+
# The name of the domain.
|
66
|
+
# @return [String]
|
67
|
+
#
|
68
|
+
# @!attribute [rw] signing_attributes
|
69
|
+
# The information about a key, including the algorithm, public
|
70
|
+
# key-value, and flags.
|
71
|
+
# @return [Types::DnssecSigningAttributes]
|
72
|
+
#
|
73
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AssociateDelegationSignerToDomainRequest AWS API Documentation
|
74
|
+
#
|
75
|
+
class AssociateDelegationSignerToDomainRequest < Struct.new(
|
76
|
+
:domain_name,
|
77
|
+
:signing_attributes)
|
78
|
+
SENSITIVE = []
|
79
|
+
include Aws::Structure
|
80
|
+
end
|
81
|
+
|
82
|
+
# @!attribute [rw] operation_id
|
83
|
+
# The identifier for tracking the progress of the request. To query
|
84
|
+
# the operation status, use [GetOperationDetail][1].
|
85
|
+
#
|
86
|
+
#
|
87
|
+
#
|
88
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
89
|
+
# @return [String]
|
90
|
+
#
|
91
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AssociateDelegationSignerToDomainResponse AWS API Documentation
|
92
|
+
#
|
93
|
+
class AssociateDelegationSignerToDomainResponse < Struct.new(
|
94
|
+
:operation_id)
|
95
|
+
SENSITIVE = []
|
96
|
+
include Aws::Structure
|
97
|
+
end
|
98
|
+
|
72
99
|
# Information for one billing record.
|
73
100
|
#
|
74
101
|
# @!attribute [rw] domain_name
|
@@ -116,13 +143,6 @@ module Aws::Route53Domains
|
|
116
143
|
# The CancelDomainTransferToAnotherAwsAccount request includes the
|
117
144
|
# following element.
|
118
145
|
#
|
119
|
-
# @note When making an API call, you may pass CancelDomainTransferToAnotherAwsAccountRequest
|
120
|
-
# data as a hash:
|
121
|
-
#
|
122
|
-
# {
|
123
|
-
# domain_name: "DomainName", # required
|
124
|
-
# }
|
125
|
-
#
|
126
146
|
# @!attribute [rw] domain_name
|
127
147
|
# The name of the domain for which you want to cancel the transfer to
|
128
148
|
# another Amazon Web Services account.
|
@@ -156,14 +176,6 @@ module Aws::Route53Domains
|
|
156
176
|
|
157
177
|
# The CheckDomainAvailability request contains the following elements.
|
158
178
|
#
|
159
|
-
# @note When making an API call, you may pass CheckDomainAvailabilityRequest
|
160
|
-
# data as a hash:
|
161
|
-
#
|
162
|
-
# {
|
163
|
-
# domain_name: "DomainName", # required
|
164
|
-
# idn_lang_code: "LangCode",
|
165
|
-
# }
|
166
|
-
#
|
167
179
|
# @!attribute [rw] domain_name
|
168
180
|
# The name of the domain that you want to get availability for. The
|
169
181
|
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
@@ -273,14 +285,6 @@ module Aws::Route53Domains
|
|
273
285
|
# The CheckDomainTransferability request contains the following
|
274
286
|
# elements.
|
275
287
|
#
|
276
|
-
# @note When making an API call, you may pass CheckDomainTransferabilityRequest
|
277
|
-
# data as a hash:
|
278
|
-
#
|
279
|
-
# {
|
280
|
-
# domain_name: "DomainName", # required
|
281
|
-
# auth_code: "DomainAuthCode",
|
282
|
-
# }
|
283
|
-
#
|
284
288
|
# @!attribute [rw] domain_name
|
285
289
|
# The name of the domain that you want to transfer to Route 53. The
|
286
290
|
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
@@ -336,32 +340,26 @@ module Aws::Route53Domains
|
|
336
340
|
include Aws::Structure
|
337
341
|
end
|
338
342
|
|
339
|
-
#
|
343
|
+
# Customer's consent for the owner change request.
|
340
344
|
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
#
|
359
|
-
# {
|
360
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
361
|
-
# value: "ExtraParamValue", # required
|
362
|
-
# },
|
363
|
-
# ],
|
364
|
-
# }
|
345
|
+
# @!attribute [rw] max_price
|
346
|
+
# Maximum amount the customer agreed to accept.
|
347
|
+
# @return [Float]
|
348
|
+
#
|
349
|
+
# @!attribute [rw] currency
|
350
|
+
# Currency for the `MaxPrice`.
|
351
|
+
# @return [String]
|
352
|
+
#
|
353
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/Consent AWS API Documentation
|
354
|
+
#
|
355
|
+
class Consent < Struct.new(
|
356
|
+
:max_price,
|
357
|
+
:currency)
|
358
|
+
SENSITIVE = []
|
359
|
+
include Aws::Structure
|
360
|
+
end
|
361
|
+
|
362
|
+
# ContactDetail includes the following elements.
|
365
363
|
#
|
366
364
|
# @!attribute [rw] first_name
|
367
365
|
# First name of contact.
|
@@ -467,13 +465,6 @@ module Aws::Route53Domains
|
|
467
465
|
include Aws::Structure
|
468
466
|
end
|
469
467
|
|
470
|
-
# @note When making an API call, you may pass DeleteDomainRequest
|
471
|
-
# data as a hash:
|
472
|
-
#
|
473
|
-
# {
|
474
|
-
# domain_name: "DomainName", # required
|
475
|
-
# }
|
476
|
-
#
|
477
468
|
# @!attribute [rw] domain_name
|
478
469
|
# Name of the domain to be deleted.
|
479
470
|
# @return [String]
|
@@ -505,14 +496,6 @@ module Aws::Route53Domains
|
|
505
496
|
|
506
497
|
# The DeleteTagsForDomainRequest includes the following elements.
|
507
498
|
#
|
508
|
-
# @note When making an API call, you may pass DeleteTagsForDomainRequest
|
509
|
-
# data as a hash:
|
510
|
-
#
|
511
|
-
# {
|
512
|
-
# domain_name: "DomainName", # required
|
513
|
-
# tags_to_delete: ["TagKey"], # required
|
514
|
-
# }
|
515
|
-
#
|
516
499
|
# @!attribute [rw] domain_name
|
517
500
|
# The domain for which you want to delete one or more tags.
|
518
501
|
# @return [String]
|
@@ -534,13 +517,6 @@ module Aws::Route53Domains
|
|
534
517
|
#
|
535
518
|
class DeleteTagsForDomainResponse < Aws::EmptyStructure; end
|
536
519
|
|
537
|
-
# @note When making an API call, you may pass DisableDomainAutoRenewRequest
|
538
|
-
# data as a hash:
|
539
|
-
#
|
540
|
-
# {
|
541
|
-
# domain_name: "DomainName", # required
|
542
|
-
# }
|
543
|
-
#
|
544
520
|
# @!attribute [rw] domain_name
|
545
521
|
# The name of the domain that you want to disable automatic renewal
|
546
522
|
# for.
|
@@ -560,13 +536,6 @@ module Aws::Route53Domains
|
|
560
536
|
|
561
537
|
# The DisableDomainTransferLock request includes the following element.
|
562
538
|
#
|
563
|
-
# @note When making an API call, you may pass DisableDomainTransferLockRequest
|
564
|
-
# data as a hash:
|
565
|
-
#
|
566
|
-
# {
|
567
|
-
# domain_name: "DomainName", # required
|
568
|
-
# }
|
569
|
-
#
|
570
539
|
# @!attribute [rw] domain_name
|
571
540
|
# The name of the domain that you want to remove the transfer lock
|
572
541
|
# for.
|
@@ -599,6 +568,188 @@ module Aws::Route53Domains
|
|
599
568
|
include Aws::Structure
|
600
569
|
end
|
601
570
|
|
571
|
+
# @!attribute [rw] domain_name
|
572
|
+
# Name of the domain.
|
573
|
+
# @return [String]
|
574
|
+
#
|
575
|
+
# @!attribute [rw] id
|
576
|
+
# An internal identification number assigned to each DS record after
|
577
|
+
# it’s created. You can retrieve it as part of DNSSEC information
|
578
|
+
# returned by [GetDomainDetail][1].
|
579
|
+
#
|
580
|
+
#
|
581
|
+
#
|
582
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetDomainDetail.html
|
583
|
+
# @return [String]
|
584
|
+
#
|
585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisassociateDelegationSignerFromDomainRequest AWS API Documentation
|
586
|
+
#
|
587
|
+
class DisassociateDelegationSignerFromDomainRequest < Struct.new(
|
588
|
+
:domain_name,
|
589
|
+
:id)
|
590
|
+
SENSITIVE = []
|
591
|
+
include Aws::Structure
|
592
|
+
end
|
593
|
+
|
594
|
+
# @!attribute [rw] operation_id
|
595
|
+
# Identifier for tracking the progress of the request. To query the
|
596
|
+
# operation status, use [GetOperationDetail][1].
|
597
|
+
#
|
598
|
+
#
|
599
|
+
#
|
600
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
601
|
+
# @return [String]
|
602
|
+
#
|
603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisassociateDelegationSignerFromDomainResponse AWS API Documentation
|
604
|
+
#
|
605
|
+
class DisassociateDelegationSignerFromDomainResponse < Struct.new(
|
606
|
+
:operation_id)
|
607
|
+
SENSITIVE = []
|
608
|
+
include Aws::Structure
|
609
|
+
end
|
610
|
+
|
611
|
+
# Information about the DNSSEC key.
|
612
|
+
#
|
613
|
+
# You get this from your DNS provider and then give it to Route 53 (by
|
614
|
+
# using [AssociateDelegationSignerToDomain][1]) to pass it to the
|
615
|
+
# registry to establish the chain of trust.
|
616
|
+
#
|
617
|
+
#
|
618
|
+
#
|
619
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AssociateDelegationSignerToDomain.html
|
620
|
+
#
|
621
|
+
# @!attribute [rw] algorithm
|
622
|
+
# The number of the public key’s cryptographic algorithm according to
|
623
|
+
# an [IANA][1] assignment.
|
624
|
+
#
|
625
|
+
# If Route 53 is your DNS service, set this to 13.
|
626
|
+
#
|
627
|
+
# For more information about enabling DNSSEC signing, see [Enabling
|
628
|
+
# DNSSEC signing and establishing a chain of trust][2].
|
629
|
+
#
|
630
|
+
#
|
631
|
+
#
|
632
|
+
# [1]: https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xml
|
633
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-configuring-dnssec-enable-signing.html
|
634
|
+
# @return [Integer]
|
635
|
+
#
|
636
|
+
# @!attribute [rw] flags
|
637
|
+
# Defines the type of key. It can be either a KSK (key-signing-key,
|
638
|
+
# value 257) or ZSK (zone-signing-key, value 256). Using KSK is always
|
639
|
+
# encouraged. Only use ZSK if your DNS provider isn't Route 53 and
|
640
|
+
# you don’t have KSK available.
|
641
|
+
#
|
642
|
+
# If you have KSK and ZSK keys, always use KSK to create a delegations
|
643
|
+
# signer (DS) record. If you have ZSK keys only – use ZSK to create a
|
644
|
+
# DS record.
|
645
|
+
# @return [Integer]
|
646
|
+
#
|
647
|
+
# @!attribute [rw] public_key
|
648
|
+
# The base64-encoded public key part of the key pair that is passed to
|
649
|
+
# the registry .
|
650
|
+
# @return [String]
|
651
|
+
#
|
652
|
+
# @!attribute [rw] digest_type
|
653
|
+
# The number of the DS digest algorithm according to an IANA
|
654
|
+
# assignment.
|
655
|
+
#
|
656
|
+
# For more information, see [IANA][1] for DNSSEC Delegation Signer
|
657
|
+
# (DS) Resource Record (RR) Type Digest Algorithms.
|
658
|
+
#
|
659
|
+
#
|
660
|
+
#
|
661
|
+
# [1]: https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml
|
662
|
+
# @return [Integer]
|
663
|
+
#
|
664
|
+
# @!attribute [rw] digest
|
665
|
+
# The delegation signer digest.
|
666
|
+
#
|
667
|
+
# Digest is calculated from the public key provided using specified
|
668
|
+
# digest algorithm and this digest is the actual value returned from
|
669
|
+
# the registry nameservers as the value of DS records.
|
670
|
+
# @return [String]
|
671
|
+
#
|
672
|
+
# @!attribute [rw] key_tag
|
673
|
+
# A numeric identification of the DNSKEY record referred to by this DS
|
674
|
+
# record.
|
675
|
+
# @return [Integer]
|
676
|
+
#
|
677
|
+
# @!attribute [rw] id
|
678
|
+
# An ID assigned to each DS record created by
|
679
|
+
# [AssociateDelegationSignerToDomain][1].
|
680
|
+
#
|
681
|
+
#
|
682
|
+
#
|
683
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AssociateDelegationSignerToDomain.html
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DnssecKey AWS API Documentation
|
687
|
+
#
|
688
|
+
class DnssecKey < Struct.new(
|
689
|
+
:algorithm,
|
690
|
+
:flags,
|
691
|
+
:public_key,
|
692
|
+
:digest_type,
|
693
|
+
:digest,
|
694
|
+
:key_tag,
|
695
|
+
:id)
|
696
|
+
SENSITIVE = []
|
697
|
+
include Aws::Structure
|
698
|
+
end
|
699
|
+
|
700
|
+
# This error is returned if you call `AssociateDelegationSignerToDomain`
|
701
|
+
# when the specified domain has reached the maximum number of DS
|
702
|
+
# records. You can't add any additional DS records unless you delete an
|
703
|
+
# existing one first.
|
704
|
+
#
|
705
|
+
# @!attribute [rw] message
|
706
|
+
# @return [String]
|
707
|
+
#
|
708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DnssecLimitExceeded AWS API Documentation
|
709
|
+
#
|
710
|
+
class DnssecLimitExceeded < Struct.new(
|
711
|
+
:message)
|
712
|
+
SENSITIVE = []
|
713
|
+
include Aws::Structure
|
714
|
+
end
|
715
|
+
|
716
|
+
# Information about a delegation signer (DS) record that was created in
|
717
|
+
# the registry by [AssociateDelegationSignerToDomain][1].
|
718
|
+
#
|
719
|
+
#
|
720
|
+
#
|
721
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AssociateDelegationSignerToDomain.html
|
722
|
+
#
|
723
|
+
# @!attribute [rw] algorithm
|
724
|
+
# Algorithm which was used to generate the digest from the public key.
|
725
|
+
# @return [Integer]
|
726
|
+
#
|
727
|
+
# @!attribute [rw] flags
|
728
|
+
# Defines the type of key. It can be either a KSK (key-signing-key,
|
729
|
+
# value 257) or ZSK (zone-signing-key, value 256). Using KSK is always
|
730
|
+
# encouraged. Only use ZSK if your DNS provider isn't Route 53 and
|
731
|
+
# you don’t have KSK available.
|
732
|
+
#
|
733
|
+
# If you have KSK and ZSK keys, always use KSK to create a delegations
|
734
|
+
# signer (DS) record. If you have ZSK keys only – use ZSK to create a
|
735
|
+
# DS record.
|
736
|
+
# @return [Integer]
|
737
|
+
#
|
738
|
+
# @!attribute [rw] public_key
|
739
|
+
# The base64-encoded public key part of the key pair that is passed to
|
740
|
+
# the registry.
|
741
|
+
# @return [String]
|
742
|
+
#
|
743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DnssecSigningAttributes AWS API Documentation
|
744
|
+
#
|
745
|
+
class DnssecSigningAttributes < Struct.new(
|
746
|
+
:algorithm,
|
747
|
+
:flags,
|
748
|
+
:public_key)
|
749
|
+
SENSITIVE = []
|
750
|
+
include Aws::Structure
|
751
|
+
end
|
752
|
+
|
602
753
|
# The number of domains has exceeded the allowed threshold for the
|
603
754
|
# account.
|
604
755
|
#
|
@@ -760,8 +911,8 @@ module Aws::Route53Domains
|
|
760
911
|
# @!attribute [rw] transferable
|
761
912
|
# Whether the domain name can be transferred to Route 53.
|
762
913
|
#
|
763
|
-
# <note markdown="1"> You can transfer only domains that have a value of `TRANSFERABLE`
|
764
|
-
#
|
914
|
+
# <note markdown="1"> You can transfer only domains that have a value of `TRANSFERABLE` or
|
915
|
+
# `Transferable`.
|
765
916
|
#
|
766
917
|
# </note>
|
767
918
|
#
|
@@ -778,6 +929,19 @@ module Aws::Route53Domains
|
|
778
929
|
# DONT\_KNOW
|
779
930
|
#
|
780
931
|
# : Reserved for future use.
|
932
|
+
#
|
933
|
+
# DOMAIN\_IN\_OWN\_ACCOUNT
|
934
|
+
#
|
935
|
+
# : The domain already exists in the current Amazon Web Services
|
936
|
+
# account.
|
937
|
+
#
|
938
|
+
# DOMAIN\_IN\_ANOTHER\_ACCOUNT
|
939
|
+
#
|
940
|
+
# : the domain exists in another Amazon Web Services account.
|
941
|
+
#
|
942
|
+
# PREMIUM\_DOMAIN
|
943
|
+
#
|
944
|
+
# : Premium domain transfer is not supported.
|
781
945
|
# @return [String]
|
782
946
|
#
|
783
947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DomainTransferability AWS API Documentation
|
@@ -802,13 +966,6 @@ module Aws::Route53Domains
|
|
802
966
|
include Aws::Structure
|
803
967
|
end
|
804
968
|
|
805
|
-
# @note When making an API call, you may pass EnableDomainAutoRenewRequest
|
806
|
-
# data as a hash:
|
807
|
-
#
|
808
|
-
# {
|
809
|
-
# domain_name: "DomainName", # required
|
810
|
-
# }
|
811
|
-
#
|
812
969
|
# @!attribute [rw] domain_name
|
813
970
|
# The name of the domain that you want to enable automatic renewal
|
814
971
|
# for.
|
@@ -828,13 +985,6 @@ module Aws::Route53Domains
|
|
828
985
|
|
829
986
|
# A request to set the transfer lock for the specified domain.
|
830
987
|
#
|
831
|
-
# @note When making an API call, you may pass EnableDomainTransferLockRequest
|
832
|
-
# data as a hash:
|
833
|
-
#
|
834
|
-
# {
|
835
|
-
# domain_name: "DomainName", # required
|
836
|
-
# }
|
837
|
-
#
|
838
988
|
# @!attribute [rw] domain_name
|
839
989
|
# The name of the domain that you want to set the transfer lock for.
|
840
990
|
# @return [String]
|
@@ -864,14 +1014,6 @@ module Aws::Route53Domains
|
|
864
1014
|
|
865
1015
|
# ExtraParam includes the following elements.
|
866
1016
|
#
|
867
|
-
# @note When making an API call, you may pass ExtraParam
|
868
|
-
# data as a hash:
|
869
|
-
#
|
870
|
-
# {
|
871
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
872
|
-
# value: "ExtraParamValue", # required
|
873
|
-
# }
|
874
|
-
#
|
875
1017
|
# @!attribute [rw] name
|
876
1018
|
# The name of an additional parameter that is required by a top-level
|
877
1019
|
# domain. Here are the top-level domains that require additional
|
@@ -1216,7 +1358,7 @@ module Aws::Route53Domains
|
|
1216
1358
|
#
|
1217
1359
|
# ^
|
1218
1360
|
#
|
1219
|
-
# .co.uk, .me.uk, and .org.uk
|
1361
|
+
# .uk, .co.uk, .me.uk, and .org.uk
|
1220
1362
|
# : * `UK_CONTACT_TYPE`
|
1221
1363
|
#
|
1222
1364
|
# Valid values include the following:
|
@@ -1283,15 +1425,6 @@ module Aws::Route53Domains
|
|
1283
1425
|
#
|
1284
1426
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains__ListDomains.html
|
1285
1427
|
#
|
1286
|
-
# @note When making an API call, you may pass FilterCondition
|
1287
|
-
# data as a hash:
|
1288
|
-
#
|
1289
|
-
# {
|
1290
|
-
# name: "DomainName", # required, accepts DomainName, Expiry
|
1291
|
-
# operator: "LE", # required, accepts LE, GE, BEGINS_WITH
|
1292
|
-
# values: ["Value"], # required
|
1293
|
-
# }
|
1294
|
-
#
|
1295
1428
|
# @!attribute [rw] name
|
1296
1429
|
# Name of the field which should be used for filtering the list of
|
1297
1430
|
# domains.
|
@@ -1322,13 +1455,6 @@ module Aws::Route53Domains
|
|
1322
1455
|
include Aws::Structure
|
1323
1456
|
end
|
1324
1457
|
|
1325
|
-
# @note When making an API call, you may pass GetContactReachabilityStatusRequest
|
1326
|
-
# data as a hash:
|
1327
|
-
#
|
1328
|
-
# {
|
1329
|
-
# domain_name: "DomainName",
|
1330
|
-
# }
|
1331
|
-
#
|
1332
1458
|
# @!attribute [rw] domain_name
|
1333
1459
|
# The name of the domain for which you want to know whether the
|
1334
1460
|
# registrant contact has confirmed that the email address is valid.
|
@@ -1376,13 +1502,6 @@ module Aws::Route53Domains
|
|
1376
1502
|
|
1377
1503
|
# The GetDomainDetail request includes the following element.
|
1378
1504
|
#
|
1379
|
-
# @note When making an API call, you may pass GetDomainDetailRequest
|
1380
|
-
# data as a hash:
|
1381
|
-
#
|
1382
|
-
# {
|
1383
|
-
# domain_name: "DomainName", # required
|
1384
|
-
# }
|
1385
|
-
#
|
1386
1505
|
# @!attribute [rw] domain_name
|
1387
1506
|
# The name of the domain that you want to get detailed information
|
1388
1507
|
# about.
|
@@ -1403,7 +1522,7 @@ module Aws::Route53Domains
|
|
1403
1522
|
# @return [String]
|
1404
1523
|
#
|
1405
1524
|
# @!attribute [rw] nameservers
|
1406
|
-
# The name of the domain.
|
1525
|
+
# The name servers of the domain.
|
1407
1526
|
# @return [Array<Types::Nameserver>]
|
1408
1527
|
#
|
1409
1528
|
# @!attribute [rw] auto_renew
|
@@ -1530,6 +1649,11 @@ module Aws::Route53Domains
|
|
1530
1649
|
# [1]: https://www.icann.org/
|
1531
1650
|
# @return [Array<String>]
|
1532
1651
|
#
|
1652
|
+
# @!attribute [rw] dnssec_keys
|
1653
|
+
# A complex type that contains information about the DNSSEC
|
1654
|
+
# configuration.
|
1655
|
+
# @return [Array<Types::DnssecKey>]
|
1656
|
+
#
|
1533
1657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainDetailResponse AWS API Documentation
|
1534
1658
|
#
|
1535
1659
|
class GetDomainDetailResponse < Struct.new(
|
@@ -1553,20 +1677,12 @@ module Aws::Route53Domains
|
|
1553
1677
|
:expiration_date,
|
1554
1678
|
:reseller,
|
1555
1679
|
:dns_sec,
|
1556
|
-
:status_list
|
1680
|
+
:status_list,
|
1681
|
+
:dnssec_keys)
|
1557
1682
|
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
|
1558
1683
|
include Aws::Structure
|
1559
1684
|
end
|
1560
1685
|
|
1561
|
-
# @note When making an API call, you may pass GetDomainSuggestionsRequest
|
1562
|
-
# data as a hash:
|
1563
|
-
#
|
1564
|
-
# {
|
1565
|
-
# domain_name: "DomainName", # required
|
1566
|
-
# suggestion_count: 1, # required
|
1567
|
-
# only_available: false, # required
|
1568
|
-
# }
|
1569
|
-
#
|
1570
1686
|
# @!attribute [rw] domain_name
|
1571
1687
|
# A domain name that you want to use as the basis for a list of
|
1572
1688
|
# possible domain names. The top-level domain (TLD), such as .com,
|
@@ -1639,13 +1755,6 @@ module Aws::Route53Domains
|
|
1639
1755
|
#
|
1640
1756
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1641
1757
|
#
|
1642
|
-
# @note When making an API call, you may pass GetOperationDetailRequest
|
1643
|
-
# data as a hash:
|
1644
|
-
#
|
1645
|
-
# {
|
1646
|
-
# operation_id: "OperationId", # required
|
1647
|
-
# }
|
1648
|
-
#
|
1649
1758
|
# @!attribute [rw] operation_id
|
1650
1759
|
# The identifier for the operation for which you want to get the
|
1651
1760
|
# status. Route 53 returned the identifier in the response to the
|
@@ -1686,6 +1795,35 @@ module Aws::Route53Domains
|
|
1686
1795
|
# The date when the request was submitted.
|
1687
1796
|
# @return [Time]
|
1688
1797
|
#
|
1798
|
+
# @!attribute [rw] last_updated_date
|
1799
|
+
# The date when the operation was last updated.
|
1800
|
+
# @return [Time]
|
1801
|
+
#
|
1802
|
+
# @!attribute [rw] status_flag
|
1803
|
+
# Lists any outstanding operations that require customer action. Valid
|
1804
|
+
# values are:
|
1805
|
+
#
|
1806
|
+
# * `PENDING_ACCEPTANCE`\: The operation is waiting for acceptance
|
1807
|
+
# from the account that is receiving the domain.
|
1808
|
+
#
|
1809
|
+
# * `PENDING_CUSTOMER_ACTION`\: The operation is waiting for customer
|
1810
|
+
# action, for example, returning an email.
|
1811
|
+
#
|
1812
|
+
# * `PENDING_AUTHORIZATION`\: The operation is waiting for the form of
|
1813
|
+
# authorization. For more information, see
|
1814
|
+
# [ResendOperationAuthorization][1].
|
1815
|
+
#
|
1816
|
+
# * `PENDING_PAYMENT_VERIFICATION`\: The operation is waiting for the
|
1817
|
+
# payment method to validate.
|
1818
|
+
#
|
1819
|
+
# * `PENDING_SUPPORT_CASE`\: The operation includes a support case and
|
1820
|
+
# is waiting for its resolution.
|
1821
|
+
#
|
1822
|
+
#
|
1823
|
+
#
|
1824
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ResendOperationAuthorization.html
|
1825
|
+
# @return [String]
|
1826
|
+
#
|
1689
1827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetailResponse AWS API Documentation
|
1690
1828
|
#
|
1691
1829
|
class GetOperationDetailResponse < Struct.new(
|
@@ -1694,7 +1832,9 @@ module Aws::Route53Domains
|
|
1694
1832
|
:message,
|
1695
1833
|
:domain_name,
|
1696
1834
|
:type,
|
1697
|
-
:submitted_date
|
1835
|
+
:submitted_date,
|
1836
|
+
:last_updated_date,
|
1837
|
+
:status_flag)
|
1698
1838
|
SENSITIVE = []
|
1699
1839
|
include Aws::Structure
|
1700
1840
|
end
|
@@ -1722,25 +1862,6 @@ module Aws::Route53Domains
|
|
1722
1862
|
|
1723
1863
|
# The ListDomains request includes the following elements.
|
1724
1864
|
#
|
1725
|
-
# @note When making an API call, you may pass ListDomainsRequest
|
1726
|
-
# data as a hash:
|
1727
|
-
#
|
1728
|
-
# {
|
1729
|
-
# filter_conditions: [
|
1730
|
-
# {
|
1731
|
-
# name: "DomainName", # required, accepts DomainName, Expiry
|
1732
|
-
# operator: "LE", # required, accepts LE, GE, BEGINS_WITH
|
1733
|
-
# values: ["Value"], # required
|
1734
|
-
# },
|
1735
|
-
# ],
|
1736
|
-
# sort_condition: {
|
1737
|
-
# name: "DomainName", # required, accepts DomainName, Expiry
|
1738
|
-
# sort_order: "ASC", # required, accepts ASC, DESC
|
1739
|
-
# },
|
1740
|
-
# marker: "PageMarker",
|
1741
|
-
# max_items: 1,
|
1742
|
-
# }
|
1743
|
-
#
|
1744
1865
|
# @!attribute [rw] filter_conditions
|
1745
1866
|
# A complex type that contains information about the filters applied
|
1746
1867
|
# during the `ListDomains` request. The filter conditions can include
|
@@ -1805,15 +1926,6 @@ module Aws::Route53Domains
|
|
1805
1926
|
|
1806
1927
|
# The ListOperations request includes the following elements.
|
1807
1928
|
#
|
1808
|
-
# @note When making an API call, you may pass ListOperationsRequest
|
1809
|
-
# data as a hash:
|
1810
|
-
#
|
1811
|
-
# {
|
1812
|
-
# submitted_since: Time.now,
|
1813
|
-
# marker: "PageMarker",
|
1814
|
-
# max_items: 1,
|
1815
|
-
# }
|
1816
|
-
#
|
1817
1929
|
# @!attribute [rw] submitted_since
|
1818
1930
|
# An optional parameter that lets you get information about all the
|
1819
1931
|
# operations that you submitted after a specified date and time.
|
@@ -1837,12 +1949,32 @@ module Aws::Route53Domains
|
|
1837
1949
|
# Default: 20
|
1838
1950
|
# @return [Integer]
|
1839
1951
|
#
|
1952
|
+
# @!attribute [rw] status
|
1953
|
+
# The status of the operations.
|
1954
|
+
# @return [Array<String>]
|
1955
|
+
#
|
1956
|
+
# @!attribute [rw] type
|
1957
|
+
# An arrays of the domains operation types.
|
1958
|
+
# @return [Array<String>]
|
1959
|
+
#
|
1960
|
+
# @!attribute [rw] sort_by
|
1961
|
+
# The sort type for returned values.
|
1962
|
+
# @return [String]
|
1963
|
+
#
|
1964
|
+
# @!attribute [rw] sort_order
|
1965
|
+
# The sort order ofr returned values, either ascending or descending.
|
1966
|
+
# @return [String]
|
1967
|
+
#
|
1840
1968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListOperationsRequest AWS API Documentation
|
1841
1969
|
#
|
1842
1970
|
class ListOperationsRequest < Struct.new(
|
1843
1971
|
:submitted_since,
|
1844
1972
|
:marker,
|
1845
|
-
:max_items
|
1973
|
+
:max_items,
|
1974
|
+
:status,
|
1975
|
+
:type,
|
1976
|
+
:sort_by,
|
1977
|
+
:sort_order)
|
1846
1978
|
SENSITIVE = []
|
1847
1979
|
include Aws::Structure
|
1848
1980
|
end
|
@@ -1868,15 +2000,6 @@ module Aws::Route53Domains
|
|
1868
2000
|
include Aws::Structure
|
1869
2001
|
end
|
1870
2002
|
|
1871
|
-
# @note When making an API call, you may pass ListPricesRequest
|
1872
|
-
# data as a hash:
|
1873
|
-
#
|
1874
|
-
# {
|
1875
|
-
# tld: "TldName",
|
1876
|
-
# marker: "PageMarker",
|
1877
|
-
# max_items: 1,
|
1878
|
-
# }
|
1879
|
-
#
|
1880
2003
|
# @!attribute [rw] tld
|
1881
2004
|
# The TLD for which you want to receive the pricing information. For
|
1882
2005
|
# example. `.net`.
|
@@ -1939,13 +2062,6 @@ module Aws::Route53Domains
|
|
1939
2062
|
|
1940
2063
|
# The ListTagsForDomainRequest includes the following elements.
|
1941
2064
|
#
|
1942
|
-
# @note When making an API call, you may pass ListTagsForDomainRequest
|
1943
|
-
# data as a hash:
|
1944
|
-
#
|
1945
|
-
# {
|
1946
|
-
# domain_name: "DomainName", # required
|
1947
|
-
# }
|
1948
|
-
#
|
1949
2065
|
# @!attribute [rw] domain_name
|
1950
2066
|
# The domain for which you want to get a list of tags.
|
1951
2067
|
# @return [String]
|
@@ -1972,15 +2088,7 @@ module Aws::Route53Domains
|
|
1972
2088
|
include Aws::Structure
|
1973
2089
|
end
|
1974
2090
|
|
1975
|
-
#
|
1976
|
-
#
|
1977
|
-
# @note When making an API call, you may pass Nameserver
|
1978
|
-
# data as a hash:
|
1979
|
-
#
|
1980
|
-
# {
|
1981
|
-
# name: "HostName", # required
|
1982
|
-
# glue_ips: ["GlueIp"],
|
1983
|
-
# }
|
2091
|
+
# Name server includes the following elements.
|
1984
2092
|
#
|
1985
2093
|
# @!attribute [rw] name
|
1986
2094
|
# The fully qualified host name of the name server.
|
@@ -2042,13 +2150,57 @@ module Aws::Route53Domains
|
|
2042
2150
|
# The date when the request was submitted.
|
2043
2151
|
# @return [Time]
|
2044
2152
|
#
|
2153
|
+
# @!attribute [rw] domain_name
|
2154
|
+
# Name of the domain.
|
2155
|
+
# @return [String]
|
2156
|
+
#
|
2157
|
+
# @!attribute [rw] message
|
2158
|
+
# Message about the operation.
|
2159
|
+
# @return [String]
|
2160
|
+
#
|
2161
|
+
# @!attribute [rw] status_flag
|
2162
|
+
# Automatically checks whether there are no outstanding operations on
|
2163
|
+
# domains that need customer attention.
|
2164
|
+
#
|
2165
|
+
# Valid values are:
|
2166
|
+
#
|
2167
|
+
# * `PENDING_ACCEPTANCE`\: The operation is waiting for acceptance
|
2168
|
+
# from the account that is receiving the domain.
|
2169
|
+
#
|
2170
|
+
# * `PENDING_CUSTOMER_ACTION`\: The operation is waiting for customer
|
2171
|
+
# action, for example, returning an email.
|
2172
|
+
#
|
2173
|
+
# * `PENDING_AUTHORIZATION`\: The operation is waiting for the form of
|
2174
|
+
# authorization. For more information, see
|
2175
|
+
# [ResendOperationAuthorization][1].
|
2176
|
+
#
|
2177
|
+
# * `PENDING_PAYMENT_VERIFICATION`\: The operation is waiting for the
|
2178
|
+
# payment method to validate.
|
2179
|
+
#
|
2180
|
+
# * `PENDING_SUPPORT_CASE`\: The operation includes a support case and
|
2181
|
+
# is waiting for its resolution.
|
2182
|
+
#
|
2183
|
+
#
|
2184
|
+
#
|
2185
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ResendOperationAuthorization.html
|
2186
|
+
# @return [String]
|
2187
|
+
#
|
2188
|
+
# @!attribute [rw] last_updated_date
|
2189
|
+
# The date when the last change was made in Unix time format and
|
2190
|
+
# Coordinated Universal Time (UTC).
|
2191
|
+
# @return [Time]
|
2192
|
+
#
|
2045
2193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/OperationSummary AWS API Documentation
|
2046
2194
|
#
|
2047
2195
|
class OperationSummary < Struct.new(
|
2048
2196
|
:operation_id,
|
2049
2197
|
:status,
|
2050
2198
|
:type,
|
2051
|
-
:submitted_date
|
2199
|
+
:submitted_date,
|
2200
|
+
:domain_name,
|
2201
|
+
:message,
|
2202
|
+
:status_flag,
|
2203
|
+
:last_updated_date)
|
2052
2204
|
SENSITIVE = []
|
2053
2205
|
include Aws::Structure
|
2054
2206
|
end
|
@@ -2072,83 +2224,24 @@ module Aws::Route53Domains
|
|
2072
2224
|
include Aws::Structure
|
2073
2225
|
end
|
2074
2226
|
|
2075
|
-
#
|
2227
|
+
# @!attribute [rw] domain_name
|
2228
|
+
# Name of the domain.
|
2229
|
+
# @return [String]
|
2230
|
+
#
|
2231
|
+
# @!attribute [rw] target
|
2232
|
+
# New IPS tag for the domain.
|
2233
|
+
# @return [String]
|
2076
2234
|
#
|
2077
|
-
# @
|
2078
|
-
#
|
2079
|
-
|
2080
|
-
|
2081
|
-
|
2082
|
-
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
#
|
2087
|
-
# last_name: "ContactName",
|
2088
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2089
|
-
# organization_name: "ContactName",
|
2090
|
-
# address_line_1: "AddressLine",
|
2091
|
-
# address_line_2: "AddressLine",
|
2092
|
-
# city: "City",
|
2093
|
-
# state: "State",
|
2094
|
-
# country_code: "AC", # accepts 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
|
2095
|
-
# zip_code: "ZipCode",
|
2096
|
-
# phone_number: "ContactNumber",
|
2097
|
-
# email: "Email",
|
2098
|
-
# fax: "ContactNumber",
|
2099
|
-
# extra_params: [
|
2100
|
-
# {
|
2101
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
2102
|
-
# value: "ExtraParamValue", # required
|
2103
|
-
# },
|
2104
|
-
# ],
|
2105
|
-
# },
|
2106
|
-
# registrant_contact: { # required
|
2107
|
-
# first_name: "ContactName",
|
2108
|
-
# last_name: "ContactName",
|
2109
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2110
|
-
# organization_name: "ContactName",
|
2111
|
-
# address_line_1: "AddressLine",
|
2112
|
-
# address_line_2: "AddressLine",
|
2113
|
-
# city: "City",
|
2114
|
-
# state: "State",
|
2115
|
-
# country_code: "AC", # accepts 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
|
2116
|
-
# zip_code: "ZipCode",
|
2117
|
-
# phone_number: "ContactNumber",
|
2118
|
-
# email: "Email",
|
2119
|
-
# fax: "ContactNumber",
|
2120
|
-
# extra_params: [
|
2121
|
-
# {
|
2122
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
2123
|
-
# value: "ExtraParamValue", # required
|
2124
|
-
# },
|
2125
|
-
# ],
|
2126
|
-
# },
|
2127
|
-
# tech_contact: { # required
|
2128
|
-
# first_name: "ContactName",
|
2129
|
-
# last_name: "ContactName",
|
2130
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2131
|
-
# organization_name: "ContactName",
|
2132
|
-
# address_line_1: "AddressLine",
|
2133
|
-
# address_line_2: "AddressLine",
|
2134
|
-
# city: "City",
|
2135
|
-
# state: "State",
|
2136
|
-
# country_code: "AC", # accepts 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
|
2137
|
-
# zip_code: "ZipCode",
|
2138
|
-
# phone_number: "ContactNumber",
|
2139
|
-
# email: "Email",
|
2140
|
-
# fax: "ContactNumber",
|
2141
|
-
# extra_params: [
|
2142
|
-
# {
|
2143
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
2144
|
-
# value: "ExtraParamValue", # required
|
2145
|
-
# },
|
2146
|
-
# ],
|
2147
|
-
# },
|
2148
|
-
# privacy_protect_admin_contact: false,
|
2149
|
-
# privacy_protect_registrant_contact: false,
|
2150
|
-
# privacy_protect_tech_contact: false,
|
2151
|
-
# }
|
2235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/PushDomainRequest AWS API Documentation
|
2236
|
+
#
|
2237
|
+
class PushDomainRequest < Struct.new(
|
2238
|
+
:domain_name,
|
2239
|
+
:target)
|
2240
|
+
SENSITIVE = []
|
2241
|
+
include Aws::Structure
|
2242
|
+
end
|
2243
|
+
|
2244
|
+
# The RegisterDomain request includes the following elements.
|
2152
2245
|
#
|
2153
2246
|
# @!attribute [rw] domain_name
|
2154
2247
|
# The domain name that you want to register. The top-level domain
|
@@ -2200,8 +2293,8 @@ module Aws::Route53Domains
|
|
2200
2293
|
#
|
2201
2294
|
# @!attribute [rw] auto_renew
|
2202
2295
|
# Indicates whether the domain will be automatically renewed (`true`)
|
2203
|
-
# or not (`false`).
|
2204
|
-
# charged.
|
2296
|
+
# or not (`false`). Auto renewal only takes effect after the account
|
2297
|
+
# is charged.
|
2205
2298
|
#
|
2206
2299
|
# Default: `true`
|
2207
2300
|
# @return [Boolean]
|
@@ -2320,13 +2413,6 @@ module Aws::Route53Domains
|
|
2320
2413
|
# The RejectDomainTransferFromAnotherAwsAccount request includes the
|
2321
2414
|
# following element.
|
2322
2415
|
#
|
2323
|
-
# @note When making an API call, you may pass RejectDomainTransferFromAnotherAwsAccountRequest
|
2324
|
-
# data as a hash:
|
2325
|
-
#
|
2326
|
-
# {
|
2327
|
-
# domain_name: "DomainName", # required
|
2328
|
-
# }
|
2329
|
-
#
|
2330
2416
|
# @!attribute [rw] domain_name
|
2331
2417
|
# The name of the domain that was specified when another Amazon Web
|
2332
2418
|
# Services account submitted a [TransferDomainToAnotherAwsAccount][1]
|
@@ -2366,15 +2452,6 @@ module Aws::Route53Domains
|
|
2366
2452
|
# A `RenewDomain` request includes the number of years that you want to
|
2367
2453
|
# renew for and the current expiration year.
|
2368
2454
|
#
|
2369
|
-
# @note When making an API call, you may pass RenewDomainRequest
|
2370
|
-
# data as a hash:
|
2371
|
-
#
|
2372
|
-
# {
|
2373
|
-
# domain_name: "DomainName", # required
|
2374
|
-
# duration_in_years: 1,
|
2375
|
-
# current_expiry_year: 1, # required
|
2376
|
-
# }
|
2377
|
-
#
|
2378
2455
|
# @!attribute [rw] domain_name
|
2379
2456
|
# The name of the domain that you want to renew.
|
2380
2457
|
# @return [String]
|
@@ -2425,13 +2502,6 @@ module Aws::Route53Domains
|
|
2425
2502
|
include Aws::Structure
|
2426
2503
|
end
|
2427
2504
|
|
2428
|
-
# @note When making an API call, you may pass ResendContactReachabilityEmailRequest
|
2429
|
-
# data as a hash:
|
2430
|
-
#
|
2431
|
-
# {
|
2432
|
-
# domain_name: "DomainName",
|
2433
|
-
# }
|
2434
|
-
#
|
2435
2505
|
# @!attribute [rw] domain_name
|
2436
2506
|
# The name of the domain for which you want Route 53 to resend a
|
2437
2507
|
# confirmation email to the registrant contact.
|
@@ -2470,17 +2540,22 @@ module Aws::Route53Domains
|
|
2470
2540
|
include Aws::Structure
|
2471
2541
|
end
|
2472
2542
|
|
2543
|
+
# @!attribute [rw] operation_id
|
2544
|
+
# Operation ID.
|
2545
|
+
# @return [String]
|
2546
|
+
#
|
2547
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ResendOperationAuthorizationRequest AWS API Documentation
|
2548
|
+
#
|
2549
|
+
class ResendOperationAuthorizationRequest < Struct.new(
|
2550
|
+
:operation_id)
|
2551
|
+
SENSITIVE = []
|
2552
|
+
include Aws::Structure
|
2553
|
+
end
|
2554
|
+
|
2473
2555
|
# A request for the authorization code for the specified domain. To
|
2474
2556
|
# transfer a domain to another registrar, you provide this value to the
|
2475
2557
|
# new registrar.
|
2476
2558
|
#
|
2477
|
-
# @note When making an API call, you may pass RetrieveDomainAuthCodeRequest
|
2478
|
-
# data as a hash:
|
2479
|
-
#
|
2480
|
-
# {
|
2481
|
-
# domain_name: "DomainName", # required
|
2482
|
-
# }
|
2483
|
-
#
|
2484
2559
|
# @!attribute [rw] domain_name
|
2485
2560
|
# The name of the domain that you want to get an authorization code
|
2486
2561
|
# for.
|
@@ -2510,14 +2585,6 @@ module Aws::Route53Domains
|
|
2510
2585
|
|
2511
2586
|
# Information for sorting a list of domains.
|
2512
2587
|
#
|
2513
|
-
# @note When making an API call, you may pass SortCondition
|
2514
|
-
# data as a hash:
|
2515
|
-
#
|
2516
|
-
# {
|
2517
|
-
# name: "DomainName", # required, accepts DomainName, Expiry
|
2518
|
-
# sort_order: "ASC", # required, accepts ASC, DESC
|
2519
|
-
# }
|
2520
|
-
#
|
2521
2588
|
# @!attribute [rw] name
|
2522
2589
|
# Field to be used for sorting the list of domains. It can be either
|
2523
2590
|
# the name or the expiration for a domain. Note that if
|
@@ -2560,14 +2627,6 @@ module Aws::Route53Domains
|
|
2560
2627
|
|
2561
2628
|
# Each tag includes the following elements.
|
2562
2629
|
#
|
2563
|
-
# @note When making an API call, you may pass Tag
|
2564
|
-
# data as a hash:
|
2565
|
-
#
|
2566
|
-
# {
|
2567
|
-
# key: "TagKey",
|
2568
|
-
# value: "TagValue",
|
2569
|
-
# }
|
2570
|
-
#
|
2571
2630
|
# @!attribute [rw] key
|
2572
2631
|
# The key (name) of a tag.
|
2573
2632
|
#
|
@@ -2595,89 +2654,6 @@ module Aws::Route53Domains
|
|
2595
2654
|
|
2596
2655
|
# The TransferDomain request includes the following elements.
|
2597
2656
|
#
|
2598
|
-
# @note When making an API call, you may pass TransferDomainRequest
|
2599
|
-
# data as a hash:
|
2600
|
-
#
|
2601
|
-
# {
|
2602
|
-
# domain_name: "DomainName", # required
|
2603
|
-
# idn_lang_code: "LangCode",
|
2604
|
-
# duration_in_years: 1, # required
|
2605
|
-
# nameservers: [
|
2606
|
-
# {
|
2607
|
-
# name: "HostName", # required
|
2608
|
-
# glue_ips: ["GlueIp"],
|
2609
|
-
# },
|
2610
|
-
# ],
|
2611
|
-
# auth_code: "DomainAuthCode",
|
2612
|
-
# auto_renew: false,
|
2613
|
-
# admin_contact: { # required
|
2614
|
-
# first_name: "ContactName",
|
2615
|
-
# last_name: "ContactName",
|
2616
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2617
|
-
# organization_name: "ContactName",
|
2618
|
-
# address_line_1: "AddressLine",
|
2619
|
-
# address_line_2: "AddressLine",
|
2620
|
-
# city: "City",
|
2621
|
-
# state: "State",
|
2622
|
-
# country_code: "AC", # accepts 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
|
2623
|
-
# zip_code: "ZipCode",
|
2624
|
-
# phone_number: "ContactNumber",
|
2625
|
-
# email: "Email",
|
2626
|
-
# fax: "ContactNumber",
|
2627
|
-
# extra_params: [
|
2628
|
-
# {
|
2629
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
2630
|
-
# value: "ExtraParamValue", # required
|
2631
|
-
# },
|
2632
|
-
# ],
|
2633
|
-
# },
|
2634
|
-
# registrant_contact: { # required
|
2635
|
-
# first_name: "ContactName",
|
2636
|
-
# last_name: "ContactName",
|
2637
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2638
|
-
# organization_name: "ContactName",
|
2639
|
-
# address_line_1: "AddressLine",
|
2640
|
-
# address_line_2: "AddressLine",
|
2641
|
-
# city: "City",
|
2642
|
-
# state: "State",
|
2643
|
-
# country_code: "AC", # accepts 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
|
2644
|
-
# zip_code: "ZipCode",
|
2645
|
-
# phone_number: "ContactNumber",
|
2646
|
-
# email: "Email",
|
2647
|
-
# fax: "ContactNumber",
|
2648
|
-
# extra_params: [
|
2649
|
-
# {
|
2650
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
2651
|
-
# value: "ExtraParamValue", # required
|
2652
|
-
# },
|
2653
|
-
# ],
|
2654
|
-
# },
|
2655
|
-
# tech_contact: { # required
|
2656
|
-
# first_name: "ContactName",
|
2657
|
-
# last_name: "ContactName",
|
2658
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2659
|
-
# organization_name: "ContactName",
|
2660
|
-
# address_line_1: "AddressLine",
|
2661
|
-
# address_line_2: "AddressLine",
|
2662
|
-
# city: "City",
|
2663
|
-
# state: "State",
|
2664
|
-
# country_code: "AC", # accepts 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
|
2665
|
-
# zip_code: "ZipCode",
|
2666
|
-
# phone_number: "ContactNumber",
|
2667
|
-
# email: "Email",
|
2668
|
-
# fax: "ContactNumber",
|
2669
|
-
# extra_params: [
|
2670
|
-
# {
|
2671
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
2672
|
-
# value: "ExtraParamValue", # required
|
2673
|
-
# },
|
2674
|
-
# ],
|
2675
|
-
# },
|
2676
|
-
# privacy_protect_admin_contact: false,
|
2677
|
-
# privacy_protect_registrant_contact: false,
|
2678
|
-
# privacy_protect_tech_contact: false,
|
2679
|
-
# }
|
2680
|
-
#
|
2681
2657
|
# @!attribute [rw] domain_name
|
2682
2658
|
# The name of the domain that you want to transfer to Route 53. The
|
2683
2659
|
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
@@ -2725,7 +2701,7 @@ module Aws::Route53Domains
|
|
2725
2701
|
#
|
2726
2702
|
# @!attribute [rw] auto_renew
|
2727
2703
|
# Indicates whether the domain will be automatically renewed (true) or
|
2728
|
-
# not (false).
|
2704
|
+
# not (false). Auto renewal only takes effect after the account is
|
2729
2705
|
# charged.
|
2730
2706
|
#
|
2731
2707
|
# Default: true
|
@@ -2832,14 +2808,6 @@ module Aws::Route53Domains
|
|
2832
2808
|
# The TransferDomainToAnotherAwsAccount request includes the following
|
2833
2809
|
# elements.
|
2834
2810
|
#
|
2835
|
-
# @note When making an API call, you may pass TransferDomainToAnotherAwsAccountRequest
|
2836
|
-
# data as a hash:
|
2837
|
-
#
|
2838
|
-
# {
|
2839
|
-
# domain_name: "DomainName", # required
|
2840
|
-
# account_id: "AccountId", # required
|
2841
|
-
# }
|
2842
|
-
#
|
2843
2811
|
# @!attribute [rw] domain_name
|
2844
2812
|
# The name of the domain that you want to transfer from the current
|
2845
2813
|
# Amazon Web Services account to another account.
|
@@ -2909,16 +2877,6 @@ module Aws::Route53Domains
|
|
2909
2877
|
# The UpdateDomainContactPrivacy request includes the following
|
2910
2878
|
# elements.
|
2911
2879
|
#
|
2912
|
-
# @note When making an API call, you may pass UpdateDomainContactPrivacyRequest
|
2913
|
-
# data as a hash:
|
2914
|
-
#
|
2915
|
-
# {
|
2916
|
-
# domain_name: "DomainName", # required
|
2917
|
-
# admin_privacy: false,
|
2918
|
-
# registrant_privacy: false,
|
2919
|
-
# tech_privacy: false,
|
2920
|
-
# }
|
2921
|
-
#
|
2922
2880
|
# @!attribute [rw] domain_name
|
2923
2881
|
# The name of the domain that you want to update the privacy setting
|
2924
2882
|
# for.
|
@@ -2995,76 +2953,6 @@ module Aws::Route53Domains
|
|
2995
2953
|
|
2996
2954
|
# The UpdateDomainContact request includes the following elements.
|
2997
2955
|
#
|
2998
|
-
# @note When making an API call, you may pass UpdateDomainContactRequest
|
2999
|
-
# data as a hash:
|
3000
|
-
#
|
3001
|
-
# {
|
3002
|
-
# domain_name: "DomainName", # required
|
3003
|
-
# admin_contact: {
|
3004
|
-
# first_name: "ContactName",
|
3005
|
-
# last_name: "ContactName",
|
3006
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
3007
|
-
# organization_name: "ContactName",
|
3008
|
-
# address_line_1: "AddressLine",
|
3009
|
-
# address_line_2: "AddressLine",
|
3010
|
-
# city: "City",
|
3011
|
-
# state: "State",
|
3012
|
-
# country_code: "AC", # accepts 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
|
3013
|
-
# zip_code: "ZipCode",
|
3014
|
-
# phone_number: "ContactNumber",
|
3015
|
-
# email: "Email",
|
3016
|
-
# fax: "ContactNumber",
|
3017
|
-
# extra_params: [
|
3018
|
-
# {
|
3019
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
3020
|
-
# value: "ExtraParamValue", # required
|
3021
|
-
# },
|
3022
|
-
# ],
|
3023
|
-
# },
|
3024
|
-
# registrant_contact: {
|
3025
|
-
# first_name: "ContactName",
|
3026
|
-
# last_name: "ContactName",
|
3027
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
3028
|
-
# organization_name: "ContactName",
|
3029
|
-
# address_line_1: "AddressLine",
|
3030
|
-
# address_line_2: "AddressLine",
|
3031
|
-
# city: "City",
|
3032
|
-
# state: "State",
|
3033
|
-
# country_code: "AC", # accepts 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
|
3034
|
-
# zip_code: "ZipCode",
|
3035
|
-
# phone_number: "ContactNumber",
|
3036
|
-
# email: "Email",
|
3037
|
-
# fax: "ContactNumber",
|
3038
|
-
# extra_params: [
|
3039
|
-
# {
|
3040
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
3041
|
-
# value: "ExtraParamValue", # required
|
3042
|
-
# },
|
3043
|
-
# ],
|
3044
|
-
# },
|
3045
|
-
# tech_contact: {
|
3046
|
-
# first_name: "ContactName",
|
3047
|
-
# last_name: "ContactName",
|
3048
|
-
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
3049
|
-
# organization_name: "ContactName",
|
3050
|
-
# address_line_1: "AddressLine",
|
3051
|
-
# address_line_2: "AddressLine",
|
3052
|
-
# city: "City",
|
3053
|
-
# state: "State",
|
3054
|
-
# country_code: "AC", # accepts 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
|
3055
|
-
# zip_code: "ZipCode",
|
3056
|
-
# phone_number: "ContactNumber",
|
3057
|
-
# email: "Email",
|
3058
|
-
# fax: "ContactNumber",
|
3059
|
-
# extra_params: [
|
3060
|
-
# {
|
3061
|
-
# name: "DUNS_NUMBER", # required, accepts 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
|
3062
|
-
# value: "ExtraParamValue", # required
|
3063
|
-
# },
|
3064
|
-
# ],
|
3065
|
-
# },
|
3066
|
-
# }
|
3067
|
-
#
|
3068
2956
|
# @!attribute [rw] domain_name
|
3069
2957
|
# The name of the domain that you want to update contact information
|
3070
2958
|
# for.
|
@@ -3082,13 +2970,18 @@ module Aws::Route53Domains
|
|
3082
2970
|
# Provides detailed contact information.
|
3083
2971
|
# @return [Types::ContactDetail]
|
3084
2972
|
#
|
2973
|
+
# @!attribute [rw] consent
|
2974
|
+
# Customer's consent for the owner change request.
|
2975
|
+
# @return [Types::Consent]
|
2976
|
+
#
|
3085
2977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactRequest AWS API Documentation
|
3086
2978
|
#
|
3087
2979
|
class UpdateDomainContactRequest < Struct.new(
|
3088
2980
|
:domain_name,
|
3089
2981
|
:admin_contact,
|
3090
2982
|
:registrant_contact,
|
3091
|
-
:tech_contact
|
2983
|
+
:tech_contact,
|
2984
|
+
:consent)
|
3092
2985
|
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
|
3093
2986
|
include Aws::Structure
|
3094
2987
|
end
|
@@ -3122,20 +3015,6 @@ module Aws::Route53Domains
|
|
3122
3015
|
# not completed successfully, the domain registrant will be notified by
|
3123
3016
|
# email.
|
3124
3017
|
#
|
3125
|
-
# @note When making an API call, you may pass UpdateDomainNameserversRequest
|
3126
|
-
# data as a hash:
|
3127
|
-
#
|
3128
|
-
# {
|
3129
|
-
# domain_name: "DomainName", # required
|
3130
|
-
# fi_auth_key: "FIAuthKey",
|
3131
|
-
# nameservers: [ # required
|
3132
|
-
# {
|
3133
|
-
# name: "HostName", # required
|
3134
|
-
# glue_ips: ["GlueIp"],
|
3135
|
-
# },
|
3136
|
-
# ],
|
3137
|
-
# }
|
3138
|
-
#
|
3139
3018
|
# @!attribute [rw] domain_name
|
3140
3019
|
# The name of the domain that you want to change name servers for.
|
3141
3020
|
# @return [String]
|
@@ -3179,19 +3058,6 @@ module Aws::Route53Domains
|
|
3179
3058
|
|
3180
3059
|
# The UpdateTagsForDomainRequest includes the following elements.
|
3181
3060
|
#
|
3182
|
-
# @note When making an API call, you may pass UpdateTagsForDomainRequest
|
3183
|
-
# data as a hash:
|
3184
|
-
#
|
3185
|
-
# {
|
3186
|
-
# domain_name: "DomainName", # required
|
3187
|
-
# tags_to_update: [
|
3188
|
-
# {
|
3189
|
-
# key: "TagKey",
|
3190
|
-
# value: "TagValue",
|
3191
|
-
# },
|
3192
|
-
# ],
|
3193
|
-
# }
|
3194
|
-
#
|
3195
3061
|
# @!attribute [rw] domain_name
|
3196
3062
|
# The domain for which you want to add or update tags.
|
3197
3063
|
# @return [String]
|
@@ -3217,16 +3083,6 @@ module Aws::Route53Domains
|
|
3217
3083
|
|
3218
3084
|
# The ViewBilling request includes the following elements.
|
3219
3085
|
#
|
3220
|
-
# @note When making an API call, you may pass ViewBillingRequest
|
3221
|
-
# data as a hash:
|
3222
|
-
#
|
3223
|
-
# {
|
3224
|
-
# start: Time.now,
|
3225
|
-
# end: Time.now,
|
3226
|
-
# marker: "PageMarker",
|
3227
|
-
# max_items: 1,
|
3228
|
-
# }
|
3229
|
-
#
|
3230
3086
|
# @!attribute [rw] start
|
3231
3087
|
# The beginning date and time for the time period for which you want a
|
3232
3088
|
# list of billing records. Specify the date and time in Unix time
|