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 15850 in Azure/azure-rest-api-specs
Merge 92d4fb03b8c76f4769cf89c488f6d9ac22248f4e into a2ff0f70f7f9de671145d948524d9bd806536cdf
- Loading branch information
SDKAuto
committed
Sep 9, 2021
1 parent
9e25920
commit e7a2cd7
Showing
104 changed files
with
2,277 additions
and
4,586 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
67 changes: 67 additions & 0 deletions
67
...rc/main/java/com/azure/resourcemanager/netapp/fluent/NetAppResourceQuotaLimitsClient.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,67 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.netapp.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.util.Context; | ||
import com.azure.resourcemanager.netapp.fluent.models.SubscriptionQuotaItemInner; | ||
|
||
/** An instance of this class provides access to all the operations defined in NetAppResourceQuotaLimitsClient. */ | ||
public interface NetAppResourceQuotaLimitsClient { | ||
/** | ||
* Get the default and current limits for quotas. | ||
* | ||
* @param location The location. | ||
* @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 default and current limits for quotas. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<SubscriptionQuotaItemInner> list(String location); | ||
|
||
/** | ||
* Get the default and current limits for quotas. | ||
* | ||
* @param location The location. | ||
* @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 default and current limits for quotas. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.COLLECTION) | ||
PagedIterable<SubscriptionQuotaItemInner> list(String location, Context context); | ||
|
||
/** | ||
* Get the default and current subscription quota limit. | ||
* | ||
* @param location The location. | ||
* @param quotaLimitName The name of the Quota Limit. | ||
* @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 default and current subscription quota limit. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
SubscriptionQuotaItemInner get(String location, String quotaLimitName); | ||
|
||
/** | ||
* Get the default and current subscription quota limit. | ||
* | ||
* @param location The location. | ||
* @param quotaLimitName The name of the Quota Limit. | ||
* @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 default and current subscription quota limit. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<SubscriptionQuotaItemInner> getWithResponse(String location, String quotaLimitName, Context context); | ||
} |
100 changes: 0 additions & 100 deletions
100
...etapp/src/main/java/com/azure/resourcemanager/netapp/fluent/models/AccountProperties.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.