class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::IntegrationRuntimeDataProxyProperties

Data proxy properties for a managed dedicated integration runtime.

Attributes

connect_via[RW]

@return [EntityReference] The self-hosted integration runtime reference.

path[RW]

@return [String] The path to contain the staged data in the Blob storage.

staging_linked_service[RW]

@return [EntityReference] The staging linked service reference.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/integration_runtime_data_proxy_properties.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IntegrationRuntimeDataProxyProperties',
    type: {
      name: 'Composite',
      class_name: 'IntegrationRuntimeDataProxyProperties',
      model_properties: {
        connect_via: {
          client_side_validation: true,
          required: false,
          serialized_name: 'connectVia',
          type: {
            name: 'Composite',
            class_name: 'EntityReference'
          }
        },
        staging_linked_service: {
          client_side_validation: true,
          required: false,
          serialized_name: 'stagingLinkedService',
          type: {
            name: 'Composite',
            class_name: 'EntityReference'
          }
        },
        path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'path',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end