Skip to content
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
4 changes: 2 additions & 2 deletions sdk/storage/mgmt-v2019_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.3.0</version>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-storage</artifactId>
<version>1.0.0-beta-4</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Storage Management</name>
<description>This package contains Microsoft Storage Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.storage.v2019_06_01.implementation.SkuInner;
import com.microsoft.azure.management.storage.v2019_06_01.implementation.StorageManager;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.storage.v2019_06_01.implementation.SkuInner;
import com.microsoft.azure.management.storage.v2019_06_01.implementation.StorageManager;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

package com.microsoft.azure.management.storage.v2019_06_01;

import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
Expand All @@ -32,6 +33,18 @@ public class KeyVaultProperties {
@JsonProperty(value = "keyvaulturi")
private String keyVaultUri;

/**
* The object identifier of the current versioned Key Vault Key in use.
*/
@JsonProperty(value = "currentVersionedKeyIdentifier", access = JsonProperty.Access.WRITE_ONLY)
private String currentVersionedKeyIdentifier;

/**
* Timestamp of last rotation of the Key Vault Key.
*/
@JsonProperty(value = "lastKeyRotationTimestamp", access = JsonProperty.Access.WRITE_ONLY)
private DateTime lastKeyRotationTimestamp;

/**
* Get the name of KeyVault key.
*
Expand Down Expand Up @@ -92,4 +105,22 @@ public KeyVaultProperties withKeyVaultUri(String keyVaultUri) {
return this;
}

/**
* Get the object identifier of the current versioned Key Vault Key in use.
*
* @return the currentVersionedKeyIdentifier value
*/
public String currentVersionedKeyIdentifier() {
return this.currentVersionedKeyIdentifier;
}

/**
* Get timestamp of last rotation of the Key Vault Key.
*
* @return the lastKeyRotationTimestamp value
*/
public DateTime lastKeyRotationTimestamp() {
return this.lastKeyRotationTimestamp;
}

}