class Azure::Automation::Mgmt::V2015_10_31::Models::Webhook

Definition of the webhook type.

Attributes

creation_time[RW]

@return [DateTime] Gets or sets the creation time.

description[RW]

@return [String] Gets or sets the description.

expiry_time[RW]

@return [DateTime] Gets or sets the expiry time.

is_enabled[RW]

@return [Boolean] Gets or sets the value of the enabled flag of the webhook. Default value: false .

last_invoked_time[RW]

@return [DateTime] Gets or sets the last invoked time.

last_modified_by[RW]

@return [String] Details of the user who last modified the Webhook

last_modified_time[RW]

@return [DateTime] Gets or sets the last modified time.

parameters[RW]

@return [Hash{String => String}] Gets or sets the parameters of the job that is created when the webhook calls the runbook it is associated with.

run_on[RW]

@return [String] Gets or sets the name of the hybrid worker group the webhook job will run on.

runbook[RW]

@return [RunbookAssociationProperty] Gets or sets the runbook the webhook is associated with.

uri[RW]

@return [String] Gets or sets the webhook uri.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/webhook.rb, line 58
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Webhook',
    type: {
      name: 'Composite',
      class_name: 'Webhook',
      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'
          }
        },
        is_enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.isEnabled',
          default_value: false,
          type: {
            name: 'Boolean'
          }
        },
        uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.uri',
          type: {
            name: 'String'
          }
        },
        expiry_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.expiryTime',
          type: {
            name: 'DateTime'
          }
        },
        last_invoked_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.lastInvokedTime',
          type: {
            name: 'DateTime'
          }
        },
        parameters: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.parameters',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        runbook: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.runbook',
          type: {
            name: 'Composite',
            class_name: 'RunbookAssociationProperty'
          }
        },
        run_on: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.runOn',
          type: {
            name: 'String'
          }
        },
        creation_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.creationTime',
          type: {
            name: 'DateTime'
          }
        },
        last_modified_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.lastModifiedTime',
          type: {
            name: 'DateTime'
          }
        },
        last_modified_by: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.lastModifiedBy',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end