class Azure::OperationalInsights::Mgmt::V2020_03_01_preview::Models::WorkspacePurgeResponse

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 WorkspacePurgeResponse class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_response.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WorkspacePurgeResponse',
    type: {
      name: 'Composite',
      class_name: 'WorkspacePurgeResponse',
      model_properties: {
        operation_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'operationId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end