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.
Generated from d3a567f248d5198e467d24f91a44c1390caa52b3
- Loading branch information
SDK Automation
committed
Oct 21, 2020
1 parent
5788f10
commit 104125f
Showing
51 changed files
with
9,305 additions
and
28 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
352 changes: 352 additions & 0 deletions
352
...2020_03_20/src/main/java/com/microsoft/azure/management/avs/v20200320/Authorizations.java
Large diffs are not rendered by default.
Oops, something went wrong.
141 changes: 141 additions & 0 deletions
141
...gmt-v2020_03_20/src/main/java/com/microsoft/azure/management/avs/v20200320/AvsClient.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,141 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.avs.v2020_03_20; | ||
|
||
import com.microsoft.azure.AzureClient; | ||
import com.microsoft.rest.RestClient; | ||
|
||
/** | ||
* The interface for AvsClient class. | ||
*/ | ||
public interface AvsClient { | ||
/** | ||
* Gets the REST client. | ||
* | ||
* @return the {@link RestClient} object. | ||
*/ | ||
RestClient restClient(); | ||
|
||
/** | ||
* Gets the {@link AzureClient} used for long running operations. | ||
* @return the azure client; | ||
*/ | ||
AzureClient getAzureClient(); | ||
|
||
/** | ||
* Gets the User-Agent header for the client. | ||
* | ||
* @return the user agent string. | ||
*/ | ||
String userAgent(); | ||
|
||
/** | ||
* Gets The API version to use for this operation.. | ||
* | ||
* @return the apiVersion value. | ||
*/ | ||
String apiVersion(); | ||
|
||
/** | ||
* Gets The ID of the target subscription.. | ||
* | ||
* @return the subscriptionId value. | ||
*/ | ||
String subscriptionId(); | ||
|
||
/** | ||
* Sets The ID of the target subscription.. | ||
* | ||
* @param subscriptionId the subscriptionId value. | ||
* @return the service client itself | ||
*/ | ||
AvsClient withSubscriptionId(String subscriptionId); | ||
|
||
/** | ||
* Gets The preferred language for the response.. | ||
* | ||
* @return the acceptLanguage value. | ||
*/ | ||
String acceptLanguage(); | ||
|
||
/** | ||
* Sets The preferred language for the response.. | ||
* | ||
* @param acceptLanguage the acceptLanguage value. | ||
* @return the service client itself | ||
*/ | ||
AvsClient withAcceptLanguage(String acceptLanguage); | ||
|
||
/** | ||
* Gets The retry timeout in seconds for Long Running Operations. Default value is 30.. | ||
* | ||
* @return the longRunningOperationRetryTimeout value. | ||
*/ | ||
int longRunningOperationRetryTimeout(); | ||
|
||
/** | ||
* Sets The retry timeout in seconds for Long Running Operations. Default value is 30.. | ||
* | ||
* @param longRunningOperationRetryTimeout the longRunningOperationRetryTimeout value. | ||
* @return the service client itself | ||
*/ | ||
AvsClient withLongRunningOperationRetryTimeout(int longRunningOperationRetryTimeout); | ||
|
||
/** | ||
* Gets Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.. | ||
* | ||
* @return the generateClientRequestId value. | ||
*/ | ||
boolean generateClientRequestId(); | ||
|
||
/** | ||
* Sets Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.. | ||
* | ||
* @param generateClientRequestId the generateClientRequestId value. | ||
* @return the service client itself | ||
*/ | ||
AvsClient withGenerateClientRequestId(boolean generateClientRequestId); | ||
|
||
/** | ||
* Gets the Operations object to access its operations. | ||
* @return the Operations object. | ||
*/ | ||
Operations operations(); | ||
|
||
/** | ||
* Gets the Locations object to access its operations. | ||
* @return the Locations object. | ||
*/ | ||
Locations locations(); | ||
|
||
/** | ||
* Gets the PrivateClouds object to access its operations. | ||
* @return the PrivateClouds object. | ||
*/ | ||
PrivateClouds privateClouds(); | ||
|
||
/** | ||
* Gets the Clusters object to access its operations. | ||
* @return the Clusters object. | ||
*/ | ||
Clusters clusters(); | ||
|
||
/** | ||
* Gets the HcxEnterpriseSites object to access its operations. | ||
* @return the HcxEnterpriseSites object. | ||
*/ | ||
HcxEnterpriseSites hcxEnterpriseSites(); | ||
|
||
/** | ||
* Gets the Authorizations object to access its operations. | ||
* @return the Authorizations object. | ||
*/ | ||
Authorizations authorizations(); | ||
|
||
} |
Oops, something went wrong.