All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.powerbi.Operation Maven / Gradle / Ivy

There is a newer version: 1.10.0-beta
Show newest version
/**
 * 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy