com.azure.resourcemanager.hdinsight.models.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hdinsight Show documentation
Show all versions of azure-resourcemanager-hdinsight Show documentation
This package contains Microsoft Azure SDK for HDInsight Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. HDInsight Management Client. Package tag package-2024-08-preview.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.hdinsight.models;
import com.azure.resourcemanager.hdinsight.fluent.models.OperationInner;
/**
* An immutable client-side representation of Operation.
*/
public interface Operation {
/**
* Gets the name property: The operation name: {provider}/{resource}/{operation}.
*
* @return the name value.
*/
String name();
/**
* Gets the display property: The display of operation.
*
* @return the display value.
*/
OperationDisplay display();
/**
* Gets the properties property: The operation properties.
*
* @return the properties value.
*/
OperationProperties properties();
/**
* Gets the inner com.azure.resourcemanager.hdinsight.fluent.models.OperationInner object.
*
* @return the inner object.
*/
OperationInner innerModel();
}