Class: Azure::ARM::Monitor::Models::WebhookReceiver

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_monitor/models/webhook_receiver.rb

Overview

A webhook receiver.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#nameString

across all receivers within an action group.

Returns:

  • (String)

    The name of the webhook receiver. Names must be unique



18
19
20
# File 'lib/generated/azure_mgmt_monitor/models/webhook_receiver.rb', line 18

def name
  @name
end

#service_uriString

Returns The URI where webhooks should be sent.

Returns:

  • (String)

    The URI where webhooks should be sent.



21
22
23
# File 'lib/generated/azure_mgmt_monitor/models/webhook_receiver.rb', line 21

def service_uri
  @service_uri
end

Class Method Details

.mapperObject

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



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/generated/azure_mgmt_monitor/models/webhook_receiver.rb', line 28

def self.mapper()
  {
    required: false,
    serialized_name: 'WebhookReceiver',
    type: {
      name: 'Composite',
      class_name: 'WebhookReceiver',
      model_properties: {
        name: {
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        service_uri: {
          required: true,
          serialized_name: 'serviceUri',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end