forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
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 16045 in Azure/azure-rest-api-specs
Merge 15c8112ae5bfd31256935536aa6b95a307be4560 into c927d65e7def99dfd80157db5d5a1f5305c7a86b
- Loading branch information
SDKAuto
committed
Sep 23, 2021
1 parent
0a4c37d
commit 3e50344
Showing
61 changed files
with
3,324 additions
and
926 deletions.
There are no files selected for viewing
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
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
209 changes: 209 additions & 0 deletions
209
...bpubsub/src/main/java/com/azure/resourcemanager/webpubsub/fluent/WebPubSubHubsClient.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,209 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.webpubsub.fluent; | ||
|
||
import com.azure.core.annotation.ReturnType; | ||
import com.azure.core.annotation.ServiceMethod; | ||
import com.azure.core.http.rest.PagedIterable; | ||
import com.azure.core.http.rest.Response; | ||
import com.azure.core.management.polling.PollResult; | ||
import com.azure.core.util.Context; | ||
import com.azure.core.util.polling.SyncPoller; | ||
import com.azure.resourcemanager.webpubsub.fluent.models.WebPubSubHubInner; | ||
|
||
/** An instance of this class provides access to all the operations defined in WebPubSubHubsClient. */ | ||
public interface WebPubSubHubsClient { | ||
/** | ||
* List hub settings. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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 hub setting list. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<WebPubSubHubInner> list(String resourceGroupName, String resourceName); | ||
|
||
/** | ||
* List hub settings. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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 hub setting list. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<WebPubSubHubInner> list(String resourceGroupName, String resourceName, Context context); | ||
|
||
/** | ||
* Get a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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 a hub setting. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
WebPubSubHubInner get(String hubName, String resourceGroupName, String resourceName); | ||
|
||
/** | ||
* Get a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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 a hub setting. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<WebPubSubHubInner> getWithResponse( | ||
String hubName, String resourceGroupName, String resourceName, Context context); | ||
|
||
/** | ||
* Create or update a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @param parameters The resource of WebPubSubHub and its properties. | ||
* @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 a hub setting. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
SyncPoller<PollResult<WebPubSubHubInner>, WebPubSubHubInner> beginCreateOrUpdate( | ||
String hubName, String resourceGroupName, String resourceName, WebPubSubHubInner parameters); | ||
|
||
/** | ||
* Create or update a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @param parameters The resource of WebPubSubHub and its properties. | ||
* @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 a hub setting. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
SyncPoller<PollResult<WebPubSubHubInner>, WebPubSubHubInner> beginCreateOrUpdate( | ||
String hubName, String resourceGroupName, String resourceName, WebPubSubHubInner parameters, Context context); | ||
|
||
/** | ||
* Create or update a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @param parameters The resource of WebPubSubHub and its properties. | ||
* @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 a hub setting. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
WebPubSubHubInner createOrUpdate( | ||
String hubName, String resourceGroupName, String resourceName, WebPubSubHubInner parameters); | ||
|
||
/** | ||
* Create or update a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @param parameters The resource of WebPubSubHub and its properties. | ||
* @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 a hub setting. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
WebPubSubHubInner createOrUpdate( | ||
String hubName, String resourceGroupName, String resourceName, WebPubSubHubInner parameters, Context context); | ||
|
||
/** | ||
* Delete a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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 completion. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
SyncPoller<PollResult<Void>, Void> beginDelete(String hubName, String resourceGroupName, String resourceName); | ||
|
||
/** | ||
* Delete a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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 completion. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
SyncPoller<PollResult<Void>, Void> beginDelete( | ||
String hubName, String resourceGroupName, String resourceName, Context context); | ||
|
||
/** | ||
* Delete a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
void delete(String hubName, String resourceGroupName, String resourceName); | ||
|
||
/** | ||
* Delete a hub setting. | ||
* | ||
* @param hubName The hub name. | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value | ||
* from the Azure Resource Manager API or the portal. | ||
* @param resourceName The name of the resource. | ||
* @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. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
void delete(String hubName, String resourceGroupName, String resourceName, Context context); | ||
} |
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
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
Oops, something went wrong.