com.microsoft.azure.management.powerbi.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-powerbi Show documentation
Show all versions of azure-mgmt-powerbi Show documentation
This package contains Microsoft PowerBI Management SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.powerbi;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The Operation model.
*/
public class Operation {
/**
* The name of the operation being performed on this particular object.
* This name should match the action name that appears in RBAC / the event
* service.
*/
@JsonProperty(value = "name")
private String name;
/**
* The display property.
*/
@JsonProperty(value = "display")
private Display display;
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the name value.
*
* @param name the name value to set
* @return the Operation object itself.
*/
public Operation withName(String name) {
this.name = name;
return this;
}
/**
* Get the display value.
*
* @return the display value
*/
public Display display() {
return this.display;
}
/**
* Set the display value.
*
* @param display the display value to set
* @return the Operation object itself.
*/
public Operation withDisplay(Display display) {
this.display = display;
return this;
}
}