Skip to content

[AutoPR azure-resourcemanager-datafactory] [suppression test] data factory #9952

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

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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.27 (Unreleased)
## 1.0.0-beta.1 (2024-03-22)

- 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.26</version>
<version>1.0.0-beta.27</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
1,072 changes: 771 additions & 301 deletions sdk/datafactory/azure-resourcemanager-datafactory/SAMPLE.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import com.azure.resourcemanager.datafactory.implementation.LinkedServicesImpl;
import com.azure.resourcemanager.datafactory.implementation.ManagedPrivateEndpointsImpl;
import com.azure.resourcemanager.datafactory.implementation.ManagedVirtualNetworksImpl;
import com.azure.resourcemanager.datafactory.implementation.OperationsImpl;
import com.azure.resourcemanager.datafactory.implementation.PipelineRunsImpl;
import com.azure.resourcemanager.datafactory.implementation.PipelinesImpl;
import com.azure.resourcemanager.datafactory.implementation.PrivateEndPointConnectionsImpl;
Expand All @@ -63,7 +62,6 @@
import com.azure.resourcemanager.datafactory.models.LinkedServices;
import com.azure.resourcemanager.datafactory.models.ManagedPrivateEndpoints;
import com.azure.resourcemanager.datafactory.models.ManagedVirtualNetworks;
import com.azure.resourcemanager.datafactory.models.Operations;
import com.azure.resourcemanager.datafactory.models.PipelineRuns;
import com.azure.resourcemanager.datafactory.models.Pipelines;
import com.azure.resourcemanager.datafactory.models.PrivateEndPointConnections;
Expand All @@ -84,8 +82,6 @@
* V2 services.
*/
public final class DataFactoryManager {
private Operations operations;

private Factories factories;

private ExposureControls exposureControls;
Expand Down Expand Up @@ -289,7 +285,7 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile

StringBuilder userAgentBuilder = new StringBuilder();
userAgentBuilder.append("azsdk-java").append("-").append("com.azure.resourcemanager.datafactory")
.append("/").append("1.0.0-beta.26");
.append("/").append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder.append(" (").append(Configuration.getGlobalConfiguration().get("java.version"))
.append("; ").append(Configuration.getGlobalConfiguration().get("os.name")).append("; ")
Expand Down Expand Up @@ -328,18 +324,6 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile
}
}

/**
* 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;
}

/**
* Gets the resource collection API of Factories. It manages Factory.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,6 @@ public interface DataFactoryManagementClient {
*/
Duration getDefaultPollInterval();

/**
* Gets the OperationsClient object to access its operations.
*
* @return the OperationsClient object.
*/
OperationsClient getOperations();

/**
* Gets the FactoriesClient object to access its operations.
*
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.datafactory.fluent.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Google BigQuery Dataset Properties.
*/
@Fluent
public final class GoogleBigQueryV2DatasetTypeProperties {
/*
* The table name of the Google BigQuery. Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "table")
private Object table;

/*
* The database name of the Google BigQuery. Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "dataset")
private Object dataset;

/**
* Creates an instance of GoogleBigQueryV2DatasetTypeProperties class.
*/
public GoogleBigQueryV2DatasetTypeProperties() {
}

/**
* Get the table property: The table name of the Google BigQuery. Type: string (or Expression with resultType
* string).
*
* @return the table value.
*/
public Object table() {
return this.table;
}

/**
* Set the table property: The table name of the Google BigQuery. Type: string (or Expression with resultType
* string).
*
* @param table the table value to set.
* @return the GoogleBigQueryV2DatasetTypeProperties object itself.
*/
public GoogleBigQueryV2DatasetTypeProperties withTable(Object table) {
this.table = table;
return this;
}

/**
* Get the dataset property: The database name of the Google BigQuery. Type: string (or Expression with resultType
* string).
*
* @return the dataset value.
*/
public Object dataset() {
return this.dataset;
}

/**
* Set the dataset property: The database name of the Google BigQuery. Type: string (or Expression with resultType
* string).
*
* @param dataset the dataset value to set.
* @return the GoogleBigQueryV2DatasetTypeProperties object itself.
*/
public GoogleBigQueryV2DatasetTypeProperties withDataset(Object dataset) {
this.dataset = dataset;
return this;
}

/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
Loading