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.
/** * 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; import org.joda.time.DateTime; import java.util.Map; import com.fasterxml.jackson.annotation.JsonProperty;
Properties of the deleted vault.
/** * Properties of the deleted vault. */
public class DeletedVaultProperties {
The resource id of the original vault.
/** * The resource id of the original vault. */
@JsonProperty(value = "vaultId", access = JsonProperty.Access.WRITE_ONLY) private String vaultId;
The location of the original vault.
/** * The location of the original vault. */
@JsonProperty(value = "location", access = JsonProperty.Access.WRITE_ONLY) private String location;
The deleted date.
/** * The deleted date. */
@JsonProperty(value = "deletionDate", access = JsonProperty.Access.WRITE_ONLY) private DateTime deletionDate;
The scheduled purged date.
/** * The scheduled purged date. */
@JsonProperty(value = "scheduledPurgeDate", access = JsonProperty.Access.WRITE_ONLY) private DateTime scheduledPurgeDate;
Tags of the original vault.
/** * Tags of the original vault. */
@JsonProperty(value = "tags", access = JsonProperty.Access.WRITE_ONLY) private Map<String, String> tags;
Get the vaultId value.
Returns:the vaultId value
/** * Get the vaultId value. * * @return the vaultId value */
public String vaultId() { return this.vaultId; }
Get the location value.
Returns:the location value
/** * Get the location value. * * @return the location value */
public String location() { return this.location; }
Get the deletionDate value.
Returns:the deletionDate value
/** * Get the deletionDate value. * * @return the deletionDate value */
public DateTime deletionDate() { return this.deletionDate; }
Get the scheduledPurgeDate value.
Returns:the scheduledPurgeDate value
/** * Get the scheduledPurgeDate value. * * @return the scheduledPurgeDate value */
public DateTime scheduledPurgeDate() { return this.scheduledPurgeDate; }
Get the tags value.
Returns:the tags value
/** * Get the tags value. * * @return the tags value */
public Map<String, String> tags() { return this.tags; } }