com.azure.resourcemanager.servicefabricmanagedclusters.models.VmManagedIdentity Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicefabricmanagedclusters.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.List;
/**
* Identities for the virtual machine scale set under the node type.
*/
@Fluent
public final class VmManagedIdentity implements JsonSerializable {
/*
* The list of user identities associated with the virtual machine scale set under the node type. Each entry will be
* an ARM resource ids in the form:
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/
* userAssignedIdentities/{identityName}'.
*/
private List userAssignedIdentities;
/**
* Creates an instance of VmManagedIdentity class.
*/
public VmManagedIdentity() {
}
/**
* Get the userAssignedIdentities property: The list of user identities associated with the virtual machine scale
* set under the node type. Each entry will be an ARM resource ids in the form:
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
*
* @return the userAssignedIdentities value.
*/
public List userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the userAssignedIdentities property: The list of user identities associated with the virtual machine scale
* set under the node type. Each entry will be an ARM resource ids in the form:
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
*
* @param userAssignedIdentities the userAssignedIdentities value to set.
* @return the VmManagedIdentity object itself.
*/
public VmManagedIdentity withUserAssignedIdentities(List userAssignedIdentities) {
this.userAssignedIdentities = userAssignedIdentities;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("userAssignedIdentities", this.userAssignedIdentities,
(writer, element) -> writer.writeString(element));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VmManagedIdentity from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VmManagedIdentity if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IOException If an error occurs while reading the VmManagedIdentity.
*/
public static VmManagedIdentity fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VmManagedIdentity deserializedVmManagedIdentity = new VmManagedIdentity();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("userAssignedIdentities".equals(fieldName)) {
List userAssignedIdentities = reader.readArray(reader1 -> reader1.getString());
deserializedVmManagedIdentity.userAssignedIdentities = userAssignedIdentities;
} else {
reader.skipChildren();
}
}
return deserializedVmManagedIdentity;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy