DataFactoryManagementClient Class
DataFactoryManagementClient.
Constructor
DataFactoryManagementClient(credential: TokenCredential, subscription_id: str, base_url: str | None = None, *, cloud_setting: AzureClouds | None = None, **kwargs: Any)
Parameters
| Name | Description |
|---|---|
|
credential
Required
|
Credential used to authenticate requests to the service. Required. |
|
subscription_id
Required
|
The ID of the target subscription. The value must be an UUID. Required. |
|
base_url
|
Service host. Default value is None. Default value: None
|
Keyword-Only Parameters
| Name | Description |
|---|---|
|
cloud_setting
|
The cloud setting for which to get the ARM endpoint. Default value is None. Default value: None
|
|
api_version
|
The API version to use for this operation. Known values are "2018-06-01" and None. Default value is None. If not set, the operation's default API version will be used. Note that overriding this default value may result in unsupported behavior. |
|
polling_interval
|
Default waiting time between two polls for LRO operations if no Retry-After header is present. |
Variables
| Name | Description |
|---|---|
|
operations
|
Operations operations |
|
factories
|
FactoriesOperations operations |
|
exposure_control
|
ExposureControlOperations operations |
|
pipeline_runs
|
PipelineRunsOperations operations |
|
activity_runs
|
ActivityRunsOperations operations |
|
triggers
|
TriggersOperations operations |
|
trigger_runs
|
TriggerRunsOperations operations |
|
data_flow_debug_session
|
DataFlowDebugSessionOperations operations |
|
private_link_resources
|
PrivateLinkResourcesOperations operations |
|
integration_runtimes
|
IntegrationRuntimesOperations operations |
|
integration_runtime_object_metadata
|
IntegrationRuntimeObjectMetadataOperations operations |
|
integration_runtime_nodes
|
IntegrationRuntimeNodesOperations operations |
|
integration_runtime
|
IntegrationRuntimeOperations operations |
|
linked_services
|
LinkedServicesOperations operations |
|
datasets
|
DatasetsOperations operations |
|
pipelines
|
PipelinesOperations operations |
|
data_flows
|
DataFlowsOperations operations |
|
managed_virtual_networks
|
ManagedVirtualNetworksOperations operations |
|
managed_private_endpoints
|
ManagedPrivateEndpointsOperations operations |
|
credential_operations
|
CredentialOperationsOperations operations |
|
private_endpoint_connection
|
PrivateEndpointConnectionOperations operations |
|
private_end_point_connections
|
PrivateEndPointConnectionsOperations operations |
|
global_parameters
|
GlobalParametersOperations operations |
|
change_data_capture
|
ChangeDataCaptureOperations operations |
Methods
| close | |
| send_request |
Runs the network request through the client's chained policies.
For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request |
close
close() -> None
send_request
Runs the network request through the client's chained policies.
>>> from azure.core.rest import HttpRequest
>>> request = HttpRequest("GET", "https://www.example.org/")
<HttpRequest [GET], url: 'https://www.example.org/'>
>>> response = client.send_request(request)
<HttpResponse: 200 OK>
For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request
send_request(request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse
Parameters
| Name | Description |
|---|---|
|
request
Required
|
The network request you want to make. Required. |
Keyword-Only Parameters
| Name | Description |
|---|---|
|
stream
|
Whether the response payload will be streamed. Defaults to False. Default value: False
|
Returns
| Type | Description |
|---|---|
|
The response of your network call. Does not do error handling on your response. |