class Azure::Hdinsight::Mgmt::V2015_03_01_preview::Models::ClusterMonitoringResponse

The Operations Management Suite (OMS) status response

Attributes

cluster_monitoring_enabled[RW]

@return [Boolean] The status of the Operations Management Suite (OMS) on the HDInsight cluster.

workspace_id[RW]

@return [String] The workspace ID of the Operations Management Suite (OMS) on the HDInsight cluster.

Public Class Methods

mapper() click to toggle source

Mapper for ClusterMonitoringResponse class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster_monitoring_response.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ClusterMonitoringResponse',
    type: {
      name: 'Composite',
      class_name: 'ClusterMonitoringResponse',
      model_properties: {
        cluster_monitoring_enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clusterMonitoringEnabled',
          type: {
            name: 'Boolean'
          }
        },
        workspace_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'workspaceId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end