Source code for azure.mgmt.datafactory.models.get_ssis_object_metadata_request_py3

# 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 GetSsisObjectMetadataRequest(Model): """The request payload of get SSIS object metadata. :param metadata_path: Metadata path. :type metadata_path: str """ _attribute_map = { 'metadata_path': {'key': 'metadataPath', 'type': 'str'}, } def __init__(self, *, metadata_path: str=None, **kwargs) -> None: super(GetSsisObjectMetadataRequest, self).__init__(**kwargs) self.metadata_path = metadata_path