Class: Azure::Logic::Mgmt::V2018_07_01_preview::Models::RunCorrelation

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-01-preview/generated/azure_mgmt_logic/models/run_correlation.rb

Overview

The correlation properties.

Direct Known Subclasses

RunActionCorrelation

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#client_keywordsArray<String>

Returns The client keywords.

Returns:

  • (Array<String>)

    The client keywords.



19
20
21
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/run_correlation.rb', line 19

def client_keywords
  @client_keywords
end

#client_tracking_idString

Returns The client tracking identifier.

Returns:

  • (String)

    The client tracking identifier.



16
17
18
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/run_correlation.rb', line 16

def client_tracking_id
  @client_tracking_id
end

Class Method Details

.mapperObject

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



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
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/run_correlation.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RunCorrelation',
    type: {
      name: 'Composite',
      class_name: 'RunCorrelation',
      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'
                }
            }
          }
        }
      }
    }
  }
end