Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR azure-resourcemanager-datafactory] [DataFactory]Add support for running staging on multiple sources in parallel #218

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.15 (Unreleased)
## 1.0.0-beta.1 (2022-05-07)

- Azure Resource Manager DataFactory client library for Java. This package contains Microsoft Azure SDK for DataFactory Management SDK. The Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services. Package tag package-2018-06. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-datafactory</artifactId>
<version>1.0.0-beta.14</version>
<version>1.0.0-beta.15</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile
.append("-")
.append("com.azure.resourcemanager.datafactory")
.append("/")
.append("1.0.0-beta.14");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down Expand Up @@ -339,39 +339,59 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile
}
}

/** @return Resource collection API of Operations. */
/**
* Gets the resource collection API of Operations.
*
* @return Resource collection API of Operations.
*/
public Operations operations() {
if (this.operations == null) {
this.operations = new OperationsImpl(clientObject.getOperations(), this);
}
return operations;
}

/** @return Resource collection API of Factories. */
/**
* Gets the resource collection API of Factories.
*
* @return Resource collection API of Factories.
*/
public Factories factories() {
if (this.factories == null) {
this.factories = new FactoriesImpl(clientObject.getFactories(), this);
}
return factories;
}

/** @return Resource collection API of ExposureControls. */
/**
* Gets the resource collection API of ExposureControls.
*
* @return Resource collection API of ExposureControls.
*/
public ExposureControls exposureControls() {
if (this.exposureControls == null) {
this.exposureControls = new ExposureControlsImpl(clientObject.getExposureControls(), this);
}
return exposureControls;
}

/** @return Resource collection API of IntegrationRuntimes. */
/**
* Gets the resource collection API of IntegrationRuntimes.
*
* @return Resource collection API of IntegrationRuntimes.
*/
public IntegrationRuntimes integrationRuntimes() {
if (this.integrationRuntimes == null) {
this.integrationRuntimes = new IntegrationRuntimesImpl(clientObject.getIntegrationRuntimes(), this);
}
return integrationRuntimes;
}

/** @return Resource collection API of IntegrationRuntimeObjectMetadatas. */
/**
* Gets the resource collection API of IntegrationRuntimeObjectMetadatas.
*
* @return Resource collection API of IntegrationRuntimeObjectMetadatas.
*/
public IntegrationRuntimeObjectMetadatas integrationRuntimeObjectMetadatas() {
if (this.integrationRuntimeObjectMetadatas == null) {
this.integrationRuntimeObjectMetadatas =
Expand All @@ -380,7 +400,11 @@ public IntegrationRuntimeObjectMetadatas integrationRuntimeObjectMetadatas() {
return integrationRuntimeObjectMetadatas;
}

/** @return Resource collection API of IntegrationRuntimeNodes. */
/**
* Gets the resource collection API of IntegrationRuntimeNodes.
*
* @return Resource collection API of IntegrationRuntimeNodes.
*/
public IntegrationRuntimeNodes integrationRuntimeNodes() {
if (this.integrationRuntimeNodes == null) {
this.integrationRuntimeNodes =
Expand All @@ -389,79 +413,119 @@ public IntegrationRuntimeNodes integrationRuntimeNodes() {
return integrationRuntimeNodes;
}

/** @return Resource collection API of LinkedServices. */
/**
* Gets the resource collection API of LinkedServices.
*
* @return Resource collection API of LinkedServices.
*/
public LinkedServices linkedServices() {
if (this.linkedServices == null) {
this.linkedServices = new LinkedServicesImpl(clientObject.getLinkedServices(), this);
}
return linkedServices;
}

/** @return Resource collection API of Datasets. */
/**
* Gets the resource collection API of Datasets.
*
* @return Resource collection API of Datasets.
*/
public Datasets datasets() {
if (this.datasets == null) {
this.datasets = new DatasetsImpl(clientObject.getDatasets(), this);
}
return datasets;
}

/** @return Resource collection API of Pipelines. */
/**
* Gets the resource collection API of Pipelines.
*
* @return Resource collection API of Pipelines.
*/
public Pipelines pipelines() {
if (this.pipelines == null) {
this.pipelines = new PipelinesImpl(clientObject.getPipelines(), this);
}
return pipelines;
}

/** @return Resource collection API of PipelineRuns. */
/**
* Gets the resource collection API of PipelineRuns.
*
* @return Resource collection API of PipelineRuns.
*/
public PipelineRuns pipelineRuns() {
if (this.pipelineRuns == null) {
this.pipelineRuns = new PipelineRunsImpl(clientObject.getPipelineRuns(), this);
}
return pipelineRuns;
}

/** @return Resource collection API of ActivityRuns. */
/**
* Gets the resource collection API of ActivityRuns.
*
* @return Resource collection API of ActivityRuns.
*/
public ActivityRuns activityRuns() {
if (this.activityRuns == null) {
this.activityRuns = new ActivityRunsImpl(clientObject.getActivityRuns(), this);
}
return activityRuns;
}

/** @return Resource collection API of Triggers. */
/**
* Gets the resource collection API of Triggers.
*
* @return Resource collection API of Triggers.
*/
public Triggers triggers() {
if (this.triggers == null) {
this.triggers = new TriggersImpl(clientObject.getTriggers(), this);
}
return triggers;
}

/** @return Resource collection API of TriggerRuns. */
/**
* Gets the resource collection API of TriggerRuns.
*
* @return Resource collection API of TriggerRuns.
*/
public TriggerRuns triggerRuns() {
if (this.triggerRuns == null) {
this.triggerRuns = new TriggerRunsImpl(clientObject.getTriggerRuns(), this);
}
return triggerRuns;
}

/** @return Resource collection API of DataFlows. */
/**
* Gets the resource collection API of DataFlows.
*
* @return Resource collection API of DataFlows.
*/
public DataFlows dataFlows() {
if (this.dataFlows == null) {
this.dataFlows = new DataFlowsImpl(clientObject.getDataFlows(), this);
}
return dataFlows;
}

/** @return Resource collection API of DataFlowDebugSessions. */
/**
* Gets the resource collection API of DataFlowDebugSessions.
*
* @return Resource collection API of DataFlowDebugSessions.
*/
public DataFlowDebugSessions dataFlowDebugSessions() {
if (this.dataFlowDebugSessions == null) {
this.dataFlowDebugSessions = new DataFlowDebugSessionsImpl(clientObject.getDataFlowDebugSessions(), this);
}
return dataFlowDebugSessions;
}

/** @return Resource collection API of ManagedVirtualNetworks. */
/**
* Gets the resource collection API of ManagedVirtualNetworks.
*
* @return Resource collection API of ManagedVirtualNetworks.
*/
public ManagedVirtualNetworks managedVirtualNetworks() {
if (this.managedVirtualNetworks == null) {
this.managedVirtualNetworks =
Expand All @@ -470,7 +534,11 @@ public ManagedVirtualNetworks managedVirtualNetworks() {
return managedVirtualNetworks;
}

/** @return Resource collection API of ManagedPrivateEndpoints. */
/**
* Gets the resource collection API of ManagedPrivateEndpoints.
*
* @return Resource collection API of ManagedPrivateEndpoints.
*/
public ManagedPrivateEndpoints managedPrivateEndpoints() {
if (this.managedPrivateEndpoints == null) {
this.managedPrivateEndpoints =
Expand All @@ -479,7 +547,11 @@ public ManagedPrivateEndpoints managedPrivateEndpoints() {
return managedPrivateEndpoints;
}

/** @return Resource collection API of PrivateEndPointConnections. */
/**
* Gets the resource collection API of PrivateEndPointConnections.
*
* @return Resource collection API of PrivateEndPointConnections.
*/
public PrivateEndPointConnections privateEndPointConnections() {
if (this.privateEndPointConnections == null) {
this.privateEndPointConnections =
Expand All @@ -488,7 +560,11 @@ public PrivateEndPointConnections privateEndPointConnections() {
return privateEndPointConnections;
}

/** @return Resource collection API of PrivateEndpointConnectionOperations. */
/**
* Gets the resource collection API of PrivateEndpointConnectionOperations.
*
* @return Resource collection API of PrivateEndpointConnectionOperations.
*/
public PrivateEndpointConnectionOperations privateEndpointConnectionOperations() {
if (this.privateEndpointConnectionOperations == null) {
this.privateEndpointConnectionOperations =
Expand All @@ -498,7 +574,11 @@ public PrivateEndpointConnectionOperations privateEndpointConnectionOperations()
return privateEndpointConnectionOperations;
}

/** @return Resource collection API of PrivateLinkResources. */
/**
* Gets the resource collection API of PrivateLinkResources.
*
* @return Resource collection API of PrivateLinkResources.
*/
public PrivateLinkResources privateLinkResources() {
if (this.privateLinkResources == null) {
this.privateLinkResources = new PrivateLinkResourcesImpl(clientObject.getPrivateLinkResources(), this);
Expand Down
Loading