Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::IntegrationRuntimeSsisProperties

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

Overview

SSIS properties for managed integration runtime.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#additional_propertiesObject

collection

Returns:

  • Unmatched properties from the message are deserialized this



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

def additional_properties
  @additional_properties
end

#catalog_infoIntegrationRuntimeSsisCatalogInfo

managed dedicated integration runtime.

Returns:



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

def catalog_info
  @catalog_info
end

#custom_setup_script_propertiesIntegrationRuntimeCustomSetupScriptProperties

script properties for a managed dedicated integration runtime.

Returns:



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

def custom_setup_script_properties
  @custom_setup_script_properties
end

#data_proxy_propertiesIntegrationRuntimeDataProxyProperties

for a managed dedicated integration runtime.

Returns:



34
35
36
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_properties.rb', line 34

def data_proxy_properties
  @data_proxy_properties
end

#editionIntegrationRuntimeEdition

Integration Runtime. Possible values include: ‘Standard’, ‘Enterprise’

Returns:



38
39
40
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_properties.rb', line 38

def edition
  @edition
end

#license_typeIntegrationRuntimeLicenseType

own license scenario. Possible values include: ‘BasePrice’, ‘LicenseIncluded’

Returns:



26
27
28
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_properties.rb', line 26

def license_type
  @license_type
end

Class Method Details

.mapperObject

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



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
113
114
115
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_properties.rb', line 45

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IntegrationRuntimeSsisProperties',
    type: {
      name: 'Composite',
      class_name: 'IntegrationRuntimeSsisProperties',
      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'
                }
            }
          }
        },
        catalog_info: {
          client_side_validation: true,
          required: false,
          serialized_name: 'catalogInfo',
          type: {
            name: 'Composite',
            class_name: 'IntegrationRuntimeSsisCatalogInfo'
          }
        },
        license_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'licenseType',
          type: {
            name: 'String'
          }
        },
        custom_setup_script_properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'customSetupScriptProperties',
          type: {
            name: 'Composite',
            class_name: 'IntegrationRuntimeCustomSetupScriptProperties'
          }
        },
        data_proxy_properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'dataProxyProperties',
          type: {
            name: 'Composite',
            class_name: 'IntegrationRuntimeDataProxyProperties'
          }
        },
        edition: {
          client_side_validation: true,
          required: false,
          serialized_name: 'edition',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end