Class: Azure::Synapse::Mgmt::V2019_06_01_preview::Models::IntegrationRuntimeComputeProperties
- Inherits:
-
Object
- Object
- Azure::Synapse::Mgmt::V2019_06_01_preview::Models::IntegrationRuntimeComputeProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb
Overview
The compute resource properties for managed integration runtime.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
collection.
-
#data_flow_properties ⇒ IntegrationRuntimeDataFlowProperties
managed integration runtime.
-
#location ⇒ String
supported regions could be found on docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities.
-
#max_parallel_executions_per_node ⇒ Integer
managed integration runtime.
-
#node_size ⇒ String
runtime.
-
#number_of_nodes ⇒ Integer
runtime.
-
#v_net_properties ⇒ IntegrationRuntimeVNetProperties
integration runtime.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IntegrationRuntimeComputeProperties class as Ruby Hash.
Instance Attribute Details
#additional_properties ⇒ Object
collection
17 18 19 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 17 def additional_properties @additional_properties end |
#data_flow_properties ⇒ IntegrationRuntimeDataFlowProperties
managed integration runtime.
38 39 40 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 38 def data_flow_properties @data_flow_properties end |
#location ⇒ String
supported regions could be found on docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
22 23 24 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 22 def location @location end |
#max_parallel_executions_per_node ⇒ Integer
managed integration runtime.
34 35 36 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 34 def max_parallel_executions_per_node @max_parallel_executions_per_node end |
#node_size ⇒ String
runtime.
26 27 28 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 26 def node_size @node_size end |
#number_of_nodes ⇒ Integer
runtime.
30 31 32 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 30 def number_of_nodes @number_of_nodes end |
#v_net_properties ⇒ IntegrationRuntimeVNetProperties
integration runtime.
42 43 44 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 42 def v_net_properties @v_net_properties end |
Class Method Details
.mapper ⇒ Object
Mapper for IntegrationRuntimeComputeProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_compute_properties.rb', line 49 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IntegrationRuntimeComputeProperties', type: { name: 'Composite', class_name: 'IntegrationRuntimeComputeProperties', model_properties: { additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, node_size: { client_side_validation: true, required: false, serialized_name: 'nodeSize', type: { name: 'String' } }, number_of_nodes: { client_side_validation: true, required: false, serialized_name: 'numberOfNodes', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } }, max_parallel_executions_per_node: { client_side_validation: true, required: false, serialized_name: 'maxParallelExecutionsPerNode', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } }, data_flow_properties: { client_side_validation: true, required: false, serialized_name: 'dataFlowProperties', type: { name: 'Composite', class_name: 'IntegrationRuntimeDataFlowProperties' } }, v_net_properties: { client_side_validation: true, required: false, serialized_name: 'vNetProperties', type: { name: 'Composite', class_name: 'IntegrationRuntimeVNetProperties' } } } } } end |