class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::LinkedIntegrationRuntime
The linked integration runtime information.
Attributes
create_time[RW]
@return [DateTime] The creating time of the linked integration runtime.
data_factory_location[RW]
@return [String] The location of the workspace for which the linked integration runtime belong to.
data_factory_name[RW]
@return [String] The name of the workspace for which the linked integration runtime belong to.
name[RW]
@return [String] The name of the linked integration runtime.
subscription_id[RW]
@return [String] The subscription ID for which the linked integration runtime belong to.
Private Class Methods
mapper()
click to toggle source
Mapper for LinkedIntegrationRuntime
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/linked_integration_runtime.rb, line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'LinkedIntegrationRuntime', type: { name: 'Composite', class_name: 'LinkedIntegrationRuntime', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, subscription_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'subscriptionId', type: { name: 'String' } }, data_factory_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'dataFactoryName', type: { name: 'String' } }, data_factory_location: { client_side_validation: true, required: false, read_only: true, serialized_name: 'dataFactoryLocation', type: { name: 'String' } }, create_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'createTime', type: { name: 'DateTime' } } } } } end