forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 12
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 33070 in Azure/azure-rest-api-specs
Merge be27c36f60d2bfff80a91c682f8817362239e482 into 8a0168458930c86636a76bcd7acfdc9c81291bfc
- Loading branch information
SDKAuto
committed
Mar 7, 2025
1 parent
96000b0
commit 06006b5
Showing
491 changed files
with
30,546 additions
and
21,577 deletions.
There are no files selected for viewing
923 changes: 919 additions & 4 deletions
923
sdk/desktopvirtualization/azure-resourcemanager-desktopvirtualization/CHANGELOG.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
1,365 changes: 1,021 additions & 344 deletions
1,365
sdk/desktopvirtualization/azure-resourcemanager-desktopvirtualization/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
338 changes: 224 additions & 114 deletions
338
...in/java/com/azure/resourcemanager/desktopvirtualization/DesktopVirtualizationManager.java
Large diffs are not rendered by default.
Oops, something went wrong.
115 changes: 115 additions & 0 deletions
115
...e/resourcemanager/desktopvirtualization/fluent/ActiveSessionHostConfigurationsClient.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,115 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.desktopvirtualization.fluent; | ||
|
||
import com.azure.core.annotation.ReturnType; | ||
import com.azure.core.annotation.ServiceMethod; | ||
import com.azure.core.http.rest.PagedFlux; | ||
import com.azure.core.http.rest.PagedIterable; | ||
import com.azure.core.http.rest.Response; | ||
import com.azure.core.util.Context; | ||
import com.azure.resourcemanager.desktopvirtualization.fluent.models.ActiveSessionHostConfigurationInner; | ||
import reactor.core.publisher.Mono; | ||
|
||
/** | ||
* An instance of this class provides access to all the operations defined in ActiveSessionHostConfigurationsClient. | ||
*/ | ||
public interface ActiveSessionHostConfigurationsClient { | ||
/** | ||
* Operation to list the ActiveSessionHostConfigurations associated with the HostPool. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 list of ActiveSessionHostConfiguration definitions as paginated response with {@link PagedFlux}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedFlux<ActiveSessionHostConfigurationInner> listByHostPoolAsync(String resourceGroupName, String hostPoolName); | ||
|
||
/** | ||
* Operation to list the ActiveSessionHostConfigurations associated with the HostPool. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 list of ActiveSessionHostConfiguration definitions as paginated response with {@link PagedIterable}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<ActiveSessionHostConfigurationInner> listByHostPool(String resourceGroupName, String hostPoolName); | ||
|
||
/** | ||
* Operation to list the ActiveSessionHostConfigurations associated with the HostPool. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 list of ActiveSessionHostConfiguration definitions as paginated response with {@link PagedIterable}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<ActiveSessionHostConfigurationInner> listByHostPool(String resourceGroupName, String hostPoolName, | ||
Context context); | ||
|
||
/** | ||
* Get a ActiveSessionHostConfiguration. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 ActiveSessionHostConfiguration along with {@link Response} on successful completion of {@link Mono}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Mono<Response<ActiveSessionHostConfigurationInner>> getWithResponseAsync(String resourceGroupName, | ||
String hostPoolName); | ||
|
||
/** | ||
* Get a ActiveSessionHostConfiguration. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 ActiveSessionHostConfiguration on successful completion of {@link Mono}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Mono<ActiveSessionHostConfigurationInner> getAsync(String resourceGroupName, String hostPoolName); | ||
|
||
/** | ||
* Get a ActiveSessionHostConfiguration. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 ActiveSessionHostConfiguration along with {@link Response}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<ActiveSessionHostConfigurationInner> getWithResponse(String resourceGroupName, String hostPoolName, | ||
Context context); | ||
|
||
/** | ||
* Get a ActiveSessionHostConfiguration. | ||
* | ||
* @param resourceGroupName The name of the resource group. The name is case insensitive. | ||
* @param hostPoolName The name of the host pool within the specified resource group. | ||
* @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 ActiveSessionHostConfiguration. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
ActiveSessionHostConfigurationInner get(String resourceGroupName, String hostPoolName); | ||
} |
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.