class Azure::ContainerRegistry::Mgmt::V2017_06_01_preview::Models::EventResponseMessage

The event response message received from the service URI.

Attributes

content[RW]

@return [String] The content of the event response message.

headers[RW]

@return [Hash{String => String}] The headers of the event response message.

reason_phrase[RW]

@return [String] The reason phrase of the event response message.

status_code[RW]

@return [String] The status code of the event response message.

version[RW]

@return [String] The HTTP message version.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-06-01-preview/generated/azure_mgmt_container_registry/models/event_response_message.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EventResponseMessage',
    type: {
      name: 'Composite',
      class_name: 'EventResponseMessage',
      model_properties: {
        content: {
          client_side_validation: true,
          required: false,
          serialized_name: 'content',
          type: {
            name: 'String'
          }
        },
        headers: {
          client_side_validation: true,
          required: false,
          serialized_name: 'headers',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        reason_phrase: {
          client_side_validation: true,
          required: false,
          serialized_name: 'reasonPhrase',
          type: {
            name: 'String'
          }
        },
        status_code: {
          client_side_validation: true,
          required: false,
          serialized_name: 'statusCode',
          type: {
            name: 'String'
          }
        },
        version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'version',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end