# 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
[docs]class StagingSettings(Model):
"""Staging settings.
:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param linked_service_name: Staging linked service reference.
:type linked_service_name:
~azure.mgmt.datafactory.models.LinkedServiceReference
:param path: The path to storage for storing the interim data. Type:
string (or Expression with resultType string).
:type path: object
:param enable_compression: Specifies whether to use compression when
copying data via an interim staging. Default value is false. Type: boolean
(or Expression with resultType boolean).
:type enable_compression: object
"""
_validation = {
'linked_service_name': {'required': True},
}
_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'linked_service_name': {'key': 'linkedServiceName', 'type': 'LinkedServiceReference'},
'path': {'key': 'path', 'type': 'object'},
'enable_compression': {'key': 'enableCompression', 'type': 'object'},
}
def __init__(self, linked_service_name, additional_properties=None, path=None, enable_compression=None):
super(StagingSettings, self).__init__()
self.additional_properties = additional_properties
self.linked_service_name = linked_service_name
self.path = path
self.enable_compression = enable_compression