com.microsoft.azure.management.sql.implementation.RestorableDroppedManagedDatabaseInner Maven / Gradle / Ivy
/**
* 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.sql.implementation;
import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.Resource;
/**
* A restorable dropped managed database resource.
*/
@JsonFlatten
public class RestorableDroppedManagedDatabaseInner extends Resource {
/**
* The name of the database.
*/
@JsonProperty(value = "properties.databaseName", access = JsonProperty.Access.WRITE_ONLY)
private String databaseName;
/**
* The creation date of the database (ISO8601 format).
*/
@JsonProperty(value = "properties.creationDate", access = JsonProperty.Access.WRITE_ONLY)
private DateTime creationDate;
/**
* The deletion date of the database (ISO8601 format).
*/
@JsonProperty(value = "properties.deletionDate", access = JsonProperty.Access.WRITE_ONLY)
private DateTime deletionDate;
/**
* The earliest restore date of the database (ISO8601 format).
*/
@JsonProperty(value = "properties.earliestRestoreDate", access = JsonProperty.Access.WRITE_ONLY)
private DateTime earliestRestoreDate;
/**
* Get the name of the database.
*
* @return the databaseName value
*/
public String databaseName() {
return this.databaseName;
}
/**
* Get the creation date of the database (ISO8601 format).
*
* @return the creationDate value
*/
public DateTime creationDate() {
return this.creationDate;
}
/**
* Get the deletion date of the database (ISO8601 format).
*
* @return the deletionDate value
*/
public DateTime deletionDate() {
return this.deletionDate;
}
/**
* Get the earliest restore date of the database (ISO8601 format).
*
* @return the earliestRestoreDate value
*/
public DateTime earliestRestoreDate() {
return this.earliestRestoreDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy