Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR mgmt-v2015_06_01] Update keyvault.json #17635

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions sdk/keyvault/mgmt-v2015_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.2.0</version>
<relativePath>../../parents/azure-arm-parent</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-keyvault</artifactId>
<version>1.0.0-beta</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>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,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>
Expand Down Expand Up @@ -71,6 +71,8 @@
<artifactId>azure-arm-client-runtime</artifactId>
<type>test-jar</type>
<scope>test</scope>
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
<version>1.6.5</version>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class AccessPolicyEntry {
private Permissions permissions;

/**
* Get the tenantId value.
* Get the Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.
*
* @return the tenantId value
*/
Expand All @@ -53,7 +53,7 @@ public UUID tenantId() {
}

/**
* Set the tenantId value.
* Set the Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.
*
* @param tenantId the tenantId value to set
* @return the AccessPolicyEntry object itself.
Expand All @@ -64,7 +64,7 @@ public AccessPolicyEntry withTenantId(UUID tenantId) {
}

/**
* Get the objectId value.
* Get the object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies.
*
* @return the objectId value
*/
Expand All @@ -73,7 +73,7 @@ public String objectId() {
}

/**
* Set the objectId value.
* Set the object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies.
*
* @param objectId the objectId value to set
* @return the AccessPolicyEntry object itself.
Expand All @@ -84,7 +84,7 @@ public AccessPolicyEntry withObjectId(String objectId) {
}

/**
* Get the applicationId value.
* Get application ID of the client making request on behalf of a principal.
*
* @return the applicationId value
*/
Expand All @@ -93,7 +93,7 @@ public UUID applicationId() {
}

/**
* Set the applicationId value.
* Set application ID of the client making request on behalf of a principal.
*
* @param applicationId the applicationId value to set
* @return the AccessPolicyEntry object itself.
Expand All @@ -104,7 +104,7 @@ public AccessPolicyEntry withApplicationId(UUID applicationId) {
}

/**
* Get the permissions value.
* Get permissions the identity has for keys, secrets and certificates.
*
* @return the permissions value
*/
Expand All @@ -113,7 +113,7 @@ public Permissions permissions() {
}

/**
* Set the permissions value.
* Set permissions the identity has for keys, secrets and certificates.
*
* @param permissions the permissions value to set
* @return the AccessPolicyEntry object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Permissions {
private List<CertificatePermissions> certificates;

/**
* Get the keys value.
* Get permissions to keys.
*
* @return the keys value
*/
Expand All @@ -43,7 +43,7 @@ public List<KeyPermissions> keys() {
}

/**
* Set the keys value.
* Set permissions to keys.
*
* @param keys the keys value to set
* @return the Permissions object itself.
Expand All @@ -54,7 +54,7 @@ public Permissions withKeys(List<KeyPermissions> keys) {
}

/**
* Get the secrets value.
* Get permissions to secrets.
*
* @return the secrets value
*/
Expand All @@ -63,7 +63,7 @@ public List<SecretPermissions> secrets() {
}

/**
* Set the secrets value.
* Set permissions to secrets.
*
* @param secrets the secrets value to set
* @return the Permissions object itself.
Expand All @@ -74,7 +74,7 @@ public Permissions withSecrets(List<SecretPermissions> secrets) {
}

/**
* Get the certificates value.
* Get permissions to certificates.
*
* @return the certificates value
*/
Expand All @@ -83,7 +83,7 @@ public List<CertificatePermissions> certificates() {
}

/**
* Set the certificates value.
* Set permissions to certificates.
*
* @param certificates the certificates value to set
* @return the Permissions object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ public class Sku {

/**
* Creates an instance of Sku class.
* @param name sKU name to specify whether the key vault is a standard vault or a premium vault. Possible values include: 'standard', 'premium'.
*/
public Sku() {
family = "A";
}

/**
* Get the family value.
* Get sKU family name.
*
* @return the family value
*/
Expand All @@ -44,7 +45,7 @@ public String family() {
}

/**
* Set the family value.
* Set sKU family name.
*
* @param family the family value to set
* @return the Sku object itself.
Expand All @@ -55,7 +56,7 @@ public Sku withFamily(String family) {
}

/**
* Get the name value.
* Get sKU name to specify whether the key vault is a standard vault or a premium vault. Possible values include: 'standard', 'premium'.
*
* @return the name value
*/
Expand All @@ -64,7 +65,7 @@ public SkuName name() {
}

/**
* Set the name value.
* Set sKU name to specify whether the key vault is a standard vault or a premium vault. Possible values include: 'standard', 'premium'.
*
* @param name the name value to set
* @return the Sku object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.Resource;
import com.microsoft.azure.arm.resources.models.GroupableResourceCore;
import com.microsoft.azure.arm.resources.models.HasResourceGroup;
import com.microsoft.azure.arm.model.Refreshable;
import com.microsoft.azure.arm.model.Updatable;
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.GroupableResourceCore;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.keyvault.v2015_06_01.implementation.KeyVaultManager;
import com.microsoft.azure.management.keyvault.v2015_06_01.implementation.VaultInner;
Expand Down Expand Up @@ -57,7 +57,9 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
interface WithProperties {
/**
* Specifies properties.
*/
* @param properties Properties of the vault
* @return the next definition stage
*/
WithCreate withProperties(VaultProperties properties);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class VaultCreateOrUpdateParameters {
private VaultProperties properties;

/**
* Get the location value.
* Get the supported Azure location where the key vault should be created.
*
* @return the location value
*/
Expand All @@ -43,7 +43,7 @@ public String location() {
}

/**
* Set the location value.
* Set the supported Azure location where the key vault should be created.
*
* @param location the location value to set
* @return the VaultCreateOrUpdateParameters object itself.
Expand All @@ -54,7 +54,7 @@ public VaultCreateOrUpdateParameters withLocation(String location) {
}

/**
* Get the tags value.
* Get the tags that will be assigned to the key vault.
*
* @return the tags value
*/
Expand All @@ -63,7 +63,7 @@ public Map<String, String> tags() {
}

/**
* Set the tags value.
* Set the tags that will be assigned to the key vault.
*
* @param tags the tags value to set
* @return the VaultCreateOrUpdateParameters object itself.
Expand All @@ -74,7 +74,7 @@ public VaultCreateOrUpdateParameters withTags(Map<String, String> tags) {
}

/**
* Get the properties value.
* Get properties of the vault.
*
* @return the properties value
*/
Expand All @@ -83,7 +83,7 @@ public VaultProperties properties() {
}

/**
* Set the properties value.
* Set properties of the vault.
*
* @param properties the properties value to set
* @return the VaultCreateOrUpdateParameters object itself.
Expand Down
Loading