class Azure::OperationalInsights::Mgmt::V2020_08_01::Models::WorkspaceCapping

The daily volume cap for ingestion.

Attributes

daily_quota_gb[RW]

@return [Float] The workspace daily quota for ingestion.

data_ingestion_status[RW]

@return [DataIngestionStatus] The status of data ingestion for this workspace. Possible values include: 'RespectQuota', 'ForceOn', 'ForceOff', 'OverQuota', 'SubscriptionSuspended', 'ApproachingQuota'

quota_next_reset_time[RW]

@return [String] The time when the quota will be rest.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_capping.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WorkspaceCapping',
    type: {
      name: 'Composite',
      class_name: 'WorkspaceCapping',
      model_properties: {
        daily_quota_gb: {
          client_side_validation: true,
          required: false,
          serialized_name: 'dailyQuotaGb',
          type: {
            name: 'Double'
          }
        },
        quota_next_reset_time: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'quotaNextResetTime',
          type: {
            name: 'String'
          }
        },
        data_ingestion_status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'dataIngestionStatus',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end