Skip to content

Commit

Permalink
CodeGen from PR 14770 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 41f6db577eb6c0b330bd568bedbf3b256a0f1ac3 into 7548024cd6bc19ac80f01ff0dced37cc2a168fb0
  • Loading branch information
SDKAuto committed Jun 17, 2021
1 parent faf0204 commit d1f4a97
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 98 deletions.
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-17)

- 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

0 comments on commit d1f4a97

Please sign in to comment.