com.azure.security.keyvault.administration.implementation.models.SelectiveKeyRestoreOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-security-keyvault-administration Show documentation
Show all versions of azure-security-keyvault-administration Show documentation
This module contains client library for Microsoft Azure KeyVault Administration.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.security.keyvault.administration.implementation.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneOffset;
/**
* Selective Key Restore operation.
*/
@Fluent
public final class SelectiveKeyRestoreOperation implements JsonSerializable {
/*
* Status of the restore operation.
*/
private String status;
/*
* The status details of restore operation.
*/
private String statusDetails;
/*
* Error encountered, if any, during the selective key restore operation.
*/
private Error error;
/*
* Identifier for the selective key restore operation.
*/
private String jobId;
/*
* The start time of the restore operation
*/
private Long startTime;
/*
* The end time of the restore operation
*/
private Long endTime;
/**
* Creates an instance of SelectiveKeyRestoreOperation class.
*/
public SelectiveKeyRestoreOperation() {
}
/**
* Get the status property: Status of the restore operation.
*
* @return the status value.
*/
public String getStatus() {
return this.status;
}
/**
* Set the status property: Status of the restore operation.
*
* @param status the status value to set.
* @return the SelectiveKeyRestoreOperation object itself.
*/
public SelectiveKeyRestoreOperation setStatus(String status) {
this.status = status;
return this;
}
/**
* Get the statusDetails property: The status details of restore operation.
*
* @return the statusDetails value.
*/
public String getStatusDetails() {
return this.statusDetails;
}
/**
* Set the statusDetails property: The status details of restore operation.
*
* @param statusDetails the statusDetails value to set.
* @return the SelectiveKeyRestoreOperation object itself.
*/
public SelectiveKeyRestoreOperation setStatusDetails(String statusDetails) {
this.statusDetails = statusDetails;
return this;
}
/**
* Get the error property: Error encountered, if any, during the selective key restore operation.
*
* @return the error value.
*/
public Error getError() {
return this.error;
}
/**
* Set the error property: Error encountered, if any, during the selective key restore operation.
*
* @param error the error value to set.
* @return the SelectiveKeyRestoreOperation object itself.
*/
public SelectiveKeyRestoreOperation setError(Error error) {
this.error = error;
return this;
}
/**
* Get the jobId property: Identifier for the selective key restore operation.
*
* @return the jobId value.
*/
public String getJobId() {
return this.jobId;
}
/**
* Set the jobId property: Identifier for the selective key restore operation.
*
* @param jobId the jobId value to set.
* @return the SelectiveKeyRestoreOperation object itself.
*/
public SelectiveKeyRestoreOperation setJobId(String jobId) {
this.jobId = jobId;
return this;
}
/**
* Get the startTime property: The start time of the restore operation.
*
* @return the startTime value.
*/
public OffsetDateTime getStartTime() {
if (this.startTime == null) {
return null;
}
return OffsetDateTime.ofInstant(Instant.ofEpochSecond(this.startTime), ZoneOffset.UTC);
}
/**
* Set the startTime property: The start time of the restore operation.
*
* @param startTime the startTime value to set.
* @return the SelectiveKeyRestoreOperation object itself.
*/
public SelectiveKeyRestoreOperation setStartTime(OffsetDateTime startTime) {
if (startTime == null) {
this.startTime = null;
} else {
this.startTime = startTime.toEpochSecond();
}
return this;
}
/**
* Get the endTime property: The end time of the restore operation.
*
* @return the endTime value.
*/
public OffsetDateTime getEndTime() {
if (this.endTime == null) {
return null;
}
return OffsetDateTime.ofInstant(Instant.ofEpochSecond(this.endTime), ZoneOffset.UTC);
}
/**
* Set the endTime property: The end time of the restore operation.
*
* @param endTime the endTime value to set.
* @return the SelectiveKeyRestoreOperation object itself.
*/
public SelectiveKeyRestoreOperation setEndTime(OffsetDateTime endTime) {
if (endTime == null) {
this.endTime = null;
} else {
this.endTime = endTime.toEpochSecond();
}
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("status", this.status);
jsonWriter.writeStringField("statusDetails", this.statusDetails);
jsonWriter.writeJsonField("error", this.error);
jsonWriter.writeStringField("jobId", this.jobId);
jsonWriter.writeNumberField("startTime", this.startTime);
jsonWriter.writeNumberField("endTime", this.endTime);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SelectiveKeyRestoreOperation from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SelectiveKeyRestoreOperation if the JsonReader was pointing to an instance of it, or null
* if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the SelectiveKeyRestoreOperation.
*/
public static SelectiveKeyRestoreOperation fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SelectiveKeyRestoreOperation deserializedSelectiveKeyRestoreOperation = new SelectiveKeyRestoreOperation();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("status".equals(fieldName)) {
deserializedSelectiveKeyRestoreOperation.status = reader.getString();
} else if ("statusDetails".equals(fieldName)) {
deserializedSelectiveKeyRestoreOperation.statusDetails = reader.getString();
} else if ("error".equals(fieldName)) {
deserializedSelectiveKeyRestoreOperation.error = Error.fromJson(reader);
} else if ("jobId".equals(fieldName)) {
deserializedSelectiveKeyRestoreOperation.jobId = reader.getString();
} else if ("startTime".equals(fieldName)) {
deserializedSelectiveKeyRestoreOperation.startTime = reader.getNullable(JsonReader::getLong);
} else if ("endTime".equals(fieldName)) {
deserializedSelectiveKeyRestoreOperation.endTime = reader.getNullable(JsonReader::getLong);
} else {
reader.skipChildren();
}
}
return deserializedSelectiveKeyRestoreOperation;
});
}
}