com.microsoft.azure.keyvault.models.DeletedKeyBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-keyvault Show documentation
Show all versions of azure-keyvault Show documentation
This library has been replaced by new Azure SDKs, you can read about them at https://aka.ms/azsdkvalueprop. The latest libraries to interact with the Azure Key Vault service are:
(1) https://search.maven.org/artifact/com.azure/azure-security-keyvault-keys.
(2) https://search.maven.org/artifact/com.azure/azure-security-keyvault-secrets.
(3) https://search.maven.org/artifact/com.azure/azure-security-keyvault-certificates.
It is recommended that you move to the new package.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator
package com.microsoft.azure.keyvault.models;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* A DeletedKeyBundle consisting of a WebKey plus its Attributes and deletion
* info.
*/
public class DeletedKeyBundle extends KeyBundle {
/**
* The url of the recovery object, used to identify and recover the deleted
* key.
*/
@JsonProperty(value = "recoveryId")
private String recoveryId;
/**
* The time when the key is scheduled to be purged, in UTC.
*/
@JsonProperty(value = "scheduledPurgeDate", access = JsonProperty.Access.WRITE_ONLY)
private Long scheduledPurgeDate;
/**
* The time when the key was deleted, in UTC.
*/
@JsonProperty(value = "deletedDate", access = JsonProperty.Access.WRITE_ONLY)
private Long deletedDate;
/**
* Get the recoveryId value.
*
* @return the recoveryId value
*/
public String recoveryId() {
return this.recoveryId;
}
/**
* Set the recoveryId value.
*
* @param recoveryId the recoveryId value to set
* @return the DeletedKeyBundle object itself.
*/
public DeletedKeyBundle withRecoveryId(String recoveryId) {
this.recoveryId = recoveryId;
return this;
}
/**
* Get the scheduledPurgeDate value.
*
* @return the scheduledPurgeDate value
*/
public DateTime scheduledPurgeDate() {
if (this.scheduledPurgeDate == null) {
return null;
}
return new DateTime(this.scheduledPurgeDate * 1000L, DateTimeZone.UTC);
}
/**
* Get the deletedDate value.
*
* @return the deletedDate value
*/
public DateTime deletedDate() {
if (this.deletedDate == null) {
return null;
}
return new DateTime(this.deletedDate * 1000L, DateTimeZone.UTC);
}
}