class Azure::Monitor::Mgmt::V2018_03_01::Models::ItsmReceiver

An Itsm receiver.

Attributes

connection_id[RW]

@return [String] Unique identification of ITSM connection among multiple defined in above workspace.

name[RW]

@return [String] The name of the Itsm receiver. Names must be unique across all receivers within an action group.

region[RW]

@return [String] Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'

ticket_configuration[RW]

@return [String] JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

workspace_id[RW]

@return [String] OMS LA instance identifier.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-03-01/generated/azure_mgmt_monitor/models/itsm_receiver.rb, line 39
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ItsmReceiver',
    type: {
      name: 'Composite',
      class_name: 'ItsmReceiver',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        workspace_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'workspaceId',
          type: {
            name: 'String'
          }
        },
        connection_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'connectionId',
          type: {
            name: 'String'
          }
        },
        ticket_configuration: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ticketConfiguration',
          type: {
            name: 'String'
          }
        },
        region: {
          client_side_validation: true,
          required: true,
          serialized_name: 'region',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end