class Azure::ResourceHealth::Mgmt::V2018_07_01::Models::ServiceImpactingEventIncidentProperties

Properties of the service impacting event.

Attributes

incident_type[RW]

@return [String] Type of Event.

region[RW]

@return [String] Region impacted by the event.

service[RW]

@return [String] Service impacted by the event.

title[RW]

@return [String] Title of the incident.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-07-01/generated/azure_mgmt_resource_health/models/service_impacting_event_incident_properties.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'serviceImpactingEvent_incidentProperties',
    type: {
      name: 'Composite',
      class_name: 'ServiceImpactingEventIncidentProperties',
      model_properties: {
        title: {
          client_side_validation: true,
          required: false,
          serialized_name: 'title',
          type: {
            name: 'String'
          }
        },
        service: {
          client_side_validation: true,
          required: false,
          serialized_name: 'service',
          type: {
            name: 'String'
          }
        },
        region: {
          client_side_validation: true,
          required: false,
          serialized_name: 'region',
          type: {
            name: 'String'
          }
        },
        incident_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'incidentType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end