Class: Azure::OperationalInsights::Mgmt::V2020_08_01::Models::WorkspacePurgeResponse

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_purge_response.rb

Overview

Response containing operationId for a specific purge action.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#operation_idString

purge operation.

Returns:

  • (String)

    Id to use when querying for status for a particular



17
18
19
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/workspace_purge_response.rb', line 17

def operation_id
  @operation_id
end

Class Method Details

.mapperObject

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



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/2020-08-01/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