com.azure.resourcemanager.servicefabricmanagedclusters.fluent.models.OperationResultInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
This package contains Microsoft Azure SDK for Service Fabric Managed Clusters Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Service Fabric Managed Clusters Management Client. Package tag package-2024-04.
// 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.fluent.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 com.azure.resourcemanager.servicefabricmanagedclusters.models.AvailableOperationDisplay;
import java.io.IOException;
/**
* Available operation list result.
*/
@Fluent
public final class OperationResultInner implements JsonSerializable {
/*
* The name of the operation.
*/
private String name;
/*
* Indicates whether the operation is a data action
*/
private Boolean isDataAction;
/*
* The object that represents the operation.
*/
private AvailableOperationDisplay display;
/*
* Origin result
*/
private String origin;
/*
* The URL to use for getting the next set of results.
*/
private String nextLink;
/**
* Creates an instance of OperationResultInner class.
*/
public OperationResultInner() {
}
/**
* Get the name property: The name of the operation.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the operation.
*
* @param name the name value to set.
* @return the OperationResultInner object itself.
*/
public OperationResultInner withName(String name) {
this.name = name;
return this;
}
/**
* Get the isDataAction property: Indicates whether the operation is a data action.
*
* @return the isDataAction value.
*/
public Boolean isDataAction() {
return this.isDataAction;
}
/**
* Set the isDataAction property: Indicates whether the operation is a data action.
*
* @param isDataAction the isDataAction value to set.
* @return the OperationResultInner object itself.
*/
public OperationResultInner withIsDataAction(Boolean isDataAction) {
this.isDataAction = isDataAction;
return this;
}
/**
* Get the display property: The object that represents the operation.
*
* @return the display value.
*/
public AvailableOperationDisplay display() {
return this.display;
}
/**
* Set the display property: The object that represents the operation.
*
* @param display the display value to set.
* @return the OperationResultInner object itself.
*/
public OperationResultInner withDisplay(AvailableOperationDisplay display) {
this.display = display;
return this;
}
/**
* Get the origin property: Origin result.
*
* @return the origin value.
*/
public String origin() {
return this.origin;
}
/**
* Set the origin property: Origin result.
*
* @param origin the origin value to set.
* @return the OperationResultInner object itself.
*/
public OperationResultInner withOrigin(String origin) {
this.origin = origin;
return this;
}
/**
* Get the nextLink property: The URL to use for getting the next set of results.
*
* @return the nextLink value.
*/
public String nextLink() {
return this.nextLink;
}
/**
* Set the nextLink property: The URL to use for getting the next set of results.
*
* @param nextLink the nextLink value to set.
* @return the OperationResultInner object itself.
*/
public OperationResultInner withNextLink(String nextLink) {
this.nextLink = nextLink;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (display() != null) {
display().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("name", this.name);
jsonWriter.writeBooleanField("isDataAction", this.isDataAction);
jsonWriter.writeJsonField("display", this.display);
jsonWriter.writeStringField("origin", this.origin);
jsonWriter.writeStringField("nextLink", this.nextLink);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of OperationResultInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of OperationResultInner 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 OperationResultInner.
*/
public static OperationResultInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
OperationResultInner deserializedOperationResultInner = new OperationResultInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("name".equals(fieldName)) {
deserializedOperationResultInner.name = reader.getString();
} else if ("isDataAction".equals(fieldName)) {
deserializedOperationResultInner.isDataAction = reader.getNullable(JsonReader::getBoolean);
} else if ("display".equals(fieldName)) {
deserializedOperationResultInner.display = AvailableOperationDisplay.fromJson(reader);
} else if ("origin".equals(fieldName)) {
deserializedOperationResultInner.origin = reader.getString();
} else if ("nextLink".equals(fieldName)) {
deserializedOperationResultInner.nextLink = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedOperationResultInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy