Skip to content
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-04)

- 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
7 changes: 6 additions & 1 deletion sdk/datafactory/azure-resourcemanager-datafactory/SAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2585,6 +2585,7 @@ public final class PrivateEndPointConnectionsListByFactorySamples {
### PrivateEndpointConnectionOperation_CreateOrUpdate

```java
import com.azure.resourcemanager.datafactory.models.PrivateEndpoint;
import com.azure.resourcemanager.datafactory.models.PrivateLinkConnectionApprovalRequest;
import com.azure.resourcemanager.datafactory.models.PrivateLinkConnectionState;

Expand All @@ -2610,7 +2611,11 @@ public final class PrivateEndpointConnectionOperationCreateOrUpdateSamples {
new PrivateLinkConnectionState()
.withStatus("Approved")
.withDescription("Approved by admin.")
.withActionsRequired("")))
.withActionsRequired(""))
.withPrivateEndpoint(
new PrivateEndpoint()
.withId(
"/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/privateEndpoints/myPrivateEndpoint")))
.create();
}
}
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
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ public static AzureFunctionActivityMethod fromString(String name) {
return fromString(name, AzureFunctionActivityMethod.class);
}

/** @return known AzureFunctionActivityMethod values. */
/**
* Gets known AzureFunctionActivityMethod values.
*
* @return known AzureFunctionActivityMethod values.
*/
public static Collection<AzureFunctionActivityMethod> values() {
return values(AzureFunctionActivityMethod.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ public static AzureSearchIndexWriteBehaviorType fromString(String name) {
return fromString(name, AzureSearchIndexWriteBehaviorType.class);
}

/** @return known AzureSearchIndexWriteBehaviorType values. */
/**
* Gets known AzureSearchIndexWriteBehaviorType values.
*
* @return known AzureSearchIndexWriteBehaviorType values.
*/
public static Collection<AzureSearchIndexWriteBehaviorType> values() {
return values(AzureSearchIndexWriteBehaviorType.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ public static BlobEventTypes fromString(String name) {
return fromString(name, BlobEventTypes.class);
}

/** @return known BlobEventTypes values. */
/**
* Gets known BlobEventTypes values.
*
* @return known BlobEventTypes values.
*/
public static Collection<BlobEventTypes> values() {
return values(BlobEventTypes.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ public static CassandraSourceReadConsistencyLevels fromString(String name) {
return fromString(name, CassandraSourceReadConsistencyLevels.class);
}

/** @return known CassandraSourceReadConsistencyLevels values. */
/**
* Gets known CassandraSourceReadConsistencyLevels values.
*
* @return known CassandraSourceReadConsistencyLevels values.
*/
public static Collection<CassandraSourceReadConsistencyLevels> values() {
return values(CassandraSourceReadConsistencyLevels.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ public static CosmosDbConnectionMode fromString(String name) {
return fromString(name, CosmosDbConnectionMode.class);
}

/** @return known CosmosDbConnectionMode values. */
/**
* Gets known CosmosDbConnectionMode values.
*
* @return known CosmosDbConnectionMode values.
*/
public static Collection<CosmosDbConnectionMode> values() {
return values(CosmosDbConnectionMode.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ public static CosmosDbServicePrincipalCredentialType fromString(String name) {
return fromString(name, CosmosDbServicePrincipalCredentialType.class);
}

/** @return known CosmosDbServicePrincipalCredentialType values. */
/**
* Gets known CosmosDbServicePrincipalCredentialType values.
*
* @return known CosmosDbServicePrincipalCredentialType values.
*/
public static Collection<CosmosDbServicePrincipalCredentialType> values() {
return values(CosmosDbServicePrincipalCredentialType.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ public static CredentialReferenceType fromString(String name) {
return fromString(name, CredentialReferenceType.class);
}

/** @return known CredentialReferenceType values. */
/**
* Gets known CredentialReferenceType values.
*
* @return known CredentialReferenceType values.
*/
public static Collection<CredentialReferenceType> values() {
return values(CredentialReferenceType.class);
}
Expand Down
Loading