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] [DataFacory]Update avroCompressionCodec and orcCompressionCodec from string to object #8788

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,7 +1,8 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.1 (2021-06-18)

- 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).

## 1.0.0-beta.2 (2021-06-16)

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.2</version>
<version>1.0.0-beta.3</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile
.append("-")
.append("com.azure.resourcemanager.datafactory")
.append("/")
.append("1.0.0-beta.2");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ public class AvroDataset extends Dataset {
private DatasetLocation location;

/*
* The avroCompressionCodec property.
* The data avroCompressionCodec. Type: string (or Expression with
* resultType string).
*/
@JsonProperty(value = "typeProperties.avroCompressionCodec")
private AvroCompressionCodec avroCompressionCodec;
private Object avroCompressionCodec;

/*
* The avroCompressionLevel property.
Expand Down Expand Up @@ -61,21 +62,23 @@ public AvroDataset withLocation(DatasetLocation location) {
}

/**
* Get the avroCompressionCodec property: The avroCompressionCodec property.
* Get the avroCompressionCodec property: The data avroCompressionCodec. Type: string (or Expression with resultType
* string).
*
* @return the avroCompressionCodec value.
*/
public AvroCompressionCodec avroCompressionCodec() {
public Object avroCompressionCodec() {
return this.avroCompressionCodec;
}

/**
* Set the avroCompressionCodec property: The avroCompressionCodec property.
* Set the avroCompressionCodec property: The data avroCompressionCodec. Type: string (or Expression with resultType
* string).
*
* @param avroCompressionCodec the avroCompressionCodec value to set.
* @return the AvroDataset object itself.
*/
public AvroDataset withAvroCompressionCodec(AvroCompressionCodec avroCompressionCodec) {
public AvroDataset withAvroCompressionCodec(Object avroCompressionCodec) {
this.avroCompressionCodec = avroCompressionCodec;
return this;
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ public class OrcDataset extends Dataset {
private DatasetLocation location;

/*
* The orcCompressionCodec property.
* The data orcCompressionCodec. Type: string (or Expression with
* resultType string).
*/
@JsonProperty(value = "typeProperties.orcCompressionCodec")
private OrcCompressionCodec orcCompressionCodec;
private Object orcCompressionCodec;

/**
* Get the location property: The location of the ORC data storage.
Expand All @@ -55,21 +56,23 @@ public OrcDataset withLocation(DatasetLocation location) {
}

/**
* Get the orcCompressionCodec property: The orcCompressionCodec property.
* Get the orcCompressionCodec property: The data orcCompressionCodec. Type: string (or Expression with resultType
* string).
*
* @return the orcCompressionCodec value.
*/
public OrcCompressionCodec orcCompressionCodec() {
public Object orcCompressionCodec() {
return this.orcCompressionCodec;
}

/**
* Set the orcCompressionCodec property: The orcCompressionCodec property.
* Set the orcCompressionCodec property: The data orcCompressionCodec. Type: string (or Expression with resultType
* string).
*
* @param orcCompressionCodec the orcCompressionCodec value to set.
* @return the OrcDataset object itself.
*/
public OrcDataset withOrcCompressionCodec(OrcCompressionCodec orcCompressionCodec) {
public OrcDataset withOrcCompressionCodec(Object orcCompressionCodec) {
this.orcCompressionCodec = orcCompressionCodec;
return this;
}
Expand Down