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 d6fce644f458aac2cbca9f4738b03fddba126e38 into 7a2aa128581acaf122fcd2bda013f89aa1ecd916
- Loading branch information
SDKAuto
committed
Aug 18, 2022
1 parent
0bc434d
commit a5e889e
Showing
150 changed files
with
5,734 additions
and
363 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
286 changes: 239 additions & 47 deletions
286
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.