class Azure::OperationalInsights::Mgmt::V2020_03_01_preview::Models::StorageInsightStatus
The status of the storage insight.
Attributes
description[RW]
@return [String] Description of the state of the storage insight.
state[RW]
@return [StorageInsightState] The state of the storage insight connection to the workspace. Possible values include: 'OK', 'ERROR'
Public Class Methods
mapper()
click to toggle source
Mapper for StorageInsightStatus
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/storage_insight_status.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageInsightStatus', type: { name: 'Composite', class_name: 'StorageInsightStatus', model_properties: { state: { client_side_validation: true, required: true, serialized_name: 'state', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } } } } } end