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.storage; import com.fasterxml.jackson.annotation.JsonProperty;
Identity for the resource.
/** * Identity for the resource. */
public class Identity {
The principal ID of resource identity.
/** * The principal ID of resource identity. */
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) private String principalId;
The tenant ID of resource.
/** * The tenant ID of resource. */
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY) private String tenantId;
The identity type.
/** * The identity type. */
@JsonProperty(value = "type", required = true) private String type;
Creates an instance of Identity class.
/** * Creates an instance of Identity class. */
public Identity() { type = "SystemAssigned"; }
Get the principal ID of resource identity.
Returns:the principalId value
/** * Get the principal ID of resource identity. * * @return the principalId value */
public String principalId() { return this.principalId; }
Get the tenant ID of resource.
Returns:the tenantId value
/** * Get the tenant ID of resource. * * @return the tenantId value */
public String tenantId() { return this.tenantId; }
Get the identity type.
Returns:the type value
/** * Get the identity type. * * @return the type value */
public String type() { return this.type; }
Set the identity type.
Params:
  • type – the type value to set
Returns:the Identity object itself.
/** * Set the identity type. * * @param type the type value to set * @return the Identity object itself. */
public Identity withType(String type) { this.type = type; return this; } }