com.azure.resourcemanager.eventhubs.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-eventhubs Show documentation
Show all versions of azure-resourcemanager-eventhubs Show documentation
This package contains Microsoft Azure EventHubs Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.eventhubs.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Operation display payload. */
@Immutable
public final class OperationDisplay {
@JsonIgnore private final ClientLogger logger = new ClientLogger(OperationDisplay.class);
/*
* Resource provider of the operation
*/
@JsonProperty(value = "provider", access = JsonProperty.Access.WRITE_ONLY)
private String provider;
/*
* Resource of the operation
*/
@JsonProperty(value = "resource", access = JsonProperty.Access.WRITE_ONLY)
private String resource;
/*
* Localized friendly name for the operation
*/
@JsonProperty(value = "operation", access = JsonProperty.Access.WRITE_ONLY)
private String operation;
/*
* Localized friendly description for the operation
*/
@JsonProperty(value = "description", access = JsonProperty.Access.WRITE_ONLY)
private String description;
/**
* Get the provider property: Resource provider of the operation.
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Get the resource property: Resource of the operation.
*
* @return the resource value.
*/
public String resource() {
return this.resource;
}
/**
* Get the operation property: Localized friendly name for the operation.
*
* @return the operation value.
*/
public String operation() {
return this.operation;
}
/**
* Get the description property: Localized friendly description for the operation.
*
* @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() {
}
}