com.azure.resourcemanager.healthdataaiservices.models.OperationDisplay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-healthdataaiservices Show documentation
Show all versions of azure-resourcemanager-healthdataaiservices Show documentation
This package contains Microsoft Azure SDK for Health Data AI Services Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.resourcemanager.healthdataaiservices.models;
import com.azure.core.annotation.Immutable;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Localized display information for and operation.
*/
@Immutable
public final class OperationDisplay implements JsonSerializable {
/*
* The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or
* "Microsoft Compute".
*/
private String provider;
/*
* The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or
* "Job Schedule Collections".
*/
private String resource;
/*
* The concise, localized friendly name for the operation; suitable for dropdowns. E.g.
* "Create or Update Virtual Machine", "Restart Virtual Machine".
*/
private String operation;
/*
* The short, localized friendly description of the operation; suitable for tool tips and detailed views.
*/
private String description;
/**
* Creates an instance of OperationDisplay class.
*/
private OperationDisplay() {
}
/**
* Get the provider property: The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring
* Insights" or "Microsoft Compute".
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Get the resource property: The localized friendly name of the resource type related to this operation. E.g.
* "Virtual Machines" or "Job Schedule Collections".
*
* @return the resource value.
*/
public String resource() {
return this.resource;
}
/**
* Get the operation property: The concise, localized friendly name for the operation; suitable for dropdowns. E.g.
* "Create or Update Virtual Machine", "Restart Virtual Machine".
*
* @return the operation value.
*/
public String operation() {
return this.operation;
}
/**
* Get the description property: The short, localized friendly description of the operation; suitable for tool tips
* and detailed views.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* 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();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of OperationDisplay from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of OperationDisplay 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 OperationDisplay.
*/
public static OperationDisplay fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
OperationDisplay deserializedOperationDisplay = new OperationDisplay();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("provider".equals(fieldName)) {
deserializedOperationDisplay.provider = reader.getString();
} else if ("resource".equals(fieldName)) {
deserializedOperationDisplay.resource = reader.getString();
} else if ("operation".equals(fieldName)) {
deserializedOperationDisplay.operation = reader.getString();
} else if ("description".equals(fieldName)) {
deserializedOperationDisplay.description = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedOperationDisplay;
});
}
}