![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.managementgroups.models.OperationDisplayProperties 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.managementgroups.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The object that represents the operation. */
@Immutable
public final class OperationDisplayProperties {
/*
* The name of the provider.
*/
@JsonProperty(value = "provider", access = JsonProperty.Access.WRITE_ONLY)
private String provider;
/*
* The resource on which the operation is performed.
*/
@JsonProperty(value = "resource", access = JsonProperty.Access.WRITE_ONLY)
private String resource;
/*
* The operation that can be performed.
*/
@JsonProperty(value = "operation", access = JsonProperty.Access.WRITE_ONLY)
private String operation;
/*
* Operation description.
*/
@JsonProperty(value = "description", access = JsonProperty.Access.WRITE_ONLY)
private String description;
/** Creates an instance of OperationDisplayProperties class. */
public OperationDisplayProperties() {
}
/**
* Get the provider property: The name of the provider.
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Get the resource property: The resource on which the operation is performed.
*
* @return the resource value.
*/
public String resource() {
return this.resource;
}
/**
* Get the operation property: The operation that can be performed.
*
* @return the operation value.
*/
public String operation() {
return this.operation;
}
/**
* Get the description property: Operation description.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy