Skip to content

Commit cc99109

Browse files
author
SDKAuto
committed
CodeGen from PR 14925 in Azure/azure-rest-api-specs
Merge aad71643df9d147db117277433b65214e094f3e3 into cc8bda00a78706bb1007fa0044dd84d94d4ef3d7
1 parent 0a7005f commit cc99109

File tree

573 files changed

+19696
-58590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

573 files changed

+19696
-58590
lines changed

sdk/datafactory/azure-resourcemanager-datafactory/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Release History
22

3-
## 1.0.0-beta.4 (Unreleased)
3+
## 1.0.0-beta.1 (2021-07-30)
44

5+
- 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).
56

67
## 1.0.0-beta.3 (2021-07-29)
78

sdk/datafactory/azure-resourcemanager-datafactory/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Various documentation is available to help you get started
3232
<dependency>
3333
<groupId>com.azure.resourcemanager</groupId>
3434
<artifactId>azure-resourcemanager-datafactory</artifactId>
35-
<version>1.0.0-beta.3</version>
35+
<version>1.0.0-beta.4</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})
@@ -161,7 +161,6 @@ while ("InProgress".equals(runStatus)) {
161161
runStatus = pipelineRun.status();
162162
}
163163
```
164-
[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/datafactory/azure-resourcemanager-datafactory/SAMPLE.md)
165164

166165

167166
## Troubleshooting

sdk/datafactory/azure-resourcemanager-datafactory/src/main/java/com/azure/resourcemanager/datafactory/DataFactoryManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public DataFactoryManager authenticate(TokenCredential credential, AzureProfile
249249
.append("-")
250250
.append("com.azure.resourcemanager.datafactory")
251251
.append("/")
252-
.append("1.0.0-beta.3");
252+
.append("1.0.0-beta.1");
253253
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
254254
userAgentBuilder
255255
.append(" (")

sdk/datafactory/azure-resourcemanager-datafactory/src/main/java/com/azure/resourcemanager/datafactory/fluent/IntegrationRuntimesClient.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeAuthKeysInner;
1515
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeConnectionInfoInner;
1616
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeMonitoringDataInner;
17+
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner;
1718
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeResourceInner;
1819
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeStatusResponseInner;
1920
import com.azure.resourcemanager.datafactory.models.CreateLinkedIntegrationRuntimeRequest;
@@ -230,6 +231,38 @@ IntegrationRuntimeStatusResponseInner getStatus(
230231
Response<IntegrationRuntimeStatusResponseInner> getStatusWithResponse(
231232
String resourceGroupName, String factoryName, String integrationRuntimeName, Context context);
232233

234+
/**
235+
* Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
236+
*
237+
* @param resourceGroupName The resource group name.
238+
* @param factoryName The factory name.
239+
* @param integrationRuntimeName The integration runtime name.
240+
* @throws IllegalArgumentException thrown if parameters fail the validation.
241+
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
242+
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
243+
* @return the list of outbound network dependencies for a given Azure-SSIS integration runtime.
244+
*/
245+
@ServiceMethod(returns = ReturnType.SINGLE)
246+
IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner listOutboundNetworkDependenciesEndpoints(
247+
String resourceGroupName, String factoryName, String integrationRuntimeName);
248+
249+
/**
250+
* Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
251+
*
252+
* @param resourceGroupName The resource group name.
253+
* @param factoryName The factory name.
254+
* @param integrationRuntimeName The integration runtime name.
255+
* @param context The context to associate with this operation.
256+
* @throws IllegalArgumentException thrown if parameters fail the validation.
257+
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
258+
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
259+
* @return the list of outbound network dependencies for a given Azure-SSIS integration runtime.
260+
*/
261+
@ServiceMethod(returns = ReturnType.SINGLE)
262+
Response<IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner>
263+
listOutboundNetworkDependenciesEndpointsWithResponse(
264+
String resourceGroupName, String factoryName, String integrationRuntimeName, Context context);
265+
233266
/**
234267
* Gets the on-premises integration runtime connection information for encrypting the on-premises data source
235268
* credentials.

0 commit comments

Comments
 (0)