/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the route53domains-2014-05-15.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Route53Domains.Model { /// /// Container for the parameters to the RegisterDomain operation. /// This operation registers a domain. For some top-level domains (TLDs), this operation /// requires extra parameters. /// /// /// /// When you register a domain, Amazon Route 53 does the following: /// /// /// public partial class RegisterDomainRequest : AmazonRoute53DomainsRequest { private ContactDetail _adminContact; private bool? _autoRenew; private string _domainName; private int? _durationInYears; private string _idnLangCode; private bool? _privacyProtectAdminContact; private bool? _privacyProtectRegistrantContact; private bool? _privacyProtectTechContact; private ContactDetail _registrantContact; private ContactDetail _techContact; /// /// Gets and sets the property AdminContact. /// /// Provides detailed contact information. For information about the values that you specify /// for each element, see ContactDetail. /// /// [AWSProperty(Required=true, Sensitive=true)] public ContactDetail AdminContact { get { return this._adminContact; } set { this._adminContact = value; } } // Check to see if AdminContact property is set internal bool IsSetAdminContact() { return this._adminContact != null; } /// /// Gets and sets the property AutoRenew. /// /// Indicates whether the domain will be automatically renewed (true) or /// not (false). Auto renewal only takes effect after the account is charged. /// /// /// /// Default: true /// /// public bool AutoRenew { get { return this._autoRenew.GetValueOrDefault(); } set { this._autoRenew = value; } } // Check to see if AutoRenew property is set internal bool IsSetAutoRenew() { return this._autoRenew.HasValue; } /// /// Gets and sets the property DomainName. /// /// The domain name that you want to register. The top-level domain (TLD), such as .com, /// must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains /// that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer /// Guide. /// /// /// /// The domain name can contain only the following characters: /// /// /// /// Internationalized domain names are not supported for some top-level domains. To determine /// whether the TLD that you want to use supports internationalized domain names, see /// Domains /// that You Can Register with Amazon Route 53. For more information, see Formatting /// Internationalized Domain Names. /// /// [AWSProperty(Required=true, Max=255)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } /// /// Gets and sets the property DurationInYears. /// /// The number of years that you want to register the domain for. Domains are registered /// for a minimum of one year. The maximum period depends on the top-level domain. For /// the range of valid values for your domain, see Domains /// that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer /// Guide. /// /// /// /// Default: 1 /// /// [AWSProperty(Required=true, Min=1, Max=10)] public int DurationInYears { get { return this._durationInYears.GetValueOrDefault(); } set { this._durationInYears = value; } } // Check to see if DurationInYears property is set internal bool IsSetDurationInYears() { return this._durationInYears.HasValue; } /// /// Gets and sets the property IdnLangCode. /// /// Reserved for future use. /// /// [AWSProperty(Max=3)] public string IdnLangCode { get { return this._idnLangCode; } set { this._idnLangCode = value; } } // Check to see if IdnLangCode property is set internal bool IsSetIdnLangCode() { return this._idnLangCode != null; } /// /// Gets and sets the property PrivacyProtectAdminContact. /// /// Whether you want to conceal contact information from WHOIS queries. If you specify /// true, WHOIS ("who is") queries return contact information either for /// Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, /// Gandi (for all other TLDs). If you specify false, WHOIS queries return /// the information that you entered for the admin contact. /// /// /// /// You must specify the same privacy setting for the administrative, registrant, and /// technical contacts. /// /// /// /// Default: true /// /// public bool PrivacyProtectAdminContact { get { return this._privacyProtectAdminContact.GetValueOrDefault(); } set { this._privacyProtectAdminContact = value; } } // Check to see if PrivacyProtectAdminContact property is set internal bool IsSetPrivacyProtectAdminContact() { return this._privacyProtectAdminContact.HasValue; } /// /// Gets and sets the property PrivacyProtectRegistrantContact. /// /// Whether you want to conceal contact information from WHOIS queries. If you specify /// true, WHOIS ("who is") queries return contact information either for /// Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, /// Gandi (for all other TLDs). If you specify false, WHOIS queries return /// the information that you entered for the registrant contact (the domain owner). /// /// /// /// You must specify the same privacy setting for the administrative, registrant, and /// technical contacts. /// /// /// /// Default: true /// /// public bool PrivacyProtectRegistrantContact { get { return this._privacyProtectRegistrantContact.GetValueOrDefault(); } set { this._privacyProtectRegistrantContact = value; } } // Check to see if PrivacyProtectRegistrantContact property is set internal bool IsSetPrivacyProtectRegistrantContact() { return this._privacyProtectRegistrantContact.HasValue; } /// /// Gets and sets the property PrivacyProtectTechContact. /// /// Whether you want to conceal contact information from WHOIS queries. If you specify /// true, WHOIS ("who is") queries return contact information either for /// Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, /// Gandi (for all other TLDs). If you specify false, WHOIS queries return /// the information that you entered for the technical contact. /// /// /// /// You must specify the same privacy setting for the administrative, registrant, and /// technical contacts. /// /// /// /// Default: true /// /// public bool PrivacyProtectTechContact { get { return this._privacyProtectTechContact.GetValueOrDefault(); } set { this._privacyProtectTechContact = value; } } // Check to see if PrivacyProtectTechContact property is set internal bool IsSetPrivacyProtectTechContact() { return this._privacyProtectTechContact.HasValue; } /// /// Gets and sets the property RegistrantContact. /// /// Provides detailed contact information. For information about the values that you specify /// for each element, see ContactDetail. /// /// [AWSProperty(Required=true, Sensitive=true)] public ContactDetail RegistrantContact { get { return this._registrantContact; } set { this._registrantContact = value; } } // Check to see if RegistrantContact property is set internal bool IsSetRegistrantContact() { return this._registrantContact != null; } /// /// Gets and sets the property TechContact. /// /// Provides detailed contact information. For information about the values that you specify /// for each element, see ContactDetail. /// /// [AWSProperty(Required=true, Sensitive=true)] public ContactDetail TechContact { get { return this._techContact; } set { this._techContact = value; } } // Check to see if TechContact property is set internal bool IsSetTechContact() { return this._techContact != null; } } }