com.azure.resourcemanager.mediaservices.models.OperationDisplay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Operation details. */
@Fluent
public final class OperationDisplay {
/*
* The service provider.
*/
@JsonProperty(value = "provider")
private String provider;
/*
* Resource on which the operation is performed.
*/
@JsonProperty(value = "resource")
private String resource;
/*
* The operation type.
*/
@JsonProperty(value = "operation")
private String operation;
/*
* The operation description.
*/
@JsonProperty(value = "description")
private String description;
/**
* Get the provider property: The service provider.
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Set the provider property: The service provider.
*
* @param provider the provider value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withProvider(String provider) {
this.provider = provider;
return this;
}
/**
* Get the resource property: Resource on which the operation is performed.
*
* @return the resource value.
*/
public String resource() {
return this.resource;
}
/**
* Set the resource property: Resource on which the operation is performed.
*
* @param resource the resource value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withResource(String resource) {
this.resource = resource;
return this;
}
/**
* Get the operation property: The operation type.
*
* @return the operation value.
*/
public String operation() {
return this.operation;
}
/**
* Set the operation property: The operation type.
*
* @param operation the operation value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withOperation(String operation) {
this.operation = operation;
return this;
}
/**
* Get the description property: The operation description.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: The operation description.
*
* @param description the description value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay 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