class Azure::ContainerRegistry::Mgmt::V2017_06_01_preview::Models::Status

The status of an Azure resource at the time the operation was called.

Attributes

display_status[RW]

@return [String] The short label for the status.

message[RW]

@return [String] The detailed message for the status, including alerts and error messages.

timestamp[RW]

@return [DateTime] The timestamp when the status was changed to the current value.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-06-01-preview/generated/azure_mgmt_container_registry/models/status.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Status',
    type: {
      name: 'Composite',
      class_name: 'Status',
      model_properties: {
        display_status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'displayStatus',
          type: {
            name: 'String'
          }
        },
        message: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'message',
          type: {
            name: 'String'
          }
        },
        timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'timestamp',
          type: {
            name: 'DateTime'
          }
        }
      }
    }
  }
end