Source code for azure.mgmt.hdinsight.models.cluster_monitoring_response_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class ClusterMonitoringResponse(Model): """The Operations Management Suite (OMS) status response. :param cluster_monitoring_enabled: The status of the Operations Management Suite (OMS) on the HDInsight cluster. :type cluster_monitoring_enabled: bool :param workspace_id: The workspace ID of the Operations Management Suite (OMS) on the HDInsight cluster. :type workspace_id: str """ _attribute_map = { 'cluster_monitoring_enabled': {'key': 'clusterMonitoringEnabled', 'type': 'bool'}, 'workspace_id': {'key': 'workspaceId', 'type': 'str'}, } def __init__(self, *, cluster_monitoring_enabled: bool=None, workspace_id: str=None, **kwargs) -> None: super(ClusterMonitoringResponse, self).__init__(**kwargs) self.cluster_monitoring_enabled = cluster_monitoring_enabled self.workspace_id = workspace_id