com.azure.resourcemanager.hdinsight.models.ClusterMonitoringResponse 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.ClusterMonitoringResponseInner;
/**
* An immutable client-side representation of ClusterMonitoringResponse.
*/
public interface ClusterMonitoringResponse {
/**
* Gets the clusterMonitoringEnabled property: The status of the monitor on the HDInsight cluster.
*
* @return the clusterMonitoringEnabled value.
*/
Boolean clusterMonitoringEnabled();
/**
* Gets the workspaceId property: The workspace ID of the monitor on the HDInsight cluster.
*
* @return the workspaceId value.
*/
String workspaceId();
/**
* Gets the inner com.azure.resourcemanager.hdinsight.fluent.models.ClusterMonitoringResponseInner object.
*
* @return the inner object.
*/
ClusterMonitoringResponseInner innerModel();
}