class Azure::AlertsManagement::Mgmt::V2019_03_01::Models::ThrottlingInformation

Optional throttling information for the alert rule.

Attributes

duration[RW]

@return [Duration] The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-03-01/generated/azure_mgmt_alerts_management/models/throttling_information.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ThrottlingInformation',
    type: {
      name: 'Composite',
      class_name: 'ThrottlingInformation',
      model_properties: {
        duration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'duration',
          type: {
            name: 'TimeSpan'
          }
        }
      }
    }
  }
end