com.azure.resourcemanager.storagecache.models.AmlFilesystemIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storagecache Show documentation
Show all versions of azure-resourcemanager-storagecache Show documentation
This package contains Microsoft Azure SDK for StorageCache Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Managed Lustre provides a fully managed Lustre® file system, integrated with Blob storage, for use on demand. These operations create and manage Azure Managed Lustre file systems. Package tag package-2024-03.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storagecache.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.Map;
/**
* Managed Identity properties.
*/
@Fluent
public final class AmlFilesystemIdentity implements JsonSerializable {
/*
* The principal ID for the user-assigned identity of the resource.
*/
private String principalId;
/*
* The tenant ID associated with the resource.
*/
private String tenantId;
/*
* The type of identity used for the resource.
*/
private AmlFilesystemIdentityType type;
/*
* A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
*/
private Map userAssignedIdentities;
/**
* Creates an instance of AmlFilesystemIdentity class.
*/
public AmlFilesystemIdentity() {
}
/**
* Get the principalId property: The principal ID for the user-assigned identity of the resource.
*
* @return the principalId value.
*/
public String principalId() {
return this.principalId;
}
/**
* Get the tenantId property: The tenant ID associated with the resource.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Get the type property: The type of identity used for the resource.
*
* @return the type value.
*/
public AmlFilesystemIdentityType type() {
return this.type;
}
/**
* Set the type property: The type of identity used for the resource.
*
* @param type the type value to set.
* @return the AmlFilesystemIdentity object itself.
*/
public AmlFilesystemIdentity withType(AmlFilesystemIdentityType type) {
this.type = type;
return this;
}
/**
* Get the userAssignedIdentities property: A dictionary where each key is a user assigned identity resource ID, and
* each key's value is an empty dictionary.
*
* @return the userAssignedIdentities value.
*/
public Map userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the userAssignedIdentities property: A dictionary where each key is a user assigned identity resource ID, and
* each key's value is an empty dictionary.
*
* @param userAssignedIdentities the userAssignedIdentities value to set.
* @return the AmlFilesystemIdentity object itself.
*/
public AmlFilesystemIdentity
withUserAssignedIdentities(Map userAssignedIdentities) {
this.userAssignedIdentities = userAssignedIdentities;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (userAssignedIdentities() != null) {
userAssignedIdentities().values().forEach(e -> {
if (e != null) {
e.validate();
}
});
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("type", this.type == null ? null : this.type.toString());
jsonWriter.writeMapField("userAssignedIdentities", this.userAssignedIdentities,
(writer, element) -> writer.writeJson(element));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of AmlFilesystemIdentity from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AmlFilesystemIdentity 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 AmlFilesystemIdentity.
*/
public static AmlFilesystemIdentity fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AmlFilesystemIdentity deserializedAmlFilesystemIdentity = new AmlFilesystemIdentity();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("principalId".equals(fieldName)) {
deserializedAmlFilesystemIdentity.principalId = reader.getString();
} else if ("tenantId".equals(fieldName)) {
deserializedAmlFilesystemIdentity.tenantId = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedAmlFilesystemIdentity.type = AmlFilesystemIdentityType.fromString(reader.getString());
} else if ("userAssignedIdentities".equals(fieldName)) {
Map userAssignedIdentities
= reader.readMap(reader1 -> UserAssignedIdentitiesValue.fromJson(reader1));
deserializedAmlFilesystemIdentity.userAssignedIdentities = userAssignedIdentities;
} else {
reader.skipChildren();
}
}
return deserializedAmlFilesystemIdentity;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy