CustomDomain Class

  • java.lang.Object
    • com.microsoft.azure.management.storage.CustomDomain

public class CustomDomain

The custom domain assigned to this storage account. This can be set via Update.

Constructor Summary

Constructor Description
CustomDomain()

Method Summary

Modifier and Type Method and Description
java.lang.String name()

Get gets or sets the custom domain name assigned to the storage account.

java.lang.Boolean useSubDomainName()

Get indicates whether indirect CName validation is enabled.

CustomDomain withName(String name)

Set gets or sets the custom domain name assigned to the storage account.

CustomDomain withUseSubDomainName(Boolean useSubDomainName)

Set indicates whether indirect CName validation is enabled.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

CustomDomain

public CustomDomain()

Method Details

name

public String name()

Get gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.

Returns:

the name value

useSubDomainName

public Boolean useSubDomainName()

Get indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.

Returns:

the useSubDomainName value

withName

public CustomDomain withName(String name)

Set gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.

Parameters:

name - the name value to set

Returns:

the CustomDomain object itself.

withUseSubDomainName

public CustomDomain withUseSubDomainName(Boolean useSubDomainName)

Set indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.

Parameters:

useSubDomainName - the useSubDomainName value to set

Returns:

the CustomDomain object itself.

Applies to