Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
891fe1c
Generated from b07009df21da758efcb13fbbd25ce9e450751586 (#7159)
AutorestCI Sep 10, 2019
ad61f04
Generated from 5cc2c54ac1ba7f41fd2426ff39df46f785ce55f2 (#7202)
AutorestCI Sep 11, 2019
e9f628f
[AutoPR datafactory/resource-manager] [DataFactory] - Add CosmosDbSql…
AutorestCI Sep 24, 2019
6a7ec4f
Generated from 1cac6227f3d809cbabebc0ca1140469c9d2a7030 (#7432)
AutorestCI Sep 25, 2019
f3771b6
[AutoPR datafactory/resource-manager] [Data Factory] Add data flow co…
AutorestCI Sep 27, 2019
1df0188
[AutoPR datafactory/resource-manager] [DataFactory]Add AzureFileStora…
AutorestCI Sep 29, 2019
dc66d9e
[AutoPR datafactory/resource-manager] [DataFactory]Add property to ev…
AutorestCI Sep 29, 2019
82b18d4
[AutoPR datafactory/resource-manager] [Data Factory][Bug fix before p…
AutorestCI Oct 2, 2019
d7d48e6
Generated from fd6a275f03e5798adf417af89e742f7deba79557 (#7654)
AutorestCI Oct 8, 2019
7f62c18
[AutoPR datafactory/resource-manager] [Datafactory] Add AzureMLExecut…
AutorestCI Oct 9, 2019
485dde0
Generated from 55e842916abe83a008e4078b3cfb384c5a49ebf6 (#7823)
AutorestCI Oct 11, 2019
aeb4540
[AutoPR datafactory/resource-manager] [DataFactory]Add CompressionCod…
AutorestCI Oct 17, 2019
d42fe3f
[AutoPR datafactory/resource-manager] [DataFactory]Add Dynamics Serve…
AutorestCI Oct 17, 2019
fa4e56c
Generated from 2874419d9f054e394658848a336363186626a111 (#8441)
AutorestCI Nov 6, 2019
9665508
regenerated with new change from swagger
Nov 26, 2019
714739c
Generated from f89b3577784d34e4da75467c09dc8dc036d959a8 (#8910)
AutorestCI Dec 3, 2019
f7f44fc
[AutoPR datafactory/resource-manager] Update Salesforce LinkedService…
AutorestCI Dec 3, 2019
7511b57
[AutoPR datafactory/resource-manager] [DataFactory]Support partition …
AutorestCI Dec 3, 2019
03bf8e6
Generated from 7badadb92e5ba5d471ed8b8158be54ea7b451ccd (#8939)
AutorestCI Dec 3, 2019
650358d
Generated from 284e49e67e41e6fa010e4ec05c0213a92e28738d (#9009)
AutorestCI Dec 6, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
# regenerated.
# --------------------------------------------------------------------------

from .data_factory_management_client import DataFactoryManagementClient
from .version import VERSION
from ._configuration import DataFactoryManagementClientConfiguration
from ._data_factory_management_client import DataFactoryManagementClient
__all__ = ['DataFactoryManagementClient', 'DataFactoryManagementClientConfiguration']

__all__ = ['DataFactoryManagementClient']
from .version import VERSION

__version__ = VERSION

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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 msrestazure import AzureConfiguration

from .version import VERSION


class DataFactoryManagementClientConfiguration(AzureConfiguration):
"""Configuration for DataFactoryManagementClient
Note that all parameters used to create this instance are saved as instance
attributes.

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The subscription identifier.
:type subscription_id: str
:param str base_url: Service URL
"""

def __init__(
self, credentials, subscription_id, base_url=None):

if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
if subscription_id is None:
raise ValueError("Parameter 'subscription_id' must not be None.")
if not base_url:
base_url = 'https://management.azure.com'

super(DataFactoryManagementClientConfiguration, self).__init__(base_url)

# Starting Autorest.Python 4.0.64, make connection pool activated by default
self.keep_alive = True

self.add_user_agent('azure-mgmt-datafactory/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')

self.credentials = credentials
self.subscription_id = subscription_id
Original file line number Diff line number Diff line change
Expand Up @@ -11,55 +11,25 @@

from msrest.service_client import SDKClient
from msrest import Serializer, Deserializer
from msrestazure import AzureConfiguration
from .version import VERSION
from .operations.operations import Operations
from .operations.factories_operations import FactoriesOperations
from .operations.exposure_control_operations import ExposureControlOperations
from .operations.integration_runtimes_operations import IntegrationRuntimesOperations
from .operations.integration_runtime_object_metadata_operations import IntegrationRuntimeObjectMetadataOperations
from .operations.integration_runtime_nodes_operations import IntegrationRuntimeNodesOperations
from .operations.linked_services_operations import LinkedServicesOperations
from .operations.datasets_operations import DatasetsOperations
from .operations.pipelines_operations import PipelinesOperations
from .operations.pipeline_runs_operations import PipelineRunsOperations
from .operations.activity_runs_operations import ActivityRunsOperations
from .operations.triggers_operations import TriggersOperations
from .operations.trigger_runs_operations import TriggerRunsOperations
from .operations.rerun_triggers_operations import RerunTriggersOperations
from . import models


class DataFactoryManagementClientConfiguration(AzureConfiguration):
"""Configuration for DataFactoryManagementClient
Note that all parameters used to create this instance are saved as instance
attributes.

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The subscription identifier.
:type subscription_id: str
:param str base_url: Service URL
"""

def __init__(
self, credentials, subscription_id, base_url=None):

if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
if subscription_id is None:
raise ValueError("Parameter 'subscription_id' must not be None.")
if not base_url:
base_url = 'https://management.azure.com'

super(DataFactoryManagementClientConfiguration, self).__init__(base_url)

self.add_user_agent('azure-mgmt-datafactory/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')

self.credentials = credentials
self.subscription_id = subscription_id
from ._configuration import DataFactoryManagementClientConfiguration
from .operations import Operations
from .operations import FactoriesOperations
from .operations import ExposureControlOperations
from .operations import IntegrationRuntimesOperations
from .operations import IntegrationRuntimeObjectMetadataOperations
from .operations import IntegrationRuntimeNodesOperations
from .operations import LinkedServicesOperations
from .operations import DatasetsOperations
from .operations import PipelinesOperations
from .operations import PipelineRunsOperations
from .operations import ActivityRunsOperations
from .operations import TriggersOperations
from .operations import TriggerRunsOperations
from .operations import RerunTriggersOperations
from .operations import DataFlowsOperations
from .operations import DataFlowDebugSessionOperations
from . import models


class DataFactoryManagementClient(SDKClient):
Expand Down Expand Up @@ -96,6 +66,10 @@ class DataFactoryManagementClient(SDKClient):
:vartype trigger_runs: azure.mgmt.datafactory.operations.TriggerRunsOperations
:ivar rerun_triggers: RerunTriggers operations
:vartype rerun_triggers: azure.mgmt.datafactory.operations.RerunTriggersOperations
:ivar data_flows: DataFlows operations
:vartype data_flows: azure.mgmt.datafactory.operations.DataFlowsOperations
:ivar data_flow_debug_session: DataFlowDebugSession operations
:vartype data_flow_debug_session: azure.mgmt.datafactory.operations.DataFlowDebugSessionOperations

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
Expand Down Expand Up @@ -144,3 +118,7 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.rerun_triggers = RerunTriggersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.data_flows = DataFlowsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.data_flow_debug_session = DataFlowDebugSessionOperations(
self._client, self.config, self._serialize, self._deserialize)
Loading