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 070a915cf3f235b6f3dbce16f91a6d4b4e23f229
- Loading branch information
SDK Automation
committed
Sep 24, 2020
1 parent
e1dc876
commit 87dbea6
Showing
19 changed files
with
2,833 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,19 +7,13 @@ | |
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.microsoft.azure.keyvault.v2015_06_01</groupId> | ||
<parent> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-arm-parent</artifactId> | ||
<version>1.2.0</version> | ||
<relativePath>../../parents/azure-arm-parent</relativePath> | ||
</parent> | ||
<artifactId>azure-mgmt-keyvault</artifactId> | ||
<version>1.0.0-beta</version> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-keyvault</artifactId> | ||
<version>1.7.1-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<name>Microsoft Azure SDK for KeyVault Management</name> | ||
<description>This package contains Microsoft KeyVault Management SDK.</description> | ||
<url>https://github.com/Azure/azure-libraries-for-java</url> | ||
<name>Microsoft Azure SDK for KeyVault</name> | ||
<description>This package contains Microsoft KeyVault SDK.</description> | ||
<url>https://github.com/Azure/azure-sdk-for-java</url> | ||
<licenses> | ||
<license> | ||
<name>The MIT License (MIT)</name> | ||
|
@@ -28,8 +22,8 @@ | |
</license> | ||
</licenses> | ||
<scm> | ||
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url> | ||
<connection>scm:git:[email protected]:Azure/azure-libraries-for-java.git</connection> | ||
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url> | ||
<connection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</connection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<properties> | ||
|
@@ -46,30 +40,18 @@ | |
<dependency> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-client-runtime</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-arm-client-runtime</artifactId> | ||
<version>1.5.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-client-authentication</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-mgmt-resources</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.microsoft.azure</groupId> | ||
<artifactId>azure-arm-client-runtime</artifactId> | ||
<type>test-jar</type> | ||
<version>1.5.3</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
111 changes: 111 additions & 0 deletions
111
...main/java/com/microsoft/azure/management/keyvault/v20150601/KeyVaultManagementClient.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,111 @@ | ||
/** | ||
* 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.keyvault.v2015_06_01; | ||
|
||
import com.microsoft.azure.AzureClient; | ||
import com.microsoft.rest.RestClient; | ||
|
||
/** | ||
* The interface for KeyVaultManagementClient class. | ||
*/ | ||
public interface KeyVaultManagementClient { | ||
/** | ||
* 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 Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.. | ||
* | ||
* @return the subscriptionId value. | ||
*/ | ||
String subscriptionId(); | ||
|
||
/** | ||
* Sets Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.. | ||
* | ||
* @param subscriptionId the subscriptionId value. | ||
* @return the service client itself | ||
*/ | ||
KeyVaultManagementClient withSubscriptionId(String subscriptionId); | ||
|
||
/** | ||
* Gets Client Api Version.. | ||
* | ||
* @return the apiVersion value. | ||
*/ | ||
String apiVersion(); | ||
|
||
/** | ||
* 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 | ||
*/ | ||
KeyVaultManagementClient 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 | ||
*/ | ||
KeyVaultManagementClient 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 | ||
*/ | ||
KeyVaultManagementClient withGenerateClientRequestId(boolean generateClientRequestId); | ||
|
||
/** | ||
* Gets the Vaults object to access its operations. | ||
* @return the Vaults object. | ||
*/ | ||
Vaults vaults(); | ||
|
||
} |
Oops, something went wrong.