com.azure.resourcemanager.storage.models.CustomDomain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The custom domain assigned to this storage account. This can be set via Update. */
@Fluent
public final class CustomDomain {
/*
* Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
*/
@JsonProperty(value = "name", required = true)
private String name;
/*
* Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on
* updates.
*/
@JsonProperty(value = "useSubDomainName")
private Boolean useSubDomainName;
/**
* Get the name property: Gets or sets the custom domain name assigned to the storage account. Name is the CNAME
* source.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: Gets or sets the custom domain name assigned to the storage account. Name is the CNAME
* source.
*
* @param name the name value to set.
* @return the CustomDomain object itself.
*/
public CustomDomain withName(String name) {
this.name = name;
return this;
}
/**
* Get the useSubDomainName property: Indicates whether indirect CName validation is enabled. Default value is
* false. This should only be set on updates.
*
* @return the useSubDomainName value.
*/
public Boolean useSubDomainName() {
return this.useSubDomainName;
}
/**
* Set the useSubDomainName property: Indicates whether indirect CName validation is enabled. Default value is
* false. This should only be set on updates.
*
* @param useSubDomainName the useSubDomainName value to set.
* @return the CustomDomain object itself.
*/
public CustomDomain withUseSubDomainName(Boolean useSubDomainName) {
this.useSubDomainName = useSubDomainName;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException("Missing required property name in model CustomDomain"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(CustomDomain.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy