Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::ManagedIntegrationRuntime
- Inherits:
-
IntegrationRuntime
- Object
- IntegrationRuntime
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::ManagedIntegrationRuntime
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb
Overview
Managed integration runtime, including managed elastic and managed dedicated integration runtimes.
Instance Attribute Summary collapse
-
#compute_properties ⇒ IntegrationRuntimeComputeProperties
managed integration runtime.
-
#ssis_properties ⇒ IntegrationRuntimeSsisProperties
integration runtime.
-
#state ⇒ IntegrationRuntimeState
for managed dedicated integration runtime.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from IntegrationRuntime
#additional_properties, #description
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ManagedIntegrationRuntime class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ ManagedIntegrationRuntime
constructor
A new instance of ManagedIntegrationRuntime.
Constructor Details
#initialize ⇒ ManagedIntegrationRuntime
17 18 19 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb', line 17 def initialize @type = "Managed" end |
Instance Attribute Details
#compute_properties ⇒ IntegrationRuntimeComputeProperties
managed integration runtime.
31 32 33 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb', line 31 def compute_properties @compute_properties end |
#ssis_properties ⇒ IntegrationRuntimeSsisProperties
integration runtime.
35 36 37 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb', line 35 def ssis_properties @ssis_properties end |
#state ⇒ IntegrationRuntimeState
for managed dedicated integration runtime. Possible values include: ‘Initial’, ‘Stopped’, ‘Started’, ‘Starting’, ‘Stopping’, ‘NeedRegistration’, ‘Online’, ‘Limited’, ‘Offline’
27 28 29 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb', line 27 def state @state end |
#type ⇒ Object
Returns the value of attribute type.
21 22 23 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb', line 21 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ManagedIntegrationRuntime class as Ruby Hash. This will be used for serialization/deserialization.
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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb', line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Managed', type: { name: 'Composite', class_name: 'ManagedIntegrationRuntime', 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' } } } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'state', type: { name: 'String' } }, compute_properties: { client_side_validation: true, required: false, serialized_name: 'typeProperties.computeProperties', type: { name: 'Composite', class_name: 'IntegrationRuntimeComputeProperties' } }, ssis_properties: { client_side_validation: true, required: false, serialized_name: 'typeProperties.ssisProperties', type: { name: 'Composite', class_name: 'IntegrationRuntimeSsisProperties' } } } } } end |