class Azure::Monitor::Mgmt::V2015_05_01::Models::ComponentPurgeResponse

Response containing operationId for a specific purge action.

Attributes

operation_id[RW]

@return [String] Id to use when querying for status for a particular purge operation.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01/generated/azure_mgmt_monitor/models/component_purge_response.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ComponentPurgeResponse',
    type: {
      name: 'Composite',
      class_name: 'ComponentPurgeResponse',
      model_properties: {
        operation_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'operationId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end