class Azure::Monitor::Mgmt::V2019_03_01::Models::LogicAppReceiver
A logic app receiver.
Attributes
callback_url[RW]
@return [String] The callback url where http request sent to.
name[RW]
@return [String] The name of the logic app receiver. Names must be unique across all receivers within an action group.
resource_id[RW]
@return [String] The azure resource id of the logic app receiver.
use_common_alert_schema[RW]
@return [Boolean] Indicates whether to use common alert schema.
Public Class Methods
mapper()
click to toggle source
Mapper for LogicAppReceiver
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-03-01/generated/azure_mgmt_monitor/models/logic_app_receiver.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'LogicAppReceiver', type: { name: 'Composite', class_name: 'LogicAppReceiver', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, resource_id: { client_side_validation: true, required: true, serialized_name: 'resourceId', type: { name: 'String' } }, callback_url: { client_side_validation: true, required: true, serialized_name: 'callbackUrl', type: { name: 'String' } }, use_common_alert_schema: { client_side_validation: true, required: true, serialized_name: 'useCommonAlertSchema', type: { name: 'Boolean' } } } } } end