Sha256: b70ba95c052b2e02a704639fc6568ac3f830c44dec65a0eccb893aed096f01fe
Contents?: true
Size: 1.84 KB
Versions: 10
Compression:
Stored size: 1.84 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Monitor::Mgmt::V2018_03_01 module Models # # A logic app receiver. # class LogicAppReceiver include MsRestAzure # @return [String] The name of the logic app receiver. Names must be # unique across all receivers within an action group. attr_accessor :name # @return [String] The azure resource id of the logic app receiver. attr_accessor :resource_id # @return [String] The callback url where http request sent to. attr_accessor :callback_url # # Mapper for LogicAppReceiver class as Ruby Hash. # This will be used for serialization/deserialization. # 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' } } } } } end end end end
Version data entries
10 entries across 10 versions & 1 rubygems