Source code for azure.mgmt.datafactory.models.exposure_control_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 ExposureControlRequest(Model): """The exposure control request. :param feature_name: The feature name. :type feature_name: str :param feature_type: The feature type. :type feature_type: str """ _attribute_map = { 'feature_name': {'key': 'featureName', 'type': 'str'}, 'feature_type': {'key': 'featureType', 'type': 'str'}, } def __init__(self, *, feature_name: str=None, feature_type: str=None, **kwargs) -> None: super(ExposureControlRequest, self).__init__(**kwargs) self.feature_name = feature_name self.feature_type = feature_type