com.azure.resourcemanager.storage.models.GeoReplicationStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.util.CoreUtils;
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.OffsetDateTime;
/**
* Statistics related to replication for storage account's Blob, Table, Queue and File services. It is only available
* when geo-redundant replication is enabled for the storage account.
*/
@Immutable
public final class GeoReplicationStats implements JsonSerializable {
/*
* The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is
* active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary
* location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that
* the secondary location is temporarily unavailable.
*/
private GeoReplicationStatus status;
/*
* All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary
* writes following this point in time may or may not be available for reads. Element may be default value if value
* of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
*/
private OffsetDateTime lastSyncTime;
/*
* A boolean flag which indicates whether or not account failover is supported for the account.
*/
private Boolean canFailover;
/*
* A boolean flag which indicates whether or not planned account failover is supported for the account.
*/
private Boolean canPlannedFailover;
/*
* The redundancy type of the account after an account failover is performed.
*/
private PostFailoverRedundancy postFailoverRedundancy;
/*
* The redundancy type of the account after a planned account failover is performed.
*/
private PostPlannedFailoverRedundancy postPlannedFailoverRedundancy;
/**
* Creates an instance of GeoReplicationStats class.
*/
public GeoReplicationStats() {
}
/**
* Get the status property: The status of the secondary location. Possible values are: - Live: Indicates that the
* secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary
* location to the secondary location is in progress.This typically occurs when replication is first enabled. -
* Unavailable: Indicates that the secondary location is temporarily unavailable.
*
* @return the status value.
*/
public GeoReplicationStatus status() {
return this.status;
}
/**
* Get the lastSyncTime property: All primary writes preceding this UTC date/time value are guaranteed to be
* available for read operations. Primary writes following this point in time may or may not be available for reads.
* Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline
* or we are in bootstrap.
*
* @return the lastSyncTime value.
*/
public OffsetDateTime lastSyncTime() {
return this.lastSyncTime;
}
/**
* Get the canFailover property: A boolean flag which indicates whether or not account failover is supported for the
* account.
*
* @return the canFailover value.
*/
public Boolean canFailover() {
return this.canFailover;
}
/**
* Get the canPlannedFailover property: A boolean flag which indicates whether or not planned account failover is
* supported for the account.
*
* @return the canPlannedFailover value.
*/
public Boolean canPlannedFailover() {
return this.canPlannedFailover;
}
/**
* Get the postFailoverRedundancy property: The redundancy type of the account after an account failover is
* performed.
*
* @return the postFailoverRedundancy value.
*/
public PostFailoverRedundancy postFailoverRedundancy() {
return this.postFailoverRedundancy;
}
/**
* Get the postPlannedFailoverRedundancy property: The redundancy type of the account after a planned account
* failover is performed.
*
* @return the postPlannedFailoverRedundancy value.
*/
public PostPlannedFailoverRedundancy postPlannedFailoverRedundancy() {
return this.postPlannedFailoverRedundancy;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of GeoReplicationStats from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of GeoReplicationStats 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 GeoReplicationStats.
*/
public static GeoReplicationStats fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
GeoReplicationStats deserializedGeoReplicationStats = new GeoReplicationStats();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("status".equals(fieldName)) {
deserializedGeoReplicationStats.status = GeoReplicationStatus.fromString(reader.getString());
} else if ("lastSyncTime".equals(fieldName)) {
deserializedGeoReplicationStats.lastSyncTime = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("canFailover".equals(fieldName)) {
deserializedGeoReplicationStats.canFailover = reader.getNullable(JsonReader::getBoolean);
} else if ("canPlannedFailover".equals(fieldName)) {
deserializedGeoReplicationStats.canPlannedFailover = reader.getNullable(JsonReader::getBoolean);
} else if ("postFailoverRedundancy".equals(fieldName)) {
deserializedGeoReplicationStats.postFailoverRedundancy
= PostFailoverRedundancy.fromString(reader.getString());
} else if ("postPlannedFailoverRedundancy".equals(fieldName)) {
deserializedGeoReplicationStats.postPlannedFailoverRedundancy
= PostPlannedFailoverRedundancy.fromString(reader.getString());
} else {
reader.skipChildren();
}
}
return deserializedGeoReplicationStats;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy