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.compute; import java.util.Map; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty;
Identity for the virtual machine.
/** * Identity for the virtual machine. */
public class VirtualMachineIdentity {
The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
/** * The principal id of virtual machine identity. This property will only be * provided for a system assigned identity. */
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) private String principalId;
The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
/** * The tenant id associated with the virtual machine. This property will * only be provided for a system assigned identity. */
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY) private String tenantId;
The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'.
/** * The type of identity used for the virtual machine. The type * 'SystemAssigned, UserAssigned' includes both an implicitly created * identity and a set of user assigned identities. The type 'None' will * remove any identities from the virtual machine. Possible values include: * 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', * 'None'. */
@JsonProperty(value = "type") private ResourceIdentityType type;
The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
/** * The list of user identities associated with the Virtual Machine. The * user identity dictionary key references will be ARM resource ids in the * form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. */
@JsonProperty(value = "userAssignedIdentities") @JsonInclude(content = JsonInclude.Include.ALWAYS) private Map<String, VirtualMachineIdentityUserAssignedIdentitiesValue> userAssignedIdentities;
Get the principal id of virtual machine identity. This property will only be provided for a system assigned identity.
Returns:the principalId value
/** * Get the principal id of virtual machine identity. This property will only be provided for a system assigned identity. * * @return the principalId value */
public String principalId() { return this.principalId; }
Get the tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
Returns:the tenantId value
/** * Get the tenant id associated with the virtual machine. This property will only be provided for a system assigned identity. * * @return the tenantId value */
public String tenantId() { return this.tenantId; }
Get the type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'.
Returns:the type value
/** * Get the type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'. * * @return the type value */
public ResourceIdentityType type() { return this.type; }
Set the type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'.
Params:
  • type – the type value to set
Returns:the VirtualMachineIdentity object itself.
/** * Set the type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'. * * @param type the type value to set * @return the VirtualMachineIdentity object itself. */
public VirtualMachineIdentity withType(ResourceIdentityType type) { this.type = type; return this; }
Get the list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Returns:the userAssignedIdentities value
/** * Get the list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. * * @return the userAssignedIdentities value */
public Map<String, VirtualMachineIdentityUserAssignedIdentitiesValue> userAssignedIdentities() { return this.userAssignedIdentities; }
Set the list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Params:
  • userAssignedIdentities – the userAssignedIdentities value to set
Returns:the VirtualMachineIdentity object itself.
/** * Set the list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. * * @param userAssignedIdentities the userAssignedIdentities value to set * @return the VirtualMachineIdentity object itself. */
public VirtualMachineIdentity withUserAssignedIdentities(Map<String, VirtualMachineIdentityUserAssignedIdentitiesValue> userAssignedIdentities) { this.userAssignedIdentities = userAssignedIdentities; return this; } }