Class: Azure::OperationalInsights::Mgmt::V2020_08_01::Models::WorkspaceCapping
- Inherits:
-
Object
- Object
- Azure::OperationalInsights::Mgmt::V2020_08_01::Models::WorkspaceCapping
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_capping.rb
Overview
The daily volume cap for ingestion.
Instance Attribute Summary collapse
-
#daily_quota_gb ⇒ Float
The workspace daily quota for ingestion.
-
#data_ingestion_status ⇒ DataIngestionStatus
workspace.
-
#quota_next_reset_time ⇒ String
The time when the quota will be rest.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkspaceCapping class as Ruby Hash.
Instance Attribute Details
#daily_quota_gb ⇒ Float
Returns The workspace daily quota for ingestion.
16 17 18 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_capping.rb', line 16 def daily_quota_gb @daily_quota_gb end |
#data_ingestion_status ⇒ DataIngestionStatus
workspace. Possible values include: ‘RespectQuota’, ‘ForceOn’, ‘ForceOff’, ‘OverQuota’, ‘SubscriptionSuspended’, ‘ApproachingQuota’
24 25 26 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_capping.rb', line 24 def data_ingestion_status @data_ingestion_status end |
#quota_next_reset_time ⇒ String
Returns The time when the quota will be rest.
19 20 21 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_capping.rb', line 19 def quota_next_reset_time @quota_next_reset_time end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkspaceCapping class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# 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 |