Class: Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphPackage

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_package.rb

Overview

Defines the graph of modules making up the machine learning solution.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#edgesArray<GraphEdge>

Returns The list of edges making up the graph.

Returns:

  • The list of edges making up the graph.



20
21
22
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_package.rb', line 20

def edges
  @edges
end

#graph_parametersHash{String => GraphParameter}

parameters for the graph, given as a global parameter name to GraphParameter map. Each parameter here has a 1:1 match with the global parameters values map declared at the WebServiceProperties level.

Returns:

  • The collection of global



26
27
28
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_package.rb', line 26

def graph_parameters
  @graph_parameters
end

#nodesHash{String => GraphNode}

graph, provided as a nodeId to GraphNode map

Returns:

  • The set of nodes making up the



17
18
19
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_package.rb', line 17

def nodes
  @nodes
end

Class Method Details

.mapperObject

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



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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_package.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'GraphPackage',
    type: {
      name: 'Composite',
      class_name: 'GraphPackage',
      model_properties: {
        nodes: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nodes',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'GraphNodeElementType',
                type: {
                  name: 'Composite',
                  class_name: 'GraphNode'
                }
            }
          }
        },
        edges: {
          client_side_validation: true,
          required: false,
          serialized_name: 'edges',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'GraphEdgeElementType',
                type: {
                  name: 'Composite',
                  class_name: 'GraphEdge'
                }
            }
          }
        },
        graph_parameters: {
          client_side_validation: true,
          required: false,
          serialized_name: 'graphParameters',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'GraphParameterElementType',
                type: {
                  name: 'Composite',
                  class_name: 'GraphParameter'
                }
            }
          }
        }
      }
    }
  }
end