class Azure::Automation::Mgmt::V2015_10_31::Models::WebhookCreateOrUpdateParameters

The parameters supplied to the create or update webhook operation.

Attributes

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 webhook.

name[RW]

@return [String] Gets or sets the name of the webhook.

parameters[RW]

@return [Hash{String => String}] Gets or sets the parameters of the job.

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.

uri[RW]

@return [String] Gets or sets the uri.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/webhook_create_or_update_parameters.rb, line 44
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WebhookCreateOrUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'WebhookCreateOrUpdateParameters',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        is_enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.isEnabled',
          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'
          }
        },
        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'
          }
        }
      }
    }
  }
end