forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 19948 in Azure/azure-rest-api-specs
Merge bf9e2c9820f17adae7f07b9a10a9ca7c6e7a9ca1 into fdd4e5c9b9225698c7f26c75c4b26be5c57e60f8
- Loading branch information
SDKAuto
committed
Oct 25, 2022
1 parent
9b365d0
commit 2e51a75
Showing
231 changed files
with
6,297 additions
and
772 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
sdk/healthcareapis/azure-resourcemanager-healthcareapis/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
259 changes: 212 additions & 47 deletions
259
sdk/healthcareapis/azure-resourcemanager-healthcareapis/SAMPLE.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
...a/com/azure/resourcemanager/healthcareapis/fluent/AnalyticsConnectorOperationsClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.healthcareapis.fluent; | ||
|
||
import com.azure.core.annotation.ReturnType; | ||
import com.azure.core.annotation.ServiceMethod; | ||
import com.azure.core.management.polling.PollResult; | ||
import com.azure.core.util.Context; | ||
import com.azure.core.util.polling.SyncPoller; | ||
import com.azure.resourcemanager.healthcareapis.fluent.models.AnalyticsConnectorInner; | ||
import com.azure.resourcemanager.healthcareapis.models.AnalyticsConnectorPatchResource; | ||
|
||
/** An instance of this class provides access to all the operations defined in AnalyticsConnectorOperationsClient. */ | ||
public interface AnalyticsConnectorOperationsClient { | ||
/** | ||
* Patch Analytics Connector Service details. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the service instance. | ||
* @param workspaceName The name of workspace resource. | ||
* @param analyticsConnectorName The name of Analytics Connector resource. | ||
* @param analyticsConnectorPatchResource The parameters for updating a Analytics Connector. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return the {@link SyncPoller} for polling of analytics Connector definition. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) | ||
SyncPoller<PollResult<AnalyticsConnectorInner>, AnalyticsConnectorInner> beginUpdate( | ||
String resourceGroupName, | ||
String workspaceName, | ||
String analyticsConnectorName, | ||
AnalyticsConnectorPatchResource analyticsConnectorPatchResource); | ||
|
||
/** | ||
* Patch Analytics Connector Service details. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the service instance. | ||
* @param workspaceName The name of workspace resource. | ||
* @param analyticsConnectorName The name of Analytics Connector resource. | ||
* @param analyticsConnectorPatchResource The parameters for updating a Analytics Connector. | ||
* @param context The context to associate with this operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return the {@link SyncPoller} for polling of analytics Connector definition. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) | ||
SyncPoller<PollResult<AnalyticsConnectorInner>, AnalyticsConnectorInner> beginUpdate( | ||
String resourceGroupName, | ||
String workspaceName, | ||
String analyticsConnectorName, | ||
AnalyticsConnectorPatchResource analyticsConnectorPatchResource, | ||
Context context); | ||
|
||
/** | ||
* Patch Analytics Connector Service details. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the service instance. | ||
* @param workspaceName The name of workspace resource. | ||
* @param analyticsConnectorName The name of Analytics Connector resource. | ||
* @param analyticsConnectorPatchResource The parameters for updating a Analytics Connector. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return analytics Connector definition. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
AnalyticsConnectorInner update( | ||
String resourceGroupName, | ||
String workspaceName, | ||
String analyticsConnectorName, | ||
AnalyticsConnectorPatchResource analyticsConnectorPatchResource); | ||
|
||
/** | ||
* Patch Analytics Connector Service details. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the service instance. | ||
* @param workspaceName The name of workspace resource. | ||
* @param analyticsConnectorName The name of Analytics Connector resource. | ||
* @param analyticsConnectorPatchResource The parameters for updating a Analytics Connector. | ||
* @param context The context to associate with this operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return analytics Connector definition. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
AnalyticsConnectorInner update( | ||
String resourceGroupName, | ||
String workspaceName, | ||
String analyticsConnectorName, | ||
AnalyticsConnectorPatchResource analyticsConnectorPatchResource, | ||
Context context); | ||
} |
Oops, something went wrong.