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.
mgmt, local generation for Compute GalleryRP 2024-03-03 (Azure#43238)
* Code Generation * Change log * Record session
- Loading branch information
Showing
217 changed files
with
11,086 additions
and
921 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
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
613 changes: 613 additions & 0 deletions
613
...m/azure/resourcemanager/compute/fluent/GalleryInVMAccessControlProfileVersionsClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
530 changes: 530 additions & 0 deletions
530
...java/com/azure/resourcemanager/compute/fluent/GalleryInVMAccessControlProfilesClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
72 changes: 72 additions & 0 deletions
72
...te/src/main/java/com/azure/resourcemanager/compute/fluent/SoftDeletedResourcesClient.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,72 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.compute.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.util.Context; | ||
import com.azure.resourcemanager.compute.fluent.models.GallerySoftDeletedResourceInner; | ||
|
||
/** | ||
* An instance of this class provides access to all the operations defined in SoftDeletedResourcesClient. | ||
*/ | ||
public interface SoftDeletedResourcesClient { | ||
/** | ||
* List soft-deleted resources of an artifact in the gallery, such as soft-deleted gallery image version of an | ||
* image. | ||
* | ||
* @param resourceGroupName The name of the resource group. | ||
* @param galleryName The name of the Gallery in which the soft-deleted resources resides. | ||
* @param artifactType The type of the artifact to be listed, such as gallery image version. | ||
* @param artifactName The artifact name to be listed. If artifact type is Images, then the artifact name should be | ||
* the gallery image name. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return the List Soft-deleted Resources operation response as paginated response with {@link PagedFlux}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedFlux<GallerySoftDeletedResourceInner> listByArtifactNameAsync(String resourceGroupName, String galleryName, | ||
String artifactType, String artifactName); | ||
|
||
/** | ||
* List soft-deleted resources of an artifact in the gallery, such as soft-deleted gallery image version of an | ||
* image. | ||
* | ||
* @param resourceGroupName The name of the resource group. | ||
* @param galleryName The name of the Gallery in which the soft-deleted resources resides. | ||
* @param artifactType The type of the artifact to be listed, such as gallery image version. | ||
* @param artifactName The artifact name to be listed. If artifact type is Images, then the artifact name should be | ||
* the gallery image name. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return the List Soft-deleted Resources operation response as paginated response with {@link PagedIterable}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<GallerySoftDeletedResourceInner> listByArtifactName(String resourceGroupName, String galleryName, | ||
String artifactType, String artifactName); | ||
|
||
/** | ||
* List soft-deleted resources of an artifact in the gallery, such as soft-deleted gallery image version of an | ||
* image. | ||
* | ||
* @param resourceGroupName The name of the resource group. | ||
* @param galleryName The name of the Gallery in which the soft-deleted resources resides. | ||
* @param artifactType The type of the artifact to be listed, such as gallery image version. | ||
* @param artifactName The artifact name to be listed. If artifact type is Images, then the artifact name should be | ||
* the gallery image name. | ||
* @param context The context to associate with this operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return the List Soft-deleted Resources operation response as paginated response with {@link PagedIterable}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<GallerySoftDeletedResourceInner> listByArtifactName(String resourceGroupName, String galleryName, | ||
String artifactType, String artifactName, 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
Oops, something went wrong.