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

com.azure.resourcemanager.confidentialledger.models.ResourceProviderOperationDisplay Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.confidentialledger.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Describes the properties of the Operation. */
@Fluent
public final class ResourceProviderOperationDisplay {
    /*
     * Name of the resource provider.
     */
    @JsonProperty(value = "provider")
    private String provider;

    /*
     * Name of the resource type.
     */
    @JsonProperty(value = "resource")
    private String resource;

    /*
     * Name of the resource provider operation.
     */
    @JsonProperty(value = "operation")
    private String operation;

    /*
     * Description of the resource provider operation.
     */
    @JsonProperty(value = "description")
    private String description;

    /** Creates an instance of ResourceProviderOperationDisplay class. */
    public ResourceProviderOperationDisplay() {
    }

    /**
     * Get the provider property: Name of the resource provider.
     *
     * @return the provider value.
     */
    public String provider() {
        return this.provider;
    }

    /**
     * Set the provider property: Name of the resource provider.
     *
     * @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: Name of the resource type.
     *
     * @return the resource value.
     */
    public String resource() {
        return this.resource;
    }

    /**
     * Set the resource property: Name of the resource type.
     *
     * @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: Name of the resource provider operation.
     *
     * @return the operation value.
     */
    public String operation() {
        return this.operation;
    }

    /**
     * Set the operation property: Name of the resource provider operation.
     *
     * @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 the resource provider operation.
     *
     * @return the description value.
     */
    public String description() {
        return this.description;
    }

    /**
     * Set the description property: Description of the resource provider 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() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy