Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.graphrbac.implementation; import java.util.Map; import com.fasterxml.jackson.annotation.JsonProperty;
Active Directory Domain information.
/** * Active Directory Domain information. */
public class DomainInner {
Unmatched properties from the message are deserialized this collection.
/** * Unmatched properties from the message are deserialized this collection. */
@JsonProperty(value = "") private Map<String, Object> additionalProperties;
the type of the authentication into the domain.
/** * the type of the authentication into the domain. */
@JsonProperty(value = "authenticationType", access = JsonProperty.Access.WRITE_ONLY) private String authenticationType;
if this is the default domain in the tenant.
/** * if this is the default domain in the tenant. */
@JsonProperty(value = "isDefault", access = JsonProperty.Access.WRITE_ONLY) private Boolean isDefault;
if this domain's ownership is verified.
/** * if this domain's ownership is verified. */
@JsonProperty(value = "isVerified", access = JsonProperty.Access.WRITE_ONLY) private Boolean isVerified;
the domain name.
/** * the domain name. */
@JsonProperty(value = "name", required = true) private String name;
Get the additionalProperties value.
Returns:the additionalProperties value
/** * Get the additionalProperties value. * * @return the additionalProperties value */
public Map<String, Object> additionalProperties() { return this.additionalProperties; }
Set the additionalProperties value.
Params:
  • additionalProperties – the additionalProperties value to set
Returns:the DomainInner object itself.
/** * Set the additionalProperties value. * * @param additionalProperties the additionalProperties value to set * @return the DomainInner object itself. */
public DomainInner withAdditionalProperties(Map<String, Object> additionalProperties) { this.additionalProperties = additionalProperties; return this; }
Get the authenticationType value.
Returns:the authenticationType value
/** * Get the authenticationType value. * * @return the authenticationType value */
public String authenticationType() { return this.authenticationType; }
Get the isDefault value.
Returns:the isDefault value
/** * Get the isDefault value. * * @return the isDefault value */
public Boolean isDefault() { return this.isDefault; }
Get the isVerified value.
Returns:the isVerified value
/** * Get the isVerified value. * * @return the isVerified value */
public Boolean isVerified() { return this.isVerified; }
Get the name value.
Returns:the name value
/** * Get the name value. * * @return the name value */
public String name() { return this.name; }
Set the name value.
Params:
  • name – the name value to set
Returns:the DomainInner object itself.
/** * Set the name value. * * @param name the name value to set * @return the DomainInner object itself. */
public DomainInner withName(String name) { this.name = name; return this; } }