com.azure.resourcemanager.dashboard.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-dashboard Show documentation
Show all versions of azure-resourcemanager-dashboard Show documentation
This package contains Microsoft Azure SDK for Dashboard Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Microsoft.Dashboard Rest API spec. Package tag package-2021-09-01-preview.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dashboard.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.dashboard.models.ActionType;
import com.azure.resourcemanager.dashboard.models.OperationDisplay;
import com.azure.resourcemanager.dashboard.models.Origin;
import com.fasterxml.jackson.annotation.JsonProperty;
/** A Microsoft.Dashboard REST API operation. */
@Fluent
public final class OperationResultInner {
/*
* Operation name, i.e., {provider}/{resource}/{operation}.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/*
* Indicates whether the operation applies to data-plane. Set "true" for
* data-plane operations and "false" for ARM/control-plane operations.
*/
@JsonProperty(value = "isDataAction", access = JsonProperty.Access.WRITE_ONLY)
private Boolean isDataAction;
/*
* Localized display information for this particular operation.
*/
@JsonProperty(value = "display")
private OperationDisplay display;
/*
* The intended executor of the operation.
*/
@JsonProperty(value = "origin", access = JsonProperty.Access.WRITE_ONLY)
private Origin origin;
/*
* Indicates the action type. "Internal" refers to actions that are for
* internal only APIs.
*/
@JsonProperty(value = "actionType", access = JsonProperty.Access.WRITE_ONLY)
private ActionType actionType;
/**
* Get the name property: Operation name, i.e., {provider}/{resource}/{operation}.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the isDataAction property: Indicates whether the operation applies to data-plane. Set "true" for data-plane
* operations and "false" for ARM/control-plane operations.
*
* @return the isDataAction value.
*/
public Boolean isDataAction() {
return this.isDataAction;
}
/**
* Get the display property: Localized display information for this particular operation.
*
* @return the display value.
*/
public OperationDisplay display() {
return this.display;
}
/**
* Set the display property: Localized display information for this particular operation.
*
* @param display the display value to set.
* @return the OperationResultInner object itself.
*/
public OperationResultInner withDisplay(OperationDisplay display) {
this.display = display;
return this;
}
/**
* Get the origin property: The intended executor of the operation.
*
* @return the origin value.
*/
public Origin origin() {
return this.origin;
}
/**
* Get the actionType property: Indicates the action type. "Internal" refers to actions that are for internal only
* APIs.
*
* @return the actionType value.
*/
public ActionType actionType() {
return this.actionType;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (display() != null) {
display().validate();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy