diff --git a/specification/domainregistration/DomainRegistration.Management/Domain.tsp b/specification/domainregistration/DomainRegistration.Management/Domain.tsp new file mode 100644 index 000000000000..fbff1c50b937 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/Domain.tsp @@ -0,0 +1,141 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "./models.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; + +namespace Microsoft.DomainRegistration; +/** + * Information about a domain. + */ +model Domain is Azure.ResourceManager.TrackedResource { + ...ResourceNameParameter< + Resource = Domain, + KeyName = "domainName", + SegmentName = "domains", + NamePattern = "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + >; + + /** + * Kind of resource + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + kind?: string; +} + +@armResourceOperations +interface Domains { + /** + * Description for Get a domain. + */ + @summary("Get a domain.") + get is ArmResourceRead; + + /** + * Description for Creates or updates a domain. + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-put-operation-response-codes" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + #suppress "@azure-tools/typespec-azure-resource-manager/no-response-body" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + @summary("Creates or updates a domain.") + createOrUpdate is ArmResourceCreateOrReplaceAsync< + Domain, + Response = ArmResourceUpdatedResponse | (ArmAcceptedLroResponse> & { + @bodyRoot + _: Domain; + }), + Error = DefaultErrorResponse + >; + + /** + * Description for Creates or updates a domain. + */ + #suppress "@azure-tools/typespec-azure-resource-manager/no-response-body" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + #suppress "@azure-tools/typespec-azure-resource-manager/lro-location-header" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + @patch(#{ implicitOptionality: false }) + @summary("Creates or updates a domain.") + update is ArmCustomPatchSync< + Domain, + PatchModel = DomainPatchResource, + Response = ArmResponse | (ArmAcceptedResponse & { + @bodyRoot + _: Domain; + }), + Error = DefaultErrorResponse + >; + + /** + * Description for Delete a domain. + */ + @summary("Delete a domain.") + delete is ArmResourceDeleteSync< + Domain, + Parameters = { + /** + * Specify true to delete the domain immediately. The default is false which deletes the domain after 24 hours. + */ + @query("forceHardDeleteDomain") + forceHardDeleteDomain?: boolean; + }, + Error = DefaultErrorResponse + >; + + /** + * Description for Get all domains in a resource group. + */ + @summary("Get all domains in a resource group.") + listByResourceGroup is ArmResourceListByParent< + Domain, + Response = ArmResponse, + Error = DefaultErrorResponse + >; + + /** + * Description for Get all domains in a subscription. + */ + @summary("Get all domains in a subscription.") + list is ArmListBySubscription< + Domain, + Response = ArmResponse, + Error = DefaultErrorResponse + >; + + /** + * Description for Renew a domain. + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-post-operation-response-codes" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + #suppress "@azure-tools/typespec-azure-resource-manager/lro-location-header" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + @summary("Renew a domain.") + renew is ArmResourceActionSync< + Domain, + void, + OkResponse | ArmAcceptedResponse | NoContentResponse, + Error = DefaultErrorResponse + >; + + /** + * Transfer out domain to another registrar + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-put-operation-response-codes" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + @put + @summary("Transfer out domain to another registrar") + transferOut is ArmResourceActionSync< + Domain, + void, + ArmResponse | ArmBadRequestResponse, + Error = DefaultErrorResponse + >; +} + +@@doc(Domain.name, "Name of the domain."); +@@doc(Domain.properties, "Domain resource specific properties"); +@@doc(Domains.createOrUpdate::parameters.resource, + "Domain registration information." +); +@@doc(Domains.update::parameters.properties, + "Domain registration information." +); diff --git a/specification/domainregistration/DomainRegistration.Management/DomainOwnershipIdentifier.tsp b/specification/domainregistration/DomainRegistration.Management/DomainOwnershipIdentifier.tsp new file mode 100644 index 000000000000..b75efa555aa0 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/DomainOwnershipIdentifier.tsp @@ -0,0 +1,96 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "./models.tsp"; +import "./Domain.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; + +namespace Microsoft.DomainRegistration; +/** + * Domain ownership Identifier. + */ +@parentResource(Domain) +model DomainOwnershipIdentifier + is Azure.ResourceManager.ProxyResource { + ...ResourceNameParameter< + Resource = DomainOwnershipIdentifier, + KeyName = "name", + SegmentName = "domainOwnershipIdentifiers", + NamePattern = "" + >; + + /** + * Kind of resource + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + kind?: string; +} + +@armResourceOperations +interface DomainOwnershipIdentifiers { + /** + * Description for Get ownership identifier for domain + */ + @summary("Get ownership identifier for domain") + getOwnershipIdentifier is ArmResourceRead< + DomainOwnershipIdentifier, + Error = DefaultErrorResponse + >; + + /** + * Description for Creates an ownership identifier for a domain or updates identifier details for an existing identifier + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-put-operation-response-codes" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + @summary("Creates an ownership identifier for a domain or updates identifier details for an existing identifier") + createOrUpdateOwnershipIdentifier is ArmResourceCreateOrReplaceSync< + DomainOwnershipIdentifier, + Response = ArmResourceUpdatedResponse, + Error = DefaultErrorResponse + >; + + /** + * Description for Creates an ownership identifier for a domain or updates identifier details for an existing identifier + */ + @patch(#{ implicitOptionality: false }) + @summary("Creates an ownership identifier for a domain or updates identifier details for an existing identifier") + updateOwnershipIdentifier is ArmCustomPatchSync< + DomainOwnershipIdentifier, + PatchModel = DomainOwnershipIdentifier, + Error = DefaultErrorResponse + >; + + /** + * Description for Delete ownership identifier for domain + */ + @summary("Delete ownership identifier for domain") + deleteOwnershipIdentifier is ArmResourceDeleteSync< + DomainOwnershipIdentifier, + Error = DefaultErrorResponse + >; + + /** + * Description for Lists domain ownership identifiers. + */ + @summary("Lists domain ownership identifiers.") + listOwnershipIdentifiers is ArmResourceListByParent< + DomainOwnershipIdentifier, + Response = ArmResponse, + Error = DefaultErrorResponse + >; +} + +@@doc(DomainOwnershipIdentifier.name, "Name of identifier."); +@@doc(DomainOwnershipIdentifier.properties, + "DomainOwnershipIdentifier resource specific properties" +); +@@doc(DomainOwnershipIdentifiers.createOrUpdateOwnershipIdentifier::parameters.resource, + "A JSON representation of the domain ownership properties." +); +@@doc(DomainOwnershipIdentifiers.updateOwnershipIdentifier::parameters.properties, + "A JSON representation of the domain ownership properties." +); diff --git a/specification/domainregistration/DomainRegistration.Management/TopLevelDomain.tsp b/specification/domainregistration/DomainRegistration.Management/TopLevelDomain.tsp new file mode 100644 index 000000000000..f5946fb6b546 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/TopLevelDomain.tsp @@ -0,0 +1,74 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "./models.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; + +namespace Microsoft.DomainRegistration; +/** + * A top level domain object. + */ +@subscriptionResource +model TopLevelDomain + is Azure.ResourceManager.ProxyResource { + ...ResourceNameParameter< + Resource = TopLevelDomain, + KeyName = "name", + SegmentName = "topLevelDomains", + NamePattern = "" + >; + + /** + * Kind of resource + */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + kind?: string; +} + +@armResourceOperations +interface TopLevelDomains { + /** + * Description for Get details of a top-level domain. + */ + @summary("Get details of a top-level domain.") + get is ArmResourceRead< + TopLevelDomain, + BaseParameters = Azure.ResourceManager.Foundations.SubscriptionBaseParameters, + Error = DefaultErrorResponse + >; + + /** + * Description for Get all top-level domains supported for registration. + */ + @summary("Get all top-level domains supported for registration.") + list is ArmResourceListByParent< + TopLevelDomain, + BaseParameters = Azure.ResourceManager.Foundations.SubscriptionBaseParameters, + Response = ArmResponse, + Error = DefaultErrorResponse + >; + + /** + * Description for Gets all legal agreements that user needs to accept before purchasing a domain. + */ + @list + @summary("Gets all legal agreements that user needs to accept before purchasing a domain.") + listAgreements is ArmResourceActionSync< + TopLevelDomain, + TopLevelDomainAgreementOption, + ArmResponse, + BaseParameters = Azure.ResourceManager.Foundations.SubscriptionBaseParameters, + Error = DefaultErrorResponse + >; +} + +@@doc(TopLevelDomain.name, "Name of the top-level domain."); +@@doc(TopLevelDomain.properties, "TopLevelDomain resource specific properties"); +@@doc(TopLevelDomains.listAgreements::parameters.body, + "Domain agreement options." +); diff --git a/specification/domainregistration/DomainRegistration.Management/back-compatible.tsp b/specification/domainregistration/DomainRegistration.Management/back-compatible.tsp new file mode 100644 index 000000000000..b02461f91b21 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/back-compatible.tsp @@ -0,0 +1,49 @@ +import "@azure-tools/typespec-client-generator-core"; + +using Azure.ClientGenerator.Core; +using Azure.ClientGenerator.Core.Legacy; +using Microsoft.DomainRegistration; + +@@clientName(Domains.createOrUpdate::parameters.resource, "domain"); +@@clientName(Domains.update::parameters.properties, "domain"); +@@clientLocation(DomainOwnershipIdentifiers.getOwnershipIdentifier, Domains); +@@clientLocation(DomainOwnershipIdentifiers.createOrUpdateOwnershipIdentifier, + Domains +); +@@clientName(DomainOwnershipIdentifiers.createOrUpdateOwnershipIdentifier::parameters.resource, + "domainOwnershipIdentifier" +); +@@clientLocation(DomainOwnershipIdentifiers.updateOwnershipIdentifier, Domains); +@@clientName(DomainOwnershipIdentifiers.updateOwnershipIdentifier::parameters.properties, + "domainOwnershipIdentifier" +); +@@clientLocation(DomainOwnershipIdentifiers.deleteOwnershipIdentifier, Domains); +@@clientLocation(DomainOwnershipIdentifiers.listOwnershipIdentifiers, Domains); + +@@clientName(TopLevelDomains.listAgreements::parameters.body, + "agreementOption" +); +@@clientLocation(DomainsOperationGroup.checkAvailability, Domains); +@@clientLocation(DomainsOperationGroup.getControlCenterSsoRequest, Domains); +@@clientLocation(DomainsOperationGroup.listRecommendations, Domains); + +@@clientName(DomainsOperationGroup.listRecommendations::parameters.body, + "parameters" +); +@@clientName(DomainsOperationGroup.checkAvailability::parameters.body, + "identifier" +); +#suppress "@azure-tools/typespec-azure-core/no-legacy-usage" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +@@flattenProperty(DomainOwnershipIdentifier.properties); + +#suppress "@azure-tools/typespec-azure-core/no-legacy-usage" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +@@flattenProperty(DomainPatchResource.properties); + +#suppress "@azure-tools/typespec-azure-core/no-legacy-usage" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +@@flattenProperty(TopLevelDomain.properties); + +#suppress "@azure-tools/typespec-azure-core/no-legacy-usage" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +@@flattenProperty(Domain.properties); + +@@clientLocation(Operations.list, "DomainRegistrationProvider"); +@@clientName(Operations.list, "ListOperations"); diff --git a/specification/domainregistration/DomainRegistration.Management/client.tsp b/specification/domainregistration/DomainRegistration.Management/client.tsp new file mode 100644 index 000000000000..eeb2d7729dcf --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/client.tsp @@ -0,0 +1,9 @@ +import "@azure-tools/typespec-client-generator-core"; +import "./main.tsp"; + +using Azure.ClientGenerator.Core; + +@@clientName(Microsoft.DomainRegistration, + "DomainRegistrationManagementClient", + "javascript" +); diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CheckDomainAvailability.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CheckDomainAvailability.json new file mode 100644 index 000000000000..b6bca2cd4414 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CheckDomainAvailability.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "identifier": { + "name": "abcd.com" + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "abcd.com", + "available": true, + "domainType": "Regular" + } + } + }, + "operationId": "Domains_CheckAvailability", + "title": "Check domain availability" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CreateAppServiceDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CreateAppServiceDomain.json new file mode 100644 index 000000000000..869d9a99dc53 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CreateAppServiceDomain.json @@ -0,0 +1,305 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domain": { + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "dnsType": "DefaultDomainRegistrarDns", + "privacy": false + }, + "tags": {} + }, + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} + }, + "202": { + "body": { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "Domains_CreateOrUpdate", + "title": "Create App Service Domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CreateAppServiceDomainOwnershipIdentifier.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CreateAppServiceDomainOwnershipIdentifier.json new file mode 100644 index 000000000000..f391c824f65e --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/CreateAppServiceDomainOwnershipIdentifier.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "SampleOwnershipId", + "api-version": "2024-11-01", + "domainName": "example.com", + "domainOwnershipIdentifier": { + "properties": { + "ownershipId": "SampleOwnershipId" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "SampleOwnershipId", + "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", + "properties": { + "ownershipId": "SampleOwnershipId" + } + }, + "headers": {} + } + }, + "operationId": "Domains_CreateOrUpdateOwnershipIdentifier", + "title": "Create App Service Domain OwnershipIdentifier" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/DeleteAppServiceDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/DeleteAppServiceDomain.json new file mode 100644 index 000000000000..f33f41a275a6 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/DeleteAppServiceDomain.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domainName": "example.com", + "forceHardDeleteDomain": true, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "Domains_Delete", + "title": "Delete App Service Domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/DeleteAppServiceDomainOwnershipIdentifier.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/DeleteAppServiceDomainOwnershipIdentifier.json new file mode 100644 index 000000000000..3e7d0e023dc8 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/DeleteAppServiceDomainOwnershipIdentifier.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "ownershipIdentifier", + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "Domains_DeleteOwnershipIdentifier", + "title": "Delete App Service Domain Ownership Identifier" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomain.json new file mode 100644 index 000000000000..3ec951036c1d --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomain.json @@ -0,0 +1,117 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domainName": "example.com", + "getOnlyIfReadyForDnsManagement": true, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "Domains_Get", + "title": "Get Domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomainControlCenterSsoRequest.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomainControlCenterSsoRequest.json new file mode 100644 index 000000000000..b43e7d7b2033 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomainControlCenterSsoRequest.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "postParameterKey": "saml", + "postParameterValue": "1242sds|k1340", + "url": "https://Reseller.provider.com/?xRequestId=sdsdsds&app=dcc" + } + } + }, + "operationId": "Domains_GetControlCenterSsoRequest", + "title": "Get Domain Control Center Sso Request" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomainOwnershipIdentifier.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomainOwnershipIdentifier.json new file mode 100644 index 000000000000..35a199cb45ae --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetDomainOwnershipIdentifier.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleOwnershipId", + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "SampleOwnershipId", + "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", + "properties": { + "ownershipId": "SampleOwnershipId" + } + }, + "headers": {} + } + }, + "operationId": "Domains_GetOwnershipIdentifier", + "title": "Get Domain Ownership Identifier" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetTopLevelDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetTopLevelDomain.json new file mode 100644 index 000000000000..3293b7d746b1 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/GetTopLevelDomain.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "com", + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "com", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", + "properties": { + "privacy": true + } + }, + "headers": {} + } + }, + "operationId": "TopLevelDomains_Get", + "title": "Get Top Level Domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainOwnershipIdentifiers.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainOwnershipIdentifiers.json new file mode 100644 index 000000000000..a890737723c0 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainOwnershipIdentifiers.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "SampleOwnershipId", + "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", + "properties": { + "ownershipId": "SampleOwnershipId" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Domains_ListOwnershipIdentifiers", + "title": "List Domain Ownership Identifiers" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainRecommendations.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainRecommendations.json new file mode 100644 index 000000000000..2ccaa4fe7e43 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainRecommendations.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "parameters": { + "keywords": "example1", + "maxDomainRecommendations": 10 + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "domainnamesuggestion1" + }, + { + "name": "domainnamesuggestion2" + }, + { + "name": "domainnamesuggestion3" + } + ] + }, + "headers": {} + } + }, + "operationId": "Domains_ListRecommendations", + "title": "List domain recommendations" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainsByResourceGroup.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainsByResourceGroup.json new file mode 100644 index 000000000000..a008f123f0c2 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainsByResourceGroup.json @@ -0,0 +1,119 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "Domains_ListByResourceGroup", + "title": "List domains by resource group" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainsBySubscription.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainsBySubscription.json new file mode 100644 index 000000000000..3364dec6869d --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListDomainsBySubscription.json @@ -0,0 +1,118 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "Domains_List", + "title": "List domains by subscription" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListOperations.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListOperations.json new file mode 100644 index 000000000000..e31fe3242200 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListOperations.json @@ -0,0 +1,106 @@ +{ + "parameters": { + "api-version": "2024-11-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.DomainRegistration/domains/Read", + "display": { + "description": "Get the list of domains", + "operation": "Get Domains", + "provider": "Microsoft Domains", + "resource": "Domain" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/Write", + "display": { + "description": "Add a new Domain or update an existing one", + "operation": "Add or Update Domain", + "provider": "Microsoft Domains", + "resource": "Domain" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/Delete", + "display": { + "description": "Delete an existing domain.", + "operation": "Delete Domain", + "provider": "Microsoft Domains", + "resource": "Domain" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/operationresults/Read", + "display": { + "description": "Get a domain operation", + "operation": "Get Domain Operation", + "provider": "Microsoft Domains", + "resource": "Domain operation" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/generateSsoRequest/Action", + "display": { + "description": "Generate a request for signing into domain control center.", + "operation": "Generate Domain Control Center Single Sign On Request", + "provider": "Microsoft Domains", + "resource": "Domain Control Center Single Sign On Request" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action", + "display": { + "description": "Validate domain purchase object without submitting it", + "operation": "Domain Purchase Info Validation", + "provider": "Microsoft Domains", + "resource": "Domain Validation" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/checkDomainAvailability/Action", + "display": { + "description": "Check if a domain is available for purchase", + "operation": "Check Domain Availability", + "provider": "Microsoft Domains", + "resource": "Domain Availability Result" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/listDomainRecommendations/Action", + "display": { + "description": "Retrieve the list domain recommendations based on keywords", + "operation": "Retrieve Domain Recommendations", + "provider": "Microsoft Domains", + "resource": "Domain Recommendations" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/register/action", + "display": { + "description": "Register the Microsoft Domains resource provider for the subscription", + "operation": "Register Microsoft Domains resource provider", + "provider": "Microsoft Domains", + "resource": "Microsoft Domains resource provider" + }, + "origin": "user,system" + } + ] + }, + "headers": {} + } + }, + "operationId": "DomainRegistrationProvider_ListOperations", + "title": "List operations" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListTopLevelDomainAgreements.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListTopLevelDomainAgreements.json new file mode 100644 index 000000000000..ab5e037f5d1e --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListTopLevelDomainAgreements.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "in", + "agreementOption": { + "forTransfer": false, + "includePrivacy": true + }, + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "agreementKey": "DNRA", + "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Registration Agreement\n
\n

Last Revised: October 6, 2017

\n

PLEASE READ THIS AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.

\r\n

1. OVERVIEW

\r\n

This Domain Name Registration Agreement (this \"Agreement\") is entered into by and between 510456, an individual (\"Azure\") and you, and is made effective as of the date of electronic acceptance.  This Agreement sets forth the terms and conditions of your use of Azure's Domain Name Registration services (the \"Domain Name Registration Services\" or the \"Services\"). The terms \"we\", \"us\" or \"our\" shall refer to Azure.  The terms \"you\", \"your\", \"User\" or \"customer\" shall refer to any individual or entity who accepts this Agreement.  Unless otherwise specified, nothing in this Agreement shall be deemed to confer any third-party rights or benefits.

\r\n

Your electronic acceptance of this Agreement signifies that you have read, understand, acknowledge and agree to be bound by this Agreement, which incorporates by reference each of (i) Azure’s Universal Terms of Service Agreement (\"UTOS\"), (ii) all agreements, guidelines, policies, practices, procedures, registration requirements or operational standards of the top-level domain (\"TLD\") in which you register any domain (“Registry Policies”), and (iii) any plan limits, product disclaimers or other restrictions presented to you on the Domain Name Registration Services landing page of the Azure website (this “Site”). 

\r\n

TO LINK TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER A DOMAIN NAME, PLEASE CLICK HERE   

\r\n

You acknowledge and agree that (i) Azure, in its sole and absolute discretion, may change or modify this Agreement, and any policies or agreements which are incorporated herein, at any time, and such changes or modifications shall be effective immediately upon posting to this Site, and (ii) your use of this Site or the Services found at this Site after such changes or modifications have been made shall constitute your acceptance of this Agreement as last revised.  If you do not agree to be bound by this Agreement as last revised, do not use (or continue to use) this Site or the Services found at this Site.  In addition, Azure may occasionally notify you of changes or modifications to this Agreement by email.  It is therefore very important that you keep your shopper account (“Shopper Account”) information, including your email address, current.  Azure assumes no liability or responsibility for your failure to receive an email notification if such failure results from an inaccurate or out-of-date email address.    Azure is not an Internet Corporation for Assigned Names and Numbers (\"ICANN\") accredited registrar; it is an authorized reseller of domain name registration services.  Accordingly, you acknowledge and agree that Azure may modify this Agreement in order to comply with any terms and conditions set forth by (i) the sponsoring registrar, (ii) ICANN, and/or (iii) the registry applicable to the TLD or country code top level domain (\"ccTLD\") in question.  As used herein, the terms \"registry\", \"Registry\", \"registry operator\" or \"Registry Operator\" shall refer to the registry applicable to the TLD or ccTLD in question.  To identify the sponsoring registrar, click here

\r\n

2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS

\r\n

Unless otherwise noted, the provisions below in this Section 2 are generally applicable to all TLDs that we offer.  Special provisions specific to any TLD or ccTLD (those in addition to posted Registry Policies) are identified elsewhere below in this Agreement. 

\r\n
    \r\n
  1. \r\n
    Registry Policies. You agree to be bound by all Registry Policies (defined above in this Agreement) applicable to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD.  REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator of the TLD in which the domain name registration is made is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the respective TLD. The third party beneficiary rights of the Registry Operator will survive any termination of this Agreement.    
    \r\n
  2. \r\n
  3. \r\n
    Registration Requirements.  To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication requirements as a condition to registering a domain name in the TLD, you agree that by submitting an application or registering or renewing your domain name, you represent and warrant that: (a) all information provided to register or renew the domain name (including all supporting documents, if any) is true, complete and correct, and is not misleading in any way, and the application is made in good faith; (b) you meet, and will continue to meet, the eligibility criteria prescribed in the Registry Policies for the applicable TLD for the duration of the domain name registration; (c) you have not previously submitted an application for the domain name with another registrar using the same eligibility criteria, and the other registrar has rejected the application (if applicable); (d) you acknowledge and agree that even if the domain name is accepted for registration, your entitlement to register the domain name may be challenged by others who claim to have an entitlement to the domain name; and (e) you acknowledge and agree that the Registry or the registrar can cancel the registration of the domain name if any of the warranties required are found to be untrue, incomplete, incorrect or misleading.
    \r\n
  4. \r\n
  5. \r\n
    Ownership.  You acknowledge and agree that registration of a domain name does not create any proprietary right for you, the registrar, or any other person in the name used as a domain name or the domain name registration and that the entry of a domain name in the Registry shall not be construed as evidence or ownership of the domain name registered as a domain name. You shall not in any way transfer or purport to transfer a proprietary right in any domain name registration or grant or purport to grant as security or in any other manner encumber or purport to encumber a domain name registration.
    \r\n
  6. \r\n
  7. \r\n
    ICANN Requirements. You agree to comply with the ICANN requirements, standards, policies, procedures, and practices for which each applicable Registry Operator has monitoring responsibility in accordance with the Registry Agreement between ICANN and itself or any other arrangement with ICANN.
    \r\n
  8. \r\n
  9. \r\n
    Indemnification of Registry.  You agree to indemnify, defend and hold harmless (within 30 days of demand) the Registry Operator and Registry Service Provider and their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors, officers, employees, accountants, attorneys, insurers, agents, predecessors, successors and assigns, from and against any and all claims, demands, damages, losses, costs, expenses, causes of action or other liabilities of any kind, whether known or unknown, including reasonable legal and attorney’s fees and expenses, in any way arising out of, relating to, or otherwise in connection with the your domain name registration, including, without limitation, the use, registration, extension, renewal, deletion, and/or transfer thereof and/or the violation of any applicable terms or conditions governing the registration. You shall not enter into any settlement or compromise of any such indemnifiable claim without Registrar’s or Registry Operator’s prior written consent, which consent shall not be unreasonably withheld, and you agree that these indemnification obligations shall survive the termination or expiration of the Agreement for any reason.  IN NO EVENT SHALL THE REGISTRY OPERATOR BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL, FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED, ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE, EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    \r\n
  10. \r\n
  11. \r\n
    Regulated TLDs.   For domain name registration in any “Regulated” TLD, you acknowledge and agree your registration is subject to the following additional requirements: (a) comply with all applicable laws, including those that relate to privacy, data collection, consumer protection (including in relation to misleading and deceptive conduct), fair lending, debt collection, organic farming, disclosure of data, and financial disclosures; (b) if you collect and maintain sensitive health and financial data you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  Regulated TLDs include: .games, .juegos, .school, .schule, .toys, .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments, .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage, .degree, .mba, .audio, .book, .broadway, .film, .movie, .music, .software, .fashion, .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis, .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater, .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet, .engineering, .law, .limited, .show; .theater; .town, .city, .reise, and .reisen
    \r\n
  12. \r\n
  13. \r\n
    Highly Regulated TLDs. In addition to the requirements for Regulated TLDs, domain name registration in any Highly-Regulated TLD is subject to the following requirements: (a) you will provide administrative contact information, which must be kept up‐to‐date, for the notification of complaints or reports of registration abuse, as well as the contact details of the relevant regulatory, or Industry self‐regulatory, bodies in their main place of business; (b) you represent that you possess any necessary authorizations, charters, licenses and/or other related credentials for participation in the sector associated with such Highly‐regulated TLD; and (c) you will report any material changes to the validity of you authorizations, charters, licenses and/or other related credentials for participation in the sector associated with the Highly‐regulated TLD to ensure you continue to conform to the appropriate regulations and licensing requirements and generally conduct your activities in the interests of the consumers they serve.  Highly Regulated TLDs include: .abogado, .attorney, .bank, .bet, .bingo, .casino .charity (and IDN equivalent xn--30rr7y), .cpa, .corp, creditcard, .creditunion .dds, .dentist, .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance, .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl, .spreadbetting, .srl, .surgery .university, .vermogensberater, and .vesicherung,  For .doctor, registrants who hold themselves out to be licensed medical practitioners must be able to demonstrate to the Registrar and Registry, upon request, that they hold the applicable license.
    \r\n
  14. \r\n
  15. \r\n
    Special Safeguard TLDs.  In addition to the requirements for Regulated and Highly-Regulated TLDs, by registering a domain name in any “Special-Safeguard” TLD, you agree to take reasonable steps to avoid misrepresenting or falsely implying that you or your business is affiliated with, sponsored or endorsed by one or more country's or government's military forces if such affiliation, sponsorship or endorsement does not exist.  Special Safeguard TLDs include:  .army, .navy, .airforce
    \r\n
  16. \r\n
  17. \r\n
    Third Party Beneficiary.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator for any TLD in which your register a domain name is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the TLD. Third party beneficiary rights of the Registry Operator shall survive any termination of this Agreement.
    \r\n
  18. \r\n
  19. \r\n
    Variable and Non-Uniform Pricing.  You acknowledge, understand and agree that certain domain names in certain TLDs are established by Registry Policies to be variably priced (i.e., standard v. premium names) and/or may have non-uniform renewal registration pricing (such that the Fee for a domain name registration renewal may differ from other domain names in the same TLD, e.g., renewal registration for one domain may be $100.00 and $33.00 for a different domain name).
    \r\n
  20. \r\n
  21. \r\n
    Restriction on Availability of Privacy or Proxy.  You acknowledge and agree that, as dictated by the Registry Policies, for certain TLDs you may not be permitted to purchase private or proxy TLD registrations. In such case, you must register for any and all TLD registrations using your personal information, which information you represent and warrant is current, accurate and complete.
    \r\n
  22. \r\n
\r\n

3. FEES AND PAYMENTS

\r\n

(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS

\r\n

You agree to pay any and all prices and fees due for Services purchased or obtained at this Site at the time you order the Services.  Azure expressly reserves the right to change or modify its prices and fees at any time, and such changes or modifications shall be posted online at this Site and effective immediately without need for further notice to you.  If you have purchased or obtained Services for a period of months or years, changes or modifications in prices and fees shall be effective when the Services in question come up for renewal as further described below. 

\r\n

Unless otherwise specifically noted (for reasons such as those highlighted in Section 2(x) above), the renewal price for any domain name in any TLD will be the same as the list (non-sale) price shown when you search for and select a domain, and again in the cart prior to purchase.  For example, if the list price is $9.99, and a different renewal price is not specifically identified, then the renewal price is also $9.99.  Likewise, if a domain name has a sale price of $8.99, with the list (non-sale) price shown (as a strike-through) at $9.99, the renewal price will be $9.99*.  

\r\n

*Renewal price subject to change prior to actual date of renewal. 

\r\n

For all other terms and conditions relating to fees, payment, refund and billing, etc. applicable to the Services offered under the scope of this Agreement, please refer to the “Fees and Payments” section of our UTOS

\r\n

(B) DOMAIN NAME RENEWAL TERMS

\r\n

When you register a domain name, you will have two renewal options: (i) \"Automatic Renewal\" (ii) \"Extended Automatic Renewal\", and (iii) \"Manual Renewal\": 

\r\n
    \r\n
  1. Automatic Renewal.  Automatic Renewal is the default setting. Therefore, unless you select Extended Automatic Renewal, Azure will enroll you in Automatic Renewal.  Domain names will automatically renew, for a period equivalent to the length of your original domain name registration, any domain name that is up for renewal and will take payment from the Payment Method you have on file with Azure, at Azure's then current rates. Thus, if you have chosen to register your domain name for one (1) year, Azure will automatically renew it for one (1) year. If you have chosen to register your domain name for two (2) years, Azure will automatically renew it for two (2) years, and so on.
  2. \r\n
  3. Extended Automatic Renewal.  If you enroll in the Extended Automatic Renewal plan, Azure will automatically renew any domain name that is up for renewal for an additional one-year period on each and every anniversary of your domain name registration, so the initial registration period will always remain intact.  Thus, if you have chosen to register your domain name for two (2) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your two (2) year registration period will always remain intact. If you have chosen to register your domain name for five (5) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your five (5) year registration period will always remain intact, and so on.  Azure will take payment from the Payment Method you have on file with Azure, at Azure's then current one-year domain name registration rate.
  4. \r\n
  5. Manual Renewal.  If you have elected to turn off automatic renewal and cancel the product (i.e., cancel the domain name registration) effective at expiration of the then current term, you may nonetheless elect to manually renew the domain name at anytime prior to its expiration date by logging into your Account Manager and manually implementing the renewal or by calling customer service (should you in fact want the domain name to be renewed). If you fail to manually implement the renewal before the expiration date, the domain name will be cancelled and you will no longer have use of that name.
  6. \r\n
\r\n

All renewals will be subject to the terms of this Agreement, as it may be amended from time to time, and you acknowledge and agree to be bound by the terms of this Agreement (as amended) for all renewed domains.  Domain name renewals will be non-refundable. In the event that we are unable to automatically renew your domain name for the renewal option selected for any reason, we may automatically renew your domain name for a period less than your original registration period to the extent necessary for the transaction to succeed. If for any reason Azure is not able to take the payment from the Payment Method you have on file, and you fail to respond to our notices, your domain name registration will expire. It is your responsibility to keep your Payment Method information current, which includes the expiration date if you are using a credit card.

\r\n

For certain ccTLDs (.am, .at, .be, .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the month prior to the month of expiration.

\r\n

For certain ccTLDs (.am, .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the product was previously cancelled, no later than the 20th of the month prior to the expiration date, or your domain name will be placed in non-renewal status. For some ccTLDs (.es) renewal must be processed no later than seven days before the expiration date, or your domain name will be placed in non-renewal status.  When the domain name is in non-renewal status, you can renew the domain name only by calling Azure and requesting that the domain name be renewed. You cannot renew the domain name through your Account Manager. If you fail to manually implement the renewal of any cancelled product before the expiration date, the domain name will be cancelled and you will no longer have use of that name.

\r\n

You agree that Azure will not be responsible for cancelled domain names that you fail to renew in the timeframes indicated in this Agreement. In any case, if you fail to renew your domain name in a timely fashion, additional charges may apply. If you signed up for privacy services, protected registration, or any other similar service, with your domain name registration, these services will automatically be renewed when your domain name registration is up for renewal, and you will incur the applicable additional renewal fee unless you cancel in advance. 

\r\n

If you fail to renew your domain name in the timeframes indicated in this Agreement, you agree that Azure may, in its sole discretion, renew your expired domain name on your behalf. If Azure decides to renew your expired domain name on your behalf, you will have a Renewal Grace Period during which you may reimburse Azure for the renewal and keep your domain name. The Renewal Grace Period is currently twelve (12) days but subject to change under the terms of this Agreement. For certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period after the expiration date of the domain name. If you do not reimburse Azure for the renewal during the Renewal Grace Period your domain name will be placed on Hold and flagged for deletion after which you will have a 30-day redemption period during which you may pay Azure a Redemption fee and redeem your domain name. The Redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the 30-day redemption period Azure may, in its sole discretion, delete your domain name or transfer it to another registrant on your behalf.  During the redemption period your domain name may be parked. 

\r\n

If your domain name is deleted, the Registry also provides a 30-day Redemption Grace Period during which you may pay Azure a redemption fee and redeem your domain name. The redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the Registry's Redemption Grace Period the Registry will release your name and it will become available for registration on a first-come-first-served basis.

\r\n

Renewal Grace Periods and Redemption Grace Periods vary for different ccTLDs. Please refer to the specific terms for the applicable TLD. In the event there is a conflict between the provisions of this paragraph and the ccTLD terms, the ccTLD terms shall control.

\r\n

\r\n

Our registration expiration notification policy and associated fees are described here.

\r\n

\r\n

\r\n

(C) FREE PRODUCT TERMS

\r\n

In the event you are provided with free products with the registration of a domain name, you acknowledge and agree that such free products will only be available with a valid purchase and may be terminated in the event the domain name is deleted or cancelled.  For free domain names, you acknowledge and agree that you may not change the account associated with such free domain for the first five (5) days after registration.  In the event a free domain name is offered with the registration of another domain and if the paid domain name registered fails, then we may, in its sole discretion, either delete the registration of the free domain or refund the difference between the amount paid and the value of the free domain.  Failed registrations associated with promotionals offers may result in the deletion of the free or discounted item or an adjustment between the registered domain price and the value of the discounted item, in our sole discretion.

\r\n

4. TERM OF AGREEMENT; TRANSFERS; DOMAIN TASTING

\r\n

The term of this Agreement shall continue in full force and effect as long as you have any domain name registered through Azure.

\r\n

You agree that you will not transfer any domain name registered through Azure to another domain name registrar during the first sixty (60) days after its initial registration date.  You agree that you may not transfer any domain name for ten (10) days after a Change of Account.

\r\n

You further agree that you will not engage in \"domain tasting\" by using the five (5) day grace period in which a registrant may choose to cancel a domain name and get a full refund of the registration fee as a vehicle to test the marketability or viability of a domain name.  If Azure determines (which determination shall be made by Azure in its sole and absolute discretion) that you have been engaging in \"domain tasting\", then Azure reserves the right to (a) charge you a small fee (which fee shall be deducted from any refund issued) or (b) refuse your cancellation/refund request altogether. Azure will not charge you a fee if Azure cancels your domain name during the five (5) day grace period due to fraud or other activity outside of your control. The five (5) day grace period does not apply to Premium Domains, which are non-refundable.

\r\n

You agree that Azure shall not be bound by (i) any representations made by third parties who you may use to purchase services from Azure, or (ii) any statements of a general nature, which may be posted on Azure's website or contained in Azure's promotional materials.

\r\n

5. UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION

\r\n

You agree to notify Azure within five (5) business days when any of the information you provided as part of the application and/or registration process changes. It is your responsibility to keep this information in a current and accurate status. Failure by you, for whatever reason, to provide Azure with accurate and reliable information on an initial and continual basis, shall be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. Failure by you, for whatever reason, to respond within five (5) business days to any inquiries made by Azure to determine the validity of information provided by you, shall also be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. You agree to retain a copy for your record of the receipt for purchase of your domain name.

\r\n

You agree that for each domain name registered by you, the following contact data is required: postal address, email address, telephone number, and if available, a facsimile number for the Registered Name Holder and, if different from the Registered Name Holder, the same contact information for, a technical contact, an administrative contact and a billing contact.

\r\n

You acknowledge and agree that domain name registration requires that this contact information, in whole or in part, be shared with the registry operator, for their use, copying, distribution, publication, modification and other processing  for (among other uses in accordance with our Privacy Policy) the purpose of administration of the domain name registration, which may require such information be transferred back and forth across international borders, to and from the U.S. to the EU, for example. As required by ICANN, this information must also be made publicly available by means of Whois, and that the registry operator may also be required to make this information publicly available by Whois. Both Azure and the registry operator may be required to archive this information with a third-party escrow service. You hereby consent and give permission for all such requirements and disclosures. Further, you represent and warrant that, if you are providing information about a third party, you have notified the third party of the disclosure and the purpose for the disclosure and you have obtained the third party's consent to such disclosure.  Registrar will not process data in a way that is incompatible with this Agreement.  Registrar will take reasonable precautions to protect data from loss or misuse.

\r\n

You agree that for each domain name registered by you the following information will be made publicly available in the Whois directory as determined by ICANN Policy and may be sold in bulk as set forth in the ICANN agreement:

\r\n
    \r\n
  • The domain name;
  • \r\n
  • Your name and postal address;
  • \r\n
  • The name, email address, postal address, voice and fax numbers for technical and administrative contacts;
  • \r\n
  • The Internet protocol numbers for the primary and secondary name servers;
  • \r\n
  • The corresponding names of the name servers; and
  • \r\n
  • The original date of registration and expiration date.
  • \r\n
  • Name of primary name server and secondary name server.
  • \r\n
  • Identity of the registrar.
  • \r\n
\r\n

You agree that, to the extent permitted by ICANN, Azure may make use of the publicly available information you provided during the registration process. If you engage in the reselling of domain names you agree to provide any individuals whose personal information you've obtained, information about the possible uses of their personal information pursuant to ICANN policy. You also agree to obtain consent, and evidence of consent, from those individuals for such use of the personal information they provide.

\r\n

You agree that Azure has the right to make public and share with third parties certain information in connection with the sale or purchase of domain names on the website, including but not limited to (a) the name of the domain name sold or purchased, (b) the sale or purchase price of the domain name sold or purchased, and (c) information relating to the timing of the sale or purchase.

\r\n

\r\n

In order for us to comply with any current or future rules and policies for domain name systems including any rules or policies established by the CIRA or any provincial or federal government or by other organization having control or authority to establish rules or policies, you hereby grant to us the right to disclose to third parties through an interactive publicly accessible registration database the following information that you are required to provide when applying for a domain name:

\r\n
    \r\n
  1. The domain or sub-domain name(s) registered by you;
  2. \r\n
  3. Your organization name, type and postal address;
  4. \r\n
  5. The name(s), position(s), postal address(es), e-mail address(es), voice telephone number(s) and where available the fax number(s) of the technical and administrative contacts for your domain or sub-domain name(s);
  6. \r\n
  7. The full hostnames and Internet protocol (IP) addresses of at least two (2) name server hosts (one primary and at least one secondary) for your domain or sub-domain name. Up to six (6) name servers may be specified. If a host has more than one (1) IP address, use a comma-separated list;
  8. \r\n
  9. The corresponding names of those name servers;
  10. \r\n
  11. The original creation date of the registration; and
  12. \r\n
  13. The expiration date of the registration.
  14. \r\n
\r\n

We may be required to make this information available in bulk form to third parties. We may also transfer or assign this information to CIRA or such other third party as we may decide, in our sole discretion.

\r\n

6. DISPUTE RESOLUTION POLICY

\r\n

You agree to be bound by our current Dispute Resolution Policy. This policy is incorporated herein and made a part of this Agreement. You can view the Uniform Domain Name Dispute Resolution Policy online. You agree that Azure may from time to time modify its Dispute Resolution Policy. Azure will post any changes to its Dispute Resolution Policy at least thirty (30) days before they become effective. You agree that by maintaining your domain name registrations with Azure after the updated policy becomes effective that you agree to the Dispute Resolution policy as amended. You agree to review Azure's website periodically to determine if changes have been made to the Dispute Resolution Policy. If you cancel or terminate your Services with Azure as a result of the modified Dispute Resolution policy, no fees will be refunded to you. You also agree to submit to proceedings commenced under ICANN's Uniform Rapid Suspension System, if applicable. 

\r\n

You agree that if a dispute arises as a result of one (1) or more domain names you have registered using Azure, you will indemnify, defend and hold Azure harmless as provided for in this Agreement. You also agree that if Azure is notified that a complaint has been filed with a governmental, administrative or judicial body, regarding a domain name registered by you using Azure, that Azure, in its sole discretion, may take whatever action Azure deems necessary regarding further modification, assignment of and/or control of the domain name deemed necessary to comply with the actions or requirements of the governmental, administrative or judicial body until such time as the dispute is settled. In this event you agree to hold Azure harmless for any action taken by Azure.

\r\n

You agree to submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of your domicile, (2) where registrar is located or (3) where the registry operator is located (e.g., China for .CN, Columbia for .CO, UK for .EU, etc.).

\r\n

\r\n

In the case of .ca domain names, you agree that, if your use of the service or the registration of a .ca domain name is challenged by a third party, you will be subject to the provisions specified by CIRA in their dispute resolution policy, in effect at the time of the dispute.

\r\n

\r\n

7. TRANSFER OF DOMAIN NAMES; RESALE PRACTICES

\r\n

If you transfer any domain name, you agree to provide the information required by, and to abide by, the procedures and conditions set forth in our Domain Name Transfer Agreement and Change of Registrant Agreement. You may view the latest versions of our Domain Name Transfer Agreement and Change of Registrant Agreementonline. In order to further protect your domain name, any domain name registered with Azure or transferred to Azure shall be placed on lock status, unless an opted-out has occurred as defined in our Change of Registrant Agreement or Domain Name Proxy Agreement. The domain name must be placed on unlock status in order to initiate a transfer of the domain name away from Azure to a new Registrar. You may log into your account with Azure at any time after your domain name has been successfully transferred to Azure, and change the status to unlock.

\r\n

In the event you are purchasing a domain name on behalf of a third party, you agree to inform any customer of yours, who may be acquiring a domain name through you using Azure's registration services, that they are in fact registering their domain name through Azure and that Azure or its licensor is an accredited registrar with ICANN. You agree not to represent that you are an ICANN-accredited registrar or that you are in any way providing superior access to the ICANN Domain Name Registry. You also agree not to use the ICANN trademark logo in any of your promotional materials including your website.

\r\n

You agree to obtain each of your customers' acceptances to the then current version of this Agreement, and to retain evidence of their acceptance for a period of not less than three (3) years. Should you require that your customers accept additional terms and conditions that are not required by Azure, you agree that such additional terms and conditions shall not conflict with this Agreement and the policies and procedures adopted by ICANN.

\r\n

You agree that Azure is not lending you access to its registrar connections or its registry access, nor will you be deemed to be a registrar in your own right. Furthermore, you agree you will not attempt to gain access to Azure's registrar connections or registry access. You agree to provide complete, accurate and current data for each registrant to be added to a registry in accordance with ICANN requirements for inclusion in the Whois database.

\r\n

You agree to provide your customers with adequate customer support, and to maintain contact with them with regard to providing a medium for them to communicate changes in the information they provided as part of the domain name registration process. Upon receiving corrected or updated information you will, within five (5) business days, provide such information to Azure so Azure may update its registration records. You will retain copies of all communications between you and your customers and will upon request provide Azure copies of same.

\r\n

8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH OF AGREEMENT

\r\n

You represent and warrant to the best of your knowledge that, neither the registration of the domain nor the manner it is directly or indirectly used, infringes the legal rights of any third party.  You will comply with all applicable laws, including, but not limited to those relating to privacy, data collection, consumer protection, fair lending, debt collection, organic farming, and disclosure of data and financial disclosures.  If you collect and maintain sensitive health and financial data, you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  You represent that you possess any necessary authorization, charter, license, and/or other related credential for participation in the sector associated with the associated registry tld string.  You will report any material changes to the validity of your authorization, charter, license, and/or other related credential. You will indemnify and hold harmless the registrar and registry operator, and their directors, officers, employees and agents, from and against any and all claims, damages, liabilities, costs and expenses (including reasonable legal fees and expenses) arising out of or related to the domain name registration.  This obligation shall survive expiration or termination of this Agreement or the domain name registration.

\r\n

You agree that, in addition to other events set forth in this Agreement:

\r\n
    \r\n
  1. Your ability to use any of the services provided by Azure is subject to cancellation or suspension in the event there is an unresolved breach of this Agreement and/or suspension or cancellation is required by any policy now in effect or adopted later by ICANN;
  2. \r\n
  3. Your registration of any domain names shall be subject to suspension, cancellation or transfer pursuant to any ICANN adopted specification or policy, or pursuant to any Azure procedure not inconsistent with an ICANN adopted specification or policy (a) to correct mistakes by Azure or the registry operator in registering any domain name; or (b) for the resolution of disputes concerning any domain name.
  4. \r\n
\r\n

You acknowledge and agree that Azure and registry reserve the right to deny, cancel or transfer any registration or transaction, or place any domain name(s) on registry lock, hold or similar status, as either deems necessary, in the unlimited and sole discretion of either Azure or the registry: (i) to comply with specifications adopted by any industry group generally recognized as authoritative with respect to the Internet (e.g., RFCs), (ii) to correct mistakes made by registry or any registrar in connection with a domain name registration, (iii) for the non-payment of fees to registry, (iv) to protect the integrity and stability of the registry, (v) to comply with any applicable court orders, laws, government rules or requirements, requests of law enforcement, or any dispute resolution process, (vi) to comply with any applicable ICANN rules or regulations, including without limitation, the registry agreement, (vii) to avoid any liability, civil or criminal, on the part of registry operator, as well as its affiliates, subsidiaries, officers, directors, and employees, (viii) per the terms of this Agreement, (ix) following an occurrence of any of the prohibited activities described in Section 8 below, or (x) during the resolution of a dispute.

\r\n

You agree that your failure to comply completely with the terms and conditions of this Agreement and any Azure rule or policy may be considered by Azure to be a material breach of this Agreement and Azure may provide you with notice of such breach either in writing or electronically (i.e. email). In the event you do not provide Azure with material evidence that you have not breached your obligations to Azure within ten (10) business days, Azure may terminate its relationship with you and take any remedial action available to Azure under the applicable laws. Such remedial action may be implemented without notice to you and may include, but is not limited to, cancelling the registration of any of your domain names and discontinuing any services provided by Azure to you. No fees will be refunded to you should your Services be cancelled or terminated because of a breach.

\r\n

Azure's failure to act upon or notify you of any event, which may constitute a breach, shall not relieve you from or excuse you of the fact that you have committed a breach.

\r\n

9. RESTRICTION OF SERVICES; RIGHT OF REFUSAL

\r\n

You agree not to use the services provided by Azure, or to allow or enable others, to use the services provided by Azure for the purposes of:

\r\n
    \r\n
  • The transmission of unsolicited email (Spam); and
  • \r\n
  • Repetitive, high volume inquires into any of the services provided by Azure (i.e. domain name availability, etc.).
  • \r\n
\r\n

You acknowledge and agree that you are prohibited from distributing malware, abusively operating botnets, phishing, piracy, trademark or copyright infringement, fraudulent or deceptive practices, counterfeiting or otherwise engaging in activity contrary to applicable law, and you acknowledge and agree that the consequences for such activities include suspension of the domain name.

\r\n

If you are hosting your domain name system (“DNS”) on Azure’s servers, or are using our systems to forward a domain name, URL, or otherwise to a system or site hosted elsewhere, or if you have your domain name registered with Azure, you are responsible for ensuring there is no excessive overloading on Azure’s servers. You may not use Azure’s servers and your domain name as a source, intermediary, reply to address, or destination address for email denial-of-service attack, Internet packet flooding, packet corruption, or other abusive attack. Server hacking or other perpetration of security breaches is prohibited. You agree that Azure reserves the right to deactivate your domain name from its DNS if Azure deems it is the recipient of activities caused by your site that threaten the stability of its network.

\r\n

You agree that Azure, in its sole discretion and without liability to you, may refuse to accept the registration of any domain name. Azure also may in its sole discretion and without liability to you delete the registration of any domain name during the first thirty (30) days after registration has taken place. Azure may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Azure in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

\r\n
    \r\n
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • \r\n
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography; and
  • \r\n
  • Activities designed to harm or use unethically minors in any way.
  • \r\n
\r\n

In the event Azure refuses a registration or deletes an existing registration during the first thirty (30) days after registration, you will receive a refund of any fees paid to Azure in connection with the registration either being cancelled or refused. In the event Azure deletes the registration of a domain name being used in association with spam or morally objectionable activities, no refund will be issued.

\r\n

10. DEFAULT SETTINGS; PARKED PAGE

\r\n

Choosing Your Domain Name Settings.  When you register a domain name with Azure, you will be prompted to choose your domain name settings during the checkout process.  If you plan on using another provider for your website or hosting needs, then you should enter the name servers of such provider when you choose your domain name settings.  This will direct your domain name away from Azure’s name servers.  If you are an existing Azure customer and have already set up a customer profile designating your domain name settings for new domain name registrations, you will not need to complete this step again during the checkout process.   

\r\n

Azure’s Default Settings.  If you do not direct your domain name away from Azure’s name servers as described above, Azure will direct your domain name to a “Parked Page” (“Default Setting”).  You acknowledge and agree that Azure has the right to set the Default Setting. 

\r\n

Parked Page Default Setting.  Azure’s Parked Page service is an online domain monetization system designed to generate revenue (through the use of pay per click advertising) from domain names that are not actively being used as websites.  If your domain name is directed to a Parked Page, you acknowledge and agree that Azure may display both (a) in-house advertising (which includes links to Azure products and services) and (b) third-party advertising (which includes links to third-party products and services) on your Parked Page through the use of pop-up or pop-under browser windows, banner advertisements, audio or video streams, or any other advertising means, and we may aggregate for our own use, related usage data by means of cookies and other similar means.  In addition, you acknowledge and agree that all in-house and third-party advertising will be selected by Azure and its advertising partners, as appropriate, and you will not be permitted to customize the advertising, or entitled to any compensation in exchange therefor.  Please note that the third-party advertising displayed on Azure’s Parked Pages may contain content offensive to you, including but not limited to links to adult content.  Azure makes no effort to edit, control, monitor, or restrict the content and third-party advertising displayed on Azure’s Parked Pages, and expressly disclaims any liability or responsibility to you or any third party in connection therewith.

\r\n

Changing Azure’s Default Settings.  You may change Azure’s Default Settings at any time during the term of your domain name registration.

\r\n
    \r\n
  1. Content Displaying On Your Parked Page.  You can not modify the content displaying on your Parked Page.  You may select one of the other options listed below.
  2. \r\n
  3. Participating In Domain Name Monetization.  If you wish to participate in the domain monetization potential presented by Azure’s Parked Page service, please review and consider purchasing our CashParking® service.   
  4. \r\n
  5. No Content.  If the options listed above are not acceptable to you, please contact customer support to learn what other options might be available to you.
  6. \r\n
\r\n

Return To Parked Page Default Setting Upon Domain Name Expiration.  Upon domain name expiration, and regardless of how you use your domain name during the term of your domain name registration, your domain name will automatically return to the Parked Page Default Setting described above.  As used in this paragraph, “expiration” is deemed to include any “renewal period” or “redemption period” immediately after the domain name expires, but before the domain name is returned to the registry.  Once your domain name has returned to the Parked Page Default Setting described above, the only way to opt out of the Parked Page service is to renew, redeem, or re-register your domain name in accordance with Section 2(B), Domain Name Renewal Terms, of this Agreement.   

\r\n

11. DOMAIN ADD-ONS

\r\n

Business Registration:  Business registration allows You to display additional information about the business that is the basis of Your domain name, including, but not limited to, such information as Your fax number, street address, and hours of operation.

\r\n

Certified Domains.  The certified domain service generally allow You to: (i) put a Certified Domain Validation seal on Your website; and (ii) have Your domain name listed as \"Certified\", in WHOIS lookups on our website.   The Certified Domain Validation seal renews independently of Your domain. When You renew Your domain, You must also, when necessary, separately renew Your Certified Validation seal. However, the Certified Domain Validation seal can be cancelled independently of Your domain. If the domain is cancelled, the Certified Domain associated with the cancelled domain will automatically cancel.  The Certified Domain seal is a trademark and is protected by copyright, trademark and other intellectual property laws. You may use the Certified Domain seal only in conjunction with the purchase of the Services set forth in the Agreement, and subject to the terms and conditions hereof. Other than provided for in this Agreement, You may not otherwise use, reproduce, or modify the mark for any additional promotional use, without our prior written approval. Your right to the use of the Certified Domain seal is immediately terminated upon expiration or termination of this Agreement.

\r\n

Expiration Consolidation.  You understand and acknowledge the expiration consolidation service may only be used to consolidate the expiration of .com and .net domain names. The service may not be used to consolidate domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status. You acknowledge the service may only be used to push the expiration date of Your domains forward in time, at least one (1) month forward and no more than ten (10) years forward, and then, only for a period lasting less than twelve (12) months. Once the service has been used to consolidate domains, the new expiration date may not be reversed. To ensure the service is not abused or used as an alternative to renewals, you may only use the service on each domain once in any 12-month period. The service may only be used on domain names that have not passed their expiration date. In order to change the expiration date again, You will be required to renew the domain name first.  You further understand and acknowledge the service may only be used to coordinate domains where we are the registrar of record. Domains not registered with us must be transferred before we can perform the Service. 

\r\n

\r\n

Backordering/Monitoring.  You agree a domain name that has expired shall be subject first to a grace period of twelve (12) days, followed by the ICANN-mandated redemption grace period of thirty (30) days. During this period of time, the current domain name registrant may renew the domain name and retain ownership. We do not guarantee your backorder will result in you obtaining the domain name and expressly reserves the right to (a) refuse additional backorders or (b) cancel existing backorders at any time for any reason.  If your backorder is refused or cancelled, we agree to promptly refund any fees paid for such domain name backorder. The domain name may also be placed in a secondary market for resale through the Auctions® service.  After your first year of Auctions membership, you agree that unless otherwise advised, we will automatically renew your Auctions membership using the payment method you have on file for so long as your backorder credit is active. You may learn more about Auctions by visiting the Auctions website. The domain name may also be subject to a drop pool process before it is available for purchasing. You understand we and our registrar affiliates use our services, including backordering.  Therefore, the domain name may be registered with a different registrar, but can be managed through your account.  By using the Services, you will be able to, among other things:

\r\n
    \r\n
  1. Backorder any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO, .ORG, .MOBI. A backorder for a domain name will include the price of up to a one-year domain name registration. Should you successfully backorder any domain name, you will be subject to the terms and conditions of the Domain Name Registration and related agreements, which are incorporated herein by reference.
  2. \r\n
  3. Change your backorder until you obtain a domain name. You will have the opportunity to change the credit to a different domain name until you successfully capture one. After three (3) years, if the credit is not used, we reserves the right to remove the credit.
  4. \r\n
  5. Subscribe monthly to an expiring domain name list. You may also choose to purchase a subscription to a list of domain names expiring within the next five (5) days. If you subscribe to the expiring domain name list, you agree the payment method you have on file may be charged on a monthly subscription basis for the term of the Services you purchase.
  6. \r\n
  7. Select domain names off the expiring domain name list you would like to register. Each domain name you attempt to backorder will include the price of up to a one-year domain name registration, as set forth in subsection (i) above.
  8. \r\n
  9. Monitor your currently registered domain names for changes in registrar, status, expiration date or name servers at no additional cost.
  10. \r\n
  11. Subscribe to Domain Alert Pro or monitoring, which enables you to monitor any currently registered domain name, regardless of registrar, for historical tracking of status changes and designation of multiple email notification addresses.
  12. \r\n
\r\n

\r\n

\r\n

Transfer Validation. The transfer validation service is provided to help You keep Your domain name secure. By choosing to use the service, You are making an explicit and voluntary request to us to deny all attempts to transfer Your domain name to another registrar, or to move Your domain name to another account, unless You verify each request as described herein. You will provide us with a contact name, phone number and PIN for domain transfer validations. You will be contacted by us when a domain transfer is requested for a domain name in Your account. When we receive a transfer request, we will call You to verify the transfer request. If we cannot reach You with seventy-two (72) hours of receipt of the transfer request, the transfer will be denied. If You do not provide the proper PIN, the transfer will be denied. When we receive a change of account request, we will call You to verify the change request. If we cannot reach You with seventy-two (72) hours of receipt of the change request, the change will be denied. If You do not provide the proper PIN, the change will be denied. Availability of Services are subject to the terms and conditions of this Agreement and each of our policies and procedures. We shall use commercially reasonable efforts to attempt to provide certain portions of the Services on a twenty-four (24) hours a day, seven (7) days a week basis throughout the term of this Agreement and other portions of the service, during normal business hours. You acknowledge and agree that from time to time the Services may be inaccessible or inoperable for any reason, including, without limitation: (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs that we may undertake from time to time; or (iii) causes beyond the reasonable control of us or that are not reasonably foreseeable by us, including, without limitation, interruption or failure of telecommunication or digital transmission links, hostile network attacks, network congestion or other failures. You acknowledge and agree that we has no control over the availability of the service on a continuous or uninterrupted basis.

\r\n

\r\n

12. PRE-REGISTRATIONS

\r\n

If you submit an application for pre-registration of a domain name, Azure does not guarantee that the name will be secured for you, or that you will have immediate access to the domain name if secured.  Azure may use third-party service providers for the pre-registration services.

\r\n

13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS

\r\n

Domain Name Dispute Policy.  If you reserved or registered a .BIZ domain name through us, in addition to our Dispute Resolution Policy, you hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the Restrictions Dispute Resolution Policy applicable to the .biz TLD.

\r\n

The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be enforced on a case-by-case basis by an independent ICANN-accredited dispute provider. Registry Operator will not review, monitor, or otherwise verify that any particular domain name is being used primarily for business or commercial purposes or that a domain name is being used in compliance with the SUDRP or UDRP processes.

\r\n

One Year Registration.  If you are registering a .BIZ domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .BIZ domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .BIZ domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

\r\n

14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS 

\r\n

One Year Registration.  If you are registering a .INFO domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .INFO domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .INFO domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

15. PROVISIONS SPECIFIC TO .MOBI REGISTRATIONS 

\r\n

Instant Mobilizer. You are hereby granted a personal, revocable, non-exclusive, non-transferable, non-assignable, non-sublicensable license to use the Instant Mobilizer service (“Service”), provided, however, You abide by the terms and conditions set forth. You shall not alter, modify, adapt or translate the whole or part of the Service in any way whatsoever. You may not create derivative works based on the Service. You may not rent, lease, assign, dispose of, novate, sub-license or otherwise transfer any of its rights to use the Service to any third party.  In the event that the volume of traffic to You from Your use of the Service is sufficient so as to jeopardize the provision of Service for other end users, we and our licensors reserve the right to, at its sole discretion, permanently or temporarily, discontinue Your use of the Service. For the avoidance of doubt, the volume of traffic generated by You should not exceed two thousand (2,000) page views per day.  You acknowledge and agree the text \"Instant Mobilizer from dotMobi\" or equivalent, will be inserted at the footer of Your site.  In the event a dotMobi domain to which the Service is being provided is transferred to another domain name registrar, the Service will be interrupted on that dotMobi domain, and Service will not be restored if the new registrar does not offer the Service. 

\r\n

\r\n

16. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS 

\r\n

\r\n

17. PROVISIONS SPECIFIC TO .REISE REGISTRATIONS

\r\n

Domain Names registered in .REISE should be used for purposes dedicated to travel topics within six months following initial Registration, e.g. utilized on the Internet or otherwise used to perform a function.

\r\n

18. PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS

\r\n

You shall not permit content unsuitable for viewing by a minor to be viewed from the main or top-level directory of a .SEXY domain name. For purposes of clarity, content viewed at the main or top-level directory of a .SEXY domain name is the content immediately visible if a user navigates to http://example.sexy or http://www.example.sexy. No restrictions apply to the content at any other page or subdirectory addressed by a .SEXY Registered Name. 

\r\n

19. COUNTRY CODE TOP LEVEL DOMAINS

\r\n

You represent and warrant that you meet the eligibility requirements of each ccTLD you apply for. You further agree to be bound by any registry rules, policies, and agreements for that particular ccTLD. These may include, but are not limited to, agreeing to indemnify the ccTLD provider, limiting the liability of the ccTLD provider, and requirements that any disputes be resolved under that particular country's laws.

\r\n

(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS 

\r\n

.au Registrations (to include com.au, net.au and org.au) are governed by the following additional terms and conditions:

\r\n

auDA. auDA means .au Domain Administration Limited ACN 079 009 340, the .au domain names administrator.  The Registrar acts as agent for auDA for the sole purpose, but only to the extent necessary, to enable auDA to receive the benefit of rights and covenants conferred to it under this Agreement. auDA is an intended third party beneficiary of this agreement.

\r\n

auDA Published Policy.  auDA Published Policies means those specifications and policies established and published by auDA from time to time at http://www.auda.org.au.  You must comply with all auDA Published Policies, as if they were incorporated into, and form part of, this Agreement. In the event of any inconsistency between any auDA Published Policy and this Agreement, then the auDA Published Policy will prevail to the extent of such inconsistency.  You acknowledge that under the auDA Published Policies: (1) there are mandatory terms and conditions that apply to all domain names; (2) licences, and such terms and conditions are incorporated into, and form part of, this Agreement; (3) You are bound by, and must submit to, the .au Dispute Resolution Policy; and (4) auDA may delete or cancel the registration of a .au domain name. 

\r\n

auDA's Liabilities and Indemnity.  To the fullest extent permitted by law, auDA will not be liable to Registrant for any direct, indirect, consequential, special, punitive or exemplary losses or damages of any kind (including, without limitation, loss of use, loss or profit, loss or corruption of data, business interruption or indirect costs) suffered by Registrant arising from, as a result of, or otherwise in connection with, any act or omission whatsoever of auDA, its employees, agents or contractors. Registrant agrees to indemnify, keep indemnified and hold auDA, its employees, agents and contractors harmless from all and any claims or liabilities, arising from, as a result of, or otherwise in connection with, Registrant's registration or use of its .au domain name. Nothing in this document is intended to exclude the operation of Trade Practices Act 1974.

\r\n

(B) PROVISIONS SPECIFIC TO .CA REGISTRATIONS

\r\n

You acknowledge and agree that registration of your selected domain name in your first application to CIRA shall not be effective until you have entered into and agreed to be bound by CIRA's Registrant Agreement.

\r\n

CIRA Certified Registrar.  The registrar shall immediately give notice to you in the event that it is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated, or the Registrar Agreement between CIRA and the Registrar is terminated or expires. CIRA may post notice of such suspension, termination, or expiry on its website and may, if CIRA deems appropriate, give notice to the registrants thereof. In the event that the registrar is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated or in the event the Registrar Agreement between CIRA and the Registrar is terminated or expires, you shall be responsible for changing your Registrar of Record to a new CIRA Certified Registrar within thirty (30) days of the earlier of notice thereof being given to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current Registry PRP; provided, however, that if any of your domain name registrations are scheduled to expire within thirty (30) days of the giving of such notice, then you shall have thirty (30) days from the anniversary date of the registration(s), to register with a new CIRA certified registrar and to renew such domain name registration(s) in accordance with the Registry PRP.

\r\n

You acknowledge and agree that should there be insufficient funds prepaid by the registrar in the CIRA Deposit Account to be applied in payment of any fees, CIRA may in its sole discretion stop accepting applications for domain name registrations from the registrar, stop effecting registrations of domain names and transfers, renewals, modifications, and cancellations requested by the registrar and stop performing other billable transactions requested by the registrar not paid in full and CIRA may terminate the Registrar Agreement between CIRA and the Registrar.

\r\n

.CA ASCII and IDN domain variants are bundled and reserved for a single registrant.  Registrants are not required to register all variants in a bundle, but all registered variants must be registered and managed at a single registrar. Each variant registered will incur a registration fee.  In addition, when registering multiple .CA domain (ASCII and IDN) variants in a bundle, your registrant information must be identical.  If variants are registered at other registrars or if registrant information does not match, it may result in an \"unavailable\" search result, delayed or failed registration. If information does not match, validation is required and may take up to seven business days and delay availability of domain. 

\r\n

(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS 

\r\n

.CN is a restricted TLD – applications are subject to both a domain name check and real name verification as required by the China.  Registrations in .CN are therefore subject to the following additional terms:

\r\n

Verification, Registration and Activation.  If a domain name is not permitted to be registered by the Chinese government, as determined by us, the Registry Operator and/or a 3rd party provider utilized for such services and determinations, in either party’s discretion, the application for registration will not be successful.  In such event, the name will be deleted and you will be eligible for a refund as further described below.

\r\n

If permitted, then the Registration may proceed, but a .CN domain name may not be activated (i.e., it will not resolve in the Internet) unless and until you have submitted (via the process described during registration) valid documents required of us and the Registry to perform real name verification.  The following are acceptable forms of documents for the purpose of verification:

\r\n
    \r\n
  • China: Resident ID, temporary resident ID, business license or organization code certificate
  • \r\n
  • Hong Kong Special Administrative Region/Macao Special Administrative Region: Resident ID, driver’s license, passport or business license
  • \r\n
  • Singapore: Driver’s license, passport or business license
  • \r\n
  • Taiwan: Resident ID, driver’s license or business license
  • \r\n
  • Other Countries/Regions: Driver’s license or passport
  • \r\n
\r\n

Documents submitted to us are used by us and shared with the Registry solely for the purpose of real name verification, and are otherwise subject to our Privacy Policy.  By registering a .CN domain, you expressly agree that your data may be stored on servers in the U.S., or otherwise outside of the China.

\r\n

Refunds.  Refunds for .CN Registrations will only be allowed where (i) registration of the applied for domain name is not permitted by the Chinese government; or (ii) you notify us of your intent to cancel for any reason within the first five (5) days after the Registration (i.e., after it is deemed permissible by the Chinese government).  For the avoidance of doubt, refunds will not be permitted under any circumstances after five (5) days from the date of Registration, including, for example, in the event real name verification is not successful or if the Chinese government determines after Registration that the domain name should not have been registered (and directs us to delete).

\r\n

(D) PROVISIONS SPECIFIC TO .JP REGISTRATIONS

\r\n

Registration Restrictions.  You represent and warrant that you have a local presence in Japan with a home or office address. You agree that certain domain names are reserved and can only be registered by certain parties. These include: (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type .JP domain names that are defined as metropolitan, prefectural, and municipal labels; (iii) names of primary and secondary educational organizations; (iv) names of organizations related to Internet management; (v) names required for .JP domain name operations; and (vi) character strings which may be confused with ASCII-converted Japanese domain names. The complete list of .JP Reserved Domains is available here

\r\n

20. ENGLISH LANGUAGE CONTROLS

\r\n

This Agreement, along with all policies and the applicable product agreements identified above and incorporated herein by reference (collectively, the “Agreement”), is executed in the English language. To the extent any translation is provided to you, it is provided for convenience purposes only, and in the event of any conflict between the English and translated version, where permitted by law, the English version will control and prevail. Where the translated version is required to be provided to you and is to be considered binding by law (i) both language versions shall have equal validity, (ii) each party acknowledges that it has reviewed both language versions and that they are substantially the same in all material respects, and (iii) in the event of any discrepancy between these two versions, the translated version may prevail, provided that the intent of the Parties has been fully taken into consideration. 

\n
\n
\n\nRevised: 10/6/17
\nCopyright © 2000-2017 All Rights Reserved.\n
\n
\n
", + "title": "Domain Name Registration Agreement", + "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456" + }, + { + "agreementKey": "DNPA", + "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Proxy Agreement\n
\n

Last Revised: October 25, 2017

\n

Please read this Domain Name Proxy Agreement (\"Agreement\") carefully. By using the Services and/or website of Domains By Proxy, LLC, a Delaware limited liability company (\"DBP\"), You (as defined below) agree to all the terms and conditions set forth both herein and in the DBP privacy policy, which is incorporated by reference and can be found by clicking here.  You acknowledge that DBP may amend this Agreement at any time upon posting the amended terms on its website, and that any new, different or additional features changing the services provided by DBP will automatically be subject to this Agreement. If You do not agree to be bound by, or if You object to, the terms and conditions of this Agreement and any amendments hereto, do not use or access DBP's services. Continued use of DBP's services and its website after any such changes to this Agreement have been posted, constitutes Your acceptance of those changes.

\r\n

This Agreement is by and between DBP and you, your heirs, assigns, agents and contractors (\"You\") and is made effective as of the date of electronic execution. This Agreement sets forth the terms and conditions of Your relationship with DBP and Your use of DBP's services and represents the entire Agreement between You and DBP. By using DBP's Services, You acknowledge that You have read, understand and agree to be bound by all the terms and conditions of this Agreement, and You further agree to be bound by the terms of this Agreement for transactions entered into by:

\r\n
    \r\n
  1. You on Your behalf;
  2. \r\n
  3. Anyone acting as Your agent; and
  4. \r\n
  5. Anyone who uses the account You have established with DBP, whether or not the transactions were on Your behalf and/or authorized by You.
  6. \r\n
\r\n

You agree You will be bound by representations made by third parties acting on Your behalf, which either use or purchase services from DBP. You further agree that DBP will not be bound by statements of a general nature on DBP's website or DBP promotional materials. You further agree to abide by the terms and conditions promulgated by the Internet Corporation for Assigned Names and Numbers (\"ICANN\") (including the Uniform Domain Name Dispute Resolution Policy (\"Dispute Resolution Policy\") and Your Registrar (i.e., the ICANN-accredited person or entity through which You register a domain name).

\r\n

1. description of DBP's private registration services

\r\n

When You subscribe to DBP's private registration service through a DBP-affiliated Registrar, DBP will display its contact information in the publicly available \"Whois\" directory in place of Your information. DBP shall keep Your name, postal address, email address, phone and fax numbers confidential, subject to Section 4 of this Agreement. The following information (and not Your personal information) will be made publicly available in the \"Whois\" directory as determined by ICANN policy:

\r\n
    \r\n
  1. DBP's name as the proxy Registrant of the domain name and a proxy email address, phone number and postal address for the proxy Registrant's contact information;
  2. \r\n
  3. A proxy postal address and phone number for the domain name registration's technical contact;
  4. \r\n
  5. A proxy email address, postal address and phone number for the domain name registration's administrative contact;
  6. \r\n
  7. A proxy email address, postal address and phone number for the domain's name registration's billing contact;
  8. \r\n
  9. The primary and secondary domain name servers You designate for the domain name;
  10. \r\n
  11. The domain name's original date of registration and expiration date of the registration; and
  12. \r\n
  13. The identity of the Registrar.
  14. \r\n
\r\n

2. full benefits of domain registration retained by you

\r\n

Although DBP will show in the \"Whois\" directory as the Registrant of each domain name registration You designate, You will retain the full benefits of domain name registration with respect to each such domain name registration, including, subject to Section 4 below:

\r\n
    \r\n
  1. The right to sell, transfer or assign each domain name registration, which shall require cancellation of the DBP services associated with each such domain name registration;
  2. \r\n
  3. The right to control the use of each domain name registration, including designating the primary and secondary domain name servers to which each domain name points;
  4. \r\n
  5. The right to cancel each domain name registration;
  6. \r\n
  7. The right to cancel the DBP services associated with each domain name registration and/or Your privacy services with DBP so that Your contract information is listed in the \"Whois\" directory; and
  8. \r\n
  9. The right to renew each domain name registration upon its expiration, subject to Your Registrar's applicable rules and policies.
  10. \r\n
\r\n

3. PERSONAL INFORMATION AND your notification obligations; representation and warranties; ACCOUNT SECURITY

\r\n

Personal Information and Your Notification Obligations 

\r\n

You agree that for each domain name for which you use DBP services, You will provide accurate and current information as to:

\r\n
    \r\n
  1. Your name, the email address, postal address, phone and fax numbers for the domain name registration's Registrant contact;
  2. \r\n
  3. The email address, postal address, phone and fax numbers for the domain name registration's technical contact;
  4. \r\n
  5. The email address, postal address, phone and fax numbers for the domain name registration's administrative contact;
  6. \r\n
  7. The email address, postal address, phone and fax numbers for the domain name registration's billing contact; and
  8. \r\n
  9. You agree to provide government issued photo identification and/or government issued business identification as required for verification of identity when requested.
  10. \r\n
\r\n

You agree to:

\r\n
    \r\n
  1. Notify DBP within three (3) calendar days when any of the personal information You provided upon subscribing to DBP's services, changes;
  2. \r\n
  3. Respond within three (3) calendar days to any inquiries made by DBP to determine the validity of personal information provided by You; and
  4. \r\n
  5. Timely respond to email messages DBP sends to You regarding correspondence DBP has received that is either addressed to or involves You and/or Your domain name registration, as more fully set forth in Section 5(c) below.
  6. \r\n
  7. To allow DBP to act as your Designated Agent (as that term is defined below) in instances when DBP services are added to or cancelled from your domain name and for the purpose of facilitating a change of registrant request (as further described below). 
  8. \r\n
\r\n

It is Your responsibility to keep Your personal information current and accurate at all times.

\r\n

Renewals

\r\n

You agree DBP will arrange for Your Registrar to charge the credit card You have on file with the Registrar, at the Registrar's then current rates.

\r\n

If for any reason DBP and/or the Registrar for Your domain name is unable to charge Your credit card for the full amount of the service provided, or if DBP and/or the Registrar is charged back for any fee it previously charged to the credit card You provided, You agree that DBP and/or the Registrar may, without notice to You, pursue all available remedies in order to obtain payment, including but not limited to immediate cancellation of all services DBP provides to You.

\r\n

Representations and Warranties

\r\n

You warrant that all information provided by You to DBP is truthful, complete, current and accurate. You also warrant that You are using DBP's private registration services in good faith and You have no knowledge of Your domain name infringing upon or conflicting with the legal rights of a third party or a third party's trademark or trade name. You also warrant the domain name being registered by DBP on Your behalf will not be used in connection with any illegal activity, or in connection with the transmission of Spam, or that contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable or, disrupting, damaging or limiting the functionality of any software or hardware.

\r\n

Account Security

\r\n

You agree You are entirely responsible for maintaining the confidentiality of Your customer number/login ID and password (\"Account Access Information\").  You agree to notify DBP immediately of any unauthorized use of Your account or any other breach of security.  You agree DBP will not be liable for any loss that You may incur as a result of someone else using Your Account Access Information, either with or without Your knowledge.  You further agree You could be held liable for losses incurred by DBP or another party due to someone else using Your Account Access Information.  For security purposes, You should keep Account Access Information in a secure location and take precautions to prevent others from gaining access to Your Account Access Information.  You agree that You are entirely responsible for all activity in Your account, whether initiated by You, or by others.  DBP specifically disclaims liability for any activity in Your account, regardless of whether You authorized the activity.

\r\n

Designated Agency and Change of Registrant Information

\r\n

“DESIGNATED AGENT” MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.  IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.  FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH ICANN'S CHANGE OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION ON YOUR BEHALF.

\r\n

4. DBP's rights to deny, suspend, terminate service and to disclose your personal information

\r\n

You understand and agree that DBP has the absolute right and power, in its sole discretion and without any liability to You whatsoever, to:

\r\n
    \r\n
  1. Cancel the privacy service (which means that Your information will be available in the \"Whois\" directory) and/or reveal Your name and personal information that You provided to DBP:  
    A. When required by law, in the good faith belief that such action is necessary in order to conform to the edicts of the law or in the interest of public safety;
    B. To comply with legal process served upon DBP or in response to a reasonable threat of litigation against DBP (as determined by DBP in its sole and absolute discretion); or
    C. To comply with ICANN rules, policies, or procedures.
  2. \r\n
  3. Resolve any and all third party claims, whether threatened or made, arising out of Your use of a domain name for which DBP is the registrant listed in the \"Whois\" directory on Your behalf; or
  4. \r\n
  5. Take any other action DBP deems necessary:
    A. In the event you breach any provision of this Agreement or the DBP Anti-Spam Policy;
    B. To protect the integrity and stability of, and to comply with registration requirements, terms, conditions and policies of, the applicable domain name Registry and/or Registry Provider;
        C. To comply with any applicable laws, government rules or requirements, subpoenas, court orders or requests of law enforcement; 
    D. To comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant Policy;
    E. To avoid any financial loss or legal liability (civil or criminal) on the part of DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, officers, directors and employees;
    F. If the domain name for which DBP is the registrant on Your behalf violates or infringes a third party's trademark, trade name or other legal rights; and
    G. If it comes to DBP's attention that You are using DBP's services in a manner (as determined by DBP in its sole and absolute discretion) that:
  6. \r\n
\r\n
\r\n
    \r\n
  • Is illegal, or promotes or encourages illegal activity;
  • \r\n
  • Promotes, encourages or engages in child pornography or the exploitation of children;
  • \r\n
  • Promotes, encourages or engages in terrorism, violence against people, animals, or property;
  • \r\n
  • Promotes, encourages or engages in any spam or other unsolicited bulk email, or computer or network hacking or cracking;
  • \r\n
  • Violates the Ryan Haight Online Pharmacy Consumer Protection Act of 2008 or similar legislation, or promotes, encourages or engages in the sale or distribution of prescription medication without a valid prescription;  
  • \r\n
  • Infringes on the intellectual property rights of another User or any other person or entity;
  • \r\n
  • Violates the privacy or publicity rights of another User or any other person or entity, or breaches any duty of confidentiality that you owe to another User or any other person or entity;
  • \r\n
  • Interferes with the operation of DBP services;
  • \r\n
  • Contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable of, disrupting, damaging or limiting the functionality of any software or hardware; or
  • \r\n
  • Contains false or deceptive language, or unsubstantiated or comparative claims, regarding DBP or its services.
  • \r\n
\r\n
\r\n

You further understand and agree that if DBP is named as a defendant in, or investigated in anticipation of, any legal or administrative proceeding arising out of Your domain name registration or Your use of DBP's services, Your private registration service may be canceled, which means the domain name registration will revert back to You and Your identity will therefore be revealed in the Whois directory as Registrant.

\r\n

In the event:

\r\n
    \r\n
  1. DBP takes any of the actions set forth in subsection i, ii, or iii above or section 5; and/or
  2. \r\n
  3. You elect to cancel DBP's services for any reason --
  4. \r\n
\r\n

Neither DBP nor your Registrar will refund any fees paid by You whatsoever.

\r\n

5. communications forwarding

\r\n

a. Correspondence Forwarding

\r\n

Inasmuch as DBP's name, postal address and phone number will be listed in the Whois directory, You agree DBP will review and forward communications addressed to Your domain name that are received via email, certified or traceable courier mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically acknowledge DBP will not forward to You first class postal mail (other than legal notices), \"junk\" mail or other unsolicited communications (whether delivered through email, fax, postal mail or telephone), and You further authorize DBP to either discard all such communications or return all such communications to sender unopened. You agree to waive any and all claims arising from Your failure to receive communications directed to Your domain name but not forwarded to You by DBP.

\r\n

b. Email Forwarding

\r\n

The Whois directory requires an email address for every purchased domain name registration. When You purchase a private domain registration, DBP creates a private email address for that domain name, \"@domainsbyproxy.com\". Thereafter, when messages are sent to that private email address, DBP handles them according to the email preference You selected for that particular domain name. You have three (3) email preferences from which to choose. You can elect to:

\r\n
    \r\n
  1. Have all of the messages forwarded;
  2. \r\n
  3. Have all of the messages filtered for Spam and then forwarded; or
  4. \r\n
  5. Have none of the messages forwarded.
  6. \r\n
\r\n

As with all communications, You agree to waive any and all claims arising from Your failure to receive email directed to Your domain name but not forwarded to You by DBP.

\r\n

c. Notifications Regarding Correspondence and Your Obligation to Respond

\r\n

When DBP receives certified or traceable courier mail or legal notices addressed to Your domain name, in most cases, DBP will attempt to forward the mail to you via email. If You do not respond to the DBP email and/or the correspondence DBP has received regarding Your domain name registration concerns a dispute of any kind or otherwise requires immediate disposition, DBP may immediately reveal Your identity and/or cancel the DBP private registration service regarding either the domain name registration(s) in question. This means the Whois directory will revert to displaying Your name, postal address, email address and phone number that you provided to DBP.

\r\n

d. Additional Administrative Fees

\r\n

DBP reserves the right to charge You reasonable \"administrative fees\" or \"processing fees\" for (i)  tasks DBP may perform outside the normal scope of its Services, (ii) additional time and/or costs DBP may incur in providing its Services, and/or (iii) Your non-compliance with the Agreement (as determined by DBP in its sole and absolute discretion). Typical administrative or processing fee scenarios include, but are not limited to, (i) customer service issues that require additional personal time and attention; (ii) disputes that require accounting or legal services, whether performed by DBP staff or by outside firms retained by DBP; (iii) recouping any and all costs and fees, including the cost of Services, incurred by DBP as the result of chargebacks or other payment disputes brought by You, Your bank or Payment Method processor.  These administrative fees or processing fees will be billed to the Payment Method You have on file with Your Registrar.

\r\n

You agree to waive the right to trial by jury in any proceeding that takes place relating to or arising out of this Agreement.

\r\n

6. limitations of liability

\r\n

UNDER NO CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.

\r\n

YOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:

\r\n
    \r\n
  1. THE INADVERTENT DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
  2. \r\n
  3. ACCESS DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
  4. \r\n
  5. DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
  6. \r\n
  7. THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
  8. \r\n
  9. THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
  10. \r\n
  11. ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
  12. \r\n
  13. DELETION OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
  14. \r\n
  15. PROCESSING OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
  16. \r\n
  17. ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR NOT).
  18. \r\n
\r\n

7. indemnity

\r\n

You agree to release, defend, indemnify and hold harmless DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, directors, officers and employees and Your Registrar, from and against any and all claims, demands, liabilities, losses, damages or costs, including reasonable attorneys' fees, arising out of or related in any way to this Agreement, the services provided hereunder by DBP, the DBP website, Your account with DBP, Your use of Your domain name registration, and/or disputes arising in connection with the dispute policy.

\r\n

8. DBP warranty disclaimer

\r\n

DBP, ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE, ARE PROVIDED \"AS IS\". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.

\r\n

9. copyright and trademark

\r\n

You understand and agree that all content and materials contained in this Agreement, the Privacy Policy and the DBP website found here , are protected by the various copyright, patent, trademark, service mark and trade secret laws of the United States, as well as any other applicable proprietary rights and laws, and that DBP expressly reserves its rights in and to all such content and materials.

\r\n

You further understand and agree You are prohibited from using, in any manner whatsoever, any of the afore-described content and materials without the express written permission of DBP. No license or right under any copyright, patent, trademark, service mark or other proprietary right or license is granted to You or conferred upon You by this Agreement or otherwise.

\r\n

10. miscellaneous provisions

\r\n

a. Severability; Construction; Entire Agreement

\r\n

If any part of this Agreement shall be held to be illegal, unenforceable or invalid, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, enforceable and valid, and the legality, enforceability and validity of the remaining provisions of this Agreement shall not be affected or impaired. The headings herein will not be considered a part of this Agreement. You agree this Agreement, including the policies it incorporates by reference, constitute the complete and only Agreement between You and DBP regarding the services contemplated herein.

\r\n

b. Governing Law; Venue; Waiver Of Trial By Jury

\r\n

This Agreement shall be governed in all respects by the laws and judicial decisions of Maricopa County, Arizona, excluding its conflicts of laws rules. Except as provided immediately below, You agree that any action relating to or arising out of this Agreement, shall be brought exclusively in the courts of Maricopa County, Arizona. For the adjudication of domain name registration disputes, you agree to submit to the exclusive jurisdiction and venue of the U.S. District Court for the District of Arizona located in Phoenix, Arizona. You agree to waive the right to trial by jury in any proceeding, regardless of venue, that takes place relating to or arising out of this Agreement.

\r\n

c. Notices

\r\n

All notices from DBP to You will be sent to the email address You provided to DBP. Notices by email shall be deemed effective twenty-four (24) hours after the email is sent by DBP, unless DBP receives notice that the email address is invalid, in which event DBP may give You notice via first class or certified mail, return receipt requested. All notices from You to DBP shall be sent via certified mail, return receipt requested or traceable courier to:

\r\n
      Domains By Proxy, LLC
      Attn: General Counsel
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

Notices sent via certified mail or traceable courier shall be deemed effective five (5) days after the date of mailing.

\r\n

d. Insurance

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's negligent actions (and absent fraud or other negligent or willful misconduct committed by a third party), You may be insured against such loss through DBP's Professional Liability Insurance Policy, which is currently underwritten by American International Insurance Company. Of course, every claim is subject to the then-carrier's investigation into the facts and circumstances surrounding such claim. In the event You have reason to believe that circumstances exist which warrant the filing of an insurance claim, please send a written notice (specifying the basis for such claim), via certified mail, return receipt requested, to:

\r\n
      Domains By Proxy, LLC
      Attn: Insurance Claims
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

e. Indemnification

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's willful misconduct, Your Registrar (the \"Indemnifying Party\") will indemnify and hold You harmless against any losses, damages or costs (including reasonable attorneys' fees) resulting from any claim, action, proceeding, suit or demand arising out of or related to the loss of Your domain name registration. Such indemnification obligations under this Section 10(e) are conditioned upon the following:

\r\n
    \r\n
  1. That You promptly give both DBP and the Indemnifying Party written notice of the claim, demand, or action and provide reasonable assistance to the Indemnifying Party, at its cost and expense, in connection therewith, and
  2. \r\n
  3. That the Indemnifying Party has the right, at its option, to control and direct the defense to any settlement of such claim, demand, or action.
  4. \r\n
\r\n

Any notice concerning indemnification shall, with respect to DBP, be sent in accordance with Section 10(c) of this Agreement. With respect to Your Registrar, notices regarding indemnification should be sent in accordance with the notification provisions contained in Your Registrar's Domain Name Registration Agreement.

\r\n

f. Term of Agreement; Survival

\r\n

The terms of this Agreement shall continue in full force and effect as long as DBP is the Registrant for any domain name on Your behalf. Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any termination or expiration of this Agreement.

\n
\n
\n\nRevised: 10/25/17
\nCopyright © 2003-2017 All Rights Reserved.\n
\n
\n
", + "title": "Domain Name Proxy Agreement", + "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456" + } + ] + }, + "headers": {} + } + }, + "operationId": "TopLevelDomains_ListAgreements", + "title": "List Top Level Domain Agreements" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListTopLevelDomains.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListTopLevelDomains.json new file mode 100644 index 000000000000..96fe93a3d84c --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/ListTopLevelDomains.json @@ -0,0 +1,89 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "com", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", + "properties": { + "privacy": true + } + }, + { + "name": "net", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", + "properties": { + "privacy": true + } + }, + { + "name": "co.uk", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", + "properties": { + "privacy": false + } + }, + { + "name": "org", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", + "properties": { + "privacy": true + } + }, + { + "name": "nl", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", + "properties": { + "privacy": true + } + }, + { + "name": "in", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", + "properties": { + "privacy": false + } + }, + { + "name": "biz", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", + "properties": { + "privacy": true + } + }, + { + "name": "org.uk", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", + "properties": { + "privacy": false + } + }, + { + "name": "co.in", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", + "properties": { + "privacy": false + } + } + ] + }, + "headers": {} + } + }, + "operationId": "TopLevelDomains_List", + "title": "List Top Level Domains" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/RenewDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/RenewDomain.json new file mode 100644 index 000000000000..911ecc9e2daf --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/RenewDomain.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "RG", + "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + }, + "operationId": "Domains_Renew", + "title": "Renew an existing domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/TransferOutDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/TransferOutDomain.json new file mode 100644 index 000000000000..449adc7551c9 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/TransferOutDomain.json @@ -0,0 +1,117 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} + }, + "400": {} + }, + "operationId": "Domains_TransferOut", + "title": "Transfer out domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/UpdateAppServiceDomain.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/UpdateAppServiceDomain.json new file mode 100644 index 000000000000..bc03d98087a3 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/UpdateAppServiceDomain.json @@ -0,0 +1,303 @@ +{ + "parameters": { + "api-version": "2024-11-01", + "domain": { + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "dnsType": "DefaultDomainRegistrarDns", + "privacy": false + } + }, + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} + }, + "202": { + "body": { + "name": "example.com", + "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", + "location": "global", + "properties": { + "authCode": "exampleAuthCode", + "autoRenew": true, + "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", + "agreementKeys": [ + "agreementKey1" + ] + }, + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Admin", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactBilling": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "billing@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Billing", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Registrant", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "contactTech": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", + "fax": "1-245-534-2242", + "jobTitle": "Tech", + "nameFirst": "John", + "nameLast": "Doe", + "nameMiddle": "", + "organization": "Microsoft Inc.", + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "Domains_Update", + "title": "Update App Service Domain" +} diff --git a/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/UpdateAppServiceDomainOwnershipIdentifier.json b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/UpdateAppServiceDomainOwnershipIdentifier.json new file mode 100644 index 000000000000..387a3d8a5594 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/examples/2024-11-01/UpdateAppServiceDomainOwnershipIdentifier.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "SampleOwnershipId", + "api-version": "2024-11-01", + "domainName": "example.com", + "domainOwnershipIdentifier": { + "properties": { + "ownershipId": "SampleOwnershipId" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "SampleOwnershipId", + "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", + "properties": { + "ownershipId": "SampleOwnershipId" + } + }, + "headers": {} + } + }, + "operationId": "Domains_UpdateOwnershipIdentifier", + "title": "Update App Service Domain OwnershipIdentifier" +} diff --git a/specification/domainregistration/DomainRegistration.Management/main.tsp b/specification/domainregistration/DomainRegistration.Management/main.tsp new file mode 100644 index 000000000000..dd1964c73e24 --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/main.tsp @@ -0,0 +1,58 @@ +/** + * PLEASE DO NOT REMOVE - USED FOR CONVERTER METRICS + * Generated by package: @autorest/openapi-to-typespec + * Parameters used: + * isFullCompatible: false + * guessResourceKey: false + * Version: 0.11.4 + * Date: 2025-08-08T07:49:59.812Z + */ +import "@typespec/rest"; +import "@typespec/versioning"; +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "./models.tsp"; +import "./back-compatible.tsp"; +import "./Domain.tsp"; +import "./DomainOwnershipIdentifier.tsp"; +import "./TopLevelDomain.tsp"; +import "./routes.tsp"; + +using TypeSpec.Rest; +using TypeSpec.Http; +using Azure.ResourceManager.Foundations; +using Azure.Core; +using Azure.ResourceManager; +using TypeSpec.Versioning; +/** + * + */ +@armProviderNamespace +@service(#{ title: "TopLevelDomains API Client" }) +@versioned(Versions) +// FIXME: Common type version not set. Set to v3. +@armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v3) +namespace Microsoft.DomainRegistration; + +/** + * The available API versions. + */ +enum Versions { + /** + * The 2024-11-01 API version. + */ + v2024_11_01: "2024-11-01", +} + +interface Operations + extends Azure.ResourceManager.Legacy.Operations< + ArmResponse, + DefaultErrorResponse + > {} + +@@doc(Operations.list, + "Description for Implements Csm operations Api to exposes the list of available Csm Apis under the resource provider" +); +@@summary(Operations.list, + "Implements Csm operations Api to exposes the list of available Csm Apis under the resource provider" +); diff --git a/specification/domainregistration/DomainRegistration.Management/models.tsp b/specification/domainregistration/DomainRegistration.Management/models.tsp new file mode 100644 index 000000000000..7f753a5d6d8c --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/models.tsp @@ -0,0 +1,1046 @@ +import "@typespec/rest"; +import "@typespec/http"; +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; + +using TypeSpec.Rest; +using TypeSpec.Http; +using Azure.ResourceManager; +using Azure.ResourceManager.Foundations; + +namespace Microsoft.DomainRegistration; + +/** + * Reasons why domain is not renewable. + */ +union ResourceNotRenewableReason { + string, + + /** + * Registration status is not supported for renewal. + */ + RegistrationStatusNotSupportedForRenewal: "RegistrationStatusNotSupportedForRenewal", + + /** + * Domain expiration is not in the renewal time range. + */ + ExpirationNotInRenewalTimeRange: "ExpirationNotInRenewalTimeRange", + + /** + * Subscription is not active. + */ + SubscriptionNotActive: "SubscriptionNotActive", +} + +/** + * Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything. + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum DomainType { + Regular, + SoftDeleted, +} + +/** + * Domain registration status. + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum DomainStatus { + Active, + Awaiting, + Cancelled, + Confiscated, + Disabled, + Excluded, + Expired, + Failed, + Held, + Locked, + Parked, + Pending, + Reserved, + Reverted, + Suspended, + Transferred, + Unknown, + Unlocked, + Unparked, + Updated, + JsonConverterFailed, +} + +/** + * Domain provisioning state. + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum ProvisioningState { + Succeeded, + Failed, + Canceled, + InProgress, + Deleting, +} + +/** + * Type of the Azure resource the hostname is assigned to. + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum AzureResourceType { + Website, + TrafficManager, +} + +/** + * Type of the DNS record. + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum CustomHostNameDnsRecordType { + CName, + A, +} + +/** + * Type of the hostname. + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum HostNameType { + Verified, + Managed, +} + +/** + * Current DNS type + */ +#suppress "@azure-tools/typespec-azure-core/no-enum" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +enum DnsType { + AzureDns, + DefaultDomainRegistrarDns, +} + +/** + * Description of an operation available for Microsoft.Web resource provider. + */ +model CsmOperationDescription { + /** + * Operation name, e.g. Microsoft.Web/sites/write. + */ + name?: string; + + /** + * Operation display name. + */ + isDataAction?: boolean; + + /** + * Meta data about operation used for display in portal. + */ + display?: CsmOperationDisplay; + + /** + * Origin of the operation, e.g. "system" or "user". + */ + origin?: string; + + /** + * Properties available for a Microsoft.Web resource provider operation. + */ + properties?: CsmOperationDescriptionProperties; +} + +/** + * Meta data about operation used for display in portal. + */ +model CsmOperationDisplay { + /** + * Provider name. + */ + provider?: string; + + /** + * Resource type. + */ + resource?: string; + + /** + * Operation name. + */ + operation?: string; + + /** + * Operation description. + */ + description?: string; +} + +/** + * Properties available for a Microsoft.Web resource provider operation. + */ +model CsmOperationDescriptionProperties { + /** + * Resource metrics service provided by Microsoft.Insights resource provider. + */ + serviceSpecification?: ServiceSpecification; +} + +/** + * Resource metrics service provided by Microsoft.Insights resource provider. + */ +model ServiceSpecification { + /** + * Resource metrics service name. + */ + @identifiers(#["name"]) + metricSpecifications?: MetricSpecification[]; + + /** + * Resource logs service provided by Microsoft.Insights resource provider. + */ + @identifiers(#["name"]) + logSpecifications?: LogSpecification[]; +} + +/** + * Definition of a single resource metric. + */ +model MetricSpecification { + /** + * Name of the resource metric. + */ + name?: string; + + /** + * Display name of the resource metric. + */ + displayName?: string; + + /** + * Description of the resource metric. + */ + displayDescription?: string; + + /** + * Resource metric unit. + */ + unit?: string; + + /** + * Resource metric aggregation type. + */ + aggregationType?: string; + + /** + * Resource metric supported aggregation types. + */ + supportsInstanceLevelAggregation?: boolean; + + /** + * Resource metric supported time grain types. + */ + enableRegionalMdmAccount?: boolean; + + /** + * Resource metric source MDM account. + */ + sourceMdmAccount?: string; + + /** + * Resource metric source MDM namespace. + */ + sourceMdmNamespace?: string; + + /** + * Resource metric filter pattern. + */ + metricFilterPattern?: string; + + /** + * Resource metric fill gap with zero. + */ + fillGapWithZero?: boolean; + + /** + * Resource metric is internal. + */ + isInternal?: boolean; + + /** + * Resource metric dimensions. + */ + @identifiers(#["name"]) + dimensions?: Dimension[]; + + /** + * Resource metric category. + */ + category?: string; + + /** + * Resource metric availability. + */ + @identifiers(#[]) + availabilities?: MetricAvailability[]; + + /** + * Resource metric supported time grain types. + */ + supportedTimeGrainTypes?: string[]; + + /** + * Resource metric supported aggregation types. + */ + supportedAggregationTypes?: string[]; +} + +/** + * Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, + * where instance name is dimension of the metric HTTP request + */ +model Dimension { + /** + * Name of the dimension. + */ + name?: string; + + /** + * Display name of the dimension. + */ + displayName?: string; + + /** + * Dimension of the internal name. + */ + internalName?: string; + + /** + * Dimension to be exported for shoebox. + */ + toBeExportedForShoebox?: boolean; +} + +/** + * Retention policy of a resource metric. + */ +model MetricAvailability { + /** + * Metric availability time grain. + */ + timeGrain?: string; + + /** + * Metric availability blob duration. + */ + blobDuration?: string; +} + +/** + * Log Definition of a single resource metric. + */ +model LogSpecification { + /** + * Name of the log. + */ + name?: string; + + /** + * Display name of the log. + */ + displayName?: string; + + /** + * Blob duration of the log. + */ + blobDuration?: string; + + /** + * Log filtered pattern of the log. + */ + logFilterPattern?: string; +} + +/** + * App Service error response. + */ +@error +model DefaultErrorResponse { + /** + * Error model. + */ + @visibility(Lifecycle.Read) + error?: DefaultErrorResponseError; +} + +/** + * Error model. + */ +model DefaultErrorResponseError { + /** + * Standardized string to programmatically identify the error. + */ + @visibility(Lifecycle.Read) + code?: string; + + /** + * Detailed error description and debugging information. + */ + @visibility(Lifecycle.Read) + message?: string; + + /** + * Detailed error description and debugging information. + */ + @visibility(Lifecycle.Read) + target?: string; + + /** + * Error details. + */ + @identifiers(#[]) + details?: DefaultErrorResponseErrorDetailsItem[]; + + /** + * More information to debug error. + */ + @visibility(Lifecycle.Read) + innererror?: string; +} + +/** + * Detailed errors. + */ +model DefaultErrorResponseErrorDetailsItem { + /** + * Standardized string to programmatically identify the error. + */ + @visibility(Lifecycle.Read) + code?: string; + + /** + * Detailed error description and debugging information. + */ + @visibility(Lifecycle.Read) + message?: string; + + /** + * Detailed error description and debugging information. + */ + @visibility(Lifecycle.Read) + target?: string; +} + +/** + * Identifies an object. + */ +model NameIdentifier { + /** + * Name of the object. + */ + name?: string; +} + +/** + * Domain availability check result. + */ +model DomainAvailabilityCheckResult { + /** + * Name of the domain. + */ + name?: string; + + /** + * true if domain can be purchased using CreateDomain API; otherwise, false. + */ + available?: boolean; + + /** + * Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything. + */ + domainType?: DomainType; +} + +/** + * Collection of domains. + */ +model DomainCollection is Azure.Core.Page; + +/** + * Domain resource specific properties + */ +model DomainProperties { + /** + * Administrative contact. + */ + @visibility(Lifecycle.Create) + contactAdmin: Contact; + + /** + * Billing contact. + */ + @visibility(Lifecycle.Create) + contactBilling: Contact; + + /** + * Registrant contact. + */ + @visibility(Lifecycle.Create) + contactRegistrant: Contact; + + /** + * Technical contact. + */ + @visibility(Lifecycle.Create) + contactTech: Contact; + + /** + * Domain registration status. + */ + @visibility(Lifecycle.Read) + registrationStatus?: DomainStatus; + + /** + * Domain provisioning state. + */ + @visibility(Lifecycle.Read) + provisioningState?: ProvisioningState; + + /** + * Name servers. + */ + @visibility(Lifecycle.Read) + nameServers?: string[]; + + /** + * true if domain privacy is enabled for this domain; otherwise, false. + */ + privacy?: boolean; + + /** + * Domain creation timestamp. + */ + @visibility(Lifecycle.Read) + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + createdTime?: utcDateTime; + + /** + * Domain expiration timestamp. + */ + @visibility(Lifecycle.Read) + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + expirationTime?: utcDateTime; + + /** + * Timestamp when the domain was renewed last time. + */ + @visibility(Lifecycle.Read) + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + lastRenewedTime?: utcDateTime; + + /** + * true if the domain should be automatically renewed; otherwise, false. + */ + autoRenew?: boolean = true; + + /** + * true if Azure can assign this domain to App Service apps; otherwise, false. This value will be true if domain registration status is active and \n it is hosted on name servers Azure has programmatic access to. + */ + @visibility(Lifecycle.Read) + readyForDnsRecordManagement?: boolean; + + /** + * All hostnames derived from the domain and assigned to Azure resources. + */ + @visibility(Lifecycle.Read) + @identifiers(#["name"]) + managedHostNames?: HostName[]; + + /** + * Legal agreement consent. + */ + @visibility(Lifecycle.Create) + consent: DomainPurchaseConsent; + + /** + * Reasons why domain is not renewable. + */ + @visibility(Lifecycle.Read) + domainNotRenewableReasons?: ResourceNotRenewableReason[]; + + /** + * Current DNS type + */ + dnsType?: DnsType; + + /** + * Azure DNS Zone to use + */ + dnsZoneId?: string; + + /** + * Target DNS type (would be used for migration) + */ + targetDnsType?: DnsType; + + /** + * Authorization code for the domain. + */ + @visibility(Lifecycle.Create, Lifecycle.Read) + authCode?: string; +} + +/** + * Contact information for domain registration. If 'Domain Privacy' option is not selected then the contact information is made publicly available through the Whois + * directories as per ICANN requirements. + */ +model Contact { + /** + * Mailing address. + */ + addressMailing?: Address; + + /** + * Email address. + */ + email: string; + + /** + * Fax number. + */ + fax?: string; + + /** + * Job title. + */ + jobTitle?: string; + + /** + * First name. + */ + nameFirst: string; + + /** + * Last name. + */ + nameLast: string; + + /** + * Middle name. + */ + nameMiddle?: string; + + /** + * Organization contact belongs to. + */ + organization?: string; + + /** + * Phone number. + */ + phone: string; +} + +/** + * Address information for domain registration. + */ +model Address { + /** + * First line of an Address. + */ + address1: string; + + /** + * The second line of the Address. Optional. + */ + address2?: string; + + /** + * The city for the address. + */ + city: string; + + /** + * The country for the address. + */ + country: string; + + /** + * The postal code for the address. + */ + postalCode: string; + + /** + * The state or province for the address. + */ + state: string; +} + +/** + * Details of a hostname derived from a domain. + */ +model HostName { + /** + * Name of the hostname. + */ + name?: string; + + /** + * List of apps the hostname is assigned to. This list will have more than one app only if the hostname is pointing to a Traffic Manager. + */ + siteNames?: string[]; + + /** + * Name of the Azure resource the hostname is assigned to. If it is assigned to a Traffic Manager then it will be the Traffic Manager name otherwise it will be the app name. + */ + azureResourceName?: string; + + /** + * Type of the Azure resource the hostname is assigned to. + */ + azureResourceType?: AzureResourceType; + + /** + * Type of the DNS record. + */ + customHostNameDnsRecordType?: CustomHostNameDnsRecordType; + + /** + * Type of the hostname. + */ + hostNameType?: HostNameType; +} + +/** + * Domain purchase consent object, representing acceptance of applicable legal agreements. + */ +model DomainPurchaseConsent { + /** + * List of applicable legal agreement keys. This list can be retrieved using ListLegalAgreements API under TopLevelDomain resource. + */ + agreementKeys?: string[]; + + /** + * Client IP address. + */ + agreedBy?: string; + + /** + * Timestamp when the agreements were accepted. + */ + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + agreedAt?: utcDateTime; +} + +/** + * Single sign-on request information for domain management. + */ +model DomainControlCenterSsoRequest { + /** + * URL where the single sign-on request is to be made. + */ + @visibility(Lifecycle.Read) + url?: string; + + /** + * Post parameter key. + */ + #suppress "@azure-tools/typespec-azure-resource-manager/secret-prop" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + @visibility(Lifecycle.Read) + postParameterKey?: string; + + /** + * Post parameter value. Client should use 'application/x-www-form-urlencoded' encoding for this value. + */ + @visibility(Lifecycle.Read) + postParameterValue?: string; +} + +/** + * Domain recommendation search parameters. + */ +model DomainRecommendationSearchParameters { + /** + * Keywords to be used for generating domain recommendations. + */ + keywords?: string; + + /** + * Maximum number of recommendations. + */ + maxDomainRecommendations?: int32; +} + +/** + * Collection of domain name identifiers. + */ +@@identifiers(NameIdentifierCollection.value, #["name"]); +model NameIdentifierCollection is Azure.Core.Page; + +/** + * ARM resource for a domain. + */ +#suppress "@azure-tools/typespec-azure-resource-manager/patch-envelope" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +#suppress "@azure-tools/typespec-azure-core/composition-over-inheritance" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +model DomainPatchResource extends ProxyOnlyResource { + /** + * DomainPatchResource resource specific properties + */ + properties?: DomainPatchResourceProperties; +} + +/** + * DomainPatchResource resource specific properties + */ +model DomainPatchResourceProperties { + /** + * Administrative contact. + */ + @visibility(Lifecycle.Create) + contactAdmin: Contact; + + /** + * Billing contact. + */ + @visibility(Lifecycle.Create) + contactBilling: Contact; + + /** + * Registrant contact. + */ + @visibility(Lifecycle.Create) + contactRegistrant: Contact; + + /** + * Technical contact. + */ + @visibility(Lifecycle.Create) + contactTech: Contact; + + /** + * Domain registration status. + */ + @visibility(Lifecycle.Read) + registrationStatus?: DomainStatus; + + /** + * Domain provisioning state. + */ + @visibility(Lifecycle.Read) + provisioningState?: ProvisioningState; + + /** + * Name servers. + */ + @visibility(Lifecycle.Read) + nameServers?: string[]; + + /** + * true if domain privacy is enabled for this domain; otherwise, false. + */ + privacy?: boolean; + + /** + * Domain creation timestamp. + */ + @visibility(Lifecycle.Read) + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + createdTime?: utcDateTime; + + /** + * Domain expiration timestamp. + */ + @visibility(Lifecycle.Read) + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + expirationTime?: utcDateTime; + + /** + * Timestamp when the domain was renewed last time. + */ + @visibility(Lifecycle.Read) + // FIXME: (utcDateTime) Please double check that this is the correct type for your scenario. + lastRenewedTime?: utcDateTime; + + /** + * true if the domain should be automatically renewed; otherwise, false. + */ + autoRenew?: boolean = true; + + /** + * true if Azure can assign this domain to App Service apps; otherwise, false. This value will be true if domain registration status is active and \n it is hosted on name servers Azure has programmatic access to. + */ + @visibility(Lifecycle.Read) + readyForDnsRecordManagement?: boolean; + + /** + * All hostnames derived from the domain and assigned to Azure resources. + */ + @visibility(Lifecycle.Read) + @identifiers(#["name"]) + managedHostNames?: HostName[]; + + /** + * Legal agreement consent. + */ + @visibility(Lifecycle.Create) + consent: DomainPurchaseConsent; + + /** + * Reasons why domain is not renewable. + */ + @visibility(Lifecycle.Read) + domainNotRenewableReasons?: ResourceNotRenewableReason[]; + + /** + * Current DNS type + */ + dnsType?: DnsType; + + /** + * Azure DNS Zone to use + */ + dnsZoneId?: string; + + /** + * Target DNS type (would be used for migration) + */ + targetDnsType?: DnsType; + + /** + * Authorization code for the domain. + */ + @visibility(Lifecycle.Create, Lifecycle.Read) + authCode?: string; +} + +/** + * Azure proxy only resource. This resource is not tracked by Azure Resource Manager. + */ +model ProxyOnlyResource { + /** + * Resource Id. + */ + @visibility(Lifecycle.Read) + id?: string; + + /** + * Resource Name. + */ + @visibility(Lifecycle.Read) + name?: string; + + /** + * Kind of resource. + */ + kind?: string; + + /** + * Resource type. + */ + @visibility(Lifecycle.Read) + type?: string; +} + +/** + * Collection of domain ownership identifiers. + */ +model DomainOwnershipIdentifierCollection + is Azure.Core.Page; + +/** + * DomainOwnershipIdentifier resource specific properties + */ +#suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-provisioning-state" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +model DomainOwnershipIdentifierProperties { + /** + * Ownership Id. + */ + ownershipId?: string; +} + +/** + * Collection of Top-level domains. + */ +model TopLevelDomainCollection is Azure.Core.Page; + +/** + * TopLevelDomain resource specific properties + */ +#suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-provisioning-state" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +model TopLevelDomainProperties { + /** + * If true, then the top level domain supports domain privacy; otherwise, false. + */ + privacy?: boolean; +} + +/** + * Options for retrieving the list of top level domain legal agreements. + */ +model TopLevelDomainAgreementOption { + /** + * If true, then the list of agreements will include agreements for domain privacy as well; otherwise, false. + */ + includePrivacy?: boolean; + + /** + * If true, then the list of agreements will include agreements for domain transfer as well; otherwise, false. + */ + forTransfer?: boolean; +} + +/** + * Collection of top-level domain legal agreements. + */ +@@identifiers(TldLegalAgreementCollection.value, #["agreementKey"]); +model TldLegalAgreementCollection is Azure.Core.Page; + +/** + * Legal agreement for a top level domain. + */ +model TldLegalAgreement { + /** + * Unique identifier for the agreement. + */ + #suppress "@azure-tools/typespec-azure-resource-manager/secret-prop" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" + agreementKey: string; + + /** + * Agreement title. + */ + title: string; + + /** + * Agreement details. + */ + content: string; + + /** + * URL where a copy of the agreement details is hosted. + */ + url?: string; +} + +/** + * The server could not understand the request due to invalid syntax. + */ +@error +model ArmBadRequestResponse { + ...TypeSpec.Http.Response<400>; +} + +/** + * Collection of Azure resource manager operation metadata. + */ +model CsmOperationCollection { + /** + * Collection of resources. + */ + @pageItems + @identifiers(#["name"]) + value: CsmOperationDescription[]; + + /** + * Link to next page of resources. + */ + @doc("Link to next page of resources.") + @visibility(Lifecycle.Read) + @nextLink + nextLink?: string; +} diff --git a/specification/domainregistration/DomainRegistration.Management/routes.tsp b/specification/domainregistration/DomainRegistration.Management/routes.tsp new file mode 100644 index 000000000000..df0cd95bac5d --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/routes.tsp @@ -0,0 +1,59 @@ +// FIXME: Operations in this file are not detected as a resource operation, please confirm the conversion result manually + +import "@azure-tools/typespec-azure-core"; +import "@typespec/rest"; +import "./models.tsp"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; + +using TypeSpec.Rest; +using TypeSpec.Http; +using Azure.ResourceManager; +using TypeSpec.OpenAPI; + +namespace Microsoft.DomainRegistration; + +#suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-interface-requires-decorator" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details" +interface DomainsOperationGroup { + /** + * Description for Check if a domain is available for registration. + */ + @summary("Check if a domain is available for registration.") + @autoRoute + @action("checkDomainAvailability") + checkAvailability is ArmProviderActionSync< + Request = NameIdentifier, + Response = DomainAvailabilityCheckResult, + Scope = SubscriptionActionScope, + Parameters = {}, + Error = DefaultErrorResponse + >; + + /** + * Description for Generate a single sign-on request for the domain management portal. + */ + @summary("Generate a single sign-on request for the domain management portal.") + @autoRoute + @action("generateSsoRequest") + getControlCenterSsoRequest is ArmProviderActionSync< + Response = DomainControlCenterSsoRequest, + Scope = SubscriptionActionScope, + Parameters = {}, + Error = DefaultErrorResponse + >; + + /** + * Description for Get domain name recommendations based on keywords. + */ + @summary("Get domain name recommendations based on keywords.") + @autoRoute + @action("listDomainRecommendations") + @list + listRecommendations is ArmProviderActionSync< + Request = DomainRecommendationSearchParameters, + Response = NameIdentifierCollection, + Scope = SubscriptionActionScope, + Parameters = {}, + Error = DefaultErrorResponse + >; +} diff --git a/specification/domainregistration/DomainRegistration.Management/tspconfig.yaml b/specification/domainregistration/DomainRegistration.Management/tspconfig.yaml new file mode 100644 index 000000000000..a8116e8f70dd --- /dev/null +++ b/specification/domainregistration/DomainRegistration.Management/tspconfig.yaml @@ -0,0 +1,44 @@ +parameters: + "service-dir": + default: "sdk/domainregistration" +emit: + - "@azure-tools/typespec-autorest" +options: + "@azure-tools/typespec-autorest": + omit-unreachable-types: false + emitter-output-dir: "{project-root}/.." + azure-resource-provider-folder: "resource-manager" + output-file: "{azure-resource-provider-folder}/{service-name}/DomainRegistration/{version-status}/{version}/openapi.json" + examples-dir: "{project-root}/examples" + emit-lro-options: "all" + "@azure-tools/typespec-python": + emitter-output-dir: "{output-dir}/{service-dir}/azure-mgmt-domainregistration" + namespace: "azure.mgmt.domainregistration" + generate-test: true + generate-sample: true + flavor: "azure" + "@azure-tools/typespec-java": + emitter-output-dir: "{output-dir}/{service-dir}/azure-resourcemanager-domainregistration" + namespace: "com.azure.resourcemanager.domainregistration" + service-name: "Domainregistration" # human-readable service name, whitespace allowed + flavor: azure + "@azure-tools/typespec-ts": + service-dir: sdk/domainregistration + emitter-output-dir: "{output-dir}/{service-dir}/arm-domainregistration" + flavor: "azure" + experimental-extensible-enums: true + package-details: + name: "@azure/arm-domainregistration" + "@azure-tools/typespec-go": + service-dir: "sdk/resourcemanager/domainregistration" + emitter-output-dir: "{output-dir}/{service-dir}/armdomainregistration" + module: "github.com/Azure/azure-sdk-for-go/{service-dir}/armdomainregistration" + fix-const-stuttering: true + flavor: "azure" + generate-samples: true + generate-fakes: true + head-as-boolean: true + inject-spans: true +linter: + extends: + - "@azure-tools/typespec-azure-rulesets/resource-manager" diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/readme.md b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/readme.md index dff671f20b03..d73d55d7a9a8 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/readme.md +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/readme.md @@ -43,10 +43,7 @@ These settings apply only when `--tag=package-2024-11` is specified on the comma ```yaml $(tag) == 'package-2024-11' input-file: - - stable/2024-11-01/DomainRegistrationProvider.json - - stable/2024-11-01/Domains.json - - stable/2024-11-01/TopLevelDomains.json - - stable/2024-11-01/CommonDefinitions.json + - stable/2024-11-01/openapi.json ``` ### Tag: package-2024-04 diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/CommonDefinitions.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/CommonDefinitions.json deleted file mode 100644 index 32d63fd459d4..000000000000 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/CommonDefinitions.json +++ /dev/null @@ -1,4918 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2024-11-01", - "title": "Common Definitions" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": {}, - "definitions": { - "ApiDefinitionInfo": { - "description": "Information about the formal API definition for the app.", - "type": "object", - "properties": { - "url": { - "description": "The URL of the API definition.", - "type": "string" - } - } - }, - "ApiManagementConfig": { - "description": "Azure API management (APIM) configuration linked to the app.", - "type": "object", - "properties": { - "id": { - "description": "APIM-Api Identifier.", - "type": "string" - } - } - }, - "AppServiceEnvironment": { - "description": "Description of an App Service Environment.", - "required": [ - "virtualNetwork" - ], - "type": "object", - "properties": { - "provisioningState": { - "description": "Provisioning state of the App Service Environment.", - "enum": [ - "Succeeded", - "Failed", - "Canceled", - "InProgress", - "Deleting" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "ProvisioningState", - "modelAsString": false - } - }, - "status": { - "description": "Current status of the App Service Environment.", - "enum": [ - "Preparing", - "Ready", - "Scaling", - "Deleting" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "HostingEnvironmentStatus", - "modelAsString": false - } - }, - "virtualNetwork": { - "$ref": "#/definitions/VirtualNetworkProfile", - "description": "Description of the Virtual Network." - }, - "internalLoadBalancingMode": { - "description": "Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.", - "enum": [ - "None", - "Web", - "Publishing", - "Web, Publishing" - ], - "type": "string", - "x-ms-enum": { - "name": "LoadBalancingMode", - "modelAsString": true - } - }, - "multiSize": { - "description": "Front-end VM size, e.g. \"Medium\", \"Large\".", - "type": "string" - }, - "multiRoleCount": { - "format": "int32", - "description": "Number of front-end instances.", - "type": "integer", - "readOnly": true - }, - "ipsslAddressCount": { - "format": "int32", - "description": "Number of IP SSL addresses reserved for the App Service Environment.", - "type": "integer" - }, - "dnsSuffix": { - "description": "DNS suffix of the App Service Environment.", - "type": "string" - }, - "maximumNumberOfMachines": { - "format": "int32", - "description": "Maximum number of VMs in the App Service Environment.", - "type": "integer", - "readOnly": true - }, - "frontEndScaleFactor": { - "format": "int32", - "description": "Scale factor for front-ends.", - "type": "integer" - }, - "suspended": { - "description": "true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available\n (most likely because NSG blocked the incoming traffic).", - "type": "boolean", - "readOnly": true - }, - "clusterSettings": { - "description": "Custom settings for changing the behavior of the App Service Environment.", - "type": "array", - "items": { - "$ref": "#/definitions/NameValuePair" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "userWhitelistedIpRanges": { - "description": "User added ip ranges to whitelist on ASE db", - "type": "array", - "items": { - "type": "string" - } - }, - "hasLinuxWorkers": { - "description": "Flag that displays whether an ASE has linux workers or not", - "type": "boolean", - "readOnly": true - }, - "upgradePreference": { - "description": "Upgrade Preference", - "default": "None", - "enum": [ - "None", - "Early", - "Late", - "Manual" - ], - "type": "string", - "x-ms-enum": { - "name": "UpgradePreference", - "modelAsString": true, - "values": [ - { - "value": "None", - "description": "No preference on when this App Service Environment will be upgraded" - }, - { - "value": "Early", - "description": "This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'" - }, - { - "value": "Late", - "description": "This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'" - }, - { - "value": "Manual", - "description": "ASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically" - } - ] - } - }, - "dedicatedHostCount": { - "format": "int32", - "description": "Dedicated Host Count", - "type": "integer" - }, - "zoneRedundant": { - "description": "Whether or not this App Service Environment is zone-redundant.", - "type": "boolean" - }, - "customDnsSuffixConfiguration": { - "$ref": "#/definitions/CustomDnsSuffixConfiguration" - }, - "networkingConfiguration": { - "$ref": "#/definitions/AseV3NetworkingConfiguration" - }, - "upgradeAvailability": { - "description": "Whether an upgrade is available for this App Service Environment.", - "enum": [ - "None", - "Ready" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "UpgradeAvailability", - "modelAsString": true, - "values": [ - { - "value": "None", - "description": "No upgrade is currently available for this App Service Environment" - }, - { - "value": "Ready", - "description": "An upgrade is ready to be manually initiated on this App Service Environment" - } - ] - } - } - } - }, - "AppServicePlan": { - "description": "App Service plan.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "description": "AppServicePlan resource specific properties", - "type": "object", - "properties": { - "workerTierName": { - "description": "Target worker tier assigned to the App Service plan.", - "type": "string" - }, - "status": { - "description": "App Service plan status.", - "enum": [ - "Ready", - "Pending", - "Creating" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "StatusOptions", - "modelAsString": false - } - }, - "subscription": { - "description": "App Service plan subscription.", - "type": "string", - "readOnly": true - }, - "hostingEnvironmentProfile": { - "$ref": "#/definitions/HostingEnvironmentProfile", - "description": "Specification for the App Service Environment to use for the App Service plan.", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "maximumNumberOfWorkers": { - "format": "int32", - "description": "Maximum number of instances that can be assigned to this App Service plan.", - "type": "integer", - "readOnly": true - }, - "numberOfWorkers": { - "format": "int32", - "description": "The number of instances that are assigned to this App Service plan.", - "type": "integer", - "readOnly": true - }, - "geoRegion": { - "description": "Geographical location for the App Service plan.", - "type": "string", - "readOnly": true - }, - "perSiteScaling": { - "description": "If true, apps assigned to this App Service plan can be scaled independently.\nIf false, apps assigned to this App Service plan will scale to all instances of the plan.", - "default": false, - "type": "boolean" - }, - "elasticScaleEnabled": { - "description": "ServerFarm supports ElasticScale. Apps in this plan will scale as if the ServerFarm was ElasticPremium sku", - "type": "boolean" - }, - "maximumElasticWorkerCount": { - "format": "int32", - "description": "Maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan", - "type": "integer" - }, - "numberOfSites": { - "format": "int32", - "description": "Number of apps assigned to this App Service plan.", - "type": "integer", - "readOnly": true - }, - "isSpot": { - "description": "If true, this App Service Plan owns spot instances.", - "type": "boolean" - }, - "spotExpirationTime": { - "format": "date-time", - "description": "The time when the server farm expires. Valid only if it is a spot server farm.", - "type": "string" - }, - "freeOfferExpirationTime": { - "format": "date-time", - "description": "The time when the server farm free offer expires.", - "type": "string" - }, - "resourceGroup": { - "description": "Resource group of the App Service plan.", - "type": "string", - "readOnly": true - }, - "reserved": { - "description": "If Linux app service plan true, false otherwise.", - "default": false, - "type": "boolean", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "isXenon": { - "description": "Obsolete: If Hyper-V container app service plan true, false otherwise.", - "default": false, - "type": "boolean", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "hyperV": { - "description": "If Hyper-V container app service plan true, false otherwise.", - "default": false, - "type": "boolean", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "targetWorkerCount": { - "format": "int32", - "description": "Scaling worker count.", - "type": "integer" - }, - "targetWorkerSizeId": { - "format": "int32", - "description": "Scaling worker size ID.", - "type": "integer" - }, - "provisioningState": { - "description": "Provisioning state of the App Service Plan.", - "enum": [ - "Succeeded", - "Failed", - "Canceled", - "InProgress", - "Deleting" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "ProvisioningState", - "modelAsString": false - } - }, - "kubeEnvironmentProfile": { - "$ref": "#/definitions/KubeEnvironmentProfile", - "description": "Specification for the Kubernetes Environment to use for the App Service plan." - }, - "zoneRedundant": { - "description": "If true, this App Service Plan will perform availability zone balancing.\nIf false, this App Service Plan will not perform availability zone balancing.", - "default": false, - "type": "boolean" - }, - "asyncScalingEnabled": { - "description": "If true, this App Service Plan will attempt to scale asynchronously if there are insufficient workers to scale synchronously.\nIf false, this App Service Plan will only attempt sync scaling.", - "type": "boolean" - } - }, - "x-ms-client-flatten": true - }, - "sku": { - "$ref": "#/definitions/SkuDescription" - }, - "extendedLocation": { - "$ref": "#/definitions/ExtendedLocation" - } - } - }, - "AppServicePlanCollection": { - "description": "Collection of App Service plans.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/AppServicePlan" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "ArmIdWrapper": { - "description": "A wrapper for an ARM resource id", - "type": "object", - "properties": { - "id": { - "type": "string", - "readOnly": true - } - } - }, - "AseV3NetworkingConfiguration": { - "description": "Full view of networking configuration for an ASE.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "AseV3NetworkingConfiguration resource specific properties", - "type": "object", - "properties": { - "windowsOutboundIpAddresses": { - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "linuxOutboundIpAddresses": { - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "externalInboundIpAddresses": { - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "internalInboundIpAddresses": { - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "allowNewPrivateEndpointConnections": { - "description": "Property to enable and disable new private endpoint connection creation on ASE", - "type": "boolean" - }, - "ftpEnabled": { - "description": "Property to enable and disable FTP on ASEV3", - "type": "boolean" - }, - "remoteDebugEnabled": { - "description": "Property to enable and disable Remote Debug on ASEV3", - "type": "boolean" - }, - "inboundIpAddressOverride": { - "description": "Customer provided Inbound IP Address. Only able to be set on Ase create.", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "AutoHealActions": { - "description": "Actions which to take by the auto-heal module when a rule is triggered.", - "type": "object", - "properties": { - "actionType": { - "description": "Predefined action to be taken.", - "enum": [ - "Recycle", - "LogEvent", - "CustomAction" - ], - "type": "string", - "x-ms-enum": { - "name": "AutoHealActionType", - "modelAsString": false - } - }, - "customAction": { - "$ref": "#/definitions/AutoHealCustomAction", - "description": "Custom action to be taken." - }, - "minProcessExecutionTime": { - "description": "Minimum time the process must execute\nbefore taking the action", - "type": "string" - } - } - }, - "AutoHealCustomAction": { - "description": "Custom action to be executed\nwhen an auto heal rule is triggered.", - "type": "object", - "properties": { - "exe": { - "description": "Executable to be run.", - "type": "string" - }, - "parameters": { - "description": "Parameters for the executable.", - "type": "string" - } - } - }, - "AutoHealRules": { - "description": "Rules that can be defined for auto-heal.", - "type": "object", - "properties": { - "triggers": { - "$ref": "#/definitions/AutoHealTriggers", - "description": "Conditions that describe when to execute the auto-heal actions." - }, - "actions": { - "$ref": "#/definitions/AutoHealActions", - "description": "Actions to be executed when a rule is triggered." - } - } - }, - "AutoHealTriggers": { - "description": "Triggers for auto-heal.", - "type": "object", - "properties": { - "requests": { - "$ref": "#/definitions/RequestsBasedTrigger", - "description": "A rule based on total requests." - }, - "privateBytesInKB": { - "format": "int32", - "description": "A rule based on private bytes.", - "type": "integer" - }, - "statusCodes": { - "description": "A rule based on status codes.", - "type": "array", - "items": { - "$ref": "#/definitions/StatusCodesBasedTrigger" - }, - "x-ms-identifiers": [ - "path" - ] - }, - "slowRequests": { - "$ref": "#/definitions/SlowRequestsBasedTrigger", - "description": "A rule based on request execution time." - }, - "slowRequestsWithPath": { - "description": "A rule based on multiple Slow Requests Rule with path", - "type": "array", - "items": { - "$ref": "#/definitions/SlowRequestsBasedTrigger" - }, - "x-ms-identifiers": [ - "path" - ] - }, - "statusCodesRange": { - "description": "A rule based on status codes ranges.", - "type": "array", - "items": { - "$ref": "#/definitions/StatusCodesRangeBasedTrigger" - }, - "x-ms-identifiers": [ - "path" - ] - } - } - }, - "AzureStorageInfoValue": { - "description": "Azure Files or Blob Storage access information value for dictionary storage.", - "type": "object", - "properties": { - "type": { - "description": "Type of storage.", - "enum": [ - "AzureFiles", - "AzureBlob" - ], - "type": "string", - "x-ms-enum": { - "name": "AzureStorageType", - "modelAsString": false - } - }, - "accountName": { - "description": "Name of the storage account.", - "type": "string" - }, - "shareName": { - "description": "Name of the file share (container name, for Blob storage).", - "type": "string" - }, - "accessKey": { - "description": "Access key for the storage account.", - "type": "string", - "x-ms-secret": true - }, - "mountPath": { - "description": "Path to mount the storage within the site's runtime environment.", - "type": "string" - }, - "state": { - "description": "State of the storage account.", - "enum": [ - "Ok", - "InvalidCredentials", - "InvalidShare", - "NotValidated" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "AzureStorageState", - "modelAsString": false - } - }, - "protocol": { - "description": "Mounting protocol to use for the storage account.", - "enum": [ - "Smb", - "Http", - "Nfs" - ], - "type": "string", - "x-ms-enum": { - "name": "AzureStorageProtocol", - "modelAsString": true - } - } - } - }, - "Capability": { - "description": "Describes the capabilities/features allowed for a specific SKU.", - "type": "object", - "properties": { - "name": { - "description": "Name of the SKU capability.", - "type": "string" - }, - "value": { - "description": "Value of the SKU capability.", - "type": "string" - }, - "reason": { - "description": "Reason of the SKU capability.", - "type": "string" - } - } - }, - "Certificate": { - "description": "SSL certificate for an app.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "description": "Certificate resource specific properties", - "type": "object", - "properties": { - "password": { - "description": "Certificate password.", - "type": "string", - "x-ms-secret": true - }, - "friendlyName": { - "description": "Friendly name of the certificate.", - "type": "string", - "readOnly": true - }, - "subjectName": { - "description": "Subject name of the certificate.", - "type": "string", - "readOnly": true - }, - "hostNames": { - "description": "Host names the certificate applies to.", - "type": "array", - "items": { - "type": "string" - } - }, - "pfxBlob": { - "format": "byte", - "description": "Pfx blob.", - "type": "string" - }, - "siteName": { - "description": "App name.", - "type": "string", - "readOnly": true - }, - "selfLink": { - "description": "Self link.", - "type": "string", - "readOnly": true - }, - "issuer": { - "description": "Certificate issuer.", - "type": "string", - "readOnly": true - }, - "issueDate": { - "format": "date-time", - "description": "Certificate issue Date.", - "type": "string", - "readOnly": true - }, - "expirationDate": { - "format": "date-time", - "description": "Certificate expiration date.", - "type": "string", - "readOnly": true - }, - "thumbprint": { - "description": "Certificate thumbprint.", - "type": "string", - "readOnly": true - }, - "valid": { - "description": "Is the certificate valid?.", - "type": "boolean", - "readOnly": true - }, - "cerBlob": { - "format": "byte", - "description": "Raw bytes of .cer file", - "type": "string", - "readOnly": true - }, - "publicKeyHash": { - "description": "Public key hash.", - "type": "string", - "readOnly": true - }, - "hostingEnvironmentProfile": { - "$ref": "#/definitions/HostingEnvironmentProfile", - "description": "Specification for the App Service Environment to use for the certificate.", - "readOnly": true - }, - "keyVaultId": { - "description": "Azure Key Vault Csm resource Id.", - "type": "string", - "format": "arm-id", - "x-ms-arm-id-details": { - "allowedResources": [ - { - "type": "Microsoft.KeyVault/vaults" - } - ] - } - }, - "keyVaultSecretName": { - "description": "Azure Key Vault secret name.", - "type": "string" - }, - "keyVaultSecretStatus": { - "description": "Status of the Key Vault secret.", - "enum": [ - "Initialized", - "WaitingOnCertificateOrder", - "Succeeded", - "CertificateOrderFailed", - "OperationNotPermittedOnKeyVault", - "AzureServiceUnauthorizedToAccessKeyVault", - "KeyVaultDoesNotExist", - "KeyVaultSecretDoesNotExist", - "UnknownError", - "ExternalPrivateKey", - "Unknown" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "KeyVaultSecretStatus", - "modelAsString": false - } - }, - "serverFarmId": { - "description": "Resource ID of the associated App Service plan.", - "type": "string", - "format": "arm-id", - "x-ms-arm-id-details": { - "allowedResources": [ - { - "type": "Microsoft.Web/serverfarms" - } - ] - } - }, - "canonicalName": { - "description": "CNAME of the certificate to be issued via free certificate", - "type": "string" - }, - "domainValidationMethod": { - "description": "Method of domain validation for free cert", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "CertificateCollection": { - "description": "Collection of certificates.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/Certificate" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "CertificatePatchResource": { - "description": "ARM resource for a certificate.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "CertificatePatchResource resource specific properties", - "type": "object", - "properties": { - "password": { - "description": "Certificate password.", - "type": "string", - "x-ms-mutability": [ - "read" - ] - }, - "friendlyName": { - "description": "Friendly name of the certificate.", - "type": "string", - "readOnly": true - }, - "subjectName": { - "description": "Subject name of the certificate.", - "type": "string", - "readOnly": true - }, - "hostNames": { - "description": "Host names the certificate applies to.", - "type": "array", - "items": { - "type": "string" - } - }, - "pfxBlob": { - "format": "byte", - "description": "Pfx blob.", - "type": "string" - }, - "siteName": { - "description": "App name.", - "type": "string", - "readOnly": true - }, - "selfLink": { - "description": "Self link.", - "type": "string", - "readOnly": true - }, - "issuer": { - "description": "Certificate issuer.", - "type": "string", - "readOnly": true - }, - "issueDate": { - "format": "date-time", - "description": "Certificate issue Date.", - "type": "string", - "readOnly": true - }, - "expirationDate": { - "format": "date-time", - "description": "Certificate expiration date.", - "type": "string", - "readOnly": true - }, - "thumbprint": { - "description": "Certificate thumbprint.", - "type": "string", - "readOnly": true - }, - "valid": { - "description": "Is the certificate valid?.", - "type": "boolean", - "readOnly": true - }, - "cerBlob": { - "format": "byte", - "description": "Raw bytes of .cer file", - "type": "string", - "readOnly": true - }, - "publicKeyHash": { - "description": "Public key hash.", - "type": "string", - "readOnly": true - }, - "hostingEnvironmentProfile": { - "$ref": "#/definitions/HostingEnvironmentProfile", - "description": "Specification for the App Service Environment to use for the certificate.", - "readOnly": true - }, - "keyVaultId": { - "description": "Key Vault Csm resource Id.", - "type": "string" - }, - "keyVaultSecretName": { - "description": "Key Vault secret name.", - "type": "string" - }, - "keyVaultSecretStatus": { - "description": "Status of the Key Vault secret.", - "enum": [ - "Initialized", - "WaitingOnCertificateOrder", - "Succeeded", - "CertificateOrderFailed", - "OperationNotPermittedOnKeyVault", - "AzureServiceUnauthorizedToAccessKeyVault", - "KeyVaultDoesNotExist", - "KeyVaultSecretDoesNotExist", - "UnknownError", - "ExternalPrivateKey", - "Unknown" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "KeyVaultSecretStatus", - "modelAsString": false - } - }, - "serverFarmId": { - "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\".", - "type": "string" - }, - "canonicalName": { - "description": "CNAME of the certificate to be issued via free certificate", - "type": "string" - }, - "domainValidationMethod": { - "description": "Method of domain validation for free cert", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "CipherSuites": { - "description": "Describes valid TLS cipher suites.", - "type": "object", - "properties": { - "suites": { - "description": "List of TLS Cipher Suites that are supported by App Service.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "CloningInfo": { - "description": "Information needed for cloning operation.", - "required": [ - "sourceWebAppId" - ], - "type": "object", - "properties": { - "correlationId": { - "format": "uuid", - "description": "Correlation ID of cloning operation. This ID ties multiple cloning operations\ntogether to use the same snapshot.", - "type": "string", - "example": "00000000-0000-0000-0000-000000000000" - }, - "overwrite": { - "description": "true to overwrite destination app; otherwise, false.", - "type": "boolean" - }, - "cloneCustomHostNames": { - "description": "true to clone custom hostnames from source app; otherwise, false.", - "type": "boolean" - }, - "cloneSourceControl": { - "description": "true to clone source control from source app; otherwise, false.", - "type": "boolean" - }, - "sourceWebAppId": { - "description": "ARM resource ID of the source app. App resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.", - "type": "string" - }, - "sourceWebAppLocation": { - "description": "Location of source app ex: West US or North Europe", - "type": "string" - }, - "hostingEnvironment": { - "description": "App Service Environment.", - "type": "string" - }, - "appSettingsOverrides": { - "description": "Application setting overrides for cloned app. If specified, these settings override the settings cloned \nfrom source app. Otherwise, application settings from source app are retained.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "configureLoadBalancing": { - "description": "true to configure load balancing for source and destination app.", - "type": "boolean" - }, - "trafficManagerProfileId": { - "description": "ARM resource ID of the Traffic Manager profile to use, if it exists. Traffic Manager resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.", - "type": "string" - }, - "trafficManagerProfileName": { - "description": "Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.", - "type": "string" - } - } - }, - "ConnStringInfo": { - "description": "Database connection string information.", - "type": "object", - "properties": { - "name": { - "description": "Name of connection string.", - "type": "string" - }, - "connectionString": { - "description": "Connection string value.", - "type": "string" - }, - "type": { - "description": "Type of database.", - "enum": [ - "MySql", - "SQLServer", - "SQLAzure", - "Custom", - "NotificationHub", - "ServiceBus", - "EventHub", - "ApiHub", - "DocDb", - "RedisCache", - "PostgreSQL" - ], - "type": "string", - "x-ms-enum": { - "name": "ConnectionStringType", - "modelAsString": false - } - } - } - }, - "Container": { - "description": "Container App container definition.", - "type": "object", - "properties": { - "image": { - "description": "Container image tag.", - "type": "string" - }, - "name": { - "description": "Custom container name.", - "type": "string" - }, - "command": { - "description": "Container start command.", - "type": "array", - "items": { - "type": "string" - } - }, - "args": { - "description": "Container start command arguments.", - "type": "array", - "items": { - "type": "string" - } - }, - "env": { - "description": "Container environment variables.", - "type": "array", - "items": { - "$ref": "#/definitions/EnvironmentVar" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "resources": { - "$ref": "#/definitions/ContainerResources", - "description": "Container resource requirements." - } - } - }, - "ContainerResources": { - "description": "Container App container resource requirements.", - "type": "object", - "properties": { - "cpu": { - "format": "double", - "description": "Required CPU in cores, e.g. 0.5", - "type": "number" - }, - "memory": { - "description": "Required memory, e.g. \"250Mb\"", - "type": "string" - } - } - }, - "CorsSettings": { - "description": "Cross-Origin Resource Sharing (CORS) settings for the app.", - "type": "object", - "properties": { - "allowedOrigins": { - "description": "Gets or sets the list of origins that should be allowed to make cross-origin\ncalls (for example: http://example.com:12345). Use \"*\" to allow all.", - "type": "array", - "items": { - "type": "string" - } - }, - "supportCredentials": { - "description": "Gets or sets whether CORS requests with credentials are allowed. See \nhttps://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials\nfor more details.", - "type": "boolean" - } - } - }, - "CsmOperationCollection": { - "description": "Collection of Azure resource manager operation metadata.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/CsmOperationDescription" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "CsmOperationDescription": { - "description": "Description of an operation available for Microsoft.Web resource provider.", - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "isDataAction": { - "type": "boolean" - }, - "display": { - "$ref": "#/definitions/CsmOperationDisplay" - }, - "origin": { - "type": "string" - }, - "properties": { - "$ref": "#/definitions/CsmOperationDescriptionProperties" - } - } - }, - "CsmOperationDescriptionProperties": { - "description": "Properties available for a Microsoft.Web resource provider operation.", - "type": "object", - "properties": { - "serviceSpecification": { - "$ref": "#/definitions/ServiceSpecification" - } - } - }, - "CsmOperationDisplay": { - "description": "Meta data about operation used for display in portal.", - "type": "object", - "properties": { - "provider": { - "type": "string" - }, - "resource": { - "type": "string" - }, - "operation": { - "type": "string" - }, - "description": { - "type": "string" - } - } - }, - "CsmUsageQuota": { - "description": "Usage of the quota resource.", - "type": "object", - "properties": { - "unit": { - "description": "Units of measurement for the quota resource.", - "type": "string" - }, - "nextResetTime": { - "format": "date-time", - "description": "Next reset time for the resource counter.", - "type": "string" - }, - "currentValue": { - "format": "int64", - "description": "The current value of the resource counter.", - "type": "integer" - }, - "limit": { - "format": "int64", - "description": "The resource limit.", - "type": "integer" - }, - "name": { - "$ref": "#/definitions/LocalizableString", - "description": "Quota name." - } - } - }, - "CsmUsageQuotaCollection": { - "description": "Collection of CSM usage quotas.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/CsmUsageQuota" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "CustomDnsSuffixConfiguration": { - "description": "Full view of the custom domain suffix configuration for ASEv3.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "CustomDnsSuffixConfiguration resource specific properties", - "type": "object", - "properties": { - "provisioningState": { - "enum": [ - "Succeeded", - "Failed", - "Degraded", - "InProgress" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "CustomDnsSuffixProvisioningState", - "modelAsString": false - } - }, - "provisioningDetails": { - "type": "string", - "readOnly": true - }, - "dnsSuffix": { - "description": "The default custom domain suffix to use for all sites deployed on the ASE.", - "type": "string" - }, - "certificateUrl": { - "description": "The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.", - "type": "string" - }, - "keyVaultReferenceIdentity": { - "description": "The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "CustomScaleRule": { - "description": "Container App container Custom scaling rule.", - "type": "object", - "properties": { - "type": { - "description": "Type of the custom scale rule\neg: azure-servicebus, redis etc.", - "type": "string" - }, - "metadata": { - "description": "Metadata properties to describe custom scale rule.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "auth": { - "description": "Authentication secrets for the custom scale rule.", - "type": "array", - "items": { - "$ref": "#/definitions/ScaleRuleAuth" - }, - "x-ms-identifiers": [ - "triggerParameter" - ] - } - } - }, - "Dapr": { - "description": "Container App Dapr configuration.", - "type": "object", - "properties": { - "enabled": { - "description": "Boolean indicating if the Dapr side car is enabled", - "type": "boolean" - }, - "appId": { - "description": "Dapr application identifier", - "type": "string" - }, - "appPort": { - "format": "int32", - "description": "Port on which the Dapr side car", - "type": "integer" - }, - "components": { - "description": "Collection of Dapr components", - "type": "array", - "items": { - "$ref": "#/definitions/DaprComponent" - }, - "x-ms-identifiers": [ - "name" - ] - } - } - }, - "DaprComponent": { - "description": "Dapr component configuration", - "type": "object", - "properties": { - "name": { - "description": "Component name", - "type": "string" - }, - "type": { - "description": "Component type", - "type": "string" - }, - "version": { - "description": "Component version", - "type": "string" - }, - "metadata": { - "description": "Component metadata", - "type": "array", - "items": { - "$ref": "#/definitions/DaprMetadata" - }, - "x-ms-identifiers": [ - "name" - ] - } - } - }, - "DaprMetadata": { - "description": "Container App Dapr component metadata.", - "type": "object", - "properties": { - "name": { - "description": "Metadata property name.", - "type": "string" - }, - "value": { - "description": "Metadata property value.", - "type": "string" - }, - "secretRef": { - "description": "Name of the Container App secret from which to pull the metadata property value.", - "type": "string" - } - } - }, - "DataProviderMetadata": { - "description": "Additional configuration for a data providers", - "type": "object", - "properties": { - "providerName": { - "type": "string" - }, - "propertyBag": { - "description": "Settings for the data provider", - "type": "array", - "items": { - "$ref": "#/definitions/KeyValuePair[String,Object]" - }, - "readOnly": true, - "x-ms-identifiers": [ - "key" - ] - } - } - }, - "DataTableResponseColumn": { - "description": "Column definition", - "type": "object", - "properties": { - "columnName": { - "description": "Name of the column", - "type": "string" - }, - "dataType": { - "description": "Data type which looks like 'String' or 'Int32'.", - "type": "string" - }, - "columnType": { - "description": "Column Type", - "type": "string" - } - } - }, - "DataTableResponseObject": { - "description": "Data Table which defines columns and raw row values", - "type": "object", - "properties": { - "tableName": { - "description": "Name of the table", - "type": "string" - }, - "columns": { - "description": "List of columns with data types", - "type": "array", - "items": { - "$ref": "#/definitions/DataTableResponseColumn" - }, - "x-ms-identifiers": [ - "columnName" - ] - }, - "rows": { - "description": "Raw row values", - "type": "array", - "items": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - }, - "DefaultErrorResponse": { - "description": "App Service error response.", - "type": "object", - "properties": { - "error": { - "description": "Error model.", - "type": "object", - "properties": { - "code": { - "description": "Standardized string to programmatically identify the error.", - "type": "string", - "readOnly": true - }, - "message": { - "description": "Detailed error description and debugging information.", - "type": "string", - "readOnly": true - }, - "target": { - "description": "Detailed error description and debugging information.", - "type": "string", - "readOnly": true - }, - "details": { - "type": "array", - "items": { - "description": "Detailed errors.", - "type": "object", - "properties": { - "code": { - "description": "Standardized string to programmatically identify the error.", - "type": "string", - "readOnly": true - }, - "message": { - "description": "Detailed error description and debugging information.", - "type": "string", - "readOnly": true - }, - "target": { - "description": "Detailed error description and debugging information.", - "type": "string", - "readOnly": true - } - }, - "readOnly": true - }, - "x-ms-identifiers": [] - }, - "innererror": { - "description": "More information to debug error.", - "type": "string", - "readOnly": true - } - }, - "readOnly": true - } - } - }, - "DeletedSite": { - "description": "A deleted app.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "DeletedSite resource specific properties", - "type": "object", - "properties": { - "deletedSiteId": { - "format": "int32", - "description": "Numeric id for the deleted site", - "type": "integer", - "readOnly": true - }, - "deletedTimestamp": { - "description": "Time in UTC when the app was deleted.", - "type": "string", - "readOnly": true - }, - "subscription": { - "description": "Subscription containing the deleted site", - "type": "string", - "readOnly": true - }, - "resourceGroup": { - "description": "ResourceGroup that contained the deleted site", - "type": "string", - "readOnly": true - }, - "deletedSiteName": { - "description": "Name of the deleted site", - "type": "string", - "readOnly": true - }, - "slot": { - "description": "Slot of the deleted site", - "type": "string", - "readOnly": true - }, - "kind": { - "description": "Kind of site that was deleted", - "type": "string", - "readOnly": true - }, - "geoRegionName": { - "description": "Geo Region of the deleted site", - "type": "string", - "readOnly": true - } - }, - "x-ms-client-flatten": true - } - } - }, - "DetectorInfo": { - "description": "Definition of Detector", - "type": "object", - "properties": { - "id": { - "description": "Id of detector", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Name of detector", - "type": "string", - "readOnly": true - }, - "description": { - "description": "Short description of the detector and its purpose.", - "type": "string", - "readOnly": true - }, - "author": { - "description": "Author of the detector.", - "type": "string", - "readOnly": true - }, - "category": { - "description": "Problem category. This serves for organizing group for detectors.", - "type": "string", - "readOnly": true - }, - "supportTopicList": { - "description": "List of Support Topics for which this detector is enabled.", - "type": "array", - "items": { - "$ref": "#/definitions/SupportTopic" - }, - "readOnly": true - }, - "analysisType": { - "description": "Analysis Types for which this detector should apply to.", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "type": { - "description": "Whether this detector is an Analysis Detector or not.", - "enum": [ - "Detector", - "Analysis", - "CategoryOverview" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "DetectorType", - "modelAsString": false - } - }, - "score": { - "format": "float", - "description": "Defines score of a detector to power ML based matching.", - "type": "number", - "readOnly": true - } - } - }, - "DetectorResponse": { - "description": "Class representing Response from Detector", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "DetectorResponse resource specific properties", - "type": "object", - "properties": { - "metadata": { - "$ref": "#/definitions/DetectorInfo", - "description": "metadata for the detector" - }, - "dataset": { - "description": "Data Set", - "type": "array", - "items": { - "$ref": "#/definitions/DiagnosticData" - }, - "x-ms-identifiers": [] - }, - "status": { - "$ref": "#/definitions/Status", - "description": "Indicates status of the most severe insight." - }, - "dataProvidersMetadata": { - "description": "Additional configuration for different data providers to be used by the UI", - "type": "array", - "items": { - "$ref": "#/definitions/DataProviderMetadata" - }, - "x-ms-identifiers": [ - "providerName" - ] - }, - "suggestedUtterances": { - "$ref": "#/definitions/QueryUtterancesResults", - "description": "Suggested utterances where the detector can be applicable." - } - }, - "x-ms-client-flatten": true - } - } - }, - "DetectorResponseCollection": { - "description": "Collection of detector responses", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/DetectorResponse" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "DiagnosticData": { - "description": "Set of data with rendering instructions", - "type": "object", - "properties": { - "table": { - "$ref": "#/definitions/DataTableResponseObject", - "description": "Data in table form" - }, - "renderingProperties": { - "$ref": "#/definitions/Rendering", - "description": "Properties that describe how the table should be rendered" - } - } - }, - "Dimension": { - "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, \nwhere instance name is dimension of the metric HTTP request", - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "displayName": { - "type": "string" - }, - "internalName": { - "type": "string" - }, - "toBeExportedForShoebox": { - "type": "boolean" - } - } - }, - "EnvironmentVar": { - "description": "Container App container environment variable.", - "type": "object", - "properties": { - "name": { - "description": "Environment variable name.", - "type": "string" - }, - "value": { - "description": "Non-secret environment variable value.", - "type": "string" - }, - "secretRef": { - "description": "Name of the Container App secret from which to pull the environment variable value.", - "type": "string" - } - } - }, - "ErrorEntity": { - "description": "Body of the error response returned from the API.", - "type": "object", - "properties": { - "extendedCode": { - "description": "Type of error.", - "type": "string" - }, - "messageTemplate": { - "description": "Message template.", - "type": "string" - }, - "parameters": { - "description": "Parameters for the template.", - "type": "array", - "items": { - "type": "string" - } - }, - "innerErrors": { - "description": "Inner errors.", - "type": "array", - "items": { - "$ref": "#/definitions/ErrorEntity" - }, - "x-ms-identifiers": [] - }, - "details": { - "description": "Error Details.", - "type": "array", - "items": { - "$ref": "#/definitions/ErrorEntity" - }, - "x-ms-identifiers": [] - }, - "target": { - "description": "The error target.", - "type": "string" - }, - "code": { - "description": "Basic error code.", - "type": "string" - }, - "message": { - "description": "Any details of the error.", - "type": "string" - } - } - }, - "Experiments": { - "description": "Routing rules in production experiments.", - "type": "object", - "properties": { - "rampUpRules": { - "description": "List of ramp-up rules.", - "type": "array", - "items": { - "$ref": "#/definitions/RampUpRule" - }, - "x-ms-identifiers": [ - "name" - ] - } - } - }, - "ExtendedLocation": { - "description": "Extended Location.", - "type": "object", - "properties": { - "name": { - "description": "Name of extended location.", - "type": "string" - }, - "type": { - "description": "Type of extended location.", - "type": "string", - "readOnly": true - } - } - }, - "HandlerMapping": { - "description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension. \nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.", - "type": "object", - "properties": { - "extension": { - "description": "Requests with this extension will be handled using the specified FastCGI application.", - "type": "string" - }, - "scriptProcessor": { - "description": "The absolute path to the FastCGI application.", - "type": "string" - }, - "arguments": { - "description": "Command-line arguments to be passed to the script processor.", - "type": "string" - } - } - }, - "HostNameBinding": { - "description": "A hostname binding object.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "HostNameBinding resource specific properties", - "type": "object", - "properties": { - "siteName": { - "description": "App Service app name.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "domainId": { - "description": "Fully qualified ARM domain resource URI.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "azureResourceName": { - "description": "Azure resource name.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "azureResourceType": { - "description": "Azure resource type.", - "enum": [ - "Website", - "TrafficManager" - ], - "type": "string", - "x-ms-enum": { - "name": "AzureResourceType", - "modelAsString": false - }, - "x-ms-mutability": [ - "create", - "read" - ] - }, - "customHostNameDnsRecordType": { - "description": "Custom DNS record type.", - "enum": [ - "CName", - "A" - ], - "type": "string", - "x-ms-enum": { - "name": "CustomHostNameDnsRecordType", - "modelAsString": false - }, - "x-ms-mutability": [ - "create", - "read" - ] - }, - "hostNameType": { - "description": "Hostname type.", - "enum": [ - "Verified", - "Managed" - ], - "type": "string", - "x-ms-enum": { - "name": "HostNameType", - "modelAsString": false - }, - "x-ms-mutability": [ - "create", - "read" - ] - }, - "sslState": { - "description": "SSL type", - "enum": [ - "Disabled", - "SniEnabled", - "IpBasedEnabled" - ], - "type": "string", - "x-ms-enum": { - "name": "SslState", - "modelAsString": false - }, - "x-ms-mutability": [ - "create", - "read" - ] - }, - "thumbprint": { - "description": "SSL certificate thumbprint", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "virtualIP": { - "description": "Virtual IP address assigned to the hostname if IP based SSL is enabled.", - "type": "string", - "readOnly": true - } - }, - "x-ms-client-flatten": true - } - } - }, - "HostNameBindingCollection": { - "description": "Collection of hostname bindings.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/HostNameBinding" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "HostNameSslState": { - "description": "SSL-enabled hostname.", - "type": "object", - "properties": { - "name": { - "description": "Hostname.", - "type": "string" - }, - "sslState": { - "description": "SSL type.", - "enum": [ - "Disabled", - "SniEnabled", - "IpBasedEnabled" - ], - "type": "string", - "x-ms-enum": { - "name": "SslState", - "modelAsString": false - } - }, - "virtualIP": { - "description": "Virtual IP address assigned to the hostname if IP based SSL is enabled.", - "type": "string" - }, - "thumbprint": { - "description": "SSL certificate thumbprint.", - "type": "string" - }, - "toUpdate": { - "description": "Set to true to update existing hostname.", - "type": "boolean" - }, - "hostType": { - "description": "Indicates whether the hostname is a standard or repository hostname.", - "enum": [ - "Standard", - "Repository" - ], - "type": "string", - "x-ms-enum": { - "name": "HostType", - "modelAsString": false - } - } - } - }, - "HostingEnvironmentProfile": { - "description": "Specification for an App Service Environment to use for this resource.", - "type": "object", - "properties": { - "id": { - "description": "Resource ID of the App Service Environment.", - "type": "string" - }, - "name": { - "description": "Name of the App Service Environment.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type of the App Service Environment.", - "type": "string", - "readOnly": true - } - } - }, - "HttpScaleRule": { - "description": "Container App container Custom scaling rule.", - "type": "object", - "properties": { - "metadata": { - "description": "Metadata properties to describe http scale rule.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "auth": { - "description": "Authentication secrets for the custom scale rule.", - "type": "array", - "items": { - "$ref": "#/definitions/ScaleRuleAuth" - }, - "x-ms-identifiers": [ - "triggerParameter" - ] - } - } - }, - "HybridConnection": { - "description": "Hybrid Connection contract. This is used to configure a Hybrid Connection.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "HybridConnection resource specific properties", - "type": "object", - "properties": { - "serviceBusNamespace": { - "description": "The name of the Service Bus namespace.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "relayName": { - "description": "The name of the Service Bus relay.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "relayArmUri": { - "description": "The ARM URI to the Service Bus relay.", - "type": "string" - }, - "hostname": { - "description": "The hostname of the endpoint.", - "type": "string" - }, - "port": { - "format": "int32", - "description": "The port of the endpoint.", - "type": "integer" - }, - "sendKeyName": { - "description": "The name of the Service Bus key which has Send permissions. This is used to authenticate to Service Bus.", - "type": "string" - }, - "sendKeyValue": { - "description": "The value of the Service Bus key. This is used to authenticate to Service Bus. In ARM this key will not be returned\nnormally, use the POST /listKeys API instead.", - "type": "string" - }, - "serviceBusSuffix": { - "description": "The suffix for the service bus endpoint. By default this is .servicebus.windows.net", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "Identifier": { - "description": "A domain specific resource identifier.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "Identifier resource specific properties", - "type": "object", - "properties": { - "id": { - "description": "String representation of the identity.", - "type": "string", - "x-ms-client-name": "value" - } - }, - "x-ms-client-flatten": true - } - } - }, - "IdentifierCollection": { - "description": "Collection of identifiers.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/Identifier" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "IpSecurityRestriction": { - "description": "IP security restriction on an app.", - "type": "object", - "properties": { - "ipAddress": { - "description": "IP address the security restriction is valid for.\nIt can be in form of pure ipv4 address (required SubnetMask property) or\nCIDR notation such as ipv4/mask (leading bit match). For CIDR,\nSubnetMask property must not be specified.", - "type": "string" - }, - "subnetMask": { - "description": "Subnet mask for the range of IP addresses the restriction is valid for.", - "type": "string" - }, - "vnetSubnetResourceId": { - "description": "Virtual network resource id", - "type": "string" - }, - "vnetTrafficTag": { - "format": "int32", - "description": "(internal) Vnet traffic tag", - "type": "integer" - }, - "subnetTrafficTag": { - "format": "int32", - "description": "(internal) Subnet traffic tag", - "type": "integer" - }, - "action": { - "description": "Allow or Deny access for this IP range.", - "type": "string" - }, - "tag": { - "description": "Defines what this IP filter will be used for. This is to support IP filtering on proxies.", - "enum": [ - "Default", - "XffProxy", - "ServiceTag" - ], - "type": "string", - "x-ms-enum": { - "name": "IpFilterTag", - "modelAsString": true - } - }, - "priority": { - "format": "int32", - "description": "Priority of IP restriction rule.", - "type": "integer" - }, - "name": { - "description": "IP restriction rule name.", - "type": "string" - }, - "description": { - "description": "IP restriction rule description.", - "type": "string" - }, - "headers": { - "description": "IP restriction rule headers.\nX-Forwarded-Host (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Host#Examples). \nThe matching logic is ..\n- If the property is null or empty (default), all hosts(or lack of) are allowed.\n- A value is compared using ordinal-ignore-case (excluding port number).\n- Subdomain wildcards are permitted but don't match the root domain. For example, *.contoso.com matches the subdomain foo.contoso.com\n but not the root domain contoso.com or multi-level foo.bar.contoso.com\n- Unicode host names are allowed but are converted to Punycode for matching.\n\nX-Forwarded-For (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For#Examples).\nThe matching logic is ..\n- If the property is null or empty (default), any forwarded-for chains (or lack of) are allowed.\n- If any address (excluding port number) in the chain (comma separated) matches the CIDR defined by the property.\n\nX-Azure-FDID and X-FD-HealthProbe.\nThe matching logic is exact match.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - }, - "KeyValuePair[String,Object]": { - "type": "object", - "properties": { - "key": { - "type": "string", - "readOnly": true - }, - "value": { - "type": "object", - "readOnly": true - } - } - }, - "KubeEnvironmentProfile": { - "description": "Specification for a Kubernetes Environment to use for this resource.", - "type": "object", - "properties": { - "id": { - "description": "Resource ID of the Kubernetes Environment.", - "type": "string" - }, - "name": { - "description": "Name of the Kubernetes Environment.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type of the Kubernetes Environment.", - "type": "string", - "readOnly": true - } - } - }, - "LocalizableString": { - "description": "Localizable string object containing the name and a localized value.", - "type": "object", - "properties": { - "value": { - "description": "Non-localized name.", - "type": "string" - }, - "localizedValue": { - "description": "Localized name.", - "type": "string" - } - } - }, - "LogSpecification": { - "description": "Log Definition of a single resource metric.", - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "displayName": { - "type": "string" - }, - "blobDuration": { - "type": "string" - }, - "logFilterPattern": { - "type": "string" - } - } - }, - "ManagedServiceIdentity": { - "description": "Managed service identity.", - "type": "object", - "properties": { - "type": { - "description": "Type of managed service identity.", - "enum": [ - "SystemAssigned", - "UserAssigned", - "SystemAssigned, UserAssigned", - "None" - ], - "type": "string", - "x-ms-enum": { - "name": "ManagedServiceIdentityType", - "modelAsString": false - } - }, - "tenantId": { - "description": "Tenant of managed service identity.", - "type": "string", - "readOnly": true - }, - "principalId": { - "description": "Principal Id of managed service identity.", - "type": "string", - "readOnly": true - }, - "userAssignedIdentities": { - "description": "The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/userAssignedIdentity" - } - } - } - }, - "MetricAvailability": { - "description": "Retention policy of a resource metric.", - "type": "object", - "properties": { - "timeGrain": { - "type": "string" - }, - "blobDuration": { - "type": "string" - } - } - }, - "MetricSpecification": { - "description": "Definition of a single resource metric.", - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "displayName": { - "type": "string" - }, - "displayDescription": { - "type": "string" - }, - "unit": { - "type": "string" - }, - "aggregationType": { - "type": "string" - }, - "supportsInstanceLevelAggregation": { - "type": "boolean" - }, - "enableRegionalMdmAccount": { - "type": "boolean" - }, - "sourceMdmAccount": { - "type": "string" - }, - "sourceMdmNamespace": { - "type": "string" - }, - "metricFilterPattern": { - "type": "string" - }, - "fillGapWithZero": { - "type": "boolean" - }, - "isInternal": { - "type": "boolean" - }, - "dimensions": { - "type": "array", - "items": { - "$ref": "#/definitions/Dimension" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "category": { - "type": "string" - }, - "availabilities": { - "type": "array", - "items": { - "$ref": "#/definitions/MetricAvailability" - }, - "x-ms-identifiers": [] - }, - "supportedTimeGrainTypes": { - "type": "array", - "items": { - "type": "string" - } - }, - "supportedAggregationTypes": { - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "NameIdentifier": { - "description": "Identifies an object.", - "type": "object", - "properties": { - "name": { - "description": "Name of the object.", - "type": "string" - } - } - }, - "NameValuePair": { - "description": "Name value pair.", - "type": "object", - "properties": { - "name": { - "description": "Pair name.", - "type": "string" - }, - "value": { - "description": "Pair value.", - "type": "string" - } - } - }, - "Operation": { - "description": "An operation on a resource.", - "type": "object", - "properties": { - "id": { - "description": "Operation ID.", - "type": "string" - }, - "name": { - "description": "Operation name.", - "type": "string" - }, - "status": { - "description": "The current status of the operation.", - "enum": [ - "InProgress", - "Failed", - "Succeeded", - "TimedOut", - "Created" - ], - "type": "string", - "x-ms-enum": { - "name": "OperationStatus", - "modelAsString": false - } - }, - "errors": { - "description": "Any errors associate with the operation.", - "type": "array", - "items": { - "$ref": "#/definitions/ErrorEntity" - }, - "x-ms-identifiers": [] - }, - "createdTime": { - "format": "date-time", - "description": "Time when operation has started.", - "type": "string" - }, - "modifiedTime": { - "format": "date-time", - "description": "Time when operation has been updated.", - "type": "string" - }, - "expirationTime": { - "format": "date-time", - "description": "Time when operation will expire.", - "type": "string" - }, - "geoMasterOperationId": { - "format": "uuid", - "description": "Applicable only for stamp operation ids.", - "type": "string", - "example": "00000000-0000-0000-0000-000000000000" - } - } - }, - "PrivateEndpointConnectionCollection": { - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "PrivateLinkConnectionApprovalRequest": { - "description": "A request to approve or reject a private endpoint connection", - "type": "object", - "properties": { - "privateLinkServiceConnectionState": { - "$ref": "#/definitions/PrivateLinkConnectionState" - } - } - }, - "PrivateLinkConnectionApprovalRequestResource": { - "description": "Private Endpoint Connection Approval ARM resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/PrivateLinkConnectionApprovalRequest", - "description": "Core resource properties", - "type": "object", - "x-ms-client-flatten": true - } - } - }, - "PrivateLinkConnectionState": { - "description": "The state of a private link connection", - "type": "object", - "properties": { - "status": { - "description": "Status of a private link connection", - "type": "string" - }, - "description": { - "description": "Description of a private link connection", - "type": "string" - }, - "actionsRequired": { - "description": "ActionsRequired for a private link connection", - "type": "string" - } - } - }, - "PrivateLinkResource": { - "description": "A private link resource", - "required": [ - "id", - "name", - "type", - "properties" - ], - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "name": { - "description": "Name of a private link resource", - "type": "string" - }, - "type": { - "type": "string" - }, - "properties": { - "$ref": "#/definitions/PrivateLinkResourceProperties", - "description": "Properties of a private link resource" - } - } - }, - "PrivateLinkResourceProperties": { - "description": "Properties of a private link resource", - "type": "object", - "properties": { - "groupId": { - "description": "GroupId of a private link resource", - "type": "string", - "readOnly": true - }, - "requiredMembers": { - "description": "RequiredMembers of a private link resource", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "requiredZoneNames": { - "description": "RequiredZoneNames of a private link resource", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - } - } - }, - "PrivateLinkResourcesWrapper": { - "description": "Wrapper for a collection of private link resources", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/PrivateLinkResource" - } - } - } - }, - "ProxyOnlyResource": { - "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.", - "type": "object", - "properties": { - "id": { - "description": "Resource Id.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Resource Name.", - "type": "string", - "readOnly": true - }, - "kind": { - "description": "Kind of resource.", - "type": "string" - }, - "type": { - "description": "Resource type.", - "type": "string", - "readOnly": true - } - }, - "x-ms-azure-resource": true - }, - "PushSettings": { - "description": "Push settings for the App.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "PushSettings resource specific properties", - "required": [ - "isPushEnabled" - ], - "type": "object", - "properties": { - "isPushEnabled": { - "description": "Gets or sets a flag indicating whether the Push endpoint is enabled.", - "type": "boolean" - }, - "tagWhitelistJson": { - "description": "Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.", - "type": "string" - }, - "tagsRequiringAuth": { - "description": "Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.\nTags can consist of alphanumeric characters and the following:\n'_', '@', '#', '.', ':', '-'. \nValidation should be performed at the PushRequestHandler.", - "type": "string" - }, - "dynamicTagsJson": { - "description": "Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "QueryUtterancesResult": { - "description": "Result for utterances query.", - "type": "object", - "properties": { - "sampleUtterance": { - "$ref": "#/definitions/SampleUtterance", - "description": "A sample utterance." - }, - "score": { - "format": "float", - "description": "Score of a sample utterance.", - "type": "number" - } - } - }, - "QueryUtterancesResults": { - "description": "Suggested utterances where the detector can be applicable", - "type": "object", - "properties": { - "query": { - "description": "Search Query.", - "type": "string" - }, - "results": { - "description": "Array of utterance results for search query.", - "type": "array", - "items": { - "$ref": "#/definitions/QueryUtterancesResult" - }, - "x-ms-identifiers": [] - } - } - }, - "QueueScaleRule": { - "description": "Container App container Azure Queue based scaling rule.", - "type": "object", - "properties": { - "queueName": { - "description": "Queue name.", - "type": "string" - }, - "queueLength": { - "format": "int32", - "description": "Queue length.", - "type": "integer" - }, - "auth": { - "description": "Authentication secrets for the queue scale rule.", - "type": "array", - "items": { - "$ref": "#/definitions/ScaleRuleAuth" - }, - "x-ms-identifiers": [ - "triggerParameter" - ] - } - } - }, - "RampUpRule": { - "description": "Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.", - "type": "object", - "properties": { - "actionHostName": { - "description": "Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net.", - "type": "string" - }, - "reroutePercentage": { - "format": "double", - "description": "Percentage of the traffic which will be redirected to ActionHostName.", - "type": "number" - }, - "changeStep": { - "format": "double", - "description": "In auto ramp up scenario this is the step to add/remove from ReroutePercentage until it reaches \\nMinReroutePercentage or \nMaxReroutePercentage. Site metrics are checked every N minutes specified in ChangeIntervalInMinutes.\\nCustom decision algorithm \ncan be provided in TiPCallback site extension which URL can be specified in ChangeDecisionCallbackUrl.", - "type": "number" - }, - "changeIntervalInMinutes": { - "format": "int32", - "description": "Specifies interval in minutes to reevaluate ReroutePercentage.", - "type": "integer" - }, - "minReroutePercentage": { - "format": "double", - "description": "Specifies lower boundary above which ReroutePercentage will stay.", - "type": "number" - }, - "maxReroutePercentage": { - "format": "double", - "description": "Specifies upper boundary below which ReroutePercentage will stay.", - "type": "number" - }, - "changeDecisionCallbackUrl": { - "description": "Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified.", - "type": "string" - }, - "name": { - "description": "Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment.", - "type": "string" - } - } - }, - "RemotePrivateEndpointConnectionARMResource": { - "description": "Remote Private Endpoint Connection ARM resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "RemotePrivateEndpointConnectionARMResource resource specific properties", - "type": "object", - "properties": { - "provisioningState": { - "type": "string", - "readOnly": true - }, - "privateEndpoint": { - "$ref": "#/definitions/ArmIdWrapper", - "description": "PrivateEndpoint of a remote private endpoint connection" - }, - "privateLinkServiceConnectionState": { - "$ref": "#/definitions/PrivateLinkConnectionState" - }, - "ipAddresses": { - "description": "Private IPAddresses mapped to the remote private endpoint", - "type": "array", - "items": { - "type": "string" - } - } - }, - "x-ms-client-flatten": true - } - } - }, - "Rendering": { - "description": "Instructions for rendering the data", - "type": "object", - "properties": { - "type": { - "description": "Rendering Type", - "enum": [ - "NoGraph", - "Table", - "TimeSeries", - "TimeSeriesPerInstance", - "PieChart", - "DataSummary", - "Email", - "Insights", - "DynamicInsight", - "Markdown", - "Detector", - "DropDown", - "Card", - "Solution", - "Guage", - "Form", - "ChangeSets", - "ChangeAnalysisOnboarding", - "ChangesView", - "AppInsight", - "DependencyGraph", - "DownTime", - "SummaryCard", - "SearchComponent", - "AppInsightEnablement" - ], - "type": "string", - "x-ms-enum": { - "name": "RenderingType", - "modelAsString": false - } - }, - "title": { - "description": "Title of data", - "type": "string" - }, - "description": { - "description": "Description of the data that will help it be interpreted", - "type": "string" - } - } - }, - "RequestsBasedTrigger": { - "description": "Trigger based on total requests.", - "type": "object", - "properties": { - "count": { - "format": "int32", - "description": "Request Count.", - "type": "integer" - }, - "timeInterval": { - "description": "Time interval.", - "type": "string" - } - } - }, - "Resource": { - "description": "Azure resource. This resource is tracked in Azure Resource Manager", - "required": [ - "location" - ], - "type": "object", - "properties": { - "id": { - "description": "Resource Id.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Resource Name.", - "type": "string", - "readOnly": true - }, - "kind": { - "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.", - "type": "string" - }, - "location": { - "description": "Resource Location.", - "type": "string" - }, - "type": { - "description": "Resource type.", - "type": "string", - "readOnly": true - }, - "tags": { - "description": "Resource tags.", - "type": "object", - "additionalProperties": { - "type": "string" - } - } - }, - "x-ms-azure-resource": true - }, - "SampleUtterance": { - "description": "Sample utterance.", - "type": "object", - "properties": { - "text": { - "description": "Text attribute of sample utterance.", - "type": "string" - }, - "links": { - "description": "Links attribute of sample utterance.", - "type": "array", - "items": { - "type": "string" - } - }, - "qid": { - "description": "Question id of sample utterance (for stackoverflow questions titles).", - "type": "string" - } - } - }, - "Scale": { - "description": "Container App scaling configurations.", - "type": "object", - "properties": { - "minReplicas": { - "format": "int32", - "description": "Optional. Minimum number of container replicas.", - "type": "integer" - }, - "maxReplicas": { - "format": "int32", - "description": "Optional. Maximum number of container replicas. Defaults to 10 if not set.", - "type": "integer" - }, - "rules": { - "description": "Scaling rules.", - "type": "array", - "items": { - "$ref": "#/definitions/ScaleRule" - }, - "x-ms-identifiers": [ - "name" - ] - } - } - }, - "ScaleRule": { - "description": "Container App container scaling rule.", - "type": "object", - "properties": { - "name": { - "description": "Scale Rule Name", - "type": "string" - }, - "azureQueue": { - "$ref": "#/definitions/QueueScaleRule", - "description": "Azure Queue based scaling." - }, - "custom": { - "$ref": "#/definitions/CustomScaleRule", - "description": "Custom scale rule." - }, - "http": { - "$ref": "#/definitions/HttpScaleRule", - "description": "HTTP requests based scaling." - } - } - }, - "ScaleRuleAuth": { - "description": "Auth Secrets for Container App Scale Rule", - "type": "object", - "properties": { - "secretRef": { - "description": "Name of the Container App secret from which to pull the auth params.", - "type": "string" - }, - "triggerParameter": { - "description": "Trigger Parameter that uses the secret", - "type": "string" - } - } - }, - "ServiceSpecification": { - "description": "Resource metrics service provided by Microsoft.Insights resource provider.", - "type": "object", - "properties": { - "metricSpecifications": { - "type": "array", - "items": { - "$ref": "#/definitions/MetricSpecification" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "logSpecifications": { - "type": "array", - "items": { - "$ref": "#/definitions/LogSpecification" - }, - "x-ms-identifiers": [ - "name" - ] - } - } - }, - "Site": { - "description": "A web app, a mobile app backend, or an API app.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "description": "Site resource specific properties", - "type": "object", - "properties": { - "state": { - "description": "Current state of the app.", - "type": "string", - "readOnly": true - }, - "hostNames": { - "description": "Hostnames associated with the app.", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "repositorySiteName": { - "description": "Name of the repository site.", - "type": "string", - "readOnly": true - }, - "usageState": { - "description": "State indicating whether the app has exceeded its quota usage. Read-only.", - "enum": [ - "Normal", - "Exceeded" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "UsageState", - "modelAsString": false - } - }, - "enabled": { - "description": "true if the app is enabled; otherwise, false. Setting this value to false disables the app (takes the app offline).", - "type": "boolean" - }, - "enabledHostNames": { - "description": "Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\nthe app is not served on those hostnames.", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "availabilityState": { - "description": "Management information availability state for the app.", - "enum": [ - "Normal", - "Limited", - "DisasterRecoveryMode" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "SiteAvailabilityState", - "modelAsString": false - } - }, - "hostNameSslStates": { - "description": "Hostname SSL states are used to manage the SSL bindings for app's hostnames.", - "type": "array", - "items": { - "$ref": "#/definitions/HostNameSslState" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "serverFarmId": { - "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\".", - "type": "string" - }, - "reserved": { - "description": "true if reserved; otherwise, false.", - "default": false, - "type": "boolean", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "isXenon": { - "description": "Obsolete: Hyper-V sandbox.", - "default": false, - "type": "boolean", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "hyperV": { - "description": "Hyper-V sandbox.", - "default": false, - "type": "boolean", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "lastModifiedTimeUtc": { - "format": "date-time", - "description": "Last time the app was modified, in UTC. Read-only.", - "type": "string", - "readOnly": true - }, - "dnsConfiguration": { - "$ref": "#/definitions/SiteDnsConfig", - "description": "Property to configure various DNS related settings for a site." - }, - "outboundVnetRouting": { - "$ref": "#/definitions/OutboundVnetRouting", - "description": "Property to configure various outbound traffic routing options over virtual network for a site" - }, - "siteConfig": { - "$ref": "#/definitions/SiteConfig", - "description": "Configuration of an App Service app. This property is not returned in response to normal create and read requests since it may contain sensitive information.", - "x-ms-mutability": [ - "create", - "update" - ] - }, - "functionAppConfig": { - "$ref": "#/definitions/FunctionAppConfig", - "description": "Configuration specific of the Azure Function app." - }, - "daprConfig": { - "$ref": "#/definitions/DaprConfig", - "description": "Dapr configuration of the app." - }, - "workloadProfileName": { - "description": "Workload profile name for function app to execute on.", - "type": "string" - }, - "resourceConfig": { - "$ref": "#/definitions/ResourceConfig", - "description": "Function app resource requirements." - }, - "trafficManagerHostNames": { - "description": "Azure Traffic Manager hostnames associated with the app. Read-only.", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "scmSiteAlsoStopped": { - "description": "true to stop SCM (KUDU) site when the app is stopped; otherwise, false. The default is false.", - "default": false, - "type": "boolean" - }, - "targetSwapSlot": { - "description": "Specifies which deployment slot this app will swap into. Read-only.", - "type": "string", - "readOnly": true - }, - "hostingEnvironmentProfile": { - "$ref": "#/definitions/HostingEnvironmentProfile", - "description": "App Service Environment to use for the app.", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "clientAffinityEnabled": { - "description": "true to enable client affinity; false to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is true.", - "type": "boolean" - }, - "clientAffinityPartitioningEnabled": { - "description": "true to enable client affinity partitioning using CHIPS cookies, this will add the partitioned property to the affinity cookies; false to stop sending partitioned affinity cookies. Default is false.", - "type": "boolean" - }, - "clientAffinityProxyEnabled": { - "description": "true to override client affinity cookie domain with X-Forwarded-Host request header. false to use default domain. Default is false.", - "type": "boolean" - }, - "clientCertEnabled": { - "description": "true to enable client certificate authentication (TLS mutual authentication); otherwise, false. Default is false.", - "type": "boolean" - }, - "clientCertMode": { - "description": "This composes with ClientCertEnabled setting.\n- ClientCertEnabled: false means ClientCert is ignored.\n- ClientCertEnabled: true and ClientCertMode: Required means ClientCert is required.\n- ClientCertEnabled: true and ClientCertMode: Optional means ClientCert is optional or accepted.", - "enum": [ - "Required", - "Optional", - "OptionalInteractiveUser" - ], - "type": "string", - "x-ms-enum": { - "name": "ClientCertMode", - "modelAsString": false - } - }, - "clientCertExclusionPaths": { - "description": "client certificate authentication comma-separated exclusion paths", - "type": "string" - }, - "ipMode": { - "description": "Specifies the IP mode of the app.", - "enum": [ - "IPv4", - "IPv6", - "IPv4AndIPv6" - ], - "type": "string", - "x-ms-enum": { - "name": "IPMode", - "modelAsString": false - } - }, - "endToEndEncryptionEnabled": { - "description": "Whether to use end to end encryption between the FrontEnd and the Worker", - "type": "boolean" - }, - "sshEnabled": { - "description": "Whether to enable ssh access.", - "type": "boolean" - }, - "hostNamesDisabled": { - "description": "true to disable the public hostnames of the app; otherwise, false.\n If true, the app is only accessible via API management process.", - "type": "boolean" - }, - "customDomainVerificationId": { - "description": "Unique identifier that verifies the custom domains assigned to the app. Customer will add this id to a txt record for verification.", - "type": "string" - }, - "outboundIpAddresses": { - "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only.", - "type": "string", - "readOnly": true - }, - "possibleOutboundIpAddresses": { - "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants except dataComponent. Read-only.", - "type": "string", - "readOnly": true - }, - "containerSize": { - "format": "int32", - "description": "Size of the function container.", - "type": "integer" - }, - "dailyMemoryTimeQuota": { - "format": "int32", - "description": "Maximum allowed daily memory-time quota (applicable on dynamic apps only).", - "type": "integer" - }, - "suspendedTill": { - "format": "date-time", - "description": "App suspended till in case memory-time quota is exceeded.", - "type": "string", - "readOnly": true - }, - "maxNumberOfWorkers": { - "format": "int32", - "description": "Maximum number of workers.\nThis only applies to Functions container.", - "type": "integer", - "readOnly": true - }, - "cloningInfo": { - "$ref": "#/definitions/CloningInfo", - "description": "If specified during app creation, the app is cloned from a source app.", - "x-ms-mutability": [ - "create" - ] - }, - "resourceGroup": { - "description": "Name of the resource group the app belongs to. Read-only.", - "type": "string", - "readOnly": true - }, - "isDefaultContainer": { - "description": "true if the app is a default container; otherwise, false.", - "type": "boolean", - "readOnly": true - }, - "defaultHostName": { - "description": "Default hostname of the app. Read-only.", - "type": "string", - "readOnly": true - }, - "slotSwapStatus": { - "$ref": "#/definitions/SlotSwapStatus", - "description": "Status of the last deployment slot swap operation.", - "readOnly": true - }, - "httpsOnly": { - "description": "HttpsOnly: configures a web site to accept only https requests. Issues redirect for\nhttp requests", - "type": "boolean" - }, - "redundancyMode": { - "description": "Site redundancy mode", - "enum": [ - "None", - "Manual", - "Failover", - "ActiveActive", - "GeoRedundant" - ], - "type": "string", - "x-ms-enum": { - "name": "RedundancyMode", - "modelAsString": false - } - }, - "inProgressOperationId": { - "format": "uuid", - "description": "Specifies an operation id if this site has a pending operation.", - "type": "string", - "readOnly": true, - "example": "00000000-0000-0000-0000-000000000000" - }, - "publicNetworkAccess": { - "description": "Property to allow or block all public traffic. Allowed Values: 'Enabled', 'Disabled' or an empty string.", - "type": "string" - }, - "storageAccountRequired": { - "description": "Checks if Customer provided storage account is required", - "type": "boolean" - }, - "keyVaultReferenceIdentity": { - "description": "Identity to use for Key Vault Reference authentication.", - "type": "string" - }, - "autoGeneratedDomainNameLabelScope": { - "description": "Specifies the scope of uniqueness for the default hostname during resource creation", - "enum": [ - "TenantReuse", - "SubscriptionReuse", - "ResourceGroupReuse", - "NoReuse" - ], - "type": "string", - "x-ms-enum": { - "name": "autoGeneratedDomainNameLabelScope", - "modelAsString": false - } - }, - "virtualNetworkSubnetId": { - "description": "Azure Resource Manager ID of the Virtual network and subnet to be joined by Regional VNET Integration.\nThis must be of the form /subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "type": "string" - }, - "managedEnvironmentId": { - "description": "Azure Resource Manager ID of the customer's selected Managed Environment on which to host this app. This must be of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}", - "type": "string" - }, - "sku": { - "description": "Current SKU of application based on associated App Service Plan. Some valid SKU values are Free, Shared, Basic, Dynamic, FlexConsumption, Standard, Premium, PremiumV2, PremiumV3, Isolated, IsolatedV2", - "type": "string", - "readOnly": true - } - }, - "x-ms-client-flatten": true - }, - "identity": { - "$ref": "#/definitions/ManagedServiceIdentity" - }, - "extendedLocation": { - "$ref": "#/definitions/ExtendedLocation" - } - } - }, - "SiteConfig": { - "description": "Configuration of an App Service app.", - "type": "object", - "properties": { - "numberOfWorkers": { - "format": "int32", - "description": "Number of workers.", - "type": "integer" - }, - "defaultDocuments": { - "description": "Default documents.", - "type": "array", - "items": { - "type": "string" - } - }, - "netFrameworkVersion": { - "description": ".NET Framework version.", - "default": "v4.6", - "type": "string" - }, - "phpVersion": { - "description": "Version of PHP.", - "type": "string" - }, - "pythonVersion": { - "description": "Version of Python.", - "type": "string" - }, - "nodeVersion": { - "description": "Version of Node.js.", - "type": "string" - }, - "powerShellVersion": { - "description": "Version of PowerShell.", - "type": "string" - }, - "linuxFxVersion": { - "description": "Linux App Framework and version", - "type": "string" - }, - "windowsFxVersion": { - "description": "Xenon App Framework and version", - "type": "string" - }, - "requestTracingEnabled": { - "description": "true if request tracing is enabled; otherwise, false.", - "type": "boolean" - }, - "requestTracingExpirationTime": { - "format": "date-time", - "description": "Request tracing expiration time.", - "type": "string" - }, - "remoteDebuggingEnabled": { - "description": "true if remote debugging is enabled; otherwise, false.", - "type": "boolean" - }, - "remoteDebuggingVersion": { - "description": "Remote debugging version.", - "type": "string" - }, - "httpLoggingEnabled": { - "description": "true if HTTP logging is enabled; otherwise, false.", - "type": "boolean" - }, - "acrUseManagedIdentityCreds": { - "description": "Flag to use Managed Identity Creds for ACR pull", - "type": "boolean" - }, - "acrUserManagedIdentityID": { - "description": "If using user managed identity, the user managed identity ClientId", - "type": "string" - }, - "logsDirectorySizeLimit": { - "format": "int32", - "description": "HTTP logs directory size limit.", - "type": "integer" - }, - "detailedErrorLoggingEnabled": { - "description": "true if detailed error logging is enabled; otherwise, false.", - "type": "boolean" - }, - "publishingUsername": { - "description": "Publishing user name.", - "type": "string" - }, - "appSettings": { - "description": "Application settings. This property is not returned in response to normal create and read requests since it may contain sensitive information.", - "type": "array", - "items": { - "$ref": "#/definitions/NameValuePair" - }, - "x-ms-identifiers": [ - "name" - ], - "x-ms-mutability": [ - "create", - "update" - ] - }, - "metadata": { - "description": "Application metadata. This property cannot be retrieved, since it may contain secrets.", - "type": "array", - "items": { - "$ref": "#/definitions/NameValuePair" - }, - "x-ms-identifiers": [ - "name" - ], - "x-ms-mutability": [ - "create", - "update" - ] - }, - "connectionStrings": { - "description": "Connection strings. This property is not returned in response to normal create and read requests since it may contain sensitive information.", - "type": "array", - "items": { - "$ref": "#/definitions/ConnStringInfo" - }, - "x-ms-identifiers": [ - "name" - ], - "x-ms-mutability": [ - "create", - "update" - ] - }, - "machineKey": { - "$ref": "#/definitions/SiteMachineKey", - "description": "Site MachineKey.", - "readOnly": true - }, - "handlerMappings": { - "description": "Handler mappings.", - "type": "array", - "items": { - "$ref": "#/definitions/HandlerMapping" - }, - "x-ms-identifiers": [ - "extension" - ] - }, - "documentRoot": { - "description": "Document root.", - "type": "string" - }, - "scmType": { - "description": "SCM type.", - "enum": [ - "None", - "Dropbox", - "Tfs", - "LocalGit", - "GitHub", - "CodePlexGit", - "CodePlexHg", - "BitbucketGit", - "BitbucketHg", - "ExternalGit", - "ExternalHg", - "OneDrive", - "VSO", - "VSTSRM" - ], - "type": "string", - "x-ms-enum": { - "name": "ScmType", - "modelAsString": true - } - }, - "use32BitWorkerProcess": { - "description": "true to use 32-bit worker process; otherwise, false.", - "type": "boolean" - }, - "webSocketsEnabled": { - "description": "true if WebSocket is enabled; otherwise, false.", - "type": "boolean" - }, - "alwaysOn": { - "description": "true if Always On is enabled; otherwise, false.", - "type": "boolean" - }, - "javaVersion": { - "description": "Java version.", - "type": "string" - }, - "javaContainer": { - "description": "Java container.", - "type": "string" - }, - "javaContainerVersion": { - "description": "Java container version.", - "type": "string" - }, - "appCommandLine": { - "description": "App command line to launch.", - "type": "string" - }, - "managedPipelineMode": { - "description": "Managed pipeline mode.", - "enum": [ - "Integrated", - "Classic" - ], - "type": "string", - "x-ms-enum": { - "name": "ManagedPipelineMode", - "modelAsString": false - } - }, - "virtualApplications": { - "description": "Virtual applications.", - "type": "array", - "items": { - "$ref": "#/definitions/VirtualApplication" - }, - "x-ms-identifiers": [ - "virtualPath" - ] - }, - "loadBalancing": { - "description": "Site load balancing.", - "enum": [ - "WeightedRoundRobin", - "LeastRequests", - "LeastResponseTime", - "WeightedTotalTraffic", - "RequestHash", - "PerSiteRoundRobin", - "LeastRequestsWithTieBreaker" - ], - "type": "string", - "x-ms-enum": { - "name": "SiteLoadBalancing", - "modelAsString": false - } - }, - "experiments": { - "$ref": "#/definitions/Experiments", - "description": "This is work around for polymorphic types." - }, - "limits": { - "$ref": "#/definitions/SiteLimits", - "description": "Site limits." - }, - "autoHealEnabled": { - "description": "true if Auto Heal is enabled; otherwise, false.", - "type": "boolean" - }, - "autoHealRules": { - "$ref": "#/definitions/AutoHealRules", - "description": "Auto Heal rules." - }, - "tracingOptions": { - "description": "Tracing options.", - "type": "string" - }, - "vnetName": { - "description": "Virtual Network name.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "vnetRouteAllEnabled": { - "description": "Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.", - "type": "boolean" - }, - "vnetPrivatePortsCount": { - "format": "int32", - "description": "The number of private ports assigned to this app. These will be assigned dynamically on runtime.", - "type": "integer" - }, - "cors": { - "$ref": "#/definitions/CorsSettings", - "description": "Cross-Origin Resource Sharing (CORS) settings." - }, - "push": { - "$ref": "#/definitions/PushSettings", - "description": "Push endpoint settings." - }, - "apiDefinition": { - "$ref": "#/definitions/ApiDefinitionInfo", - "description": "Information about the formal API definition for the app." - }, - "apiManagementConfig": { - "$ref": "#/definitions/ApiManagementConfig", - "description": "Azure API management settings linked to the app." - }, - "autoSwapSlotName": { - "description": "Auto-swap slot name.", - "type": "string" - }, - "localMySqlEnabled": { - "description": "true to enable local MySQL; otherwise, false.", - "default": false, - "type": "boolean" - }, - "managedServiceIdentityId": { - "format": "int32", - "description": "Managed Service Identity Id", - "type": "integer" - }, - "xManagedServiceIdentityId": { - "format": "int32", - "description": "Explicit Managed Service Identity Id", - "type": "integer" - }, - "keyVaultReferenceIdentity": { - "description": "Identity to use for Key Vault Reference authentication.", - "type": "string" - }, - "ipSecurityRestrictions": { - "description": "IP security restrictions for main.", - "type": "array", - "items": { - "$ref": "#/definitions/IpSecurityRestriction" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "ipSecurityRestrictionsDefaultAction": { - "description": "Default action for main access restriction if no rules are matched.", - "enum": [ - "Allow", - "Deny" - ], - "type": "string", - "x-ms-enum": { - "name": "DefaultAction", - "modelAsString": true - } - }, - "scmIpSecurityRestrictions": { - "description": "IP security restrictions for scm.", - "type": "array", - "items": { - "$ref": "#/definitions/IpSecurityRestriction" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "scmIpSecurityRestrictionsDefaultAction": { - "description": "Default action for scm access restriction if no rules are matched.", - "enum": [ - "Allow", - "Deny" - ], - "type": "string", - "x-ms-enum": { - "name": "DefaultAction", - "modelAsString": true - } - }, - "scmIpSecurityRestrictionsUseMain": { - "description": "IP security restrictions for scm to use main.", - "type": "boolean" - }, - "http20Enabled": { - "description": "Http20Enabled: configures a web site to allow clients to connect over http2.0", - "default": true, - "type": "boolean" - }, - "http20ProxyFlag": { - "description": "Http20ProxyFlag: Configures a website to allow http2.0 to pass be proxied all the way to the app. 0 = disabled, 1 = pass through all http2 traffic, 2 = pass through gRPC only.", - "default": 0, - "type": "integer", - "format": "int32" - }, - "minTlsVersion": { - "description": "MinTlsVersion: configures the minimum version of TLS required for SSL requests", - "enum": [ - "1.0", - "1.1", - "1.2", - "1.3" - ], - "type": "string", - "x-ms-enum": { - "name": "SupportedTlsVersions", - "modelAsString": true - } - }, - "minTlsCipherSuite": { - "description": "The minimum strength TLS cipher suite allowed for an application", - "enum": [ - "TLS_AES_256_GCM_SHA384", - "TLS_AES_128_GCM_SHA256", - "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", - "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256", - "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", - "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", - "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", - "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", - "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256", - "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA", - "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", - "TLS_RSA_WITH_AES_256_GCM_SHA384", - "TLS_RSA_WITH_AES_128_GCM_SHA256", - "TLS_RSA_WITH_AES_256_CBC_SHA256", - "TLS_RSA_WITH_AES_128_CBC_SHA256", - "TLS_RSA_WITH_AES_256_CBC_SHA", - "TLS_RSA_WITH_AES_128_CBC_SHA" - ], - "type": "string", - "x-ms-enum": { - "name": "TlsCipherSuites", - "modelAsString": true - } - }, - "scmMinTlsVersion": { - "description": "ScmMinTlsVersion: configures the minimum version of TLS required for SSL requests for SCM site", - "enum": [ - "1.0", - "1.1", - "1.2", - "1.3" - ], - "type": "string", - "x-ms-enum": { - "name": "SupportedTlsVersions", - "modelAsString": true - } - }, - "ftpsState": { - "description": "State of FTP / FTPS service", - "enum": [ - "AllAllowed", - "FtpsOnly", - "Disabled" - ], - "type": "string", - "x-ms-enum": { - "name": "FtpsState", - "modelAsString": true - } - }, - "preWarmedInstanceCount": { - "format": "int32", - "description": "Number of preWarmed instances.\nThis setting only applies to the Consumption and Elastic Plans", - "maximum": 10, - "minimum": 0, - "type": "integer" - }, - "functionAppScaleLimit": { - "format": "int32", - "description": "Maximum number of workers that a site can scale out to.\nThis setting only applies to the Consumption and Elastic Premium Plans", - "minimum": 0, - "type": "integer" - }, - "elasticWebAppScaleLimit": { - "format": "int32", - "description": "Maximum number of workers that a site can scale out to.\nThis setting only applies to apps in plans where ElasticScaleEnabled is true", - "minimum": 0, - "type": "integer" - }, - "healthCheckPath": { - "description": "Health check path", - "type": "string" - }, - "functionsRuntimeScaleMonitoringEnabled": { - "description": "Gets or sets a value indicating whether functions runtime scale monitoring is enabled. When enabled,\nthe ScaleController will not monitor event sources directly, but will instead call to the\nruntime to get scale status.", - "type": "boolean" - }, - "websiteTimeZone": { - "description": "Sets the time zone a site uses for generating timestamps. Compatible with Linux and Windows App Service. Setting the WEBSITE_TIME_ZONE app setting takes precedence over this config. For Linux, expects tz database values https://www.iana.org/time-zones (for a quick reference see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For Windows, expects one of the time zones listed under HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones", - "type": "string" - }, - "minimumElasticInstanceCount": { - "format": "int32", - "description": "Number of minimum instance count for a site\nThis setting only applies to the Elastic Plans", - "maximum": 20, - "minimum": 0, - "type": "integer" - }, - "azureStorageAccounts": { - "description": "List of Azure Storage Accounts.", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/AzureStorageInfoValue" - } - }, - "publicNetworkAccess": { - "description": "Property to allow or block all public traffic.", - "type": "string" - } - } - }, - "FunctionsDeployment": { - "description": "Configuration section for the function app deployment.", - "type": "object", - "properties": { - "storage": { - "description": "Storage for deployed package used by the function app.", - "type": "object", - "properties": { - "type": { - "description": "Property to select Azure Storage type. Available options: blobContainer.", - "type": "string", - "enum": [ - "blobContainer" - ], - "x-ms-enum": { - "name": "FunctionsDeploymentStorageType", - "modelAsString": true - } - }, - "value": { - "description": "Property to set the URL for the selected Azure Storage type. Example: For blobContainer, the value could be https://.blob.core.windows.net/.", - "type": "string", - "format": "uri" - }, - "authentication": { - "description": "Authentication method to access the storage account for deployment.", - "type": "object", - "properties": { - "type": { - "description": "Property to select authentication type to access the selected storage account. Available options: SystemAssignedIdentity, UserAssignedIdentity, StorageAccountConnectionString.", - "type": "string", - "enum": [ - "SystemAssignedIdentity", - "UserAssignedIdentity", - "StorageAccountConnectionString" - ], - "x-ms-enum": { - "name": "AuthenticationType", - "modelAsString": true - } - }, - "userAssignedIdentityResourceId": { - "description": "Use this property for UserAssignedIdentity. Set the resource ID of the identity. Do not set a value for this property when using other authentication type.", - "type": "string" - }, - "storageAccountConnectionStringName": { - "description": "Use this property for StorageAccountConnectionString. Set the name of the app setting that has the storage account connection string. Do not set a value for this property when using other authentication type.", - "type": "string" - } - } - } - } - } - } - }, - "FunctionsAlwaysReadyConfig": { - "description": "Sets the number of 'Always Ready' instances for a function group or a specific function.", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Either a function group or a function name is required. For additional information see https://aka.ms/flexconsumption/alwaysready." - }, - "instanceCount": { - "type": "integer", - "format": "int32", - "description": "Sets the number of 'Always Ready' instances for a given function group or a specific function. For additional information see https://aka.ms/flexconsumption/alwaysready." - } - } - }, - "FunctionsScaleAndConcurrency": { - "description": "Scale and concurrency settings for the function app.", - "type": "object", - "properties": { - "alwaysReady": { - "description": "'Always Ready' configuration for the function app.", - "type": "array", - "items": { - "$ref": "#/definitions/FunctionsAlwaysReadyConfig" - } - }, - "maximumInstanceCount": { - "description": "The maximum number of instances for the function app.", - "type": "integer", - "format": "int32" - }, - "instanceMemoryMB": { - "description": "Set the amount of memory allocated to each instance of the function app in MB. CPU and network bandwidth are allocated proportionally.", - "type": "integer", - "format": "int32" - }, - "triggers": { - "type": "object", - "description": "Scale and concurrency settings for the function app triggers.", - "properties": { - "http": { - "type": "object", - "description": "Scale and concurrency settings for the HTTP trigger.", - "properties": { - "perInstanceConcurrency": { - "type": "integer", - "format": "int32", - "description": "The maximum number of concurrent HTTP trigger invocations per instance." - } - } - } - } - } - } - }, - "FunctionsRuntime": { - "description": "Function app runtime name and version.", - "type": "object", - "properties": { - "name": { - "description": "Function app runtime name. Available options: dotnet-isolated, node, java, powershell, python, custom", - "type": "string", - "enum": [ - "dotnet-isolated", - "node", - "java", - "powershell", - "python", - "custom" - ], - "x-ms-enum": { - "name": "RuntimeName", - "modelAsString": true - } - }, - "version": { - "description": "Function app runtime version. Example: 8 (for dotnet-isolated)", - "type": "string", - "x-nullable": true - } - } - }, - "FunctionAppConfig": { - "description": "Function app configuration.", - "type": "object", - "properties": { - "deployment": { - "$ref": "#/definitions/FunctionsDeployment", - "description": "Function app deployment configuration." - }, - "runtime": { - "$ref": "#/definitions/FunctionsRuntime", - "description": "Function app runtime settings." - }, - "scaleAndConcurrency": { - "$ref": "#/definitions/FunctionsScaleAndConcurrency", - "description": "Function app scale and concurrency settings." - } - } - }, - "DaprConfig": { - "description": "App Dapr configuration.", - "type": "object", - "properties": { - "enabled": { - "description": "Boolean indicating if the Dapr side car is enabled", - "type": "boolean", - "default": false - }, - "appId": { - "description": "Dapr application identifier", - "type": "string" - }, - "appPort": { - "format": "int32", - "description": "Tells Dapr which port your application is listening on", - "type": "integer" - }, - "httpReadBufferSize": { - "type": "integer", - "description": "Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB.", - "format": "int32" - }, - "httpMaxRequestSize": { - "type": "integer", - "description": "Increasing max size of request body http servers parameter in MB to handle uploading of big files. Default is 4 MB.", - "format": "int32" - }, - "logLevel": { - "description": "Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info.", - "enum": [ - "info", - "debug", - "warn", - "error" - ], - "type": "string", - "x-ms-enum": { - "name": "daprLogLevel", - "modelAsString": true - } - }, - "enableApiLogging": { - "description": "Enables API logging for the Dapr sidecar", - "type": "boolean" - } - } - }, - "ResourceConfig": { - "description": "Function app resource requirements.", - "type": "object", - "properties": { - "cpu": { - "format": "double", - "description": "Required CPU in cores, e.g. 0.5", - "type": "number" - }, - "memory": { - "description": "Required memory, e.g. \"1Gi\"", - "type": "string" - } - } - }, - "SiteDnsConfig": { - "type": "object", - "properties": { - "dnsServers": { - "description": "List of custom DNS servers to be used by an app for lookups. Maximum 5 dns servers can be set.", - "type": "array", - "items": { - "type": "string" - } - }, - "dnsAltServer": { - "description": "Alternate DNS server to be used by apps. This property replicates the WEBSITE_DNS_ALT_SERVER app setting.", - "type": "string" - }, - "dnsRetryAttemptTimeout": { - "format": "int32", - "description": "Timeout for a single dns lookup in seconds. Allowed range: 1-30. Default is 3.", - "type": "integer" - }, - "dnsRetryAttemptCount": { - "format": "int32", - "description": "Total number of retries for dns lookup. Allowed range: 1-5. Default is 3.", - "type": "integer" - }, - "dnsMaxCacheTimeout": { - "format": "int32", - "description": "Custom time for DNS to be cached in seconds. Allowed range: 0-60. Default is 30 seconds. 0 means caching disabled.", - "type": "integer" - }, - "dnsLegacySortOrder": { - "description": "Indicates that sites using Virtual network custom DNS servers are still sorting the list of DNS servers. Read-Only.", - "type": "boolean", - "readOnly": true - } - } - }, - "OutboundVnetRouting": { - "description": "Outbound traffic options over virtual network.", - "type": "object", - "properties": { - "allTraffic": { - "description": "Enables all other routing options defined in OutboundVnetRouting if this setting is set to true.", - "type": "boolean" - }, - "applicationTraffic": { - "description": "This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied. Previously called VnetRouteAllEnabled.", - "type": "boolean" - }, - "contentShareTraffic": { - "description": "Enables accessing content over virtual network. Previously called VnetContentShareEnabled", - "type": "boolean" - }, - "imagePullTraffic": { - "description": "Enables pulling image over Virtual Network. Previously called VnetImagePullEnabled.", - "type": "boolean" - }, - "backupRestoreTraffic": { - "description": "Enables Backup and Restore operations over virtual network. Previously called VnetBackupRestoreEnabled", - "type": "boolean" - } - } - }, - "SiteLimits": { - "description": "Metric limits set on an app.", - "type": "object", - "properties": { - "maxPercentageCpu": { - "format": "double", - "description": "Maximum allowed CPU usage percentage.", - "type": "number" - }, - "maxMemoryInMb": { - "format": "int64", - "description": "Maximum allowed memory usage in MB.", - "type": "integer" - }, - "maxDiskSizeInMb": { - "format": "int64", - "description": "Maximum allowed disk size usage in MB.", - "type": "integer" - } - } - }, - "SiteMachineKey": { - "description": "MachineKey of an app.", - "type": "object", - "properties": { - "validation": { - "description": "MachineKey validation.", - "type": "string" - }, - "validationKey": { - "description": "Validation key.", - "type": "string" - }, - "decryption": { - "description": "Algorithm used for decryption.", - "type": "string" - }, - "decryptionKey": { - "description": "Decryption key.", - "type": "string" - } - } - }, - "SkuCapacity": { - "description": "Description of the App Service plan scale options.", - "type": "object", - "properties": { - "minimum": { - "format": "int32", - "description": "Minimum number of workers for this App Service plan SKU.", - "type": "integer" - }, - "maximum": { - "format": "int32", - "description": "Maximum number of workers for this App Service plan SKU.", - "type": "integer" - }, - "elasticMaximum": { - "format": "int32", - "description": "Maximum number of Elastic workers for this App Service plan SKU.", - "type": "integer" - }, - "default": { - "format": "int32", - "description": "Default number of workers for this App Service plan SKU.", - "type": "integer" - }, - "scaleType": { - "description": "Available scale configurations for an App Service plan.", - "type": "string" - } - } - }, - "SkuDescription": { - "description": "Description of a SKU for a scalable resource.", - "type": "object", - "properties": { - "name": { - "description": "Name of the resource SKU.", - "type": "string" - }, - "tier": { - "description": "Service tier of the resource SKU.", - "type": "string" - }, - "size": { - "description": "Size specifier of the resource SKU.", - "type": "string" - }, - "family": { - "description": "Family code of the resource SKU.", - "type": "string" - }, - "capacity": { - "format": "int32", - "description": "Current number of instances assigned to the resource.", - "type": "integer" - }, - "skuCapacity": { - "$ref": "#/definitions/SkuCapacity", - "description": "Min, max, and default scale values of the SKU." - }, - "locations": { - "description": "Locations of the SKU.", - "type": "array", - "items": { - "type": "string" - } - }, - "capabilities": { - "description": "Capabilities of the SKU, e.g., is traffic manager enabled?", - "type": "array", - "items": { - "$ref": "#/definitions/Capability" - }, - "x-ms-identifiers": [ - "name" - ] - } - } - }, - "SlotSwapStatus": { - "description": "The status of the last successful slot swap operation.", - "type": "object", - "properties": { - "timestampUtc": { - "format": "date-time", - "description": "The time the last successful slot swap completed.", - "type": "string", - "readOnly": true - }, - "sourceSlotName": { - "description": "The source slot of the last swap operation.", - "type": "string", - "readOnly": true - }, - "destinationSlotName": { - "description": "The destination slot of the last swap operation.", - "type": "string", - "readOnly": true - } - } - }, - "SlowRequestsBasedTrigger": { - "description": "Trigger based on request execution time.", - "type": "object", - "properties": { - "timeTaken": { - "description": "Time taken.", - "type": "string" - }, - "path": { - "description": "Request Path.", - "type": "string" - }, - "count": { - "format": "int32", - "description": "Request Count.", - "type": "integer" - }, - "timeInterval": { - "description": "Time interval.", - "type": "string" - } - } - }, - "Snapshot": { - "description": "A snapshot of an app.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "Snapshot resource specific properties", - "type": "object", - "properties": { - "time": { - "description": "The time the snapshot was taken.", - "type": "string", - "readOnly": true - } - }, - "x-ms-client-flatten": true - } - } - }, - "Status": { - "description": "Identify the status of the most severe insight generated by the detector.", - "type": "object", - "properties": { - "message": { - "description": "Descriptive message.", - "type": "string" - }, - "statusId": { - "description": "Level of the most severe insight generated by the detector.", - "enum": [ - "Critical", - "Warning", - "Info", - "Success", - "None" - ], - "type": "string", - "x-ms-enum": { - "name": "InsightStatus", - "modelAsString": false - } - } - } - }, - "StatusCodesBasedTrigger": { - "description": "Trigger based on status code.", - "type": "object", - "properties": { - "status": { - "format": "int32", - "description": "HTTP status code.", - "type": "integer" - }, - "subStatus": { - "format": "int32", - "description": "Request Sub Status.", - "type": "integer" - }, - "win32Status": { - "format": "int32", - "description": "Win32 error code.", - "type": "integer" - }, - "count": { - "format": "int32", - "description": "Request Count.", - "type": "integer" - }, - "timeInterval": { - "description": "Time interval.", - "type": "string" - }, - "path": { - "description": "Request Path", - "type": "string" - } - } - }, - "StatusCodesRangeBasedTrigger": { - "description": "Trigger based on range of status codes.", - "type": "object", - "properties": { - "statusCodes": { - "description": "HTTP status code.", - "type": "string" - }, - "path": { - "type": "string" - }, - "count": { - "format": "int32", - "description": "Request Count.", - "type": "integer" - }, - "timeInterval": { - "description": "Time interval.", - "type": "string" - } - } - }, - "StringDictionary": { - "description": "String dictionary resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "Settings.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "x-ms-client-flatten": true - } - } - }, - "SupportTopic": { - "description": "Defines a unique Support Topic", - "type": "object", - "properties": { - "id": { - "description": "Support Topic Id", - "type": "string", - "readOnly": true - }, - "pesId": { - "description": "Unique resource Id", - "type": "string", - "readOnly": true - } - } - }, - "Template": { - "description": "Container App versioned application definition.\nDefines the desired state of an immutable revision.\nAny changes to this section Will result in a new revision being created", - "type": "object", - "properties": { - "revisionSuffix": { - "description": "User friendly suffix that is appended to the revision name", - "type": "string" - }, - "containers": { - "description": "List of container definitions for the Container App.", - "type": "array", - "items": { - "$ref": "#/definitions/Container" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "scale": { - "$ref": "#/definitions/Scale", - "description": "Scaling properties for the Container App." - }, - "dapr": { - "$ref": "#/definitions/Dapr", - "description": "Dapr configuration for the Container App." - } - } - }, - "User": { - "description": "User credentials used for publishing activity.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "User resource specific properties", - "required": [ - "publishingUserName" - ], - "type": "object", - "properties": { - "publishingUserName": { - "description": "Username used for publishing.", - "type": "string" - }, - "publishingPassword": { - "format": "password", - "description": "Password used for publishing.", - "type": "string" - }, - "publishingPasswordHash": { - "format": "password", - "description": "Password hash used for publishing.", - "type": "string" - }, - "publishingPasswordHashSalt": { - "format": "password", - "description": "Password hash salt used for publishing.", - "type": "string" - }, - "scmUri": { - "description": "Url of SCM site.", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "VirtualApplication": { - "description": "Virtual application in an app.", - "type": "object", - "properties": { - "virtualPath": { - "description": "Virtual path.", - "type": "string" - }, - "physicalPath": { - "description": "Physical path.", - "type": "string" - }, - "preloadEnabled": { - "description": "true if preloading is enabled; otherwise, false.", - "type": "boolean" - }, - "virtualDirectories": { - "description": "Virtual directories for virtual application.", - "type": "array", - "items": { - "$ref": "#/definitions/VirtualDirectory" - }, - "x-ms-identifiers": [ - "virtualPath" - ] - } - } - }, - "VirtualDirectory": { - "description": "Directory for virtual application.", - "type": "object", - "properties": { - "virtualPath": { - "description": "Path to virtual application.", - "type": "string" - }, - "physicalPath": { - "description": "Physical path.", - "type": "string" - } - } - }, - "VirtualNetworkProfile": { - "description": "Specification for using a Virtual Network.", - "required": [ - "id" - ], - "type": "object", - "properties": { - "id": { - "description": "Resource id of the Virtual Network.", - "type": "string" - }, - "name": { - "description": "Name of the Virtual Network (read-only).", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type of the Virtual Network (read-only).", - "type": "string", - "readOnly": true - }, - "subnet": { - "description": "Subnet within the Virtual Network.", - "type": "string" - } - } - }, - "VnetGateway": { - "description": "The Virtual Network gateway contract. This is used to give the Virtual Network gateway access to the VPN package.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "VnetGateway resource specific properties", - "required": [ - "vpnPackageUri" - ], - "type": "object", - "properties": { - "vnetName": { - "description": "The Virtual Network name.", - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "vpnPackageUri": { - "description": "The URI where the VPN package can be downloaded.", - "type": "string", - "x-ms-mutability": [ - "create", - "update" - ] - } - }, - "x-ms-client-flatten": true - } - } - }, - "VnetInfo": { - "description": "Virtual Network information contract.", - "type": "object", - "properties": { - "vnetResourceId": { - "description": "The Virtual Network's resource ID.", - "type": "string" - }, - "certThumbprint": { - "description": "The client certificate thumbprint.", - "type": "string", - "readOnly": true - }, - "certBlob": { - "description": "A certificate file (.cer) blob containing the public key of the private key used to authenticate a \nPoint-To-Site VPN connection.", - "type": "string" - }, - "routes": { - "description": "The routes that this Virtual Network connection uses.", - "type": "array", - "items": { - "$ref": "#/definitions/VnetRoute" - }, - "readOnly": true - }, - "resyncRequired": { - "description": "true if a resync is required; otherwise, false.", - "type": "boolean", - "readOnly": true - }, - "dnsServers": { - "description": "DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses.", - "type": "string" - }, - "isSwift": { - "description": "Flag that is used to denote if this is VNET injection", - "type": "boolean" - } - } - }, - "VnetInfoResource": { - "description": "Virtual Network information ARM resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/VnetInfo", - "description": "Core resource properties", - "type": "object", - "x-ms-client-flatten": true - } - } - }, - "VnetRoute": { - "description": "Virtual Network route contract used to pass routing information for a Virtual Network.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "VnetRoute resource specific properties", - "type": "object", - "properties": { - "startAddress": { - "description": "The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified.", - "type": "string" - }, - "endAddress": { - "description": "The ending address for this route. If the start address is specified in CIDR notation, this must be omitted.", - "type": "string" - }, - "routeType": { - "description": "The type of route this is:\nDEFAULT - By default, every app has routes to the local address ranges specified by RFC1918\nINHERITED - Routes inherited from the real Virtual Network routes\nSTATIC - Static route set on the app only\n\nThese values will be used for syncing an app's routes with those from a Virtual Network.", - "enum": [ - "DEFAULT", - "INHERITED", - "STATIC" - ], - "type": "string", - "x-ms-enum": { - "name": "RouteType", - "modelAsString": true - } - } - }, - "x-ms-client-flatten": true - } - } - }, - "WebAppCollection": { - "description": "Collection of App Service apps.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/Site" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "userAssignedIdentity": { - "description": "User Assigned identity.", - "type": "object", - "properties": { - "principalId": { - "description": "Principal Id of user assigned identity", - "type": "string", - "readOnly": true - }, - "clientId": { - "description": "Client Id of user assigned identity", - "type": "string", - "readOnly": true - } - } - } - }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "description": "Azure Active Directory OAuth2 Flow", - "flow": "implicit", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "scopes": { - "user_impersonation": "impersonate your user account" - } - } - }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] - } - ] -} diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/DomainRegistrationProvider.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/DomainRegistrationProvider.json deleted file mode 100644 index 5ebf9695c8cb..000000000000 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/DomainRegistrationProvider.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2024-11-01", - "title": "DomainRegistrationProvider API Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/providers/Microsoft.DomainRegistration/operations": { - "get": { - "tags": [ - "DomainRegistrationProvider" - ], - "summary": "Implements Csm operations Api to exposes the list of available Csm Apis under the resource provider", - "description": "Description for Implements Csm operations Api to exposes the list of available Csm Apis under the resource provider", - "operationId": "DomainRegistrationProvider_ListOperations", - "parameters": [ - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/CsmOperationCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List operations": { - "$ref": "./examples/ListOperations.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - } - }, - "definitions": {}, - "parameters": { - "subscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).", - "required": true, - "type": "string" - }, - "apiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "API Version", - "required": true, - "type": "string" - } - }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "description": "Azure Active Directory OAuth2 Flow", - "flow": "implicit", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "scopes": { - "user_impersonation": "impersonate your user account" - } - } - }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] - } - ] -} diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/Domains.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/Domains.json deleted file mode 100644 index 9caa249788a4..000000000000 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/Domains.json +++ /dev/null @@ -1,1616 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2024-11-01", - "title": "Domains API Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/checkDomainAvailability": { - "post": { - "tags": [ - "Domains" - ], - "summary": "Check if a domain is available for registration.", - "description": "Description for Check if a domain is available for registration.", - "operationId": "Domains_CheckAvailability", - "parameters": [ - { - "name": "identifier", - "in": "body", - "description": "Name of the domain.", - "required": true, - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/NameIdentifier" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainAvailabilityCheckResult" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Check domain availability": { - "$ref": "./examples/CheckDomainAvailability.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/domains": { - "get": { - "tags": [ - "Domains" - ], - "summary": "Get all domains in a subscription.", - "description": "Description for Get all domains in a subscription.", - "operationId": "Domains_List", - "parameters": [ - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List domains by subscription": { - "$ref": "./examples/ListDomainsBySubscription.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/generateSsoRequest": { - "post": { - "tags": [ - "Domains" - ], - "summary": "Generate a single sign-on request for the domain management portal.", - "description": "Description for Generate a single sign-on request for the domain management portal.", - "operationId": "Domains_GetControlCenterSsoRequest", - "parameters": [ - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainControlCenterSsoRequest" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Get Domain Control Center Sso Request": { - "$ref": "./examples/GetDomainControlCenterSsoRequest.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/listDomainRecommendations": { - "post": { - "tags": [ - "Domains" - ], - "summary": "Get domain name recommendations based on keywords.", - "description": "Description for Get domain name recommendations based on keywords.", - "operationId": "Domains_ListRecommendations", - "parameters": [ - { - "name": "parameters", - "in": "body", - "description": "Search parameters for domain name recommendations.", - "required": true, - "schema": { - "$ref": "#/definitions/DomainRecommendationSearchParameters" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/NameIdentifierCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List domain recommendations": { - "$ref": "./examples/ListDomainRecommendations.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains": { - "get": { - "tags": [ - "Domains" - ], - "summary": "Get all domains in a resource group.", - "description": "Description for Get all domains in a resource group.", - "operationId": "Domains_ListByResourceGroup", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List domains by resource group": { - "$ref": "./examples/ListDomainsByResourceGroup.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}": { - "get": { - "tags": [ - "Domains" - ], - "summary": "Get a domain.", - "description": "Description for Get a domain.", - "operationId": "Domains_Get", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of the domain.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Domain" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Get Domain": { - "$ref": "./examples/GetDomain.json" - } - } - }, - "put": { - "tags": [ - "Domains" - ], - "summary": "Creates or updates a domain.", - "description": "Description for Creates or updates a domain.", - "operationId": "Domains_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of the domain.", - "required": true, - "type": "string", - "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" - }, - { - "name": "domain", - "in": "body", - "description": "Domain registration information.", - "required": true, - "schema": { - "$ref": "#/definitions/Domain" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "202": { - "description": "Domain purchase is in progress.", - "schema": { - "$ref": "#/definitions/Domain" - } - }, - "200": { - "description": "Domain purchase was successful.", - "schema": { - "$ref": "#/definitions/Domain" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Create App Service Domain": { - "$ref": "./examples/CreateAppServiceDomain.json" - } - }, - "x-ms-long-running-operation": true - }, - "delete": { - "tags": [ - "Domains" - ], - "summary": "Delete a domain.", - "description": "Description for Delete a domain.", - "operationId": "Domains_Delete", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of the domain.", - "required": true, - "type": "string" - }, - { - "name": "forceHardDeleteDomain", - "in": "query", - "description": "Specify true to delete the domain immediately. The default is false which deletes the domain after 24 hours.", - "type": "boolean" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully deleted domain." - }, - "204": { - "description": "Domain does not exist in Azure database probably because it has already been deleted" - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Delete App Service Domain": { - "$ref": "./examples/DeleteAppServiceDomain.json" - } - } - }, - "patch": { - "tags": [ - "Domains" - ], - "summary": "Creates or updates a domain.", - "description": "Description for Creates or updates a domain.", - "operationId": "Domains_Update", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of the domain.", - "required": true, - "type": "string", - "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" - }, - { - "name": "domain", - "in": "body", - "description": "Domain registration information.", - "required": true, - "schema": { - "$ref": "#/definitions/DomainPatchResource" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "202": { - "description": "Domain purchase is in progress.", - "schema": { - "$ref": "#/definitions/Domain" - } - }, - "200": { - "description": "Domain purchase was successful.", - "schema": { - "$ref": "#/definitions/Domain" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Update App Service Domain": { - "$ref": "./examples/UpdateAppServiceDomain.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers": { - "get": { - "tags": [ - "Domains" - ], - "summary": "Lists domain ownership identifiers.", - "description": "Description for Lists domain ownership identifiers.", - "operationId": "Domains_ListOwnershipIdentifiers", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of domain.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainOwnershipIdentifierCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List Domain Ownership Identifiers": { - "$ref": "./examples/ListDomainOwnershipIdentifiers.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}": { - "get": { - "tags": [ - "Domains" - ], - "summary": "Get ownership identifier for domain", - "description": "Description for Get ownership identifier for domain", - "operationId": "Domains_GetOwnershipIdentifier", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of domain.", - "required": true, - "type": "string" - }, - { - "name": "name", - "in": "path", - "description": "Name of identifier.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainOwnershipIdentifier" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Get Domain Ownership Identifier": { - "$ref": "./examples/GetDomainOwnershipIdentifier.json" - } - } - }, - "put": { - "tags": [ - "Domains" - ], - "summary": "Creates an ownership identifier for a domain or updates identifier details for an existing identifier", - "description": "Description for Creates an ownership identifier for a domain or updates identifier details for an existing identifier", - "operationId": "Domains_CreateOrUpdateOwnershipIdentifier", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of domain.", - "required": true, - "type": "string" - }, - { - "name": "name", - "in": "path", - "description": "Name of identifier.", - "required": true, - "type": "string" - }, - { - "name": "domainOwnershipIdentifier", - "in": "body", - "description": "A JSON representation of the domain ownership properties.", - "required": true, - "schema": { - "$ref": "#/definitions/DomainOwnershipIdentifier" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainOwnershipIdentifier" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Create App Service Domain OwnershipIdentifier": { - "$ref": "./examples/CreateAppServiceDomainOwnershipIdentifier.json" - } - } - }, - "delete": { - "tags": [ - "Domains" - ], - "summary": "Delete ownership identifier for domain", - "description": "Description for Delete ownership identifier for domain", - "operationId": "Domains_DeleteOwnershipIdentifier", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of domain.", - "required": true, - "type": "string" - }, - { - "name": "name", - "in": "path", - "description": "Name of identifier.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully deleted domain ownership identifier." - }, - "204": { - "description": "Domain ownership identifier does not exist." - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Delete App Service Domain Ownership Identifier": { - "$ref": "./examples/DeleteAppServiceDomainOwnershipIdentifier.json" - } - } - }, - "patch": { - "tags": [ - "Domains" - ], - "summary": "Creates an ownership identifier for a domain or updates identifier details for an existing identifier", - "description": "Description for Creates an ownership identifier for a domain or updates identifier details for an existing identifier", - "operationId": "Domains_UpdateOwnershipIdentifier", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of domain.", - "required": true, - "type": "string" - }, - { - "name": "name", - "in": "path", - "description": "Name of identifier.", - "required": true, - "type": "string" - }, - { - "name": "domainOwnershipIdentifier", - "in": "body", - "description": "A JSON representation of the domain ownership properties.", - "required": true, - "schema": { - "$ref": "#/definitions/DomainOwnershipIdentifier" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DomainOwnershipIdentifier" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Update App Service Domain OwnershipIdentifier": { - "$ref": "./examples/UpdateAppServiceDomainOwnershipIdentifier.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/renew": { - "post": { - "tags": [ - "Domains" - ], - "summary": "Renew a domain.", - "description": "Description for Renew a domain.", - "operationId": "Domains_Renew", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of the domain.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Domain renewal was successful." - }, - "202": { - "description": "Domain renewal in progress." - }, - "204": { - "description": "Domain does not exist." - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Renew an existing domain": { - "$ref": "./examples/RenewDomain.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/transferOut": { - "put": { - "tags": [ - "Domains" - ], - "summary": "Transfer out domain to another registrar", - "operationId": "Domains_TransferOut", - "parameters": [ - { - "$ref": "#/parameters/resourceGroupNameParameter" - }, - { - "name": "domainName", - "in": "path", - "description": "Name of domain.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully returned transfer code to transfer domain to another registrar.", - "schema": { - "$ref": "#/definitions/Domain" - } - }, - "400": { - "description": "Domain does not exist in Azure database", - "x-ms-error-response": true - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Transfer out domain": { - "$ref": "./examples/TransferOutDomain.json" - } - } - } - } - }, - "definitions": { - "Address": { - "description": "Address information for domain registration.", - "required": [ - "address1", - "city", - "country", - "postalCode", - "state" - ], - "type": "object", - "properties": { - "address1": { - "description": "First line of an Address.", - "type": "string" - }, - "address2": { - "description": "The second line of the Address. Optional.", - "type": "string" - }, - "city": { - "description": "The city for the address.", - "type": "string" - }, - "country": { - "description": "The country for the address.", - "type": "string" - }, - "postalCode": { - "description": "The postal code for the address.", - "type": "string" - }, - "state": { - "description": "The state or province for the address.", - "type": "string" - } - } - }, - "Contact": { - "description": "Contact information for domain registration. If 'Domain Privacy' option is not selected then the contact information is made publicly available through the Whois \ndirectories as per ICANN requirements.", - "required": [ - "email", - "nameFirst", - "nameLast", - "phone" - ], - "type": "object", - "properties": { - "addressMailing": { - "$ref": "#/definitions/Address", - "description": "Mailing address." - }, - "email": { - "description": "Email address.", - "type": "string" - }, - "fax": { - "description": "Fax number.", - "type": "string" - }, - "jobTitle": { - "description": "Job title.", - "type": "string" - }, - "nameFirst": { - "description": "First name.", - "type": "string" - }, - "nameLast": { - "description": "Last name.", - "type": "string" - }, - "nameMiddle": { - "description": "Middle name.", - "type": "string" - }, - "organization": { - "description": "Organization contact belongs to.", - "type": "string" - }, - "phone": { - "description": "Phone number.", - "type": "string" - } - } - }, - "Domain": { - "description": "Information about a domain.", - "type": "object", - "allOf": [ - { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/Resource" - } - ], - "properties": { - "properties": { - "description": "Domain resource specific properties", - "required": [ - "contactAdmin", - "contactBilling", - "contactRegistrant", - "contactTech", - "consent" - ], - "type": "object", - "properties": { - "contactAdmin": { - "$ref": "#/definitions/Contact", - "description": "Administrative contact.", - "x-ms-mutability": [ - "create" - ] - }, - "contactBilling": { - "$ref": "#/definitions/Contact", - "description": "Billing contact.", - "x-ms-mutability": [ - "create" - ] - }, - "contactRegistrant": { - "$ref": "#/definitions/Contact", - "description": "Registrant contact.", - "x-ms-mutability": [ - "create" - ] - }, - "contactTech": { - "$ref": "#/definitions/Contact", - "description": "Technical contact.", - "x-ms-mutability": [ - "create" - ] - }, - "registrationStatus": { - "description": "Domain registration status.", - "enum": [ - "Active", - "Awaiting", - "Cancelled", - "Confiscated", - "Disabled", - "Excluded", - "Expired", - "Failed", - "Held", - "Locked", - "Parked", - "Pending", - "Reserved", - "Reverted", - "Suspended", - "Transferred", - "Unknown", - "Unlocked", - "Unparked", - "Updated", - "JsonConverterFailed" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "DomainStatus", - "modelAsString": false - } - }, - "provisioningState": { - "description": "Domain provisioning state.", - "enum": [ - "Succeeded", - "Failed", - "Canceled", - "InProgress", - "Deleting" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "ProvisioningState", - "modelAsString": false - } - }, - "nameServers": { - "description": "Name servers.", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "privacy": { - "description": "true if domain privacy is enabled for this domain; otherwise, false.", - "type": "boolean" - }, - "createdTime": { - "format": "date-time", - "description": "Domain creation timestamp.", - "type": "string", - "readOnly": true - }, - "expirationTime": { - "format": "date-time", - "description": "Domain expiration timestamp.", - "type": "string", - "readOnly": true - }, - "lastRenewedTime": { - "format": "date-time", - "description": "Timestamp when the domain was renewed last time.", - "type": "string", - "readOnly": true - }, - "autoRenew": { - "description": "true if the domain should be automatically renewed; otherwise, false.", - "default": true, - "type": "boolean" - }, - "readyForDnsRecordManagement": { - "description": "true if Azure can assign this domain to App Service apps; otherwise, false. This value will be true if domain registration status is active and \n it is hosted on name servers Azure has programmatic access to.", - "type": "boolean", - "readOnly": true - }, - "managedHostNames": { - "description": "All hostnames derived from the domain and assigned to Azure resources.", - "type": "array", - "items": { - "$ref": "#/definitions/HostName" - }, - "readOnly": true, - "x-ms-identifiers": [ - "name" - ] - }, - "consent": { - "$ref": "#/definitions/DomainPurchaseConsent", - "description": "Legal agreement consent.", - "x-ms-mutability": [ - "create" - ] - }, - "domainNotRenewableReasons": { - "description": "Reasons why domain is not renewable.", - "type": "array", - "items": { - "enum": [ - "RegistrationStatusNotSupportedForRenewal", - "ExpirationNotInRenewalTimeRange", - "SubscriptionNotActive" - ], - "type": "string", - "x-ms-enum": { - "name": "ResourceNotRenewableReason", - "modelAsString": true - } - }, - "readOnly": true - }, - "dnsType": { - "description": "Current DNS type", - "enum": [ - "AzureDns", - "DefaultDomainRegistrarDns" - ], - "type": "string", - "x-ms-enum": { - "name": "DnsType", - "modelAsString": false - } - }, - "dnsZoneId": { - "description": "Azure DNS Zone to use", - "type": "string" - }, - "targetDnsType": { - "description": "Target DNS type (would be used for migration)", - "enum": [ - "AzureDns", - "DefaultDomainRegistrarDns" - ], - "type": "string", - "x-ms-enum": { - "name": "DnsType", - "modelAsString": false - } - }, - "authCode": { - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - } - }, - "x-ms-client-flatten": true - } - } - }, - "DomainAvailabilityCheckResult": { - "description": "Domain availability check result.", - "type": "object", - "properties": { - "name": { - "description": "Name of the domain.", - "type": "string" - }, - "available": { - "description": "true if domain can be purchased using CreateDomain API; otherwise, false.", - "type": "boolean" - }, - "domainType": { - "description": "Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything.", - "enum": [ - "Regular", - "SoftDeleted" - ], - "type": "string", - "x-ms-enum": { - "name": "DomainType", - "modelAsString": false - } - } - } - }, - "DomainCollection": { - "description": "Collection of domains.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/Domain" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "DomainControlCenterSsoRequest": { - "description": "Single sign-on request information for domain management.", - "type": "object", - "properties": { - "url": { - "description": "URL where the single sign-on request is to be made.", - "type": "string", - "readOnly": true - }, - "postParameterKey": { - "description": "Post parameter key.", - "type": "string", - "readOnly": true - }, - "postParameterValue": { - "description": "Post parameter value. Client should use 'application/x-www-form-urlencoded' encoding for this value.", - "type": "string", - "readOnly": true - } - } - }, - "DomainOwnershipIdentifier": { - "description": "Domain ownership Identifier.", - "type": "object", - "allOf": [ - { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "DomainOwnershipIdentifier resource specific properties", - "type": "object", - "properties": { - "ownershipId": { - "description": "Ownership Id.", - "type": "string" - } - }, - "x-ms-client-flatten": true - } - } - }, - "DomainOwnershipIdentifierCollection": { - "description": "Collection of domain ownership identifiers.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/DomainOwnershipIdentifier" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "DomainPatchResource": { - "description": "ARM resource for a domain.", - "type": "object", - "allOf": [ - { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "DomainPatchResource resource specific properties", - "required": [ - "contactAdmin", - "contactBilling", - "contactRegistrant", - "contactTech", - "consent" - ], - "type": "object", - "properties": { - "contactAdmin": { - "$ref": "#/definitions/Contact", - "description": "Administrative contact.", - "x-ms-mutability": [ - "create" - ] - }, - "contactBilling": { - "$ref": "#/definitions/Contact", - "description": "Billing contact.", - "x-ms-mutability": [ - "create" - ] - }, - "contactRegistrant": { - "$ref": "#/definitions/Contact", - "description": "Registrant contact.", - "x-ms-mutability": [ - "create" - ] - }, - "contactTech": { - "$ref": "#/definitions/Contact", - "description": "Technical contact.", - "x-ms-mutability": [ - "create" - ] - }, - "registrationStatus": { - "description": "Domain registration status.", - "enum": [ - "Active", - "Awaiting", - "Cancelled", - "Confiscated", - "Disabled", - "Excluded", - "Expired", - "Failed", - "Held", - "Locked", - "Parked", - "Pending", - "Reserved", - "Reverted", - "Suspended", - "Transferred", - "Unknown", - "Unlocked", - "Unparked", - "Updated", - "JsonConverterFailed" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "DomainStatus", - "modelAsString": false - } - }, - "provisioningState": { - "description": "Domain provisioning state.", - "enum": [ - "Succeeded", - "Failed", - "Canceled", - "InProgress", - "Deleting" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "ProvisioningState", - "modelAsString": false - } - }, - "nameServers": { - "description": "Name servers.", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "privacy": { - "description": "true if domain privacy is enabled for this domain; otherwise, false.", - "type": "boolean" - }, - "createdTime": { - "format": "date-time", - "description": "Domain creation timestamp.", - "type": "string", - "readOnly": true - }, - "expirationTime": { - "format": "date-time", - "description": "Domain expiration timestamp.", - "type": "string", - "readOnly": true - }, - "lastRenewedTime": { - "format": "date-time", - "description": "Timestamp when the domain was renewed last time.", - "type": "string", - "readOnly": true - }, - "autoRenew": { - "description": "true if the domain should be automatically renewed; otherwise, false.", - "default": true, - "type": "boolean" - }, - "readyForDnsRecordManagement": { - "description": "true if Azure can assign this domain to App Service apps; otherwise, false. This value will be true if domain registration status is active and \n it is hosted on name servers Azure has programmatic access to.", - "type": "boolean", - "readOnly": true - }, - "managedHostNames": { - "description": "All hostnames derived from the domain and assigned to Azure resources.", - "type": "array", - "items": { - "$ref": "#/definitions/HostName" - }, - "readOnly": true, - "x-ms-identifiers": [ - "name" - ] - }, - "consent": { - "$ref": "#/definitions/DomainPurchaseConsent", - "description": "Legal agreement consent.", - "x-ms-mutability": [ - "create" - ] - }, - "domainNotRenewableReasons": { - "description": "Reasons why domain is not renewable.", - "type": "array", - "items": { - "enum": [ - "RegistrationStatusNotSupportedForRenewal", - "ExpirationNotInRenewalTimeRange", - "SubscriptionNotActive" - ], - "type": "string", - "x-ms-enum": { - "name": "ResourceNotRenewableReason", - "modelAsString": true - } - }, - "readOnly": true - }, - "dnsType": { - "description": "Current DNS type", - "enum": [ - "AzureDns", - "DefaultDomainRegistrarDns" - ], - "type": "string", - "x-ms-enum": { - "name": "DnsType", - "modelAsString": false - } - }, - "dnsZoneId": { - "description": "Azure DNS Zone to use", - "type": "string" - }, - "targetDnsType": { - "description": "Target DNS type (would be used for migration)", - "enum": [ - "AzureDns", - "DefaultDomainRegistrarDns" - ], - "type": "string", - "x-ms-enum": { - "name": "DnsType", - "modelAsString": false - } - }, - "authCode": { - "type": "string", - "x-ms-mutability": [ - "create", - "read" - ] - } - }, - "x-ms-client-flatten": true - } - } - }, - "DomainPurchaseConsent": { - "description": "Domain purchase consent object, representing acceptance of applicable legal agreements.", - "type": "object", - "properties": { - "agreementKeys": { - "description": "List of applicable legal agreement keys. This list can be retrieved using ListLegalAgreements API under TopLevelDomain resource.", - "type": "array", - "items": { - "type": "string" - } - }, - "agreedBy": { - "description": "Client IP address.", - "type": "string" - }, - "agreedAt": { - "format": "date-time", - "description": "Timestamp when the agreements were accepted.", - "type": "string" - } - } - }, - "DomainRecommendationSearchParameters": { - "description": "Domain recommendation search parameters.", - "type": "object", - "properties": { - "keywords": { - "description": "Keywords to be used for generating domain recommendations.", - "type": "string" - }, - "maxDomainRecommendations": { - "format": "int32", - "description": "Maximum number of recommendations.", - "type": "integer" - } - } - }, - "HostName": { - "description": "Details of a hostname derived from a domain.", - "type": "object", - "properties": { - "name": { - "description": "Name of the hostname.", - "type": "string" - }, - "siteNames": { - "description": "List of apps the hostname is assigned to. This list will have more than one app only if the hostname is pointing to a Traffic Manager.", - "type": "array", - "items": { - "type": "string" - } - }, - "azureResourceName": { - "description": "Name of the Azure resource the hostname is assigned to. If it is assigned to a Traffic Manager then it will be the Traffic Manager name otherwise it will be the app name.", - "type": "string" - }, - "azureResourceType": { - "description": "Type of the Azure resource the hostname is assigned to.", - "enum": [ - "Website", - "TrafficManager" - ], - "type": "string", - "x-ms-enum": { - "name": "AzureResourceType", - "modelAsString": false - } - }, - "customHostNameDnsRecordType": { - "description": "Type of the DNS record.", - "enum": [ - "CName", - "A" - ], - "type": "string", - "x-ms-enum": { - "name": "CustomHostNameDnsRecordType", - "modelAsString": false - } - }, - "hostNameType": { - "description": "Type of the hostname.", - "enum": [ - "Verified", - "Managed" - ], - "type": "string", - "x-ms-enum": { - "name": "HostNameType", - "modelAsString": false - } - } - } - }, - "NameIdentifierCollection": { - "description": "Collection of domain name identifiers.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/NameIdentifier" - }, - "x-ms-identifiers": [ - "name" - ] - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - } - }, - "parameters": { - "subscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).", - "required": true, - "type": "string" - }, - "resourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "description": "Name of the resource group to which the resource belongs.", - "required": true, - "type": "string", - "maxLength": 90, - "minLength": 1, - "pattern": "^[-\\w\\._\\(\\)]+[^\\.]$", - "x-ms-parameter-location": "method" - }, - "apiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "API Version", - "required": true, - "type": "string" - } - }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "description": "Azure Active Directory OAuth2 Flow", - "flow": "implicit", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "scopes": { - "user_impersonation": "impersonate your user account" - } - } - }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] - } - ] -} diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/TopLevelDomains.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/TopLevelDomains.json deleted file mode 100644 index 073c2f4322da..000000000000 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/TopLevelDomains.json +++ /dev/null @@ -1,303 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2024-11-01", - "title": "TopLevelDomains API Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains": { - "get": { - "tags": [ - "TopLevelDomains" - ], - "summary": "Get all top-level domains supported for registration.", - "description": "Description for Get all top-level domains supported for registration.", - "operationId": "TopLevelDomains_List", - "parameters": [ - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/TopLevelDomainCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List Top Level Domains": { - "$ref": "./examples/ListTopLevelDomains.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}": { - "get": { - "tags": [ - "TopLevelDomains" - ], - "summary": "Get details of a top-level domain.", - "description": "Description for Get details of a top-level domain.", - "operationId": "TopLevelDomains_Get", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Name of the top-level domain.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/TopLevelDomain" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "Get Top Level Domain": { - "$ref": "./examples/GetTopLevelDomain.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}/listAgreements": { - "post": { - "tags": [ - "TopLevelDomains" - ], - "summary": "Gets all legal agreements that user needs to accept before purchasing a domain.", - "description": "Description for Gets all legal agreements that user needs to accept before purchasing a domain.", - "operationId": "TopLevelDomains_ListAgreements", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Name of the top-level domain.", - "required": true, - "type": "string" - }, - { - "name": "agreementOption", - "in": "body", - "description": "Domain agreement options.", - "required": true, - "schema": { - "$ref": "#/definitions/TopLevelDomainAgreementOption" - } - }, - { - "$ref": "#/parameters/subscriptionIdParameter" - }, - { - "$ref": "#/parameters/apiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/TldLegalAgreementCollection" - } - }, - "default": { - "description": "App Service error response.", - "schema": { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/DefaultErrorResponse" - } - } - }, - "x-ms-examples": { - "List Top Level Domain Agreements": { - "$ref": "./examples/ListTopLevelDomainAgreements.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - } - }, - "definitions": { - "TldLegalAgreement": { - "description": "Legal agreement for a top level domain.", - "required": [ - "agreementKey", - "title", - "content" - ], - "type": "object", - "properties": { - "agreementKey": { - "description": "Unique identifier for the agreement.", - "type": "string" - }, - "title": { - "description": "Agreement title.", - "type": "string" - }, - "content": { - "description": "Agreement details.", - "type": "string" - }, - "url": { - "description": "URL where a copy of the agreement details is hosted.", - "type": "string" - } - } - }, - "TldLegalAgreementCollection": { - "description": "Collection of top-level domain legal agreements.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/TldLegalAgreement" - }, - "x-ms-identifiers": [ - "agreementKey" - ] - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "TopLevelDomain": { - "description": "A top level domain object.", - "type": "object", - "allOf": [ - { - "$ref": "../../../DomainRegistration/stable/2024-11-01/CommonDefinitions.json#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "TopLevelDomain resource specific properties", - "type": "object", - "properties": { - "privacy": { - "description": "If true, then the top level domain supports domain privacy; otherwise, false.", - "type": "boolean" - } - }, - "x-ms-client-flatten": true - } - } - }, - "TopLevelDomainAgreementOption": { - "description": "Options for retrieving the list of top level domain legal agreements.", - "type": "object", - "properties": { - "includePrivacy": { - "description": "If true, then the list of agreements will include agreements for domain privacy as well; otherwise, false.", - "type": "boolean" - }, - "forTransfer": { - "description": "If true, then the list of agreements will include agreements for domain transfer as well; otherwise, false.", - "type": "boolean" - } - } - }, - "TopLevelDomainCollection": { - "description": "Collection of Top-level domains.", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/TopLevelDomain" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - } - }, - "parameters": { - "subscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).", - "required": true, - "type": "string" - }, - "apiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "API Version", - "required": true, - "type": "string" - } - }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "description": "Azure Active Directory OAuth2 Flow", - "flow": "implicit", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "scopes": { - "user_impersonation": "impersonate your user account" - } - } - }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] - } - ] -} diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CheckDomainAvailability.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CheckDomainAvailability.json index 96974801665d..b6bca2cd4414 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CheckDomainAvailability.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CheckDomainAvailability.json @@ -1,10 +1,10 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "api-version": "2024-11-01", "identifier": { "name": "abcd.com" - } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { @@ -14,5 +14,7 @@ "domainType": "Regular" } } - } + }, + "operationId": "Domains_CheckAvailability", + "title": "Check domain availability" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomain.json index f1c3936a0c88..869d9a99dc53 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomain.json @@ -1,303 +1,305 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "domainName": "example.com", "api-version": "2024-11-01", "domain": { "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "privacy": false, "autoRenew": true, - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "dnsType": "DefaultDomainRegistrarDns", + "privacy": false + }, + "tags": {} + }, + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} }, "202": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} } - } + }, + "operationId": "Domains_CreateOrUpdate", + "title": "Create App Service Domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomainOwnershipIdentifier.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomainOwnershipIdentifier.json index cec9f131d7cd..f391c824f65e 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomainOwnershipIdentifier.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/CreateAppServiceDomainOwnershipIdentifier.json @@ -1,27 +1,29 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "domainName": "example.com", "name": "SampleOwnershipId", "api-version": "2024-11-01", + "domainName": "example.com", "domainOwnershipIdentifier": { "properties": { "ownershipId": "SampleOwnershipId" } - } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "name": "SampleOwnershipId", "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "properties": { "ownershipId": "SampleOwnershipId" } - } + }, + "headers": {} } - } + }, + "operationId": "Domains_CreateOrUpdateOwnershipIdentifier", + "title": "Create App Service Domain OwnershipIdentifier" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomain.json index a696112de0b8..f33f41a275a6 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomain.json @@ -1,13 +1,15 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", + "api-version": "2024-11-01", "domainName": "example.com", "forceHardDeleteDomain": true, - "api-version": "2024-11-01" + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": {}, "204": {} - } + }, + "operationId": "Domains_Delete", + "title": "Delete App Service Domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomainOwnershipIdentifier.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomainOwnershipIdentifier.json index c6b2344b7d77..3e7d0e023dc8 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomainOwnershipIdentifier.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/DeleteAppServiceDomainOwnershipIdentifier.json @@ -1,13 +1,15 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "domainName": "example.com", "name": "ownershipIdentifier", - "api-version": "2024-11-01" + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": {}, "204": {} - } + }, + "operationId": "Domains_DeleteOwnershipIdentifier", + "title": "Delete App Service Domain Ownership Identifier" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomain.json index 368d17661f0e..3ec951036c1d 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomain.json @@ -1,115 +1,117 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", + "api-version": "2024-11-01", "domainName": "example.com", "getOnlyIfReadyForDnsManagement": true, - "api-version": "2024-11-01" + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} } - } + }, + "operationId": "Domains_Get", + "title": "Get Domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainControlCenterSsoRequest.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainControlCenterSsoRequest.json index 5d28e33b3984..b43e7d7b2033 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainControlCenterSsoRequest.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainControlCenterSsoRequest.json @@ -1,15 +1,17 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2024-11-01" + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { "body": { - "url": "https://Reseller.provider.com/?xRequestId=sdsdsds&app=dcc", "postParameterKey": "saml", - "postParameterValue": "1242sds|k1340" + "postParameterValue": "1242sds|k1340", + "url": "https://Reseller.provider.com/?xRequestId=sdsdsds&app=dcc" } } - } + }, + "operationId": "Domains_GetControlCenterSsoRequest", + "title": "Get Domain Control Center Sso Request" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainOwnershipIdentifier.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainOwnershipIdentifier.json index cf5ff1df495d..35a199cb45ae 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainOwnershipIdentifier.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetDomainOwnershipIdentifier.json @@ -1,22 +1,24 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "domainName": "example.com", "name": "SampleOwnershipId", - "api-version": "2024-11-01" + "api-version": "2024-11-01", + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "name": "SampleOwnershipId", "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "properties": { "ownershipId": "SampleOwnershipId" } - } + }, + "headers": {} } - } + }, + "operationId": "Domains_GetOwnershipIdentifier", + "title": "Get Domain Ownership Identifier" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetTopLevelDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetTopLevelDomain.json index ba838436c342..3293b7d746b1 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetTopLevelDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/GetTopLevelDomain.json @@ -1,20 +1,22 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "com", "api-version": "2024-11-01", - "name": "com" + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", "name": "com", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", "properties": { "privacy": true } - } + }, + "headers": {} } - } + }, + "operationId": "TopLevelDomains_Get", + "title": "Get Top Level Domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainOwnershipIdentifiers.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainOwnershipIdentifiers.json index ec0e2f9bb55d..a890737723c0 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainOwnershipIdentifiers.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainOwnershipIdentifiers.json @@ -1,25 +1,27 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", + "api-version": "2024-11-01", "domainName": "example.com", - "api-version": "2024-11-01" + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { "value": [ { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "name": "SampleOwnershipId", "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "properties": { "ownershipId": "SampleOwnershipId" } } ] - } + }, + "headers": {} } - } + }, + "operationId": "Domains_ListOwnershipIdentifiers", + "title": "List Domain Ownership Identifiers" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainRecommendations.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainRecommendations.json index c8081095fd73..2ccaa4fe7e43 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainRecommendations.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainRecommendations.json @@ -1,15 +1,14 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "api-version": "2024-11-01", "parameters": { "keywords": "example1", "maxDomainRecommendations": 10 - } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { "value": [ { @@ -22,7 +21,10 @@ "name": "domainnamesuggestion3" } ] - } + }, + "headers": {} } - } + }, + "operationId": "Domains_ListRecommendations", + "title": "List domain recommendations" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsByResourceGroup.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsByResourceGroup.json index b9a8e54c64c8..a008f123f0c2 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsByResourceGroup.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsByResourceGroup.json @@ -1,117 +1,119 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "api-version": "2024-11-01", "resourceGroupName": "testrg123", - "api-version": "2024-11-01" + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { "value": [ { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} } ] - } + }, + "headers": {} } - } + }, + "operationId": "Domains_ListByResourceGroup", + "title": "List domains by resource group" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsBySubscription.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsBySubscription.json index 1b72d30cd7de..3364dec6869d 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsBySubscription.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListDomainsBySubscription.json @@ -1,116 +1,118 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2024-11-01" + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { "value": [ { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} } ] - } + }, + "headers": {} } - } + }, + "operationId": "Domains_List", + "title": "List domains by subscription" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListOperations.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListOperations.json index eb6af58d1b21..e31fe3242200 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListOperations.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListOperations.json @@ -4,101 +4,103 @@ }, "responses": { "200": { - "headers": {}, "body": { "value": [ { "name": "Microsoft.DomainRegistration/domains/Read", "display": { - "provider": "Microsoft Domains", - "resource": "Domain", + "description": "Get the list of domains", "operation": "Get Domains", - "description": "Get the list of domains" + "provider": "Microsoft Domains", + "resource": "Domain" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/domains/Write", "display": { - "provider": "Microsoft Domains", - "resource": "Domain", + "description": "Add a new Domain or update an existing one", "operation": "Add or Update Domain", - "description": "Add a new Domain or update an existing one" + "provider": "Microsoft Domains", + "resource": "Domain" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/domains/Delete", "display": { - "provider": "Microsoft Domains", - "resource": "Domain", + "description": "Delete an existing domain.", "operation": "Delete Domain", - "description": "Delete an existing domain." + "provider": "Microsoft Domains", + "resource": "Domain" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/domains/operationresults/Read", "display": { - "provider": "Microsoft Domains", - "resource": "Domain operation", + "description": "Get a domain operation", "operation": "Get Domain Operation", - "description": "Get a domain operation" + "provider": "Microsoft Domains", + "resource": "Domain operation" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/generateSsoRequest/Action", "display": { - "provider": "Microsoft Domains", - "resource": "Domain Control Center Single Sign On Request", + "description": "Generate a request for signing into domain control center.", "operation": "Generate Domain Control Center Single Sign On Request", - "description": "Generate a request for signing into domain control center." + "provider": "Microsoft Domains", + "resource": "Domain Control Center Single Sign On Request" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action", "display": { - "provider": "Microsoft Domains", - "resource": "Domain Validation", + "description": "Validate domain purchase object without submitting it", "operation": "Domain Purchase Info Validation", - "description": "Validate domain purchase object without submitting it" + "provider": "Microsoft Domains", + "resource": "Domain Validation" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/checkDomainAvailability/Action", "display": { - "provider": "Microsoft Domains", - "resource": "Domain Availability Result", + "description": "Check if a domain is available for purchase", "operation": "Check Domain Availability", - "description": "Check if a domain is available for purchase" + "provider": "Microsoft Domains", + "resource": "Domain Availability Result" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/listDomainRecommendations/Action", "display": { - "provider": "Microsoft Domains", - "resource": "Domain Recommendations", + "description": "Retrieve the list domain recommendations based on keywords", "operation": "Retrieve Domain Recommendations", - "description": "Retrieve the list domain recommendations based on keywords" + "provider": "Microsoft Domains", + "resource": "Domain Recommendations" }, "origin": "user,system" }, { "name": "Microsoft.DomainRegistration/register/action", "display": { - "provider": "Microsoft Domains", - "resource": "Microsoft Domains resource provider", + "description": "Register the Microsoft Domains resource provider for the subscription", "operation": "Register Microsoft Domains resource provider", - "description": "Register the Microsoft Domains resource provider for the subscription" + "provider": "Microsoft Domains", + "resource": "Microsoft Domains resource provider" }, "origin": "user,system" } ] - } + }, + "headers": {} } - } + }, + "operationId": "DomainRegistrationProvider_ListOperations", + "title": "List operations" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomainAgreements.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomainAgreements.json index 020d9b33427a..ab5e037f5d1e 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomainAgreements.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomainAgreements.json @@ -1,32 +1,34 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "name": "in", - "api-version": "2024-11-01", "agreementOption": { - "includePrivacy": true, - "forTransfer": false - } + "forTransfer": false, + "includePrivacy": true + }, + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { "value": [ { "agreementKey": "DNRA", - "title": "Domain Name Registration Agreement", "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Registration Agreement\n
\n

Last Revised: October 6, 2017

\n

PLEASE READ THIS AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.

\r\n

1. OVERVIEW

\r\n

This Domain Name Registration Agreement (this \"Agreement\") is entered into by and between 510456, an individual (\"Azure\") and you, and is made effective as of the date of electronic acceptance.  This Agreement sets forth the terms and conditions of your use of Azure's Domain Name Registration services (the \"Domain Name Registration Services\" or the \"Services\"). The terms \"we\", \"us\" or \"our\" shall refer to Azure.  The terms \"you\", \"your\", \"User\" or \"customer\" shall refer to any individual or entity who accepts this Agreement.  Unless otherwise specified, nothing in this Agreement shall be deemed to confer any third-party rights or benefits.

\r\n

Your electronic acceptance of this Agreement signifies that you have read, understand, acknowledge and agree to be bound by this Agreement, which incorporates by reference each of (i) Azure’s Universal Terms of Service Agreement (\"UTOS\"), (ii) all agreements, guidelines, policies, practices, procedures, registration requirements or operational standards of the top-level domain (\"TLD\") in which you register any domain (“Registry Policies”), and (iii) any plan limits, product disclaimers or other restrictions presented to you on the Domain Name Registration Services landing page of the Azure website (this “Site”). 

\r\n

TO LINK TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER A DOMAIN NAME, PLEASE CLICK HERE   

\r\n

You acknowledge and agree that (i) Azure, in its sole and absolute discretion, may change or modify this Agreement, and any policies or agreements which are incorporated herein, at any time, and such changes or modifications shall be effective immediately upon posting to this Site, and (ii) your use of this Site or the Services found at this Site after such changes or modifications have been made shall constitute your acceptance of this Agreement as last revised.  If you do not agree to be bound by this Agreement as last revised, do not use (or continue to use) this Site or the Services found at this Site.  In addition, Azure may occasionally notify you of changes or modifications to this Agreement by email.  It is therefore very important that you keep your shopper account (“Shopper Account”) information, including your email address, current.  Azure assumes no liability or responsibility for your failure to receive an email notification if such failure results from an inaccurate or out-of-date email address.    Azure is not an Internet Corporation for Assigned Names and Numbers (\"ICANN\") accredited registrar; it is an authorized reseller of domain name registration services.  Accordingly, you acknowledge and agree that Azure may modify this Agreement in order to comply with any terms and conditions set forth by (i) the sponsoring registrar, (ii) ICANN, and/or (iii) the registry applicable to the TLD or country code top level domain (\"ccTLD\") in question.  As used herein, the terms \"registry\", \"Registry\", \"registry operator\" or \"Registry Operator\" shall refer to the registry applicable to the TLD or ccTLD in question.  To identify the sponsoring registrar, click here

\r\n

2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS

\r\n

Unless otherwise noted, the provisions below in this Section 2 are generally applicable to all TLDs that we offer.  Special provisions specific to any TLD or ccTLD (those in addition to posted Registry Policies) are identified elsewhere below in this Agreement. 

\r\n
    \r\n
  1. \r\n
    Registry Policies. You agree to be bound by all Registry Policies (defined above in this Agreement) applicable to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD.  REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator of the TLD in which the domain name registration is made is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the respective TLD. The third party beneficiary rights of the Registry Operator will survive any termination of this Agreement.    
    \r\n
  2. \r\n
  3. \r\n
    Registration Requirements.  To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication requirements as a condition to registering a domain name in the TLD, you agree that by submitting an application or registering or renewing your domain name, you represent and warrant that: (a) all information provided to register or renew the domain name (including all supporting documents, if any) is true, complete and correct, and is not misleading in any way, and the application is made in good faith; (b) you meet, and will continue to meet, the eligibility criteria prescribed in the Registry Policies for the applicable TLD for the duration of the domain name registration; (c) you have not previously submitted an application for the domain name with another registrar using the same eligibility criteria, and the other registrar has rejected the application (if applicable); (d) you acknowledge and agree that even if the domain name is accepted for registration, your entitlement to register the domain name may be challenged by others who claim to have an entitlement to the domain name; and (e) you acknowledge and agree that the Registry or the registrar can cancel the registration of the domain name if any of the warranties required are found to be untrue, incomplete, incorrect or misleading.
    \r\n
  4. \r\n
  5. \r\n
    Ownership.  You acknowledge and agree that registration of a domain name does not create any proprietary right for you, the registrar, or any other person in the name used as a domain name or the domain name registration and that the entry of a domain name in the Registry shall not be construed as evidence or ownership of the domain name registered as a domain name. You shall not in any way transfer or purport to transfer a proprietary right in any domain name registration or grant or purport to grant as security or in any other manner encumber or purport to encumber a domain name registration.
    \r\n
  6. \r\n
  7. \r\n
    ICANN Requirements. You agree to comply with the ICANN requirements, standards, policies, procedures, and practices for which each applicable Registry Operator has monitoring responsibility in accordance with the Registry Agreement between ICANN and itself or any other arrangement with ICANN.
    \r\n
  8. \r\n
  9. \r\n
    Indemnification of Registry.  You agree to indemnify, defend and hold harmless (within 30 days of demand) the Registry Operator and Registry Service Provider and their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors, officers, employees, accountants, attorneys, insurers, agents, predecessors, successors and assigns, from and against any and all claims, demands, damages, losses, costs, expenses, causes of action or other liabilities of any kind, whether known or unknown, including reasonable legal and attorney’s fees and expenses, in any way arising out of, relating to, or otherwise in connection with the your domain name registration, including, without limitation, the use, registration, extension, renewal, deletion, and/or transfer thereof and/or the violation of any applicable terms or conditions governing the registration. You shall not enter into any settlement or compromise of any such indemnifiable claim without Registrar’s or Registry Operator’s prior written consent, which consent shall not be unreasonably withheld, and you agree that these indemnification obligations shall survive the termination or expiration of the Agreement for any reason.  IN NO EVENT SHALL THE REGISTRY OPERATOR BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL, FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED, ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE, EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    \r\n
  10. \r\n
  11. \r\n
    Regulated TLDs.   For domain name registration in any “Regulated” TLD, you acknowledge and agree your registration is subject to the following additional requirements: (a) comply with all applicable laws, including those that relate to privacy, data collection, consumer protection (including in relation to misleading and deceptive conduct), fair lending, debt collection, organic farming, disclosure of data, and financial disclosures; (b) if you collect and maintain sensitive health and financial data you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  Regulated TLDs include: .games, .juegos, .school, .schule, .toys, .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments, .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage, .degree, .mba, .audio, .book, .broadway, .film, .movie, .music, .software, .fashion, .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis, .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater, .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet, .engineering, .law, .limited, .show; .theater; .town, .city, .reise, and .reisen
    \r\n
  12. \r\n
  13. \r\n
    Highly Regulated TLDs. In addition to the requirements for Regulated TLDs, domain name registration in any Highly-Regulated TLD is subject to the following requirements: (a) you will provide administrative contact information, which must be kept up‐to‐date, for the notification of complaints or reports of registration abuse, as well as the contact details of the relevant regulatory, or Industry self‐regulatory, bodies in their main place of business; (b) you represent that you possess any necessary authorizations, charters, licenses and/or other related credentials for participation in the sector associated with such Highly‐regulated TLD; and (c) you will report any material changes to the validity of you authorizations, charters, licenses and/or other related credentials for participation in the sector associated with the Highly‐regulated TLD to ensure you continue to conform to the appropriate regulations and licensing requirements and generally conduct your activities in the interests of the consumers they serve.  Highly Regulated TLDs include: .abogado, .attorney, .bank, .bet, .bingo, .casino .charity (and IDN equivalent xn--30rr7y), .cpa, .corp, creditcard, .creditunion .dds, .dentist, .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance, .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl, .spreadbetting, .srl, .surgery .university, .vermogensberater, and .vesicherung,  For .doctor, registrants who hold themselves out to be licensed medical practitioners must be able to demonstrate to the Registrar and Registry, upon request, that they hold the applicable license.
    \r\n
  14. \r\n
  15. \r\n
    Special Safeguard TLDs.  In addition to the requirements for Regulated and Highly-Regulated TLDs, by registering a domain name in any “Special-Safeguard” TLD, you agree to take reasonable steps to avoid misrepresenting or falsely implying that you or your business is affiliated with, sponsored or endorsed by one or more country's or government's military forces if such affiliation, sponsorship or endorsement does not exist.  Special Safeguard TLDs include:  .army, .navy, .airforce
    \r\n
  16. \r\n
  17. \r\n
    Third Party Beneficiary.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator for any TLD in which your register a domain name is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the TLD. Third party beneficiary rights of the Registry Operator shall survive any termination of this Agreement.
    \r\n
  18. \r\n
  19. \r\n
    Variable and Non-Uniform Pricing.  You acknowledge, understand and agree that certain domain names in certain TLDs are established by Registry Policies to be variably priced (i.e., standard v. premium names) and/or may have non-uniform renewal registration pricing (such that the Fee for a domain name registration renewal may differ from other domain names in the same TLD, e.g., renewal registration for one domain may be $100.00 and $33.00 for a different domain name).
    \r\n
  20. \r\n
  21. \r\n
    Restriction on Availability of Privacy or Proxy.  You acknowledge and agree that, as dictated by the Registry Policies, for certain TLDs you may not be permitted to purchase private or proxy TLD registrations. In such case, you must register for any and all TLD registrations using your personal information, which information you represent and warrant is current, accurate and complete.
    \r\n
  22. \r\n
\r\n

3. FEES AND PAYMENTS

\r\n

(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS

\r\n

You agree to pay any and all prices and fees due for Services purchased or obtained at this Site at the time you order the Services.  Azure expressly reserves the right to change or modify its prices and fees at any time, and such changes or modifications shall be posted online at this Site and effective immediately without need for further notice to you.  If you have purchased or obtained Services for a period of months or years, changes or modifications in prices and fees shall be effective when the Services in question come up for renewal as further described below. 

\r\n

Unless otherwise specifically noted (for reasons such as those highlighted in Section 2(x) above), the renewal price for any domain name in any TLD will be the same as the list (non-sale) price shown when you search for and select a domain, and again in the cart prior to purchase.  For example, if the list price is $9.99, and a different renewal price is not specifically identified, then the renewal price is also $9.99.  Likewise, if a domain name has a sale price of $8.99, with the list (non-sale) price shown (as a strike-through) at $9.99, the renewal price will be $9.99*.  

\r\n

*Renewal price subject to change prior to actual date of renewal. 

\r\n

For all other terms and conditions relating to fees, payment, refund and billing, etc. applicable to the Services offered under the scope of this Agreement, please refer to the “Fees and Payments” section of our UTOS

\r\n

(B) DOMAIN NAME RENEWAL TERMS

\r\n

When you register a domain name, you will have two renewal options: (i) \"Automatic Renewal\" (ii) \"Extended Automatic Renewal\", and (iii) \"Manual Renewal\": 

\r\n
    \r\n
  1. Automatic Renewal.  Automatic Renewal is the default setting. Therefore, unless you select Extended Automatic Renewal, Azure will enroll you in Automatic Renewal.  Domain names will automatically renew, for a period equivalent to the length of your original domain name registration, any domain name that is up for renewal and will take payment from the Payment Method you have on file with Azure, at Azure's then current rates. Thus, if you have chosen to register your domain name for one (1) year, Azure will automatically renew it for one (1) year. If you have chosen to register your domain name for two (2) years, Azure will automatically renew it for two (2) years, and so on.
  2. \r\n
  3. Extended Automatic Renewal.  If you enroll in the Extended Automatic Renewal plan, Azure will automatically renew any domain name that is up for renewal for an additional one-year period on each and every anniversary of your domain name registration, so the initial registration period will always remain intact.  Thus, if you have chosen to register your domain name for two (2) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your two (2) year registration period will always remain intact. If you have chosen to register your domain name for five (5) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your five (5) year registration period will always remain intact, and so on.  Azure will take payment from the Payment Method you have on file with Azure, at Azure's then current one-year domain name registration rate.
  4. \r\n
  5. Manual Renewal.  If you have elected to turn off automatic renewal and cancel the product (i.e., cancel the domain name registration) effective at expiration of the then current term, you may nonetheless elect to manually renew the domain name at anytime prior to its expiration date by logging into your Account Manager and manually implementing the renewal or by calling customer service (should you in fact want the domain name to be renewed). If you fail to manually implement the renewal before the expiration date, the domain name will be cancelled and you will no longer have use of that name.
  6. \r\n
\r\n

All renewals will be subject to the terms of this Agreement, as it may be amended from time to time, and you acknowledge and agree to be bound by the terms of this Agreement (as amended) for all renewed domains.  Domain name renewals will be non-refundable. In the event that we are unable to automatically renew your domain name for the renewal option selected for any reason, we may automatically renew your domain name for a period less than your original registration period to the extent necessary for the transaction to succeed. If for any reason Azure is not able to take the payment from the Payment Method you have on file, and you fail to respond to our notices, your domain name registration will expire. It is your responsibility to keep your Payment Method information current, which includes the expiration date if you are using a credit card.

\r\n

For certain ccTLDs (.am, .at, .be, .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the month prior to the month of expiration.

\r\n

For certain ccTLDs (.am, .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the product was previously cancelled, no later than the 20th of the month prior to the expiration date, or your domain name will be placed in non-renewal status. For some ccTLDs (.es) renewal must be processed no later than seven days before the expiration date, or your domain name will be placed in non-renewal status.  When the domain name is in non-renewal status, you can renew the domain name only by calling Azure and requesting that the domain name be renewed. You cannot renew the domain name through your Account Manager. If you fail to manually implement the renewal of any cancelled product before the expiration date, the domain name will be cancelled and you will no longer have use of that name.

\r\n

You agree that Azure will not be responsible for cancelled domain names that you fail to renew in the timeframes indicated in this Agreement. In any case, if you fail to renew your domain name in a timely fashion, additional charges may apply. If you signed up for privacy services, protected registration, or any other similar service, with your domain name registration, these services will automatically be renewed when your domain name registration is up for renewal, and you will incur the applicable additional renewal fee unless you cancel in advance. 

\r\n

If you fail to renew your domain name in the timeframes indicated in this Agreement, you agree that Azure may, in its sole discretion, renew your expired domain name on your behalf. If Azure decides to renew your expired domain name on your behalf, you will have a Renewal Grace Period during which you may reimburse Azure for the renewal and keep your domain name. The Renewal Grace Period is currently twelve (12) days but subject to change under the terms of this Agreement. For certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period after the expiration date of the domain name. If you do not reimburse Azure for the renewal during the Renewal Grace Period your domain name will be placed on Hold and flagged for deletion after which you will have a 30-day redemption period during which you may pay Azure a Redemption fee and redeem your domain name. The Redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the 30-day redemption period Azure may, in its sole discretion, delete your domain name or transfer it to another registrant on your behalf.  During the redemption period your domain name may be parked. 

\r\n

If your domain name is deleted, the Registry also provides a 30-day Redemption Grace Period during which you may pay Azure a redemption fee and redeem your domain name. The redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the Registry's Redemption Grace Period the Registry will release your name and it will become available for registration on a first-come-first-served basis.

\r\n

Renewal Grace Periods and Redemption Grace Periods vary for different ccTLDs. Please refer to the specific terms for the applicable TLD. In the event there is a conflict between the provisions of this paragraph and the ccTLD terms, the ccTLD terms shall control.

\r\n

\r\n

Our registration expiration notification policy and associated fees are described here.

\r\n

\r\n

\r\n

(C) FREE PRODUCT TERMS

\r\n

In the event you are provided with free products with the registration of a domain name, you acknowledge and agree that such free products will only be available with a valid purchase and may be terminated in the event the domain name is deleted or cancelled.  For free domain names, you acknowledge and agree that you may not change the account associated with such free domain for the first five (5) days after registration.  In the event a free domain name is offered with the registration of another domain and if the paid domain name registered fails, then we may, in its sole discretion, either delete the registration of the free domain or refund the difference between the amount paid and the value of the free domain.  Failed registrations associated with promotionals offers may result in the deletion of the free or discounted item or an adjustment between the registered domain price and the value of the discounted item, in our sole discretion.

\r\n

4. TERM OF AGREEMENT; TRANSFERS; DOMAIN TASTING

\r\n

The term of this Agreement shall continue in full force and effect as long as you have any domain name registered through Azure.

\r\n

You agree that you will not transfer any domain name registered through Azure to another domain name registrar during the first sixty (60) days after its initial registration date.  You agree that you may not transfer any domain name for ten (10) days after a Change of Account.

\r\n

You further agree that you will not engage in \"domain tasting\" by using the five (5) day grace period in which a registrant may choose to cancel a domain name and get a full refund of the registration fee as a vehicle to test the marketability or viability of a domain name.  If Azure determines (which determination shall be made by Azure in its sole and absolute discretion) that you have been engaging in \"domain tasting\", then Azure reserves the right to (a) charge you a small fee (which fee shall be deducted from any refund issued) or (b) refuse your cancellation/refund request altogether. Azure will not charge you a fee if Azure cancels your domain name during the five (5) day grace period due to fraud or other activity outside of your control. The five (5) day grace period does not apply to Premium Domains, which are non-refundable.

\r\n

You agree that Azure shall not be bound by (i) any representations made by third parties who you may use to purchase services from Azure, or (ii) any statements of a general nature, which may be posted on Azure's website or contained in Azure's promotional materials.

\r\n

5. UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION

\r\n

You agree to notify Azure within five (5) business days when any of the information you provided as part of the application and/or registration process changes. It is your responsibility to keep this information in a current and accurate status. Failure by you, for whatever reason, to provide Azure with accurate and reliable information on an initial and continual basis, shall be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. Failure by you, for whatever reason, to respond within five (5) business days to any inquiries made by Azure to determine the validity of information provided by you, shall also be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. You agree to retain a copy for your record of the receipt for purchase of your domain name.

\r\n

You agree that for each domain name registered by you, the following contact data is required: postal address, email address, telephone number, and if available, a facsimile number for the Registered Name Holder and, if different from the Registered Name Holder, the same contact information for, a technical contact, an administrative contact and a billing contact.

\r\n

You acknowledge and agree that domain name registration requires that this contact information, in whole or in part, be shared with the registry operator, for their use, copying, distribution, publication, modification and other processing  for (among other uses in accordance with our Privacy Policy) the purpose of administration of the domain name registration, which may require such information be transferred back and forth across international borders, to and from the U.S. to the EU, for example. As required by ICANN, this information must also be made publicly available by means of Whois, and that the registry operator may also be required to make this information publicly available by Whois. Both Azure and the registry operator may be required to archive this information with a third-party escrow service. You hereby consent and give permission for all such requirements and disclosures. Further, you represent and warrant that, if you are providing information about a third party, you have notified the third party of the disclosure and the purpose for the disclosure and you have obtained the third party's consent to such disclosure.  Registrar will not process data in a way that is incompatible with this Agreement.  Registrar will take reasonable precautions to protect data from loss or misuse.

\r\n

You agree that for each domain name registered by you the following information will be made publicly available in the Whois directory as determined by ICANN Policy and may be sold in bulk as set forth in the ICANN agreement:

\r\n
    \r\n
  • The domain name;
  • \r\n
  • Your name and postal address;
  • \r\n
  • The name, email address, postal address, voice and fax numbers for technical and administrative contacts;
  • \r\n
  • The Internet protocol numbers for the primary and secondary name servers;
  • \r\n
  • The corresponding names of the name servers; and
  • \r\n
  • The original date of registration and expiration date.
  • \r\n
  • Name of primary name server and secondary name server.
  • \r\n
  • Identity of the registrar.
  • \r\n
\r\n

You agree that, to the extent permitted by ICANN, Azure may make use of the publicly available information you provided during the registration process. If you engage in the reselling of domain names you agree to provide any individuals whose personal information you've obtained, information about the possible uses of their personal information pursuant to ICANN policy. You also agree to obtain consent, and evidence of consent, from those individuals for such use of the personal information they provide.

\r\n

You agree that Azure has the right to make public and share with third parties certain information in connection with the sale or purchase of domain names on the website, including but not limited to (a) the name of the domain name sold or purchased, (b) the sale or purchase price of the domain name sold or purchased, and (c) information relating to the timing of the sale or purchase.

\r\n

\r\n

In order for us to comply with any current or future rules and policies for domain name systems including any rules or policies established by the CIRA or any provincial or federal government or by other organization having control or authority to establish rules or policies, you hereby grant to us the right to disclose to third parties through an interactive publicly accessible registration database the following information that you are required to provide when applying for a domain name:

\r\n
    \r\n
  1. The domain or sub-domain name(s) registered by you;
  2. \r\n
  3. Your organization name, type and postal address;
  4. \r\n
  5. The name(s), position(s), postal address(es), e-mail address(es), voice telephone number(s) and where available the fax number(s) of the technical and administrative contacts for your domain or sub-domain name(s);
  6. \r\n
  7. The full hostnames and Internet protocol (IP) addresses of at least two (2) name server hosts (one primary and at least one secondary) for your domain or sub-domain name. Up to six (6) name servers may be specified. If a host has more than one (1) IP address, use a comma-separated list;
  8. \r\n
  9. The corresponding names of those name servers;
  10. \r\n
  11. The original creation date of the registration; and
  12. \r\n
  13. The expiration date of the registration.
  14. \r\n
\r\n

We may be required to make this information available in bulk form to third parties. We may also transfer or assign this information to CIRA or such other third party as we may decide, in our sole discretion.

\r\n

6. DISPUTE RESOLUTION POLICY

\r\n

You agree to be bound by our current Dispute Resolution Policy. This policy is incorporated herein and made a part of this Agreement. You can view the Uniform Domain Name Dispute Resolution Policy online. You agree that Azure may from time to time modify its Dispute Resolution Policy. Azure will post any changes to its Dispute Resolution Policy at least thirty (30) days before they become effective. You agree that by maintaining your domain name registrations with Azure after the updated policy becomes effective that you agree to the Dispute Resolution policy as amended. You agree to review Azure's website periodically to determine if changes have been made to the Dispute Resolution Policy. If you cancel or terminate your Services with Azure as a result of the modified Dispute Resolution policy, no fees will be refunded to you. You also agree to submit to proceedings commenced under ICANN's Uniform Rapid Suspension System, if applicable. 

\r\n

You agree that if a dispute arises as a result of one (1) or more domain names you have registered using Azure, you will indemnify, defend and hold Azure harmless as provided for in this Agreement. You also agree that if Azure is notified that a complaint has been filed with a governmental, administrative or judicial body, regarding a domain name registered by you using Azure, that Azure, in its sole discretion, may take whatever action Azure deems necessary regarding further modification, assignment of and/or control of the domain name deemed necessary to comply with the actions or requirements of the governmental, administrative or judicial body until such time as the dispute is settled. In this event you agree to hold Azure harmless for any action taken by Azure.

\r\n

You agree to submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of your domicile, (2) where registrar is located or (3) where the registry operator is located (e.g., China for .CN, Columbia for .CO, UK for .EU, etc.).

\r\n

\r\n

In the case of .ca domain names, you agree that, if your use of the service or the registration of a .ca domain name is challenged by a third party, you will be subject to the provisions specified by CIRA in their dispute resolution policy, in effect at the time of the dispute.

\r\n

\r\n

7. TRANSFER OF DOMAIN NAMES; RESALE PRACTICES

\r\n

If you transfer any domain name, you agree to provide the information required by, and to abide by, the procedures and conditions set forth in our Domain Name Transfer Agreement and Change of Registrant Agreement. You may view the latest versions of our Domain Name Transfer Agreement and Change of Registrant Agreementonline. In order to further protect your domain name, any domain name registered with Azure or transferred to Azure shall be placed on lock status, unless an opted-out has occurred as defined in our Change of Registrant Agreement or Domain Name Proxy Agreement. The domain name must be placed on unlock status in order to initiate a transfer of the domain name away from Azure to a new Registrar. You may log into your account with Azure at any time after your domain name has been successfully transferred to Azure, and change the status to unlock.

\r\n

In the event you are purchasing a domain name on behalf of a third party, you agree to inform any customer of yours, who may be acquiring a domain name through you using Azure's registration services, that they are in fact registering their domain name through Azure and that Azure or its licensor is an accredited registrar with ICANN. You agree not to represent that you are an ICANN-accredited registrar or that you are in any way providing superior access to the ICANN Domain Name Registry. You also agree not to use the ICANN trademark logo in any of your promotional materials including your website.

\r\n

You agree to obtain each of your customers' acceptances to the then current version of this Agreement, and to retain evidence of their acceptance for a period of not less than three (3) years. Should you require that your customers accept additional terms and conditions that are not required by Azure, you agree that such additional terms and conditions shall not conflict with this Agreement and the policies and procedures adopted by ICANN.

\r\n

You agree that Azure is not lending you access to its registrar connections or its registry access, nor will you be deemed to be a registrar in your own right. Furthermore, you agree you will not attempt to gain access to Azure's registrar connections or registry access. You agree to provide complete, accurate and current data for each registrant to be added to a registry in accordance with ICANN requirements for inclusion in the Whois database.

\r\n

You agree to provide your customers with adequate customer support, and to maintain contact with them with regard to providing a medium for them to communicate changes in the information they provided as part of the domain name registration process. Upon receiving corrected or updated information you will, within five (5) business days, provide such information to Azure so Azure may update its registration records. You will retain copies of all communications between you and your customers and will upon request provide Azure copies of same.

\r\n

8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH OF AGREEMENT

\r\n

You represent and warrant to the best of your knowledge that, neither the registration of the domain nor the manner it is directly or indirectly used, infringes the legal rights of any third party.  You will comply with all applicable laws, including, but not limited to those relating to privacy, data collection, consumer protection, fair lending, debt collection, organic farming, and disclosure of data and financial disclosures.  If you collect and maintain sensitive health and financial data, you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  You represent that you possess any necessary authorization, charter, license, and/or other related credential for participation in the sector associated with the associated registry tld string.  You will report any material changes to the validity of your authorization, charter, license, and/or other related credential. You will indemnify and hold harmless the registrar and registry operator, and their directors, officers, employees and agents, from and against any and all claims, damages, liabilities, costs and expenses (including reasonable legal fees and expenses) arising out of or related to the domain name registration.  This obligation shall survive expiration or termination of this Agreement or the domain name registration.

\r\n

You agree that, in addition to other events set forth in this Agreement:

\r\n
    \r\n
  1. Your ability to use any of the services provided by Azure is subject to cancellation or suspension in the event there is an unresolved breach of this Agreement and/or suspension or cancellation is required by any policy now in effect or adopted later by ICANN;
  2. \r\n
  3. Your registration of any domain names shall be subject to suspension, cancellation or transfer pursuant to any ICANN adopted specification or policy, or pursuant to any Azure procedure not inconsistent with an ICANN adopted specification or policy (a) to correct mistakes by Azure or the registry operator in registering any domain name; or (b) for the resolution of disputes concerning any domain name.
  4. \r\n
\r\n

You acknowledge and agree that Azure and registry reserve the right to deny, cancel or transfer any registration or transaction, or place any domain name(s) on registry lock, hold or similar status, as either deems necessary, in the unlimited and sole discretion of either Azure or the registry: (i) to comply with specifications adopted by any industry group generally recognized as authoritative with respect to the Internet (e.g., RFCs), (ii) to correct mistakes made by registry or any registrar in connection with a domain name registration, (iii) for the non-payment of fees to registry, (iv) to protect the integrity and stability of the registry, (v) to comply with any applicable court orders, laws, government rules or requirements, requests of law enforcement, or any dispute resolution process, (vi) to comply with any applicable ICANN rules or regulations, including without limitation, the registry agreement, (vii) to avoid any liability, civil or criminal, on the part of registry operator, as well as its affiliates, subsidiaries, officers, directors, and employees, (viii) per the terms of this Agreement, (ix) following an occurrence of any of the prohibited activities described in Section 8 below, or (x) during the resolution of a dispute.

\r\n

You agree that your failure to comply completely with the terms and conditions of this Agreement and any Azure rule or policy may be considered by Azure to be a material breach of this Agreement and Azure may provide you with notice of such breach either in writing or electronically (i.e. email). In the event you do not provide Azure with material evidence that you have not breached your obligations to Azure within ten (10) business days, Azure may terminate its relationship with you and take any remedial action available to Azure under the applicable laws. Such remedial action may be implemented without notice to you and may include, but is not limited to, cancelling the registration of any of your domain names and discontinuing any services provided by Azure to you. No fees will be refunded to you should your Services be cancelled or terminated because of a breach.

\r\n

Azure's failure to act upon or notify you of any event, which may constitute a breach, shall not relieve you from or excuse you of the fact that you have committed a breach.

\r\n

9. RESTRICTION OF SERVICES; RIGHT OF REFUSAL

\r\n

You agree not to use the services provided by Azure, or to allow or enable others, to use the services provided by Azure for the purposes of:

\r\n
    \r\n
  • The transmission of unsolicited email (Spam); and
  • \r\n
  • Repetitive, high volume inquires into any of the services provided by Azure (i.e. domain name availability, etc.).
  • \r\n
\r\n

You acknowledge and agree that you are prohibited from distributing malware, abusively operating botnets, phishing, piracy, trademark or copyright infringement, fraudulent or deceptive practices, counterfeiting or otherwise engaging in activity contrary to applicable law, and you acknowledge and agree that the consequences for such activities include suspension of the domain name.

\r\n

If you are hosting your domain name system (“DNS”) on Azure’s servers, or are using our systems to forward a domain name, URL, or otherwise to a system or site hosted elsewhere, or if you have your domain name registered with Azure, you are responsible for ensuring there is no excessive overloading on Azure’s servers. You may not use Azure’s servers and your domain name as a source, intermediary, reply to address, or destination address for email denial-of-service attack, Internet packet flooding, packet corruption, or other abusive attack. Server hacking or other perpetration of security breaches is prohibited. You agree that Azure reserves the right to deactivate your domain name from its DNS if Azure deems it is the recipient of activities caused by your site that threaten the stability of its network.

\r\n

You agree that Azure, in its sole discretion and without liability to you, may refuse to accept the registration of any domain name. Azure also may in its sole discretion and without liability to you delete the registration of any domain name during the first thirty (30) days after registration has taken place. Azure may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Azure in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

\r\n
    \r\n
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • \r\n
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography; and
  • \r\n
  • Activities designed to harm or use unethically minors in any way.
  • \r\n
\r\n

In the event Azure refuses a registration or deletes an existing registration during the first thirty (30) days after registration, you will receive a refund of any fees paid to Azure in connection with the registration either being cancelled or refused. In the event Azure deletes the registration of a domain name being used in association with spam or morally objectionable activities, no refund will be issued.

\r\n

10. DEFAULT SETTINGS; PARKED PAGE

\r\n

Choosing Your Domain Name Settings.  When you register a domain name with Azure, you will be prompted to choose your domain name settings during the checkout process.  If you plan on using another provider for your website or hosting needs, then you should enter the name servers of such provider when you choose your domain name settings.  This will direct your domain name away from Azure’s name servers.  If you are an existing Azure customer and have already set up a customer profile designating your domain name settings for new domain name registrations, you will not need to complete this step again during the checkout process.   

\r\n

Azure’s Default Settings.  If you do not direct your domain name away from Azure’s name servers as described above, Azure will direct your domain name to a “Parked Page” (“Default Setting”).  You acknowledge and agree that Azure has the right to set the Default Setting. 

\r\n

Parked Page Default Setting.  Azure’s Parked Page service is an online domain monetization system designed to generate revenue (through the use of pay per click advertising) from domain names that are not actively being used as websites.  If your domain name is directed to a Parked Page, you acknowledge and agree that Azure may display both (a) in-house advertising (which includes links to Azure products and services) and (b) third-party advertising (which includes links to third-party products and services) on your Parked Page through the use of pop-up or pop-under browser windows, banner advertisements, audio or video streams, or any other advertising means, and we may aggregate for our own use, related usage data by means of cookies and other similar means.  In addition, you acknowledge and agree that all in-house and third-party advertising will be selected by Azure and its advertising partners, as appropriate, and you will not be permitted to customize the advertising, or entitled to any compensation in exchange therefor.  Please note that the third-party advertising displayed on Azure’s Parked Pages may contain content offensive to you, including but not limited to links to adult content.  Azure makes no effort to edit, control, monitor, or restrict the content and third-party advertising displayed on Azure’s Parked Pages, and expressly disclaims any liability or responsibility to you or any third party in connection therewith.

\r\n

Changing Azure’s Default Settings.  You may change Azure’s Default Settings at any time during the term of your domain name registration.

\r\n
    \r\n
  1. Content Displaying On Your Parked Page.  You can not modify the content displaying on your Parked Page.  You may select one of the other options listed below.
  2. \r\n
  3. Participating In Domain Name Monetization.  If you wish to participate in the domain monetization potential presented by Azure’s Parked Page service, please review and consider purchasing our CashParking® service.   
  4. \r\n
  5. No Content.  If the options listed above are not acceptable to you, please contact customer support to learn what other options might be available to you.
  6. \r\n
\r\n

Return To Parked Page Default Setting Upon Domain Name Expiration.  Upon domain name expiration, and regardless of how you use your domain name during the term of your domain name registration, your domain name will automatically return to the Parked Page Default Setting described above.  As used in this paragraph, “expiration” is deemed to include any “renewal period” or “redemption period” immediately after the domain name expires, but before the domain name is returned to the registry.  Once your domain name has returned to the Parked Page Default Setting described above, the only way to opt out of the Parked Page service is to renew, redeem, or re-register your domain name in accordance with Section 2(B), Domain Name Renewal Terms, of this Agreement.   

\r\n

11. DOMAIN ADD-ONS

\r\n

Business Registration:  Business registration allows You to display additional information about the business that is the basis of Your domain name, including, but not limited to, such information as Your fax number, street address, and hours of operation.

\r\n

Certified Domains.  The certified domain service generally allow You to: (i) put a Certified Domain Validation seal on Your website; and (ii) have Your domain name listed as \"Certified\", in WHOIS lookups on our website.   The Certified Domain Validation seal renews independently of Your domain. When You renew Your domain, You must also, when necessary, separately renew Your Certified Validation seal. However, the Certified Domain Validation seal can be cancelled independently of Your domain. If the domain is cancelled, the Certified Domain associated with the cancelled domain will automatically cancel.  The Certified Domain seal is a trademark and is protected by copyright, trademark and other intellectual property laws. You may use the Certified Domain seal only in conjunction with the purchase of the Services set forth in the Agreement, and subject to the terms and conditions hereof. Other than provided for in this Agreement, You may not otherwise use, reproduce, or modify the mark for any additional promotional use, without our prior written approval. Your right to the use of the Certified Domain seal is immediately terminated upon expiration or termination of this Agreement.

\r\n

Expiration Consolidation.  You understand and acknowledge the expiration consolidation service may only be used to consolidate the expiration of .com and .net domain names. The service may not be used to consolidate domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status. You acknowledge the service may only be used to push the expiration date of Your domains forward in time, at least one (1) month forward and no more than ten (10) years forward, and then, only for a period lasting less than twelve (12) months. Once the service has been used to consolidate domains, the new expiration date may not be reversed. To ensure the service is not abused or used as an alternative to renewals, you may only use the service on each domain once in any 12-month period. The service may only be used on domain names that have not passed their expiration date. In order to change the expiration date again, You will be required to renew the domain name first.  You further understand and acknowledge the service may only be used to coordinate domains where we are the registrar of record. Domains not registered with us must be transferred before we can perform the Service. 

\r\n

\r\n

Backordering/Monitoring.  You agree a domain name that has expired shall be subject first to a grace period of twelve (12) days, followed by the ICANN-mandated redemption grace period of thirty (30) days. During this period of time, the current domain name registrant may renew the domain name and retain ownership. We do not guarantee your backorder will result in you obtaining the domain name and expressly reserves the right to (a) refuse additional backorders or (b) cancel existing backorders at any time for any reason.  If your backorder is refused or cancelled, we agree to promptly refund any fees paid for such domain name backorder. The domain name may also be placed in a secondary market for resale through the Auctions® service.  After your first year of Auctions membership, you agree that unless otherwise advised, we will automatically renew your Auctions membership using the payment method you have on file for so long as your backorder credit is active. You may learn more about Auctions by visiting the Auctions website. The domain name may also be subject to a drop pool process before it is available for purchasing. You understand we and our registrar affiliates use our services, including backordering.  Therefore, the domain name may be registered with a different registrar, but can be managed through your account.  By using the Services, you will be able to, among other things:

\r\n
    \r\n
  1. Backorder any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO, .ORG, .MOBI. A backorder for a domain name will include the price of up to a one-year domain name registration. Should you successfully backorder any domain name, you will be subject to the terms and conditions of the Domain Name Registration and related agreements, which are incorporated herein by reference.
  2. \r\n
  3. Change your backorder until you obtain a domain name. You will have the opportunity to change the credit to a different domain name until you successfully capture one. After three (3) years, if the credit is not used, we reserves the right to remove the credit.
  4. \r\n
  5. Subscribe monthly to an expiring domain name list. You may also choose to purchase a subscription to a list of domain names expiring within the next five (5) days. If you subscribe to the expiring domain name list, you agree the payment method you have on file may be charged on a monthly subscription basis for the term of the Services you purchase.
  6. \r\n
  7. Select domain names off the expiring domain name list you would like to register. Each domain name you attempt to backorder will include the price of up to a one-year domain name registration, as set forth in subsection (i) above.
  8. \r\n
  9. Monitor your currently registered domain names for changes in registrar, status, expiration date or name servers at no additional cost.
  10. \r\n
  11. Subscribe to Domain Alert Pro or monitoring, which enables you to monitor any currently registered domain name, regardless of registrar, for historical tracking of status changes and designation of multiple email notification addresses.
  12. \r\n
\r\n

\r\n

\r\n

Transfer Validation. The transfer validation service is provided to help You keep Your domain name secure. By choosing to use the service, You are making an explicit and voluntary request to us to deny all attempts to transfer Your domain name to another registrar, or to move Your domain name to another account, unless You verify each request as described herein. You will provide us with a contact name, phone number and PIN for domain transfer validations. You will be contacted by us when a domain transfer is requested for a domain name in Your account. When we receive a transfer request, we will call You to verify the transfer request. If we cannot reach You with seventy-two (72) hours of receipt of the transfer request, the transfer will be denied. If You do not provide the proper PIN, the transfer will be denied. When we receive a change of account request, we will call You to verify the change request. If we cannot reach You with seventy-two (72) hours of receipt of the change request, the change will be denied. If You do not provide the proper PIN, the change will be denied. Availability of Services are subject to the terms and conditions of this Agreement and each of our policies and procedures. We shall use commercially reasonable efforts to attempt to provide certain portions of the Services on a twenty-four (24) hours a day, seven (7) days a week basis throughout the term of this Agreement and other portions of the service, during normal business hours. You acknowledge and agree that from time to time the Services may be inaccessible or inoperable for any reason, including, without limitation: (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs that we may undertake from time to time; or (iii) causes beyond the reasonable control of us or that are not reasonably foreseeable by us, including, without limitation, interruption or failure of telecommunication or digital transmission links, hostile network attacks, network congestion or other failures. You acknowledge and agree that we has no control over the availability of the service on a continuous or uninterrupted basis.

\r\n

\r\n

12. PRE-REGISTRATIONS

\r\n

If you submit an application for pre-registration of a domain name, Azure does not guarantee that the name will be secured for you, or that you will have immediate access to the domain name if secured.  Azure may use third-party service providers for the pre-registration services.

\r\n

13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS

\r\n

Domain Name Dispute Policy.  If you reserved or registered a .BIZ domain name through us, in addition to our Dispute Resolution Policy, you hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the Restrictions Dispute Resolution Policy applicable to the .biz TLD.

\r\n

The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be enforced on a case-by-case basis by an independent ICANN-accredited dispute provider. Registry Operator will not review, monitor, or otherwise verify that any particular domain name is being used primarily for business or commercial purposes or that a domain name is being used in compliance with the SUDRP or UDRP processes.

\r\n

One Year Registration.  If you are registering a .BIZ domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .BIZ domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .BIZ domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

\r\n

14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS 

\r\n

One Year Registration.  If you are registering a .INFO domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .INFO domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .INFO domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

15. PROVISIONS SPECIFIC TO .MOBI REGISTRATIONS 

\r\n

Instant Mobilizer. You are hereby granted a personal, revocable, non-exclusive, non-transferable, non-assignable, non-sublicensable license to use the Instant Mobilizer service (“Service”), provided, however, You abide by the terms and conditions set forth. You shall not alter, modify, adapt or translate the whole or part of the Service in any way whatsoever. You may not create derivative works based on the Service. You may not rent, lease, assign, dispose of, novate, sub-license or otherwise transfer any of its rights to use the Service to any third party.  In the event that the volume of traffic to You from Your use of the Service is sufficient so as to jeopardize the provision of Service for other end users, we and our licensors reserve the right to, at its sole discretion, permanently or temporarily, discontinue Your use of the Service. For the avoidance of doubt, the volume of traffic generated by You should not exceed two thousand (2,000) page views per day.  You acknowledge and agree the text \"Instant Mobilizer from dotMobi\" or equivalent, will be inserted at the footer of Your site.  In the event a dotMobi domain to which the Service is being provided is transferred to another domain name registrar, the Service will be interrupted on that dotMobi domain, and Service will not be restored if the new registrar does not offer the Service. 

\r\n

\r\n

16. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS 

\r\n

\r\n

17. PROVISIONS SPECIFIC TO .REISE REGISTRATIONS

\r\n

Domain Names registered in .REISE should be used for purposes dedicated to travel topics within six months following initial Registration, e.g. utilized on the Internet or otherwise used to perform a function.

\r\n

18. PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS

\r\n

You shall not permit content unsuitable for viewing by a minor to be viewed from the main or top-level directory of a .SEXY domain name. For purposes of clarity, content viewed at the main or top-level directory of a .SEXY domain name is the content immediately visible if a user navigates to http://example.sexy or http://www.example.sexy. No restrictions apply to the content at any other page or subdirectory addressed by a .SEXY Registered Name. 

\r\n

19. COUNTRY CODE TOP LEVEL DOMAINS

\r\n

You represent and warrant that you meet the eligibility requirements of each ccTLD you apply for. You further agree to be bound by any registry rules, policies, and agreements for that particular ccTLD. These may include, but are not limited to, agreeing to indemnify the ccTLD provider, limiting the liability of the ccTLD provider, and requirements that any disputes be resolved under that particular country's laws.

\r\n

(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS 

\r\n

.au Registrations (to include com.au, net.au and org.au) are governed by the following additional terms and conditions:

\r\n

auDA. auDA means .au Domain Administration Limited ACN 079 009 340, the .au domain names administrator.  The Registrar acts as agent for auDA for the sole purpose, but only to the extent necessary, to enable auDA to receive the benefit of rights and covenants conferred to it under this Agreement. auDA is an intended third party beneficiary of this agreement.

\r\n

auDA Published Policy.  auDA Published Policies means those specifications and policies established and published by auDA from time to time at http://www.auda.org.au.  You must comply with all auDA Published Policies, as if they were incorporated into, and form part of, this Agreement. In the event of any inconsistency between any auDA Published Policy and this Agreement, then the auDA Published Policy will prevail to the extent of such inconsistency.  You acknowledge that under the auDA Published Policies: (1) there are mandatory terms and conditions that apply to all domain names; (2) licences, and such terms and conditions are incorporated into, and form part of, this Agreement; (3) You are bound by, and must submit to, the .au Dispute Resolution Policy; and (4) auDA may delete or cancel the registration of a .au domain name. 

\r\n

auDA's Liabilities and Indemnity.  To the fullest extent permitted by law, auDA will not be liable to Registrant for any direct, indirect, consequential, special, punitive or exemplary losses or damages of any kind (including, without limitation, loss of use, loss or profit, loss or corruption of data, business interruption or indirect costs) suffered by Registrant arising from, as a result of, or otherwise in connection with, any act or omission whatsoever of auDA, its employees, agents or contractors. Registrant agrees to indemnify, keep indemnified and hold auDA, its employees, agents and contractors harmless from all and any claims or liabilities, arising from, as a result of, or otherwise in connection with, Registrant's registration or use of its .au domain name. Nothing in this document is intended to exclude the operation of Trade Practices Act 1974.

\r\n

(B) PROVISIONS SPECIFIC TO .CA REGISTRATIONS

\r\n

You acknowledge and agree that registration of your selected domain name in your first application to CIRA shall not be effective until you have entered into and agreed to be bound by CIRA's Registrant Agreement.

\r\n

CIRA Certified Registrar.  The registrar shall immediately give notice to you in the event that it is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated, or the Registrar Agreement between CIRA and the Registrar is terminated or expires. CIRA may post notice of such suspension, termination, or expiry on its website and may, if CIRA deems appropriate, give notice to the registrants thereof. In the event that the registrar is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated or in the event the Registrar Agreement between CIRA and the Registrar is terminated or expires, you shall be responsible for changing your Registrar of Record to a new CIRA Certified Registrar within thirty (30) days of the earlier of notice thereof being given to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current Registry PRP; provided, however, that if any of your domain name registrations are scheduled to expire within thirty (30) days of the giving of such notice, then you shall have thirty (30) days from the anniversary date of the registration(s), to register with a new CIRA certified registrar and to renew such domain name registration(s) in accordance with the Registry PRP.

\r\n

You acknowledge and agree that should there be insufficient funds prepaid by the registrar in the CIRA Deposit Account to be applied in payment of any fees, CIRA may in its sole discretion stop accepting applications for domain name registrations from the registrar, stop effecting registrations of domain names and transfers, renewals, modifications, and cancellations requested by the registrar and stop performing other billable transactions requested by the registrar not paid in full and CIRA may terminate the Registrar Agreement between CIRA and the Registrar.

\r\n

.CA ASCII and IDN domain variants are bundled and reserved for a single registrant.  Registrants are not required to register all variants in a bundle, but all registered variants must be registered and managed at a single registrar. Each variant registered will incur a registration fee.  In addition, when registering multiple .CA domain (ASCII and IDN) variants in a bundle, your registrant information must be identical.  If variants are registered at other registrars or if registrant information does not match, it may result in an \"unavailable\" search result, delayed or failed registration. If information does not match, validation is required and may take up to seven business days and delay availability of domain. 

\r\n

(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS 

\r\n

.CN is a restricted TLD – applications are subject to both a domain name check and real name verification as required by the China.  Registrations in .CN are therefore subject to the following additional terms:

\r\n

Verification, Registration and Activation.  If a domain name is not permitted to be registered by the Chinese government, as determined by us, the Registry Operator and/or a 3rd party provider utilized for such services and determinations, in either party’s discretion, the application for registration will not be successful.  In such event, the name will be deleted and you will be eligible for a refund as further described below.

\r\n

If permitted, then the Registration may proceed, but a .CN domain name may not be activated (i.e., it will not resolve in the Internet) unless and until you have submitted (via the process described during registration) valid documents required of us and the Registry to perform real name verification.  The following are acceptable forms of documents for the purpose of verification:

\r\n
    \r\n
  • China: Resident ID, temporary resident ID, business license or organization code certificate
  • \r\n
  • Hong Kong Special Administrative Region/Macao Special Administrative Region: Resident ID, driver’s license, passport or business license
  • \r\n
  • Singapore: Driver’s license, passport or business license
  • \r\n
  • Taiwan: Resident ID, driver’s license or business license
  • \r\n
  • Other Countries/Regions: Driver’s license or passport
  • \r\n
\r\n

Documents submitted to us are used by us and shared with the Registry solely for the purpose of real name verification, and are otherwise subject to our Privacy Policy.  By registering a .CN domain, you expressly agree that your data may be stored on servers in the U.S., or otherwise outside of the China.

\r\n

Refunds.  Refunds for .CN Registrations will only be allowed where (i) registration of the applied for domain name is not permitted by the Chinese government; or (ii) you notify us of your intent to cancel for any reason within the first five (5) days after the Registration (i.e., after it is deemed permissible by the Chinese government).  For the avoidance of doubt, refunds will not be permitted under any circumstances after five (5) days from the date of Registration, including, for example, in the event real name verification is not successful or if the Chinese government determines after Registration that the domain name should not have been registered (and directs us to delete).

\r\n

(D) PROVISIONS SPECIFIC TO .JP REGISTRATIONS

\r\n

Registration Restrictions.  You represent and warrant that you have a local presence in Japan with a home or office address. You agree that certain domain names are reserved and can only be registered by certain parties. These include: (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type .JP domain names that are defined as metropolitan, prefectural, and municipal labels; (iii) names of primary and secondary educational organizations; (iv) names of organizations related to Internet management; (v) names required for .JP domain name operations; and (vi) character strings which may be confused with ASCII-converted Japanese domain names. The complete list of .JP Reserved Domains is available here

\r\n

20. ENGLISH LANGUAGE CONTROLS

\r\n

This Agreement, along with all policies and the applicable product agreements identified above and incorporated herein by reference (collectively, the “Agreement”), is executed in the English language. To the extent any translation is provided to you, it is provided for convenience purposes only, and in the event of any conflict between the English and translated version, where permitted by law, the English version will control and prevail. Where the translated version is required to be provided to you and is to be considered binding by law (i) both language versions shall have equal validity, (ii) each party acknowledges that it has reviewed both language versions and that they are substantially the same in all material respects, and (iii) in the event of any discrepancy between these two versions, the translated version may prevail, provided that the intent of the Parties has been fully taken into consideration. 

\n
\n
\n\nRevised: 10/6/17
\nCopyright © 2000-2017 All Rights Reserved.\n
\n
\n
", + "title": "Domain Name Registration Agreement", "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456" }, { "agreementKey": "DNPA", - "title": "Domain Name Proxy Agreement", "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Proxy Agreement\n
\n

Last Revised: October 25, 2017

\n

Please read this Domain Name Proxy Agreement (\"Agreement\") carefully. By using the Services and/or website of Domains By Proxy, LLC, a Delaware limited liability company (\"DBP\"), You (as defined below) agree to all the terms and conditions set forth both herein and in the DBP privacy policy, which is incorporated by reference and can be found by clicking here.  You acknowledge that DBP may amend this Agreement at any time upon posting the amended terms on its website, and that any new, different or additional features changing the services provided by DBP will automatically be subject to this Agreement. If You do not agree to be bound by, or if You object to, the terms and conditions of this Agreement and any amendments hereto, do not use or access DBP's services. Continued use of DBP's services and its website after any such changes to this Agreement have been posted, constitutes Your acceptance of those changes.

\r\n

This Agreement is by and between DBP and you, your heirs, assigns, agents and contractors (\"You\") and is made effective as of the date of electronic execution. This Agreement sets forth the terms and conditions of Your relationship with DBP and Your use of DBP's services and represents the entire Agreement between You and DBP. By using DBP's Services, You acknowledge that You have read, understand and agree to be bound by all the terms and conditions of this Agreement, and You further agree to be bound by the terms of this Agreement for transactions entered into by:

\r\n
    \r\n
  1. You on Your behalf;
  2. \r\n
  3. Anyone acting as Your agent; and
  4. \r\n
  5. Anyone who uses the account You have established with DBP, whether or not the transactions were on Your behalf and/or authorized by You.
  6. \r\n
\r\n

You agree You will be bound by representations made by third parties acting on Your behalf, which either use or purchase services from DBP. You further agree that DBP will not be bound by statements of a general nature on DBP's website or DBP promotional materials. You further agree to abide by the terms and conditions promulgated by the Internet Corporation for Assigned Names and Numbers (\"ICANN\") (including the Uniform Domain Name Dispute Resolution Policy (\"Dispute Resolution Policy\") and Your Registrar (i.e., the ICANN-accredited person or entity through which You register a domain name).

\r\n

1. description of DBP's private registration services

\r\n

When You subscribe to DBP's private registration service through a DBP-affiliated Registrar, DBP will display its contact information in the publicly available \"Whois\" directory in place of Your information. DBP shall keep Your name, postal address, email address, phone and fax numbers confidential, subject to Section 4 of this Agreement. The following information (and not Your personal information) will be made publicly available in the \"Whois\" directory as determined by ICANN policy:

\r\n
    \r\n
  1. DBP's name as the proxy Registrant of the domain name and a proxy email address, phone number and postal address for the proxy Registrant's contact information;
  2. \r\n
  3. A proxy postal address and phone number for the domain name registration's technical contact;
  4. \r\n
  5. A proxy email address, postal address and phone number for the domain name registration's administrative contact;
  6. \r\n
  7. A proxy email address, postal address and phone number for the domain's name registration's billing contact;
  8. \r\n
  9. The primary and secondary domain name servers You designate for the domain name;
  10. \r\n
  11. The domain name's original date of registration and expiration date of the registration; and
  12. \r\n
  13. The identity of the Registrar.
  14. \r\n
\r\n

2. full benefits of domain registration retained by you

\r\n

Although DBP will show in the \"Whois\" directory as the Registrant of each domain name registration You designate, You will retain the full benefits of domain name registration with respect to each such domain name registration, including, subject to Section 4 below:

\r\n
    \r\n
  1. The right to sell, transfer or assign each domain name registration, which shall require cancellation of the DBP services associated with each such domain name registration;
  2. \r\n
  3. The right to control the use of each domain name registration, including designating the primary and secondary domain name servers to which each domain name points;
  4. \r\n
  5. The right to cancel each domain name registration;
  6. \r\n
  7. The right to cancel the DBP services associated with each domain name registration and/or Your privacy services with DBP so that Your contract information is listed in the \"Whois\" directory; and
  8. \r\n
  9. The right to renew each domain name registration upon its expiration, subject to Your Registrar's applicable rules and policies.
  10. \r\n
\r\n

3. PERSONAL INFORMATION AND your notification obligations; representation and warranties; ACCOUNT SECURITY

\r\n

Personal Information and Your Notification Obligations 

\r\n

You agree that for each domain name for which you use DBP services, You will provide accurate and current information as to:

\r\n
    \r\n
  1. Your name, the email address, postal address, phone and fax numbers for the domain name registration's Registrant contact;
  2. \r\n
  3. The email address, postal address, phone and fax numbers for the domain name registration's technical contact;
  4. \r\n
  5. The email address, postal address, phone and fax numbers for the domain name registration's administrative contact;
  6. \r\n
  7. The email address, postal address, phone and fax numbers for the domain name registration's billing contact; and
  8. \r\n
  9. You agree to provide government issued photo identification and/or government issued business identification as required for verification of identity when requested.
  10. \r\n
\r\n

You agree to:

\r\n
    \r\n
  1. Notify DBP within three (3) calendar days when any of the personal information You provided upon subscribing to DBP's services, changes;
  2. \r\n
  3. Respond within three (3) calendar days to any inquiries made by DBP to determine the validity of personal information provided by You; and
  4. \r\n
  5. Timely respond to email messages DBP sends to You regarding correspondence DBP has received that is either addressed to or involves You and/or Your domain name registration, as more fully set forth in Section 5(c) below.
  6. \r\n
  7. To allow DBP to act as your Designated Agent (as that term is defined below) in instances when DBP services are added to or cancelled from your domain name and for the purpose of facilitating a change of registrant request (as further described below). 
  8. \r\n
\r\n

It is Your responsibility to keep Your personal information current and accurate at all times.

\r\n

Renewals

\r\n

You agree DBP will arrange for Your Registrar to charge the credit card You have on file with the Registrar, at the Registrar's then current rates.

\r\n

If for any reason DBP and/or the Registrar for Your domain name is unable to charge Your credit card for the full amount of the service provided, or if DBP and/or the Registrar is charged back for any fee it previously charged to the credit card You provided, You agree that DBP and/or the Registrar may, without notice to You, pursue all available remedies in order to obtain payment, including but not limited to immediate cancellation of all services DBP provides to You.

\r\n

Representations and Warranties

\r\n

You warrant that all information provided by You to DBP is truthful, complete, current and accurate. You also warrant that You are using DBP's private registration services in good faith and You have no knowledge of Your domain name infringing upon or conflicting with the legal rights of a third party or a third party's trademark or trade name. You also warrant the domain name being registered by DBP on Your behalf will not be used in connection with any illegal activity, or in connection with the transmission of Spam, or that contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable or, disrupting, damaging or limiting the functionality of any software or hardware.

\r\n

Account Security

\r\n

You agree You are entirely responsible for maintaining the confidentiality of Your customer number/login ID and password (\"Account Access Information\").  You agree to notify DBP immediately of any unauthorized use of Your account or any other breach of security.  You agree DBP will not be liable for any loss that You may incur as a result of someone else using Your Account Access Information, either with or without Your knowledge.  You further agree You could be held liable for losses incurred by DBP or another party due to someone else using Your Account Access Information.  For security purposes, You should keep Account Access Information in a secure location and take precautions to prevent others from gaining access to Your Account Access Information.  You agree that You are entirely responsible for all activity in Your account, whether initiated by You, or by others.  DBP specifically disclaims liability for any activity in Your account, regardless of whether You authorized the activity.

\r\n

Designated Agency and Change of Registrant Information

\r\n

“DESIGNATED AGENT” MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.  IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.  FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH ICANN'S CHANGE OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION ON YOUR BEHALF.

\r\n

4. DBP's rights to deny, suspend, terminate service and to disclose your personal information

\r\n

You understand and agree that DBP has the absolute right and power, in its sole discretion and without any liability to You whatsoever, to:

\r\n
    \r\n
  1. Cancel the privacy service (which means that Your information will be available in the \"Whois\" directory) and/or reveal Your name and personal information that You provided to DBP:  
    A. When required by law, in the good faith belief that such action is necessary in order to conform to the edicts of the law or in the interest of public safety;
    B. To comply with legal process served upon DBP or in response to a reasonable threat of litigation against DBP (as determined by DBP in its sole and absolute discretion); or
    C. To comply with ICANN rules, policies, or procedures.
  2. \r\n
  3. Resolve any and all third party claims, whether threatened or made, arising out of Your use of a domain name for which DBP is the registrant listed in the \"Whois\" directory on Your behalf; or
  4. \r\n
  5. Take any other action DBP deems necessary:
    A. In the event you breach any provision of this Agreement or the DBP Anti-Spam Policy;
    B. To protect the integrity and stability of, and to comply with registration requirements, terms, conditions and policies of, the applicable domain name Registry and/or Registry Provider;
        C. To comply with any applicable laws, government rules or requirements, subpoenas, court orders or requests of law enforcement; 
    D. To comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant Policy;
    E. To avoid any financial loss or legal liability (civil or criminal) on the part of DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, officers, directors and employees;
    F. If the domain name for which DBP is the registrant on Your behalf violates or infringes a third party's trademark, trade name or other legal rights; and
    G. If it comes to DBP's attention that You are using DBP's services in a manner (as determined by DBP in its sole and absolute discretion) that:
  6. \r\n
\r\n
\r\n
    \r\n
  • Is illegal, or promotes or encourages illegal activity;
  • \r\n
  • Promotes, encourages or engages in child pornography or the exploitation of children;
  • \r\n
  • Promotes, encourages or engages in terrorism, violence against people, animals, or property;
  • \r\n
  • Promotes, encourages or engages in any spam or other unsolicited bulk email, or computer or network hacking or cracking;
  • \r\n
  • Violates the Ryan Haight Online Pharmacy Consumer Protection Act of 2008 or similar legislation, or promotes, encourages or engages in the sale or distribution of prescription medication without a valid prescription;  
  • \r\n
  • Infringes on the intellectual property rights of another User or any other person or entity;
  • \r\n
  • Violates the privacy or publicity rights of another User or any other person or entity, or breaches any duty of confidentiality that you owe to another User or any other person or entity;
  • \r\n
  • Interferes with the operation of DBP services;
  • \r\n
  • Contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable of, disrupting, damaging or limiting the functionality of any software or hardware; or
  • \r\n
  • Contains false or deceptive language, or unsubstantiated or comparative claims, regarding DBP or its services.
  • \r\n
\r\n
\r\n

You further understand and agree that if DBP is named as a defendant in, or investigated in anticipation of, any legal or administrative proceeding arising out of Your domain name registration or Your use of DBP's services, Your private registration service may be canceled, which means the domain name registration will revert back to You and Your identity will therefore be revealed in the Whois directory as Registrant.

\r\n

In the event:

\r\n
    \r\n
  1. DBP takes any of the actions set forth in subsection i, ii, or iii above or section 5; and/or
  2. \r\n
  3. You elect to cancel DBP's services for any reason --
  4. \r\n
\r\n

Neither DBP nor your Registrar will refund any fees paid by You whatsoever.

\r\n

5. communications forwarding

\r\n

a. Correspondence Forwarding

\r\n

Inasmuch as DBP's name, postal address and phone number will be listed in the Whois directory, You agree DBP will review and forward communications addressed to Your domain name that are received via email, certified or traceable courier mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically acknowledge DBP will not forward to You first class postal mail (other than legal notices), \"junk\" mail or other unsolicited communications (whether delivered through email, fax, postal mail or telephone), and You further authorize DBP to either discard all such communications or return all such communications to sender unopened. You agree to waive any and all claims arising from Your failure to receive communications directed to Your domain name but not forwarded to You by DBP.

\r\n

b. Email Forwarding

\r\n

The Whois directory requires an email address for every purchased domain name registration. When You purchase a private domain registration, DBP creates a private email address for that domain name, \"@domainsbyproxy.com\". Thereafter, when messages are sent to that private email address, DBP handles them according to the email preference You selected for that particular domain name. You have three (3) email preferences from which to choose. You can elect to:

\r\n
    \r\n
  1. Have all of the messages forwarded;
  2. \r\n
  3. Have all of the messages filtered for Spam and then forwarded; or
  4. \r\n
  5. Have none of the messages forwarded.
  6. \r\n
\r\n

As with all communications, You agree to waive any and all claims arising from Your failure to receive email directed to Your domain name but not forwarded to You by DBP.

\r\n

c. Notifications Regarding Correspondence and Your Obligation to Respond

\r\n

When DBP receives certified or traceable courier mail or legal notices addressed to Your domain name, in most cases, DBP will attempt to forward the mail to you via email. If You do not respond to the DBP email and/or the correspondence DBP has received regarding Your domain name registration concerns a dispute of any kind or otherwise requires immediate disposition, DBP may immediately reveal Your identity and/or cancel the DBP private registration service regarding either the domain name registration(s) in question. This means the Whois directory will revert to displaying Your name, postal address, email address and phone number that you provided to DBP.

\r\n

d. Additional Administrative Fees

\r\n

DBP reserves the right to charge You reasonable \"administrative fees\" or \"processing fees\" for (i)  tasks DBP may perform outside the normal scope of its Services, (ii) additional time and/or costs DBP may incur in providing its Services, and/or (iii) Your non-compliance with the Agreement (as determined by DBP in its sole and absolute discretion). Typical administrative or processing fee scenarios include, but are not limited to, (i) customer service issues that require additional personal time and attention; (ii) disputes that require accounting or legal services, whether performed by DBP staff or by outside firms retained by DBP; (iii) recouping any and all costs and fees, including the cost of Services, incurred by DBP as the result of chargebacks or other payment disputes brought by You, Your bank or Payment Method processor.  These administrative fees or processing fees will be billed to the Payment Method You have on file with Your Registrar.

\r\n

You agree to waive the right to trial by jury in any proceeding that takes place relating to or arising out of this Agreement.

\r\n

6. limitations of liability

\r\n

UNDER NO CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.

\r\n

YOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:

\r\n
    \r\n
  1. THE INADVERTENT DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
  2. \r\n
  3. ACCESS DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
  4. \r\n
  5. DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
  6. \r\n
  7. THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
  8. \r\n
  9. THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
  10. \r\n
  11. ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
  12. \r\n
  13. DELETION OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
  14. \r\n
  15. PROCESSING OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
  16. \r\n
  17. ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR NOT).
  18. \r\n
\r\n

7. indemnity

\r\n

You agree to release, defend, indemnify and hold harmless DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, directors, officers and employees and Your Registrar, from and against any and all claims, demands, liabilities, losses, damages or costs, including reasonable attorneys' fees, arising out of or related in any way to this Agreement, the services provided hereunder by DBP, the DBP website, Your account with DBP, Your use of Your domain name registration, and/or disputes arising in connection with the dispute policy.

\r\n

8. DBP warranty disclaimer

\r\n

DBP, ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE, ARE PROVIDED \"AS IS\". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.

\r\n

9. copyright and trademark

\r\n

You understand and agree that all content and materials contained in this Agreement, the Privacy Policy and the DBP website found here , are protected by the various copyright, patent, trademark, service mark and trade secret laws of the United States, as well as any other applicable proprietary rights and laws, and that DBP expressly reserves its rights in and to all such content and materials.

\r\n

You further understand and agree You are prohibited from using, in any manner whatsoever, any of the afore-described content and materials without the express written permission of DBP. No license or right under any copyright, patent, trademark, service mark or other proprietary right or license is granted to You or conferred upon You by this Agreement or otherwise.

\r\n

10. miscellaneous provisions

\r\n

a. Severability; Construction; Entire Agreement

\r\n

If any part of this Agreement shall be held to be illegal, unenforceable or invalid, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, enforceable and valid, and the legality, enforceability and validity of the remaining provisions of this Agreement shall not be affected or impaired. The headings herein will not be considered a part of this Agreement. You agree this Agreement, including the policies it incorporates by reference, constitute the complete and only Agreement between You and DBP regarding the services contemplated herein.

\r\n

b. Governing Law; Venue; Waiver Of Trial By Jury

\r\n

This Agreement shall be governed in all respects by the laws and judicial decisions of Maricopa County, Arizona, excluding its conflicts of laws rules. Except as provided immediately below, You agree that any action relating to or arising out of this Agreement, shall be brought exclusively in the courts of Maricopa County, Arizona. For the adjudication of domain name registration disputes, you agree to submit to the exclusive jurisdiction and venue of the U.S. District Court for the District of Arizona located in Phoenix, Arizona. You agree to waive the right to trial by jury in any proceeding, regardless of venue, that takes place relating to or arising out of this Agreement.

\r\n

c. Notices

\r\n

All notices from DBP to You will be sent to the email address You provided to DBP. Notices by email shall be deemed effective twenty-four (24) hours after the email is sent by DBP, unless DBP receives notice that the email address is invalid, in which event DBP may give You notice via first class or certified mail, return receipt requested. All notices from You to DBP shall be sent via certified mail, return receipt requested or traceable courier to:

\r\n
      Domains By Proxy, LLC
      Attn: General Counsel
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

Notices sent via certified mail or traceable courier shall be deemed effective five (5) days after the date of mailing.

\r\n

d. Insurance

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's negligent actions (and absent fraud or other negligent or willful misconduct committed by a third party), You may be insured against such loss through DBP's Professional Liability Insurance Policy, which is currently underwritten by American International Insurance Company. Of course, every claim is subject to the then-carrier's investigation into the facts and circumstances surrounding such claim. In the event You have reason to believe that circumstances exist which warrant the filing of an insurance claim, please send a written notice (specifying the basis for such claim), via certified mail, return receipt requested, to:

\r\n
      Domains By Proxy, LLC
      Attn: Insurance Claims
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

e. Indemnification

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's willful misconduct, Your Registrar (the \"Indemnifying Party\") will indemnify and hold You harmless against any losses, damages or costs (including reasonable attorneys' fees) resulting from any claim, action, proceeding, suit or demand arising out of or related to the loss of Your domain name registration. Such indemnification obligations under this Section 10(e) are conditioned upon the following:

\r\n
    \r\n
  1. That You promptly give both DBP and the Indemnifying Party written notice of the claim, demand, or action and provide reasonable assistance to the Indemnifying Party, at its cost and expense, in connection therewith, and
  2. \r\n
  3. That the Indemnifying Party has the right, at its option, to control and direct the defense to any settlement of such claim, demand, or action.
  4. \r\n
\r\n

Any notice concerning indemnification shall, with respect to DBP, be sent in accordance with Section 10(c) of this Agreement. With respect to Your Registrar, notices regarding indemnification should be sent in accordance with the notification provisions contained in Your Registrar's Domain Name Registration Agreement.

\r\n

f. Term of Agreement; Survival

\r\n

The terms of this Agreement shall continue in full force and effect as long as DBP is the Registrant for any domain name on Your behalf. Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any termination or expiration of this Agreement.

\n
\n
\n\nRevised: 10/25/17
\nCopyright © 2003-2017 All Rights Reserved.\n
\n
\n
", + "title": "Domain Name Proxy Agreement", "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456" } ] - } + }, + "headers": {} } - } + }, + "operationId": "TopLevelDomains_ListAgreements", + "title": "List Top Level Domain Agreements" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomains.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomains.json index 4533d784a381..96fe93a3d84c 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomains.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/ListTopLevelDomains.json @@ -1,87 +1,89 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2024-11-01" + "api-version": "2024-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { "value": [ { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", "name": "com", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", "properties": { "privacy": true } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", "name": "net", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", "properties": { "privacy": true } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", "name": "co.uk", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", "properties": { "privacy": false } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", "name": "org", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", "properties": { "privacy": true } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", "name": "nl", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", "properties": { "privacy": true } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", "name": "in", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", "properties": { "privacy": false } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", "name": "biz", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", "properties": { "privacy": true } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", "name": "org.uk", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", "properties": { "privacy": false } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", "name": "co.in", "type": "Microsoft.DomainRegistration/topLevelDomains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", "properties": { "privacy": false } } ] - } + }, + "headers": {} } - } + }, + "operationId": "TopLevelDomains_List", + "title": "List Top Level Domains" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/RenewDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/RenewDomain.json index 72b512af7ca5..911ecc9e2daf 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/RenewDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/RenewDomain.json @@ -1,13 +1,15 @@ { "parameters": { "api-version": "2024-11-01", - "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545", + "domainName": "example.com", "resourceGroupName": "RG", - "domainName": "example.com" + "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545" }, "responses": { "200": {}, "202": {}, "204": {} - } + }, + "operationId": "Domains_Renew", + "title": "Renew an existing domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/TransferOutDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/TransferOutDomain.json index 1ac0cb632ce4..449adc7551c9 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/TransferOutDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/TransferOutDomain.json @@ -1,115 +1,117 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", + "api-version": "2024-11-01", "domainName": "example.com", - "api-version": "2024-11-01" + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} }, "400": {} - } + }, + "operationId": "Domains_TransferOut", + "title": "Transfer out domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomain.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomain.json index eff05220fcb8..bc03d98087a3 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomain.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomain.json @@ -1,301 +1,303 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "domainName": "example.com", "api-version": "2024-11-01", "domain": { "properties": { "authCode": "exampleAuthCode", - "privacy": false, "autoRenew": true, - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } + "phone": "1-245-534-2242" + }, + "dnsType": "DefaultDomainRegistrarDns", + "privacy": false } - } + }, + "domainName": "example.com", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} }, "202": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "name": "example.com", "type": "Microsoft.DomainRegistration/domains", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com", "location": "global", - "tags": {}, "properties": { "authCode": "exampleAuthCode", - "registrationStatus": "Active", - "provisioningState": "Succeeded", - "nameServers": [ - "ns01.ote.domaincontrol.com", - "ns02.ote.domaincontrol.com" - ], - "privacy": false, - "createdTime": "2021-09-10T19:30:53Z", - "expirationTime": "2022-09-10T19:30:53Z", "autoRenew": true, - "readyForDnsRecordManagement": true, - "managedHostNames": [], - "domainNotRenewableReasons": [ - "ExpirationNotInRenewalTimeRange" - ], - "dnsType": "DefaultDomainRegistrarDns", "consent": { + "agreedAt": "2021-09-10T19:30:53Z", + "agreedBy": "192.0.2.1", "agreementKeys": [ "agreementKey1" - ], - "agreedBy": "192.0.2.1", - "agreedAt": "2021-09-10T19:30:53Z" + ] }, - "contactTech": { - "email": "tech@email.com", + "contactAdmin": { + "addressMailing": { + "address1": "3400 State St", + "city": "Chicago", + "country": "United States", + "postalCode": "67098", + "state": "IL" + }, + "email": "admin@email.com", "fax": "1-245-534-2242", + "jobTitle": "Admin", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Tech", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactBilling": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactBilling": { + "postalCode": "67098", + "state": "IL" + }, "email": "billing@email.com", "fax": "1-245-534-2242", + "jobTitle": "Billing", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Billing", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactRegistrant": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactAdmin": { - "email": "admin@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "registrant@email.com", "fax": "1-245-534-2242", + "jobTitle": "Registrant", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Admin", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", + "phone": "1-245-534-2242" + }, + "contactTech": { "addressMailing": { "address1": "3400 State St", "city": "Chicago", - "state": "IL", "country": "United States", - "postalCode": "67098" - } - }, - "contactRegistrant": { - "email": "registrant@email.com", + "postalCode": "67098", + "state": "IL" + }, + "email": "tech@email.com", "fax": "1-245-534-2242", + "jobTitle": "Tech", "nameFirst": "John", "nameLast": "Doe", "nameMiddle": "", - "jobTitle": "Registrant", "organization": "Microsoft Inc.", - "phone": "1-245-534-2242", - "addressMailing": { - "address1": "3400 State St", - "city": "Chicago", - "state": "IL", - "country": "United States", - "postalCode": "67098" - } - } - } - } + "phone": "1-245-534-2242" + }, + "createdTime": "2021-09-10T19:30:53Z", + "dnsType": "DefaultDomainRegistrarDns", + "domainNotRenewableReasons": [ + "ExpirationNotInRenewalTimeRange" + ], + "expirationTime": "2022-09-10T19:30:53Z", + "managedHostNames": [], + "nameServers": [ + "ns01.ote.domaincontrol.com", + "ns02.ote.domaincontrol.com" + ], + "privacy": false, + "provisioningState": "Succeeded", + "readyForDnsRecordManagement": true, + "registrationStatus": "Active" + }, + "tags": {} + }, + "headers": {} } - } + }, + "operationId": "Domains_Update", + "title": "Update App Service Domain" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomainOwnershipIdentifier.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomainOwnershipIdentifier.json index cec9f131d7cd..387a3d8a5594 100644 --- a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomainOwnershipIdentifier.json +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/examples/UpdateAppServiceDomainOwnershipIdentifier.json @@ -1,27 +1,29 @@ { "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "domainName": "example.com", "name": "SampleOwnershipId", "api-version": "2024-11-01", + "domainName": "example.com", "domainOwnershipIdentifier": { "properties": { "ownershipId": "SampleOwnershipId" } - } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { "200": { - "headers": {}, "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "name": "SampleOwnershipId", "type": "Microsoft.DomainRegistration/domains/domainownershipidentifiers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.DomainRegistration/domains/example.com/domainownershipidentifiers/SampleOwnershipId", "properties": { "ownershipId": "SampleOwnershipId" } - } + }, + "headers": {} } - } + }, + "operationId": "Domains_UpdateOwnershipIdentifier", + "title": "Update App Service Domain OwnershipIdentifier" } diff --git a/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/openapi.json b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/openapi.json new file mode 100644 index 000000000000..761d60259d15 --- /dev/null +++ b/specification/domainregistration/resource-manager/Microsoft.DomainRegistration/DomainRegistration/stable/2024-11-01/openapi.json @@ -0,0 +1,2289 @@ +{ + "swagger": "2.0", + "info": { + "title": "TopLevelDomains API Client", + "version": "2024-11-01", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "Operations" + }, + { + "name": "Domains" + }, + { + "name": "DomainOwnershipIdentifiers" + }, + { + "name": "TopLevelDomains" + } + ], + "paths": { + "/providers/Microsoft.DomainRegistration/operations": { + "get": { + "operationId": "DomainRegistrationProvider_ListOperations", + "tags": [ + "Operations" + ], + "summary": "Implements Csm operations Api to exposes the list of available Csm Apis under the resource provider", + "description": "Description for Implements Csm operations Api to exposes the list of available Csm Apis under the resource provider", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmOperationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List operations": { + "$ref": "./examples/ListOperations.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/checkDomainAvailability": { + "post": { + "operationId": "Domains_CheckAvailability", + "summary": "Check if a domain is available for registration.", + "description": "Description for Check if a domain is available for registration.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "identifier", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/NameIdentifier" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DomainAvailabilityCheckResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Check domain availability": { + "$ref": "./examples/CheckDomainAvailability.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/domains": { + "get": { + "operationId": "Domains_List", + "tags": [ + "Domains" + ], + "summary": "Get all domains in a subscription.", + "description": "Description for Get all domains in a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DomainCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List domains by subscription": { + "$ref": "./examples/ListDomainsBySubscription.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/generateSsoRequest": { + "post": { + "operationId": "Domains_GetControlCenterSsoRequest", + "summary": "Generate a single sign-on request for the domain management portal.", + "description": "Description for Generate a single sign-on request for the domain management portal.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DomainControlCenterSsoRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Domain Control Center Sso Request": { + "$ref": "./examples/GetDomainControlCenterSsoRequest.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/listDomainRecommendations": { + "post": { + "operationId": "Domains_ListRecommendations", + "summary": "Get domain name recommendations based on keywords.", + "description": "Description for Get domain name recommendations based on keywords.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/DomainRecommendationSearchParameters" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/NameIdentifierCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List domain recommendations": { + "$ref": "./examples/ListDomainRecommendations.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains": { + "get": { + "operationId": "TopLevelDomains_List", + "tags": [ + "TopLevelDomains" + ], + "summary": "Get all top-level domains supported for registration.", + "description": "Description for Get all top-level domains supported for registration.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TopLevelDomainCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Top Level Domains": { + "$ref": "./examples/ListTopLevelDomains.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}": { + "get": { + "operationId": "TopLevelDomains_Get", + "tags": [ + "TopLevelDomains" + ], + "summary": "Get details of a top-level domain.", + "description": "Description for Get details of a top-level domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the top-level domain.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TopLevelDomain" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Top Level Domain": { + "$ref": "./examples/GetTopLevelDomain.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}/listAgreements": { + "post": { + "operationId": "TopLevelDomains_ListAgreements", + "tags": [ + "TopLevelDomains" + ], + "summary": "Gets all legal agreements that user needs to accept before purchasing a domain.", + "description": "Description for Gets all legal agreements that user needs to accept before purchasing a domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the top-level domain.", + "required": true, + "type": "string" + }, + { + "name": "agreementOption", + "in": "body", + "description": "Domain agreement options.", + "required": true, + "schema": { + "$ref": "#/definitions/TopLevelDomainAgreementOption" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TldLegalAgreementCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Top Level Domain Agreements": { + "$ref": "./examples/ListTopLevelDomainAgreements.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains": { + "get": { + "operationId": "Domains_ListByResourceGroup", + "tags": [ + "Domains" + ], + "summary": "Get all domains in a resource group.", + "description": "Description for Get all domains in a resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DomainCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List domains by resource group": { + "$ref": "./examples/ListDomainsByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}": { + "get": { + "operationId": "Domains_Get", + "tags": [ + "Domains" + ], + "summary": "Get a domain.", + "description": "Description for Get a domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Domain" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Domain": { + "$ref": "./examples/GetDomain.json" + } + } + }, + "put": { + "operationId": "Domains_CreateOrUpdate", + "tags": [ + "Domains" + ], + "summary": "Creates or updates a domain.", + "description": "Description for Creates or updates a domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "domain", + "in": "body", + "description": "Domain registration information.", + "required": true, + "schema": { + "$ref": "#/definitions/Domain" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Domain' update operation succeeded", + "schema": { + "$ref": "#/definitions/Domain" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/Domain" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create App Service Domain": { + "$ref": "./examples/CreateAppServiceDomain.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/Domain" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Domains_Update", + "tags": [ + "Domains" + ], + "summary": "Creates or updates a domain.", + "description": "Description for Creates or updates a domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "domain", + "in": "body", + "description": "Domain registration information.", + "required": true, + "schema": { + "$ref": "#/definitions/DomainPatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Domain" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/Domain" + }, + "headers": { + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update App Service Domain": { + "$ref": "./examples/UpdateAppServiceDomain.json" + } + } + }, + "delete": { + "operationId": "Domains_Delete", + "tags": [ + "Domains" + ], + "summary": "Delete a domain.", + "description": "Description for Delete a domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "forceHardDeleteDomain", + "in": "query", + "description": "Specify true to delete the domain immediately. The default is false which deletes the domain after 24 hours.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete App Service Domain": { + "$ref": "./examples/DeleteAppServiceDomain.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers": { + "get": { + "operationId": "Domains_ListOwnershipIdentifiers", + "tags": [ + "DomainOwnershipIdentifiers" + ], + "summary": "Lists domain ownership identifiers.", + "description": "Description for Lists domain ownership identifiers.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DomainOwnershipIdentifierCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Domain Ownership Identifiers": { + "$ref": "./examples/ListDomainOwnershipIdentifiers.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}": { + "get": { + "operationId": "Domains_GetOwnershipIdentifier", + "tags": [ + "DomainOwnershipIdentifiers" + ], + "summary": "Get ownership identifier for domain", + "description": "Description for Get ownership identifier for domain", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "name", + "in": "path", + "description": "Name of identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DomainOwnershipIdentifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Domain Ownership Identifier": { + "$ref": "./examples/GetDomainOwnershipIdentifier.json" + } + } + }, + "put": { + "operationId": "Domains_CreateOrUpdateOwnershipIdentifier", + "tags": [ + "DomainOwnershipIdentifiers" + ], + "summary": "Creates an ownership identifier for a domain or updates identifier details for an existing identifier", + "description": "Description for Creates an ownership identifier for a domain or updates identifier details for an existing identifier", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "name", + "in": "path", + "description": "Name of identifier.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifier", + "in": "body", + "description": "A JSON representation of the domain ownership properties.", + "required": true, + "schema": { + "$ref": "#/definitions/DomainOwnershipIdentifier" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DomainOwnershipIdentifier' update operation succeeded", + "schema": { + "$ref": "#/definitions/DomainOwnershipIdentifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create App Service Domain OwnershipIdentifier": { + "$ref": "./examples/CreateAppServiceDomainOwnershipIdentifier.json" + } + } + }, + "patch": { + "operationId": "Domains_UpdateOwnershipIdentifier", + "tags": [ + "DomainOwnershipIdentifiers" + ], + "summary": "Creates an ownership identifier for a domain or updates identifier details for an existing identifier", + "description": "Description for Creates an ownership identifier for a domain or updates identifier details for an existing identifier", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "name", + "in": "path", + "description": "Name of identifier.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifier", + "in": "body", + "description": "A JSON representation of the domain ownership properties.", + "required": true, + "schema": { + "$ref": "#/definitions/DomainOwnershipIdentifier" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DomainOwnershipIdentifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update App Service Domain OwnershipIdentifier": { + "$ref": "./examples/UpdateAppServiceDomainOwnershipIdentifier.json" + } + } + }, + "delete": { + "operationId": "Domains_DeleteOwnershipIdentifier", + "tags": [ + "DomainOwnershipIdentifiers" + ], + "summary": "Delete ownership identifier for domain", + "description": "Description for Delete ownership identifier for domain", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + }, + { + "name": "name", + "in": "path", + "description": "Name of identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete App Service Domain Ownership Identifier": { + "$ref": "./examples/DeleteAppServiceDomainOwnershipIdentifier.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/renew": { + "post": { + "operationId": "Domains_Renew", + "tags": [ + "Domains" + ], + "summary": "Renew a domain.", + "description": "Description for Renew a domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Renew an existing domain": { + "$ref": "./examples/RenewDomain.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/transferOut": { + "put": { + "operationId": "Domains_TransferOut", + "tags": [ + "Domains" + ], + "summary": "Transfer out domain to another registrar", + "description": "Transfer out domain to another registrar", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "domainName", + "in": "path", + "description": "Name of the domain.", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9][a-zA-Z0-9\\.-]+" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Domain" + } + }, + "400": { + "description": "The server could not understand the request due to invalid syntax.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Transfer out domain": { + "$ref": "./examples/TransferOutDomain.json" + } + } + } + } + }, + "definitions": { + "Address": { + "type": "object", + "description": "Address information for domain registration.", + "properties": { + "address1": { + "type": "string", + "description": "First line of an Address." + }, + "address2": { + "type": "string", + "description": "The second line of the Address. Optional." + }, + "city": { + "type": "string", + "description": "The city for the address." + }, + "country": { + "type": "string", + "description": "The country for the address." + }, + "postalCode": { + "type": "string", + "description": "The postal code for the address." + }, + "state": { + "type": "string", + "description": "The state or province for the address." + } + }, + "required": [ + "address1", + "city", + "country", + "postalCode", + "state" + ] + }, + "ArmBadRequestResponse": { + "type": "object", + "description": "The server could not understand the request due to invalid syntax." + }, + "AzureResourceType": { + "type": "string", + "description": "Type of the Azure resource the hostname is assigned to.", + "enum": [ + "Website", + "TrafficManager" + ], + "x-ms-enum": { + "name": "AzureResourceType", + "modelAsString": false + } + }, + "Contact": { + "type": "object", + "description": "Contact information for domain registration. If 'Domain Privacy' option is not selected then the contact information is made publicly available through the Whois\ndirectories as per ICANN requirements.", + "properties": { + "addressMailing": { + "$ref": "#/definitions/Address", + "description": "Mailing address." + }, + "email": { + "type": "string", + "description": "Email address." + }, + "fax": { + "type": "string", + "description": "Fax number." + }, + "jobTitle": { + "type": "string", + "description": "Job title." + }, + "nameFirst": { + "type": "string", + "description": "First name." + }, + "nameLast": { + "type": "string", + "description": "Last name." + }, + "nameMiddle": { + "type": "string", + "description": "Middle name." + }, + "organization": { + "type": "string", + "description": "Organization contact belongs to." + }, + "phone": { + "type": "string", + "description": "Phone number." + } + }, + "required": [ + "email", + "nameFirst", + "nameLast", + "phone" + ] + }, + "CsmOperationCollection": { + "type": "object", + "description": "Collection of Azure resource manager operation metadata.", + "properties": { + "value": { + "type": "array", + "description": "Collection of resources.", + "items": { + "$ref": "#/definitions/CsmOperationDescription" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "description": "Link to next page of resources.", + "readOnly": true + } + }, + "required": [ + "value" + ] + }, + "CsmOperationDescription": { + "type": "object", + "description": "Description of an operation available for Microsoft.Web resource provider.", + "properties": { + "name": { + "type": "string", + "description": "Operation name, e.g. Microsoft.Web/sites/write." + }, + "isDataAction": { + "type": "boolean", + "description": "Operation display name." + }, + "display": { + "$ref": "#/definitions/CsmOperationDisplay", + "description": "Meta data about operation used for display in portal." + }, + "origin": { + "type": "string", + "description": "Origin of the operation, e.g. \"system\" or \"user\"." + }, + "properties": { + "$ref": "#/definitions/CsmOperationDescriptionProperties", + "description": "Properties available for a Microsoft.Web resource provider operation." + } + } + }, + "CsmOperationDescriptionProperties": { + "type": "object", + "description": "Properties available for a Microsoft.Web resource provider operation.", + "properties": { + "serviceSpecification": { + "$ref": "#/definitions/ServiceSpecification", + "description": "Resource metrics service provided by Microsoft.Insights resource provider." + } + } + }, + "CsmOperationDisplay": { + "type": "object", + "description": "Meta data about operation used for display in portal.", + "properties": { + "provider": { + "type": "string", + "description": "Provider name." + }, + "resource": { + "type": "string", + "description": "Resource type." + }, + "operation": { + "type": "string", + "description": "Operation name." + }, + "description": { + "type": "string", + "description": "Operation description." + } + } + }, + "CustomHostNameDnsRecordType": { + "type": "string", + "description": "Type of the DNS record.", + "enum": [ + "CName", + "A" + ], + "x-ms-enum": { + "name": "CustomHostNameDnsRecordType", + "modelAsString": false + } + }, + "DefaultErrorResponse": { + "type": "object", + "description": "App Service error response.", + "properties": { + "error": { + "$ref": "#/definitions/DefaultErrorResponseError", + "description": "Error model.", + "readOnly": true + } + } + }, + "DefaultErrorResponseError": { + "type": "object", + "description": "Error model.", + "properties": { + "code": { + "type": "string", + "description": "Standardized string to programmatically identify the error.", + "readOnly": true + }, + "message": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + }, + "target": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + }, + "details": { + "type": "array", + "description": "Error details.", + "items": { + "$ref": "#/definitions/DefaultErrorResponseErrorDetailsItem" + }, + "x-ms-identifiers": [] + }, + "innererror": { + "type": "string", + "description": "More information to debug error.", + "readOnly": true + } + } + }, + "DefaultErrorResponseErrorDetailsItem": { + "type": "object", + "description": "Detailed errors.", + "properties": { + "code": { + "type": "string", + "description": "Standardized string to programmatically identify the error.", + "readOnly": true + }, + "message": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + }, + "target": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + } + } + }, + "Dimension": { + "type": "object", + "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app,\nwhere instance name is dimension of the metric HTTP request", + "properties": { + "name": { + "type": "string", + "description": "Name of the dimension." + }, + "displayName": { + "type": "string", + "description": "Display name of the dimension." + }, + "internalName": { + "type": "string", + "description": "Dimension of the internal name." + }, + "toBeExportedForShoebox": { + "type": "boolean", + "description": "Dimension to be exported for shoebox." + } + } + }, + "DnsType": { + "type": "string", + "description": "Current DNS type", + "enum": [ + "AzureDns", + "DefaultDomainRegistrarDns" + ], + "x-ms-enum": { + "name": "DnsType", + "modelAsString": false + } + }, + "Domain": { + "type": "object", + "description": "Information about a domain.", + "properties": { + "properties": { + "$ref": "#/definitions/DomainProperties", + "description": "Domain resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource" + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/TrackedResource" + } + ] + }, + "DomainAvailabilityCheckResult": { + "type": "object", + "description": "Domain availability check result.", + "properties": { + "name": { + "type": "string", + "description": "Name of the domain." + }, + "available": { + "type": "boolean", + "description": "true if domain can be purchased using CreateDomain API; otherwise, false." + }, + "domainType": { + "$ref": "#/definitions/DomainType", + "description": "Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything." + } + } + }, + "DomainCollection": { + "type": "object", + "description": "Collection of domains.", + "properties": { + "value": { + "type": "array", + "description": "The Domain items on this page", + "items": { + "$ref": "#/definitions/Domain" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DomainControlCenterSsoRequest": { + "type": "object", + "description": "Single sign-on request information for domain management.", + "properties": { + "url": { + "type": "string", + "description": "URL where the single sign-on request is to be made.", + "readOnly": true + }, + "postParameterKey": { + "type": "string", + "description": "Post parameter key.", + "readOnly": true + }, + "postParameterValue": { + "type": "string", + "description": "Post parameter value. Client should use 'application/x-www-form-urlencoded' encoding for this value.", + "readOnly": true + } + } + }, + "DomainOwnershipIdentifier": { + "type": "object", + "description": "Domain ownership Identifier.", + "properties": { + "properties": { + "$ref": "#/definitions/DomainOwnershipIdentifierProperties", + "description": "DomainOwnershipIdentifier resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource" + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + } + ] + }, + "DomainOwnershipIdentifierCollection": { + "type": "object", + "description": "Collection of domain ownership identifiers.", + "properties": { + "value": { + "type": "array", + "description": "The DomainOwnershipIdentifier items on this page", + "items": { + "$ref": "#/definitions/DomainOwnershipIdentifier" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DomainOwnershipIdentifierProperties": { + "type": "object", + "description": "DomainOwnershipIdentifier resource specific properties", + "properties": { + "ownershipId": { + "type": "string", + "description": "Ownership Id." + } + } + }, + "DomainPatchResource": { + "type": "object", + "description": "ARM resource for a domain.", + "properties": { + "properties": { + "$ref": "#/definitions/DomainPatchResourceProperties", + "description": "DomainPatchResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "DomainPatchResourceProperties": { + "type": "object", + "description": "DomainPatchResource resource specific properties", + "properties": { + "contactAdmin": { + "$ref": "#/definitions/Contact", + "description": "Administrative contact.", + "x-ms-mutability": [ + "create" + ] + }, + "contactBilling": { + "$ref": "#/definitions/Contact", + "description": "Billing contact.", + "x-ms-mutability": [ + "create" + ] + }, + "contactRegistrant": { + "$ref": "#/definitions/Contact", + "description": "Registrant contact.", + "x-ms-mutability": [ + "create" + ] + }, + "contactTech": { + "$ref": "#/definitions/Contact", + "description": "Technical contact.", + "x-ms-mutability": [ + "create" + ] + }, + "registrationStatus": { + "$ref": "#/definitions/DomainStatus", + "description": "Domain registration status.", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Domain provisioning state.", + "readOnly": true + }, + "nameServers": { + "type": "array", + "description": "Name servers.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "privacy": { + "type": "boolean", + "description": "true if domain privacy is enabled for this domain; otherwise, false." + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Domain creation timestamp.", + "readOnly": true + }, + "expirationTime": { + "type": "string", + "format": "date-time", + "description": "Domain expiration timestamp.", + "readOnly": true + }, + "lastRenewedTime": { + "type": "string", + "format": "date-time", + "description": "Timestamp when the domain was renewed last time.", + "readOnly": true + }, + "autoRenew": { + "type": "boolean", + "description": "true if the domain should be automatically renewed; otherwise, false.", + "default": true + }, + "readyForDnsRecordManagement": { + "type": "boolean", + "description": "true if Azure can assign this domain to App Service apps; otherwise, false. This value will be true if domain registration status is active and \\n it is hosted on name servers Azure has programmatic access to.", + "readOnly": true + }, + "managedHostNames": { + "type": "array", + "description": "All hostnames derived from the domain and assigned to Azure resources.", + "items": { + "$ref": "#/definitions/HostName" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "consent": { + "$ref": "#/definitions/DomainPurchaseConsent", + "description": "Legal agreement consent.", + "x-ms-mutability": [ + "create" + ] + }, + "domainNotRenewableReasons": { + "type": "array", + "description": "Reasons why domain is not renewable.", + "items": { + "$ref": "#/definitions/ResourceNotRenewableReason" + }, + "readOnly": true + }, + "dnsType": { + "$ref": "#/definitions/DnsType", + "description": "Current DNS type" + }, + "dnsZoneId": { + "type": "string", + "description": "Azure DNS Zone to use" + }, + "targetDnsType": { + "$ref": "#/definitions/DnsType", + "description": "Target DNS type (would be used for migration)" + }, + "authCode": { + "type": "string", + "description": "Authorization code for the domain.", + "x-ms-mutability": [ + "read", + "create" + ] + } + }, + "required": [ + "contactAdmin", + "contactBilling", + "contactRegistrant", + "contactTech", + "consent" + ] + }, + "DomainProperties": { + "type": "object", + "description": "Domain resource specific properties", + "properties": { + "contactAdmin": { + "$ref": "#/definitions/Contact", + "description": "Administrative contact.", + "x-ms-mutability": [ + "create" + ] + }, + "contactBilling": { + "$ref": "#/definitions/Contact", + "description": "Billing contact.", + "x-ms-mutability": [ + "create" + ] + }, + "contactRegistrant": { + "$ref": "#/definitions/Contact", + "description": "Registrant contact.", + "x-ms-mutability": [ + "create" + ] + }, + "contactTech": { + "$ref": "#/definitions/Contact", + "description": "Technical contact.", + "x-ms-mutability": [ + "create" + ] + }, + "registrationStatus": { + "$ref": "#/definitions/DomainStatus", + "description": "Domain registration status.", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Domain provisioning state.", + "readOnly": true + }, + "nameServers": { + "type": "array", + "description": "Name servers.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "privacy": { + "type": "boolean", + "description": "true if domain privacy is enabled for this domain; otherwise, false." + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Domain creation timestamp.", + "readOnly": true + }, + "expirationTime": { + "type": "string", + "format": "date-time", + "description": "Domain expiration timestamp.", + "readOnly": true + }, + "lastRenewedTime": { + "type": "string", + "format": "date-time", + "description": "Timestamp when the domain was renewed last time.", + "readOnly": true + }, + "autoRenew": { + "type": "boolean", + "description": "true if the domain should be automatically renewed; otherwise, false.", + "default": true + }, + "readyForDnsRecordManagement": { + "type": "boolean", + "description": "true if Azure can assign this domain to App Service apps; otherwise, false. This value will be true if domain registration status is active and \\n it is hosted on name servers Azure has programmatic access to.", + "readOnly": true + }, + "managedHostNames": { + "type": "array", + "description": "All hostnames derived from the domain and assigned to Azure resources.", + "items": { + "$ref": "#/definitions/HostName" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "consent": { + "$ref": "#/definitions/DomainPurchaseConsent", + "description": "Legal agreement consent.", + "x-ms-mutability": [ + "create" + ] + }, + "domainNotRenewableReasons": { + "type": "array", + "description": "Reasons why domain is not renewable.", + "items": { + "$ref": "#/definitions/ResourceNotRenewableReason" + }, + "readOnly": true + }, + "dnsType": { + "$ref": "#/definitions/DnsType", + "description": "Current DNS type" + }, + "dnsZoneId": { + "type": "string", + "description": "Azure DNS Zone to use" + }, + "targetDnsType": { + "$ref": "#/definitions/DnsType", + "description": "Target DNS type (would be used for migration)" + }, + "authCode": { + "type": "string", + "description": "Authorization code for the domain.", + "x-ms-mutability": [ + "read", + "create" + ] + } + }, + "required": [ + "contactAdmin", + "contactBilling", + "contactRegistrant", + "contactTech", + "consent" + ] + }, + "DomainPurchaseConsent": { + "type": "object", + "description": "Domain purchase consent object, representing acceptance of applicable legal agreements.", + "properties": { + "agreementKeys": { + "type": "array", + "description": "List of applicable legal agreement keys. This list can be retrieved using ListLegalAgreements API under TopLevelDomain resource.", + "items": { + "type": "string" + } + }, + "agreedBy": { + "type": "string", + "description": "Client IP address." + }, + "agreedAt": { + "type": "string", + "format": "date-time", + "description": "Timestamp when the agreements were accepted." + } + } + }, + "DomainRecommendationSearchParameters": { + "type": "object", + "description": "Domain recommendation search parameters.", + "properties": { + "keywords": { + "type": "string", + "description": "Keywords to be used for generating domain recommendations." + }, + "maxDomainRecommendations": { + "type": "integer", + "format": "int32", + "description": "Maximum number of recommendations." + } + } + }, + "DomainStatus": { + "type": "string", + "description": "Domain registration status.", + "enum": [ + "Active", + "Awaiting", + "Cancelled", + "Confiscated", + "Disabled", + "Excluded", + "Expired", + "Failed", + "Held", + "Locked", + "Parked", + "Pending", + "Reserved", + "Reverted", + "Suspended", + "Transferred", + "Unknown", + "Unlocked", + "Unparked", + "Updated", + "JsonConverterFailed" + ], + "x-ms-enum": { + "name": "DomainStatus", + "modelAsString": false + } + }, + "DomainType": { + "type": "string", + "description": "Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything.", + "enum": [ + "Regular", + "SoftDeleted" + ], + "x-ms-enum": { + "name": "DomainType", + "modelAsString": false + } + }, + "HostName": { + "type": "object", + "description": "Details of a hostname derived from a domain.", + "properties": { + "name": { + "type": "string", + "description": "Name of the hostname." + }, + "siteNames": { + "type": "array", + "description": "List of apps the hostname is assigned to. This list will have more than one app only if the hostname is pointing to a Traffic Manager.", + "items": { + "type": "string" + } + }, + "azureResourceName": { + "type": "string", + "description": "Name of the Azure resource the hostname is assigned to. If it is assigned to a Traffic Manager then it will be the Traffic Manager name otherwise it will be the app name." + }, + "azureResourceType": { + "$ref": "#/definitions/AzureResourceType", + "description": "Type of the Azure resource the hostname is assigned to." + }, + "customHostNameDnsRecordType": { + "$ref": "#/definitions/CustomHostNameDnsRecordType", + "description": "Type of the DNS record." + }, + "hostNameType": { + "$ref": "#/definitions/HostNameType", + "description": "Type of the hostname." + } + } + }, + "HostNameType": { + "type": "string", + "description": "Type of the hostname.", + "enum": [ + "Verified", + "Managed" + ], + "x-ms-enum": { + "name": "HostNameType", + "modelAsString": false + } + }, + "LogSpecification": { + "type": "object", + "description": "Log Definition of a single resource metric.", + "properties": { + "name": { + "type": "string", + "description": "Name of the log." + }, + "displayName": { + "type": "string", + "description": "Display name of the log." + }, + "blobDuration": { + "type": "string", + "description": "Blob duration of the log." + }, + "logFilterPattern": { + "type": "string", + "description": "Log filtered pattern of the log." + } + } + }, + "MetricAvailability": { + "type": "object", + "description": "Retention policy of a resource metric.", + "properties": { + "timeGrain": { + "type": "string", + "description": "Metric availability time grain." + }, + "blobDuration": { + "type": "string", + "description": "Metric availability blob duration." + } + } + }, + "MetricSpecification": { + "type": "object", + "description": "Definition of a single resource metric.", + "properties": { + "name": { + "type": "string", + "description": "Name of the resource metric." + }, + "displayName": { + "type": "string", + "description": "Display name of the resource metric." + }, + "displayDescription": { + "type": "string", + "description": "Description of the resource metric." + }, + "unit": { + "type": "string", + "description": "Resource metric unit." + }, + "aggregationType": { + "type": "string", + "description": "Resource metric aggregation type." + }, + "supportsInstanceLevelAggregation": { + "type": "boolean", + "description": "Resource metric supported aggregation types." + }, + "enableRegionalMdmAccount": { + "type": "boolean", + "description": "Resource metric supported time grain types." + }, + "sourceMdmAccount": { + "type": "string", + "description": "Resource metric source MDM account." + }, + "sourceMdmNamespace": { + "type": "string", + "description": "Resource metric source MDM namespace." + }, + "metricFilterPattern": { + "type": "string", + "description": "Resource metric filter pattern." + }, + "fillGapWithZero": { + "type": "boolean", + "description": "Resource metric fill gap with zero." + }, + "isInternal": { + "type": "boolean", + "description": "Resource metric is internal." + }, + "dimensions": { + "type": "array", + "description": "Resource metric dimensions.", + "items": { + "$ref": "#/definitions/Dimension" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "category": { + "type": "string", + "description": "Resource metric category." + }, + "availabilities": { + "type": "array", + "description": "Resource metric availability.", + "items": { + "$ref": "#/definitions/MetricAvailability" + }, + "x-ms-identifiers": [] + }, + "supportedTimeGrainTypes": { + "type": "array", + "description": "Resource metric supported time grain types.", + "items": { + "type": "string" + } + }, + "supportedAggregationTypes": { + "type": "array", + "description": "Resource metric supported aggregation types.", + "items": { + "type": "string" + } + } + } + }, + "NameIdentifier": { + "type": "object", + "description": "Identifies an object.", + "properties": { + "name": { + "type": "string", + "description": "Name of the object." + } + } + }, + "NameIdentifierCollection": { + "type": "object", + "description": "Paged collection of NameIdentifier items", + "properties": { + "value": { + "type": "array", + "description": "The NameIdentifier items on this page", + "items": { + "$ref": "#/definitions/NameIdentifier" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ProvisioningState": { + "type": "string", + "description": "Domain provisioning state.", + "enum": [ + "Succeeded", + "Failed", + "Canceled", + "InProgress", + "Deleting" + ], + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": false + } + }, + "ProxyOnlyResource": { + "type": "object", + "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.", + "properties": { + "id": { + "type": "string", + "description": "Resource Id.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource Name.", + "readOnly": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + }, + "type": { + "type": "string", + "description": "Resource type.", + "readOnly": true + } + } + }, + "ResourceNotRenewableReason": { + "type": "string", + "description": "Reasons why domain is not renewable.", + "enum": [ + "RegistrationStatusNotSupportedForRenewal", + "ExpirationNotInRenewalTimeRange", + "SubscriptionNotActive" + ], + "x-ms-enum": { + "name": "ResourceNotRenewableReason", + "modelAsString": true, + "values": [ + { + "name": "RegistrationStatusNotSupportedForRenewal", + "value": "RegistrationStatusNotSupportedForRenewal", + "description": "Registration status is not supported for renewal." + }, + { + "name": "ExpirationNotInRenewalTimeRange", + "value": "ExpirationNotInRenewalTimeRange", + "description": "Domain expiration is not in the renewal time range." + }, + { + "name": "SubscriptionNotActive", + "value": "SubscriptionNotActive", + "description": "Subscription is not active." + } + ] + } + }, + "ServiceSpecification": { + "type": "object", + "description": "Resource metrics service provided by Microsoft.Insights resource provider.", + "properties": { + "metricSpecifications": { + "type": "array", + "description": "Resource metrics service name.", + "items": { + "$ref": "#/definitions/MetricSpecification" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "logSpecifications": { + "type": "array", + "description": "Resource logs service provided by Microsoft.Insights resource provider.", + "items": { + "$ref": "#/definitions/LogSpecification" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "TldLegalAgreement": { + "type": "object", + "description": "Legal agreement for a top level domain.", + "properties": { + "agreementKey": { + "type": "string", + "description": "Unique identifier for the agreement." + }, + "title": { + "type": "string", + "description": "Agreement title." + }, + "content": { + "type": "string", + "description": "Agreement details." + }, + "url": { + "type": "string", + "description": "URL where a copy of the agreement details is hosted." + } + }, + "required": [ + "agreementKey", + "title", + "content" + ] + }, + "TldLegalAgreementCollection": { + "type": "object", + "description": "Paged collection of TldLegalAgreement items", + "properties": { + "value": { + "type": "array", + "description": "The TldLegalAgreement items on this page", + "items": { + "$ref": "#/definitions/TldLegalAgreement" + }, + "x-ms-identifiers": [ + "agreementKey" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "TopLevelDomain": { + "type": "object", + "description": "A top level domain object.", + "properties": { + "properties": { + "$ref": "#/definitions/TopLevelDomainProperties", + "description": "TopLevelDomain resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource" + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + } + ] + }, + "TopLevelDomainAgreementOption": { + "type": "object", + "description": "Options for retrieving the list of top level domain legal agreements.", + "properties": { + "includePrivacy": { + "type": "boolean", + "description": "If true, then the list of agreements will include agreements for domain privacy as well; otherwise, false." + }, + "forTransfer": { + "type": "boolean", + "description": "If true, then the list of agreements will include agreements for domain transfer as well; otherwise, false." + } + } + }, + "TopLevelDomainCollection": { + "type": "object", + "description": "Collection of Top-level domains.", + "properties": { + "value": { + "type": "array", + "description": "The TopLevelDomain items on this page", + "items": { + "$ref": "#/definitions/TopLevelDomain" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "TopLevelDomainProperties": { + "type": "object", + "description": "TopLevelDomain resource specific properties", + "properties": { + "privacy": { + "type": "boolean", + "description": "If true, then the top level domain supports domain privacy; otherwise, false." + } + } + } + }, + "parameters": {} +}