aws-sdk-route53domains 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-route53domains.rb +1 -1
- data/lib/aws-sdk-route53domains/client.rb +84 -56
- data/lib/aws-sdk-route53domains/client_api.rb +1 -0
- data/lib/aws-sdk-route53domains/types.rb +116 -45
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f15e593224b7a7c1d12df7ac4b9488e9820f31a7
|
4
|
+
data.tar.gz: fcc34d0bbe6201e5ebb2bf6897b43fd018362449
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f558ac10141db65f2b0933de2804bfde707322f7f00808184f3e5fdf0dba862936c39ee44df43f5d242e4b86824c699c45673898eb41705b0fccf16574ca157
|
7
|
+
data.tar.gz: f884ece0fe1a479162fc47e05a446696167206599f3ef29c121c17f469f0f6be95cab8affbecf68926b3bb6d4f2f606726e325327d5f321cba3fcfd31b2b4d2b
|
@@ -324,9 +324,9 @@ module Aws::Route53Domains
|
|
324
324
|
# The period during which you can renew a domain name varies by TLD. For
|
325
325
|
# a list of TLDs and their renewal policies, see ["Renewal,
|
326
326
|
# restoration, and deletion times"][1] on the website for our registrar
|
327
|
-
#
|
328
|
-
# renewal period that is listed on the Gandi website so we
|
329
|
-
# processing before the deadline.
|
327
|
+
# associate, Gandi. Amazon Route 53 requires that you renew before the
|
328
|
+
# end of the renewal period that is listed on the Gandi website so we
|
329
|
+
# can complete processing before the deadline.
|
330
330
|
#
|
331
331
|
#
|
332
332
|
#
|
@@ -689,6 +689,11 @@ module Aws::Route53Domains
|
|
689
689
|
# This operation returns the operation IDs of operations that are not
|
690
690
|
# yet complete.
|
691
691
|
#
|
692
|
+
# @option params [Time,DateTime,Date,Integer,String] :submitted_since
|
693
|
+
# An optional parameter that lets you get information about all the
|
694
|
+
# operations that you submitted after a specified date and time. Specify
|
695
|
+
# the date and time in Coordinated Universal time (UTC).
|
696
|
+
#
|
692
697
|
# @option params [String] :marker
|
693
698
|
# For an initial request for a list of operations, omit this element. If
|
694
699
|
# the number of operations that are not yet complete is greater than the
|
@@ -710,6 +715,7 @@ module Aws::Route53Domains
|
|
710
715
|
# @example Request syntax with placeholder values
|
711
716
|
#
|
712
717
|
# resp = client.list_operations({
|
718
|
+
# submitted_since: Time.now,
|
713
719
|
# marker: "PageMarker",
|
714
720
|
# max_items: 1,
|
715
721
|
# })
|
@@ -766,9 +772,10 @@ module Aws::Route53Domains
|
|
766
772
|
req.send_request(options)
|
767
773
|
end
|
768
774
|
|
769
|
-
# This operation registers a domain. Domains are registered by
|
770
|
-
#
|
771
|
-
#
|
775
|
+
# This operation registers a domain. Domains are registered either by
|
776
|
+
# Amazon Registrar (for .com, .net, and .org domains) or by our
|
777
|
+
# registrar associate, Gandi (for all other domains). For some top-level
|
778
|
+
# domains (TLDs), this operation requires extra parameters.
|
772
779
|
#
|
773
780
|
# When you register a domain, Amazon Route 53 does the following:
|
774
781
|
#
|
@@ -782,8 +789,11 @@ module Aws::Route53Domains
|
|
782
789
|
# date so you can choose whether to renew the registration.
|
783
790
|
#
|
784
791
|
# * Optionally enables privacy protection, so WHOIS queries return
|
785
|
-
# contact information for
|
786
|
-
#
|
792
|
+
# contact information either for Amazon Registrar (for .com, .net, and
|
793
|
+
# .org domains) or for our registrar associate, Gandi (for all other
|
794
|
+
# TLDs). If you don't enable privacy protection, WHOIS queries return
|
795
|
+
# the information that you entered for the registrant, admin, and tech
|
796
|
+
# contacts.
|
787
797
|
#
|
788
798
|
# * If registration is successful, returns an operation ID that you can
|
789
799
|
# use to track the progress and completion of the action. If the
|
@@ -838,25 +848,31 @@ module Aws::Route53Domains
|
|
838
848
|
#
|
839
849
|
# @option params [Boolean] :privacy_protect_admin_contact
|
840
850
|
# Whether you want to conceal contact information from WHOIS queries. If
|
841
|
-
# you specify `true`, WHOIS ("who is") queries
|
842
|
-
# information for
|
843
|
-
#
|
851
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
852
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
853
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
854
|
+
# If you specify `false`, WHOIS queries return the information that you
|
855
|
+
# entered for the admin contact.
|
844
856
|
#
|
845
857
|
# Default: `true`
|
846
858
|
#
|
847
859
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
848
860
|
# Whether you want to conceal contact information from WHOIS queries. If
|
849
|
-
# you specify `true`, WHOIS ("who is") queries
|
850
|
-
# information for
|
851
|
-
#
|
861
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
862
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
863
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
864
|
+
# If you specify `false`, WHOIS queries return the information that you
|
865
|
+
# entered for the registrant contact (the domain owner).
|
852
866
|
#
|
853
867
|
# Default: `true`
|
854
868
|
#
|
855
869
|
# @option params [Boolean] :privacy_protect_tech_contact
|
856
870
|
# Whether you want to conceal contact information from WHOIS queries. If
|
857
|
-
# you specify `true`, WHOIS ("who is") queries
|
858
|
-
# information for
|
859
|
-
#
|
871
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
872
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
873
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
874
|
+
# If you specify `false`, WHOIS queries return the information that you
|
875
|
+
# entered for the technical contact.
|
860
876
|
#
|
861
877
|
# Default: `true`
|
862
878
|
#
|
@@ -1076,8 +1092,9 @@ module Aws::Route53Domains
|
|
1076
1092
|
end
|
1077
1093
|
|
1078
1094
|
# This operation transfers a domain from another registrar to Amazon
|
1079
|
-
# Route 53. When the transfer is complete, the domain is registered
|
1080
|
-
#
|
1095
|
+
# Route 53. When the transfer is complete, the domain is registered
|
1096
|
+
# either with Amazon Registrar (for .com, .net, and .org domains) or
|
1097
|
+
# with our registrar associate, Gandi (for all other TLDs).
|
1081
1098
|
#
|
1082
1099
|
# For transfer requirements, a detailed procedure, and information about
|
1083
1100
|
# viewing the status of a domain transfer, see [Transferring
|
@@ -1148,25 +1165,31 @@ module Aws::Route53Domains
|
|
1148
1165
|
#
|
1149
1166
|
# @option params [Boolean] :privacy_protect_admin_contact
|
1150
1167
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1151
|
-
# you specify `true`, WHOIS ("who is") queries
|
1152
|
-
# information for
|
1153
|
-
#
|
1168
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1169
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1170
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1171
|
+
# If you specify `false`, WHOIS queries return the information that you
|
1172
|
+
# entered for the admin contact.
|
1154
1173
|
#
|
1155
1174
|
# Default: `true`
|
1156
1175
|
#
|
1157
1176
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
1158
1177
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1159
|
-
# you specify `true`, WHOIS ("who is") queries
|
1160
|
-
# information for
|
1161
|
-
#
|
1178
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1179
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1180
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1181
|
+
# If you specify `false`, WHOIS queries return the information that you
|
1182
|
+
# entered for the registrant contact (domain owner).
|
1162
1183
|
#
|
1163
1184
|
# Default: `true`
|
1164
1185
|
#
|
1165
1186
|
# @option params [Boolean] :privacy_protect_tech_contact
|
1166
1187
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1167
|
-
# you specify `true`, WHOIS ("who is") queries
|
1168
|
-
# information for
|
1169
|
-
#
|
1188
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1189
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1190
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1191
|
+
# If you specify `false`, WHOIS queries return the information that you
|
1192
|
+
# entered for the technical contact.
|
1170
1193
|
#
|
1171
1194
|
# Default: `true`
|
1172
1195
|
#
|
@@ -1270,8 +1293,8 @@ module Aws::Route53Domains
|
|
1270
1293
|
end
|
1271
1294
|
|
1272
1295
|
# This operation updates the contact information for a particular
|
1273
|
-
# domain.
|
1274
|
-
# administrator, or technical
|
1296
|
+
# domain. You must specify information for at least one contact:
|
1297
|
+
# registrant, administrator, or technical.
|
1275
1298
|
#
|
1276
1299
|
# If the update is successful, this method returns an operation ID that
|
1277
1300
|
# you can use to track the progress and completion of the action. If the
|
@@ -1378,20 +1401,17 @@ module Aws::Route53Domains
|
|
1378
1401
|
end
|
1379
1402
|
|
1380
1403
|
# This operation updates the specified domain contact's privacy
|
1381
|
-
# setting. When
|
1382
|
-
# as
|
1383
|
-
#
|
1384
|
-
#
|
1385
|
-
#
|
1386
|
-
# This operation only
|
1387
|
-
# (registrant, administrator, or tech).
|
1388
|
-
# operation ID that you can use
|
1389
|
-
#
|
1390
|
-
#
|
1391
|
-
#
|
1392
|
-
#
|
1393
|
-
#
|
1394
|
-
# [1]: http://www.gandi.net/domain/whois/?currency=USD&lang=en
|
1404
|
+
# setting. When privacy protection is enabled, contact information such
|
1405
|
+
# as email address is replaced either with contact information for
|
1406
|
+
# Amazon Registrar (for .com, .net, and .org domains) or with contact
|
1407
|
+
# information for our registrar associate, Gandi.
|
1408
|
+
#
|
1409
|
+
# This operation affects only the contact information for the specified
|
1410
|
+
# contact type (registrant, administrator, or tech). If the request
|
1411
|
+
# succeeds, Amazon Route 53 returns an operation ID that you can use
|
1412
|
+
# with GetOperationDetail to track the progress and completion of the
|
1413
|
+
# action. If the request doesn't complete successfully, the domain
|
1414
|
+
# registrant will be notified by email.
|
1395
1415
|
#
|
1396
1416
|
# @option params [required, String] :domain_name
|
1397
1417
|
# The name of the domain that you want to update the privacy setting
|
@@ -1399,21 +1419,27 @@ module Aws::Route53Domains
|
|
1399
1419
|
#
|
1400
1420
|
# @option params [Boolean] :admin_privacy
|
1401
1421
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1402
|
-
# you specify `true`, WHOIS ("who is") queries
|
1403
|
-
# information for
|
1404
|
-
#
|
1422
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1423
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1424
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1425
|
+
# If you specify `false`, WHOIS queries return the information that you
|
1426
|
+
# entered for the admin contact.
|
1405
1427
|
#
|
1406
1428
|
# @option params [Boolean] :registrant_privacy
|
1407
1429
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1408
|
-
# you specify `true`, WHOIS ("who is") queries
|
1409
|
-
# information for
|
1410
|
-
#
|
1430
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1431
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1432
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1433
|
+
# If you specify `false`, WHOIS queries return the information that you
|
1434
|
+
# entered for the registrant contact (domain owner).
|
1411
1435
|
#
|
1412
1436
|
# @option params [Boolean] :tech_privacy
|
1413
1437
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1414
|
-
# you specify `true`, WHOIS ("who is") queries
|
1415
|
-
# information for
|
1416
|
-
#
|
1438
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1439
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1440
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1441
|
+
# If you specify `false`, WHOIS queries return the information that you
|
1442
|
+
# entered for the technical contact.
|
1417
1443
|
#
|
1418
1444
|
# @return [Types::UpdateDomainContactPrivacyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1419
1445
|
#
|
@@ -1531,11 +1557,13 @@ module Aws::Route53Domains
|
|
1531
1557
|
#
|
1532
1558
|
# @option params [Time,DateTime,Date,Integer,String] :start
|
1533
1559
|
# The beginning date and time for the time period for which you want a
|
1534
|
-
# list of billing records. Specify the date
|
1560
|
+
# list of billing records. Specify the date and time in Coordinated
|
1561
|
+
# Universal time (UTC).
|
1535
1562
|
#
|
1536
1563
|
# @option params [Time,DateTime,Date,Integer,String] :end
|
1537
1564
|
# The end date and time for the time period for which you want a list of
|
1538
|
-
# billing records. Specify the date in
|
1565
|
+
# billing records. Specify the date and time in Coordinated Universal
|
1566
|
+
# time (UTC).
|
1539
1567
|
#
|
1540
1568
|
# @option params [String] :marker
|
1541
1569
|
# For an initial request for a list of billing records, omit this
|
@@ -1600,7 +1628,7 @@ module Aws::Route53Domains
|
|
1600
1628
|
params: params,
|
1601
1629
|
config: config)
|
1602
1630
|
context[:gem_name] = 'aws-sdk-route53domains'
|
1603
|
-
context[:gem_version] = '1.
|
1631
|
+
context[:gem_version] = '1.2.0'
|
1604
1632
|
Seahorse::Client::Request.new(handlers, context)
|
1605
1633
|
end
|
1606
1634
|
|
@@ -282,6 +282,7 @@ module Aws::Route53Domains
|
|
282
282
|
ListDomainsResponse.add_member(:next_page_marker, Shapes::ShapeRef.new(shape: PageMarker, location_name: "NextPageMarker"))
|
283
283
|
ListDomainsResponse.struct_class = Types::ListDomainsResponse
|
284
284
|
|
285
|
+
ListOperationsRequest.add_member(:submitted_since, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SubmittedSince"))
|
285
286
|
ListOperationsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: PageMarker, location_name: "Marker"))
|
286
287
|
ListOperationsRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location_name: "MaxItems"))
|
287
288
|
ListOperationsRequest.struct_class = Types::ListOperationsRequest
|
@@ -491,6 +491,9 @@ module Aws::Route53Domains
|
|
491
491
|
include Aws::Structure
|
492
492
|
end
|
493
493
|
|
494
|
+
# A complex type that contains information about whether the specified
|
495
|
+
# domain can be transferred to Amazon Route 53.
|
496
|
+
#
|
494
497
|
# @!attribute [rw] transferable
|
495
498
|
# Whether the domain name can be transferred to Amazon Route 53.
|
496
499
|
#
|
@@ -590,6 +593,36 @@ module Aws::Route53Domains
|
|
590
593
|
#
|
591
594
|
# @!attribute [rw] name
|
592
595
|
# Name of the additional parameter required by the top-level domain.
|
596
|
+
# Here are the top-level domains that require additional parameters
|
597
|
+
# and which parameters they require:
|
598
|
+
#
|
599
|
+
# * **.com.au and .net.au:** `AU_ID_NUMBER` and `AU_ID_TYPE`
|
600
|
+
#
|
601
|
+
# * **.ca:** `BRAND_NUMBER`, `CA_LEGAL_TYPE`, and
|
602
|
+
# `CA_BUSINESS_ENTITY_TYPE`
|
603
|
+
#
|
604
|
+
# * **.es:** `ES_IDENTIFICATION`, `ES_IDENTIFICATION_TYPE`, and
|
605
|
+
# `ES_LEGAL_FORM`
|
606
|
+
#
|
607
|
+
# * **.fi:** `BIRTH_DATE_IN_YYYY_MM_DD`, `FI_BUSINESS_NUMBER`,
|
608
|
+
# `FI_ID_NUMBER`, `FI_NATIONALITY`, and `FI_ORGANIZATION_TYPE`
|
609
|
+
#
|
610
|
+
# * **.fr:** `BRAND_NUMBER`, `BIRTH_DEPARTMENT`,
|
611
|
+
# `BIRTH_DATE_IN_YYYY_MM_DD`, `BIRTH_COUNTRY`, and `BIRTH_CITY`
|
612
|
+
#
|
613
|
+
# * **.it:** `BIRTH_COUNTRY`, `IT_PIN`, and
|
614
|
+
# `IT_REGISTRANT_ENTITY_TYPE`
|
615
|
+
#
|
616
|
+
# * **.ru:** `BIRTH_DATE_IN_YYYY_MM_DD` and `RU_PASSPORT_DATA`
|
617
|
+
#
|
618
|
+
# * **.se:** `BIRTH_COUNTRY` and `SE_ID_NUMBER`
|
619
|
+
#
|
620
|
+
# * **.sg:** `SG_ID_NUMBER`
|
621
|
+
#
|
622
|
+
# * **.co.uk, .me.uk, and .org.uk:** `UK_CONTACT_TYPE` and
|
623
|
+
# `UK_COMPANY_NUMBER`
|
624
|
+
#
|
625
|
+
# In addition, many TLDs require `VAT_NUMBER`.
|
593
626
|
# @return [String]
|
594
627
|
#
|
595
628
|
# @!attribute [rw] value
|
@@ -704,29 +737,37 @@ module Aws::Route53Domains
|
|
704
737
|
# @return [Types::ContactDetail]
|
705
738
|
#
|
706
739
|
# @!attribute [rw] admin_privacy
|
707
|
-
# Specifies whether contact information
|
708
|
-
#
|
709
|
-
#
|
710
|
-
#
|
740
|
+
# Specifies whether contact information is concealed from WHOIS
|
741
|
+
# queries. If the value is `true`, WHOIS ("who is") queries return
|
742
|
+
# contact information either for Amazon Registrar (for .com, .net, and
|
743
|
+
# .org domains) or for our registrar associate, Gandi (for all other
|
744
|
+
# TLDs). If the value is `false`, WHOIS queries return the information
|
745
|
+
# that you entered for the admin contact.
|
711
746
|
# @return [Boolean]
|
712
747
|
#
|
713
748
|
# @!attribute [rw] registrant_privacy
|
714
|
-
# Specifies whether contact information
|
715
|
-
#
|
716
|
-
#
|
717
|
-
#
|
749
|
+
# Specifies whether contact information is concealed from WHOIS
|
750
|
+
# queries. If the value is `true`, WHOIS ("who is") queries return
|
751
|
+
# contact information either for Amazon Registrar (for .com, .net, and
|
752
|
+
# .org domains) or for our registrar associate, Gandi (for all other
|
753
|
+
# TLDs). If the value is `false`, WHOIS queries return the information
|
754
|
+
# that you entered for the registrant contact (domain owner).
|
718
755
|
# @return [Boolean]
|
719
756
|
#
|
720
757
|
# @!attribute [rw] tech_privacy
|
721
|
-
# Specifies whether contact information
|
722
|
-
#
|
723
|
-
#
|
724
|
-
#
|
758
|
+
# Specifies whether contact information is concealed from WHOIS
|
759
|
+
# queries. If the value is `true`, WHOIS ("who is") queries return
|
760
|
+
# contact information either for Amazon Registrar (for .com, .net, and
|
761
|
+
# .org domains) or for our registrar associate, Gandi (for all other
|
762
|
+
# TLDs). If the value is `false`, WHOIS queries return the information
|
763
|
+
# that you entered for the technical contact.
|
725
764
|
# @return [Boolean]
|
726
765
|
#
|
727
766
|
# @!attribute [rw] registrar_name
|
728
767
|
# Name of the registrar of the domain as identified in the registry.
|
729
|
-
#
|
768
|
+
# Domains with a .com, .net, or .org TLD are registered by Amazon
|
769
|
+
# Registrar. All other domains are registered by our registrar
|
770
|
+
# associate, Gandi. The value for domains that are registered by Gandi
|
730
771
|
# is `"GANDI SAS"`.
|
731
772
|
# @return [String]
|
732
773
|
#
|
@@ -756,17 +797,19 @@ module Aws::Route53Domains
|
|
756
797
|
#
|
757
798
|
# @!attribute [rw] creation_date
|
758
799
|
# The date when the domain was created as found in the response to a
|
759
|
-
# WHOIS query. The date
|
800
|
+
# WHOIS query. The date and time is in Coordinated Universal time
|
801
|
+
# (UTC).
|
760
802
|
# @return [Time]
|
761
803
|
#
|
762
804
|
# @!attribute [rw] updated_date
|
763
805
|
# The last updated date of the domain as found in the response to a
|
764
|
-
# WHOIS query. The date
|
806
|
+
# WHOIS query. The date and time is in Coordinated Universal time
|
807
|
+
# (UTC).
|
765
808
|
# @return [Time]
|
766
809
|
#
|
767
810
|
# @!attribute [rw] expiration_date
|
768
811
|
# The date when the registration for the domain is set to expire. The
|
769
|
-
# date
|
812
|
+
# date and time is in Coordinated Universal time (UTC).
|
770
813
|
# @return [Time]
|
771
814
|
#
|
772
815
|
# @!attribute [rw] reseller
|
@@ -1006,10 +1049,17 @@ module Aws::Route53Domains
|
|
1006
1049
|
# data as a hash:
|
1007
1050
|
#
|
1008
1051
|
# {
|
1052
|
+
# submitted_since: Time.now,
|
1009
1053
|
# marker: "PageMarker",
|
1010
1054
|
# max_items: 1,
|
1011
1055
|
# }
|
1012
1056
|
#
|
1057
|
+
# @!attribute [rw] submitted_since
|
1058
|
+
# An optional parameter that lets you get information about all the
|
1059
|
+
# operations that you submitted after a specified date and time.
|
1060
|
+
# Specify the date and time in Coordinated Universal time (UTC).
|
1061
|
+
# @return [Time]
|
1062
|
+
#
|
1013
1063
|
# @!attribute [rw] marker
|
1014
1064
|
# For an initial request for a list of operations, omit this element.
|
1015
1065
|
# If the number of operations that are not yet complete is greater
|
@@ -1029,6 +1079,7 @@ module Aws::Route53Domains
|
|
1029
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListOperationsRequest AWS API Documentation
|
1030
1080
|
#
|
1031
1081
|
class ListOperationsRequest < Struct.new(
|
1082
|
+
:submitted_since,
|
1032
1083
|
:marker,
|
1033
1084
|
:max_items)
|
1034
1085
|
include Aws::Structure
|
@@ -1276,27 +1327,33 @@ module Aws::Route53Domains
|
|
1276
1327
|
#
|
1277
1328
|
# @!attribute [rw] privacy_protect_admin_contact
|
1278
1329
|
# Whether you want to conceal contact information from WHOIS queries.
|
1279
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1280
|
-
#
|
1281
|
-
#
|
1330
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1331
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1332
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1333
|
+
# If you specify `false`, WHOIS queries return the information that
|
1334
|
+
# you entered for the admin contact.
|
1282
1335
|
#
|
1283
1336
|
# Default: `true`
|
1284
1337
|
# @return [Boolean]
|
1285
1338
|
#
|
1286
1339
|
# @!attribute [rw] privacy_protect_registrant_contact
|
1287
1340
|
# Whether you want to conceal contact information from WHOIS queries.
|
1288
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1289
|
-
#
|
1290
|
-
#
|
1341
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1342
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1343
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1344
|
+
# If you specify `false`, WHOIS queries return the information that
|
1345
|
+
# you entered for the registrant contact (the domain owner).
|
1291
1346
|
#
|
1292
1347
|
# Default: `true`
|
1293
1348
|
# @return [Boolean]
|
1294
1349
|
#
|
1295
1350
|
# @!attribute [rw] privacy_protect_tech_contact
|
1296
1351
|
# Whether you want to conceal contact information from WHOIS queries.
|
1297
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1298
|
-
#
|
1299
|
-
#
|
1352
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1353
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1354
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1355
|
+
# If you specify `false`, WHOIS queries return the information that
|
1356
|
+
# you entered for the technical contact.
|
1300
1357
|
#
|
1301
1358
|
# Default: `true`
|
1302
1359
|
# @return [Boolean]
|
@@ -1636,27 +1693,33 @@ module Aws::Route53Domains
|
|
1636
1693
|
#
|
1637
1694
|
# @!attribute [rw] privacy_protect_admin_contact
|
1638
1695
|
# Whether you want to conceal contact information from WHOIS queries.
|
1639
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1640
|
-
#
|
1641
|
-
#
|
1696
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1697
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1698
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1699
|
+
# If you specify `false`, WHOIS queries return the information that
|
1700
|
+
# you entered for the admin contact.
|
1642
1701
|
#
|
1643
1702
|
# Default: `true`
|
1644
1703
|
# @return [Boolean]
|
1645
1704
|
#
|
1646
1705
|
# @!attribute [rw] privacy_protect_registrant_contact
|
1647
1706
|
# Whether you want to conceal contact information from WHOIS queries.
|
1648
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1649
|
-
#
|
1650
|
-
#
|
1707
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1708
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1709
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1710
|
+
# If you specify `false`, WHOIS queries return the information that
|
1711
|
+
# you entered for the registrant contact (domain owner).
|
1651
1712
|
#
|
1652
1713
|
# Default: `true`
|
1653
1714
|
# @return [Boolean]
|
1654
1715
|
#
|
1655
1716
|
# @!attribute [rw] privacy_protect_tech_contact
|
1656
1717
|
# Whether you want to conceal contact information from WHOIS queries.
|
1657
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1658
|
-
#
|
1659
|
-
#
|
1718
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1719
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1720
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1721
|
+
# If you specify `false`, WHOIS queries return the information that
|
1722
|
+
# you entered for the technical contact.
|
1660
1723
|
#
|
1661
1724
|
# Default: `true`
|
1662
1725
|
# @return [Boolean]
|
@@ -1713,23 +1776,29 @@ module Aws::Route53Domains
|
|
1713
1776
|
#
|
1714
1777
|
# @!attribute [rw] admin_privacy
|
1715
1778
|
# Whether you want to conceal contact information from WHOIS queries.
|
1716
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1717
|
-
#
|
1718
|
-
#
|
1779
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1780
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1781
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1782
|
+
# If you specify `false`, WHOIS queries return the information that
|
1783
|
+
# you entered for the admin contact.
|
1719
1784
|
# @return [Boolean]
|
1720
1785
|
#
|
1721
1786
|
# @!attribute [rw] registrant_privacy
|
1722
1787
|
# Whether you want to conceal contact information from WHOIS queries.
|
1723
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1724
|
-
#
|
1725
|
-
#
|
1788
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1789
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1790
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1791
|
+
# If you specify `false`, WHOIS queries return the information that
|
1792
|
+
# you entered for the registrant contact (domain owner).
|
1726
1793
|
# @return [Boolean]
|
1727
1794
|
#
|
1728
1795
|
# @!attribute [rw] tech_privacy
|
1729
1796
|
# Whether you want to conceal contact information from WHOIS queries.
|
1730
|
-
# If you specify `true`, WHOIS ("who is") queries
|
1731
|
-
#
|
1732
|
-
#
|
1797
|
+
# If you specify `true`, WHOIS ("who is") queries return contact
|
1798
|
+
# information either for Amazon Registrar (for .com, .net, and .org
|
1799
|
+
# domains) or for our registrar associate, Gandi (for all other TLDs).
|
1800
|
+
# If you specify `false`, WHOIS queries return the information that
|
1801
|
+
# you entered for the technical contact.
|
1733
1802
|
# @return [Boolean]
|
1734
1803
|
#
|
1735
1804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactPrivacyRequest AWS API Documentation
|
@@ -1980,12 +2049,14 @@ module Aws::Route53Domains
|
|
1980
2049
|
#
|
1981
2050
|
# @!attribute [rw] start
|
1982
2051
|
# The beginning date and time for the time period for which you want a
|
1983
|
-
# list of billing records. Specify the date
|
2052
|
+
# list of billing records. Specify the date and time in Coordinated
|
2053
|
+
# Universal time (UTC).
|
1984
2054
|
# @return [Time]
|
1985
2055
|
#
|
1986
2056
|
# @!attribute [rw] end
|
1987
2057
|
# The end date and time for the time period for which you want a list
|
1988
|
-
# of billing records. Specify the date
|
2058
|
+
# of billing records. Specify the date and time in Coordinated
|
2059
|
+
# Universal time (UTC).
|
1989
2060
|
# @return [Time]
|
1990
2061
|
#
|
1991
2062
|
# @!attribute [rw] marker
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53domains
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.5.
|
78
|
+
rubygems_version: 2.5.2.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: AWS SDK for Ruby - Amazon Route 53 Domains
|