class Azure::Monitor::Mgmt::V2017_10_01_preview::Models::ApplicationInsightsComponentPricingPlan
An Application Insights component pricing plan
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.
plan_type[RW]
@return [String] Pricing Plan Type Name.
reset_hour[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 ApplicationInsightsComponentPricingPlan
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-10-01-preview/generated/azure_mgmt_monitor/models/application_insights_component_pricing_plan.rb, line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationInsightsComponentPricingPlan', type: { name: 'Composite', class_name: 'ApplicationInsightsComponentPricingPlan', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, plan_type: { client_side_validation: true, required: false, serialized_name: 'properties.planType', type: { name: 'String' } }, cap: { client_side_validation: true, required: false, serialized_name: 'properties.cap', type: { name: 'Double' } }, reset_hour: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.resetHour', type: { name: 'Number' } }, warning_threshold: { client_side_validation: true, required: false, serialized_name: 'properties.warningThreshold', type: { name: 'Number' } }, stop_send_notification_when_hit_threshold: { client_side_validation: true, required: false, serialized_name: 'properties.stopSendNotificationWhenHitThreshold', type: { name: 'Boolean' } }, stop_send_notification_when_hit_cap: { client_side_validation: true, required: false, serialized_name: 'properties.stopSendNotificationWhenHitCap', type: { name: 'Boolean' } }, max_history_cap: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.maxHistoryCap', type: { name: 'Double' } } } } } end