Class: Azure::Synapse::Mgmt::V2019_06_01_preview::Models::IntegrationRuntime
- Inherits:
-
Object
- Object
- Azure::Synapse::Mgmt::V2019_06_01_preview::Models::IntegrationRuntime
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime.rb
Overview
Azure Synapse nested object which serves as a compute resource for activities.
Direct Known Subclasses
Constant Summary collapse
- @@discriminatorMap =
Hash.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
collection.
-
#description ⇒ String
Integration runtime description.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IntegrationRuntime class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ IntegrationRuntime
constructor
A new instance of IntegrationRuntime.
Constructor Details
#initialize ⇒ IntegrationRuntime
Returns a new instance of IntegrationRuntime.
20 21 22 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime.rb', line 20 def initialize @type = "IntegrationRuntime" end |
Instance Attribute Details
#additional_properties ⇒ Object
collection
28 29 30 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime.rb', line 28 def additional_properties @additional_properties end |
#description ⇒ String
Returns Integration runtime description.
31 32 33 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime.rb', line 31 def description @description end |
#type ⇒ Object
Returns the value of attribute type.
24 25 26 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime.rb', line 24 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for IntegrationRuntime class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IntegrationRuntime', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'IntegrationRuntime', class_name: 'IntegrationRuntime', 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' } } } } } end |