com.azure.resourcemanager.hybridcompute.models.Identity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-05.
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.hybridcompute.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;
/**
* Identity for the resource.
*/
@Fluent
public final class Identity implements JsonSerializable {
/*
* The principal ID of resource identity.
*/
private String principalId;
/*
* The tenant ID of resource.
*/
private String tenantId;
/*
* The identity type.
*/
private ResourceIdentityType type;
/**
* Creates an instance of Identity class.
*/
public Identity() {
}
/**
* Get the principalId property: The principal ID of resource identity.
*
* @return the principalId value.
*/
public String principalId() {
return this.principalId;
}
/**
* Get the tenantId property: The tenant ID of resource.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Get the type property: The identity type.
*
* @return the type value.
*/
public ResourceIdentityType type() {
return this.type;
}
/**
* Set the type property: The identity type.
*
* @param type the type value to set.
* @return the Identity object itself.
*/
public Identity withType(ResourceIdentityType type) {
this.type = type;
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.writeStringField("type", this.type == null ? null : this.type.toString());
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of Identity from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of Identity 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 Identity.
*/
public static Identity fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
Identity deserializedIdentity = new Identity();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("principalId".equals(fieldName)) {
deserializedIdentity.principalId = reader.getString();
} else if ("tenantId".equals(fieldName)) {
deserializedIdentity.tenantId = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedIdentity.type = ResourceIdentityType.fromString(reader.getString());
} else {
reader.skipChildren();
}
}
return deserializedIdentity;
});
}
}