1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class IntegrationRuntimeSsisProperties(Model):
"""SSIS properties for managed integration runtime.
:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param catalog_info: Catalog information for managed dedicated integration
runtime.
:type catalog_info:
~azure.mgmt.datafactory.models.IntegrationRuntimeSsisCatalogInfo
:param license_type: License type for bringing your own license scenario.
Possible values include: 'BasePrice', 'LicenseIncluded'
:type license_type: str or
~azure.mgmt.datafactory.models.IntegrationRuntimeLicenseType
:param custom_setup_script_properties: Custom setup script properties for
a managed dedicated integration runtime.
:type custom_setup_script_properties:
~azure.mgmt.datafactory.models.IntegrationRuntimeCustomSetupScriptProperties
:param edition: The edition for the SSIS Integration Runtime. Possible
values include: 'Standard', 'Enterprise'
:type edition: str or
~azure.mgmt.datafactory.models.IntegrationRuntimeEdition
"""
_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'catalog_info': {'key': 'catalogInfo', 'type': 'IntegrationRuntimeSsisCatalogInfo'},
'license_type': {'key': 'licenseType', 'type': 'str'},
'custom_setup_script_properties': {'key': 'customSetupScriptProperties', 'type': 'IntegrationRuntimeCustomSetupScriptProperties'},
'edition': {'key': 'edition', 'type': 'str'},
}
def __init__(self, additional_properties=None, catalog_info=None, license_type=None, custom_setup_script_properties=None, edition=None):
super(IntegrationRuntimeSsisProperties, self).__init__()
self.additional_properties = additional_properties
self.catalog_info = catalog_info
self.license_type = license_type
self.custom_setup_script_properties = custom_setup_script_properties
self.edition = edition
|