Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::LinkedIntegrationRuntime

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/linked_integration_runtime.rb

Overview

The linked integration runtime information.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#create_timeDateTime

Returns The creating time of the linked integration runtime.

Returns:

  • (DateTime)

    The creating time of the linked integration runtime.



31
32
33
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/linked_integration_runtime.rb', line 31

def create_time
  @create_time
end

#data_factory_locationString

integration runtime belong to.

Returns:

  • (String)

    The location of the data factory for which the linked



28
29
30
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/linked_integration_runtime.rb', line 28

def data_factory_location
  @data_factory_location
end

#data_factory_nameString

integration runtime belong to.

Returns:

  • (String)

    The name of the data factory for which the linked



24
25
26
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/linked_integration_runtime.rb', line 24

def data_factory_name
  @data_factory_name
end

#nameString

Returns The name of the linked integration runtime.

Returns:

  • (String)

    The name of the linked integration runtime.



16
17
18
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/linked_integration_runtime.rb', line 16

def name
  @name
end

#subscription_idString

runtime belong to.

Returns:

  • (String)

    The subscription ID for which the linked integration



20
21
22
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/linked_integration_runtime.rb', line 20

def subscription_id
  @subscription_id
end

Class Method Details

.mapperObject

Mapper for LinkedIntegrationRuntime 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/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