class Azure::Monitor::Mgmt::V2015_05_01::Models::ApplicationInsightsComponentDataVolumeCap

An Application Insights component daily data volume cap

Attributes

cap[RW]

@return [Float] Daily data volume cap in GB.

max_history_cap[RW]

@return [Float] Maximum daily data volume cap that the user can set for this component.

reset_time[RW]

@return [Integer] Daily data volume cap UTC reset hour.

stop_send_notification_when_hit_cap[RW]

@return [Boolean] Do not send a notification email when the daily data volume cap is met.

stop_send_notification_when_hit_threshold[RW]

@return [Boolean] Reserved, not used for now.

warning_threshold[RW]

@return [Integer] Reserved, not used for now.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01/generated/azure_mgmt_monitor/models/application_insights_component_data_volume_cap.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationInsightsComponentDataVolumeCap',
    type: {
      name: 'Composite',
      class_name: 'ApplicationInsightsComponentDataVolumeCap',
      model_properties: {
        cap: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Cap',
          type: {
            name: 'Double'
          }
        },
        reset_time: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'ResetTime',
          type: {
            name: 'Number'
          }
        },
        warning_threshold: {
          client_side_validation: true,
          required: false,
          serialized_name: 'WarningThreshold',
          type: {
            name: 'Number'
          }
        },
        stop_send_notification_when_hit_threshold: {
          client_side_validation: true,
          required: false,
          serialized_name: 'StopSendNotificationWhenHitThreshold',
          type: {
            name: 'Boolean'
          }
        },
        stop_send_notification_when_hit_cap: {
          client_side_validation: true,
          required: false,
          serialized_name: 'StopSendNotificationWhenHitCap',
          type: {
            name: 'Boolean'
          }
        },
        max_history_cap: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'MaxHistoryCap',
          type: {
            name: 'Double'
          }
        }
      }
    }
  }
end