Skip to content
Draft
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.9 (Unreleased)
## 1.0.0-beta.1 (2021-11-30)

- 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.8</version>
<version>1.0.0-beta.9</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile
.append("-")
.append("com.azure.resourcemanager.datafactory")
.append("/")
.append("1.0.0-beta.8");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@
import com.azure.resourcemanager.datafactory.models.ExecuteDataFlowActivityTypePropertiesCompute;
import com.azure.resourcemanager.datafactory.models.IntegrationRuntimeReference;
import com.azure.resourcemanager.datafactory.models.PowerQuerySink;
import com.azure.resourcemanager.datafactory.models.PowerQuerySinkMapping;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;

/** Execute power query data flow activity properties. */
Expand All @@ -24,22 +22,14 @@ public final class ExecutePowerQueryActivityTypeProperties extends ExecuteDataFl
@JsonIgnore private final ClientLogger logger = new ClientLogger(ExecutePowerQueryActivityTypeProperties.class);

/*
* (Deprecated. Please use Queries). List of Power Query activity sinks
* mapped to a queryName.
* List of Power Query activity sinks mapped to a queryName.
*/
@JsonProperty(value = "sinks")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map<String, PowerQuerySink> sinks;

/*
* List of mapping for Power Query mashup query to sink dataset(s).
*/
@JsonProperty(value = "queries")
private List<PowerQuerySinkMapping> queries;

/**
* Get the sinks property: (Deprecated. Please use Queries). List of Power Query activity sinks mapped to a
* queryName.
* Get the sinks property: List of Power Query activity sinks mapped to a queryName.
*
* @return the sinks value.
*/
Expand All @@ -48,8 +38,7 @@ public Map<String, PowerQuerySink> sinks() {
}

/**
* Set the sinks property: (Deprecated. Please use Queries). List of Power Query activity sinks mapped to a
* queryName.
* Set the sinks property: List of Power Query activity sinks mapped to a queryName.
*
* @param sinks the sinks value to set.
* @return the ExecutePowerQueryActivityTypeProperties object itself.
Expand All @@ -59,26 +48,6 @@ public ExecutePowerQueryActivityTypeProperties withSinks(Map<String, PowerQueryS
return this;
}

/**
* Get the queries property: List of mapping for Power Query mashup query to sink dataset(s).
*
* @return the queries value.
*/
public List<PowerQuerySinkMapping> queries() {
return this.queries;
}

/**
* Set the queries property: List of mapping for Power Query mashup query to sink dataset(s).
*
* @param queries the queries value to set.
* @return the ExecutePowerQueryActivityTypeProperties object itself.
*/
public ExecutePowerQueryActivityTypeProperties withQueries(List<PowerQuerySinkMapping> queries) {
this.queries = queries;
return this;
}

/** {@inheritDoc} */
@Override
public ExecutePowerQueryActivityTypeProperties withDataFlow(DataFlowReference dataFlow) {
Expand Down Expand Up @@ -147,8 +116,5 @@ public void validate() {
}
});
}
if (queries() != null) {
queries().forEach(e -> e.validate());
}
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ public final class MappingDataFlowTypeProperties {
@JsonProperty(value = "script")
private String script;

/*
* Data flow script lines.
*/
@JsonProperty(value = "scriptLines")
private List<String> scriptLines;

/**
* Get the sources property: List of sources in data flow.
*
Expand Down Expand Up @@ -128,26 +122,6 @@ public MappingDataFlowTypeProperties withScript(String script) {
return this;
}

/**
* Get the scriptLines property: Data flow script lines.
*
* @return the scriptLines value.
*/
public List<String> scriptLines() {
return this.scriptLines;
}

/**
* Set the scriptLines property: Data flow script lines.
*
* @param scriptLines the scriptLines value to set.
* @return the MappingDataFlowTypeProperties object itself.
*/
public MappingDataFlowTypeProperties withScriptLines(List<String> scriptLines) {
this.scriptLines = scriptLines;
return this;
}

/**
* Validates the instance.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ public final class PipelineRunInner {
private Integer durationInMs;

/*
* The status of a pipeline run. Possible values: Queued, InProgress,
* Succeeded, Failed, Canceling, Cancelled
* The status of a pipeline run.
*/
@JsonProperty(value = "status", access = JsonProperty.Access.WRITE_ONLY)
private String status;
Expand Down Expand Up @@ -208,8 +207,7 @@ public Integer durationInMs() {
}

/**
* Get the status property: The status of a pipeline run. Possible values: Queued, InProgress, Succeeded, Failed,
* Canceling, Cancelled.
* Get the status property: The status of a pipeline run.
*
* @return the status value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ public final class PowerQueryTypeProperties {
@JsonProperty(value = "script")
private String script;

/*
* Locale of the Power query mashup document.
*/
@JsonProperty(value = "documentLocale")
private String documentLocale;

/**
* Get the sources property: List of sources in Power Query.
*
Expand Down Expand Up @@ -74,26 +68,6 @@ public PowerQueryTypeProperties withScript(String script) {
return this;
}

/**
* Get the documentLocale property: Locale of the Power query mashup document.
*
* @return the documentLocale value.
*/
public String documentLocale() {
return this.documentLocale;
}

/**
* Set the documentLocale property: Locale of the Power query mashup document.
*
* @param documentLocale the documentLocale value to set.
* @return the PowerQueryTypeProperties object itself.
*/
public PowerQueryTypeProperties withDocumentLocale(String documentLocale) {
this.documentLocale = documentLocale;
return this;
}

/**
* Validates the instance.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
@JsonTypeName("DataFlow")
@JsonSubTypes({
@JsonSubTypes.Type(name = "MappingDataFlow", value = MappingDataFlow.class),
@JsonSubTypes.Type(name = "Flowlet", value = Flowlet.class),
@JsonSubTypes.Type(name = "WranglingDataFlow", value = WranglingDataFlow.class)
})
@Fluent
Expand Down
Loading