Class: Azure::ARM::StreamAnalytics::Models::Operation

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_stream_analytics/models/operation.rb

Overview

A Stream Analytics REST API operation

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#displayOperationDisplay

for this particular operation / action.

Returns:



22
23
24
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation.rb', line 22

def display
  @display
end

#nameString

particular object.

Returns:

  • (String)

    The name of the operation being performed on this



18
19
20
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation.rb', line 18

def name
  @name
end

Class Method Details

.mapperObject

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



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation.rb', line 29

def self.mapper()
  {
    required: false,
    serialized_name: 'Operation',
    type: {
      name: 'Composite',
      class_name: 'Operation',
      model_properties: {
        name: {
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        display: {
          required: false,
          read_only: true,
          serialized_name: 'display',
          type: {
            name: 'Composite',
            class_name: 'OperationDisplay'
          }
        }
      }
    }
  }
end