![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.desktopvirtualization.models.ResourceProviderOperationDisplay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
This package contains Microsoft Azure SDK for DesktopVirtualization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2024-04.
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.desktopvirtualization.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;
/**
* Display metadata associated with the operation.
*/
@Fluent
public final class ResourceProviderOperationDisplay implements JsonSerializable {
/*
* Resource provider: Microsoft Desktop Virtualization.
*/
private String provider;
/*
* Resource on which the operation is performed.
*/
private String resource;
/*
* Type of operation: get, read, delete, etc.
*/
private String operation;
/*
* Description of this operation.
*/
private String description;
/**
* Creates an instance of ResourceProviderOperationDisplay class.
*/
public ResourceProviderOperationDisplay() {
}
/**
* Get the provider property: Resource provider: Microsoft Desktop Virtualization.
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Set the provider property: Resource provider: Microsoft Desktop Virtualization.
*
* @param provider the provider value to set.
* @return the ResourceProviderOperationDisplay object itself.
*/
public ResourceProviderOperationDisplay withProvider(String provider) {
this.provider = provider;
return this;
}
/**
* Get the resource property: Resource on which the operation is performed.
*
* @return the resource value.
*/
public String resource() {
return this.resource;
}
/**
* Set the resource property: Resource on which the operation is performed.
*
* @param resource the resource value to set.
* @return the ResourceProviderOperationDisplay object itself.
*/
public ResourceProviderOperationDisplay withResource(String resource) {
this.resource = resource;
return this;
}
/**
* Get the operation property: Type of operation: get, read, delete, etc.
*
* @return the operation value.
*/
public String operation() {
return this.operation;
}
/**
* Set the operation property: Type of operation: get, read, delete, etc.
*
* @param operation the operation value to set.
* @return the ResourceProviderOperationDisplay object itself.
*/
public ResourceProviderOperationDisplay withOperation(String operation) {
this.operation = operation;
return this;
}
/**
* Get the description property: Description of this operation.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: Description of this operation.
*
* @param description the description value to set.
* @return the ResourceProviderOperationDisplay object itself.
*/
public ResourceProviderOperationDisplay withDescription(String description) {
this.description = description;
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("provider", this.provider);
jsonWriter.writeStringField("resource", this.resource);
jsonWriter.writeStringField("operation", this.operation);
jsonWriter.writeStringField("description", this.description);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ResourceProviderOperationDisplay from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ResourceProviderOperationDisplay 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 ResourceProviderOperationDisplay.
*/
public static ResourceProviderOperationDisplay fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ResourceProviderOperationDisplay deserializedResourceProviderOperationDisplay
= new ResourceProviderOperationDisplay();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("provider".equals(fieldName)) {
deserializedResourceProviderOperationDisplay.provider = reader.getString();
} else if ("resource".equals(fieldName)) {
deserializedResourceProviderOperationDisplay.resource = reader.getString();
} else if ("operation".equals(fieldName)) {
deserializedResourceProviderOperationDisplay.operation = reader.getString();
} else if ("description".equals(fieldName)) {
deserializedResourceProviderOperationDisplay.description = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedResourceProviderOperationDisplay;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy