Class: Azure::Logic::Mgmt::V2016_06_01::Models::RunActionCorrelation

Inherits:
RunCorrelation
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-01/generated/azure_mgmt_logic/models/run_action_correlation.rb

Overview

The workflow run action correlation properties.

Instance Attribute Summary collapse

Attributes inherited from RunCorrelation

#client_keywords, #client_tracking_id

Class Method Summary collapse

Instance Attribute Details

#action_tracking_idString

Returns The action tracking identifier.

Returns:

  • (String)

    The action tracking identifier.


16
17
18
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/run_action_correlation.rb', line 16

def action_tracking_id
  @action_tracking_id
end

Class Method Details

.mapperObject

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

[View source]

23
24
25
26
27
28
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
58
59
60
61
62
63
64
65
66
67
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/run_action_correlation.rb', line 23

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RunActionCorrelation',
    type: {
      name: 'Composite',
      class_name: 'RunActionCorrelation',
      model_properties: {
        client_tracking_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clientTrackingId',
          type: {
            name: 'String'
          }
        },
        client_keywords: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clientKeywords',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        action_tracking_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'actionTrackingId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end