com.azure.storage.blob.models.BlobServiceStatistics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob Show documentation
Show all versions of azure-storage-blob Show documentation
This module contains client library for Microsoft Azure Blob Storage.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.storage.blob.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
/** Stats for the storage service. */
@JacksonXmlRootElement(localName = "StorageServiceStats")
@Fluent
public final class BlobServiceStatistics {
/*
* Geo-Replication information for the Secondary Storage Service
*/
@JsonProperty(value = "GeoReplication")
private GeoReplication geoReplication;
/** Creates an instance of BlobServiceStatistics class. */
public BlobServiceStatistics() {}
/**
* Get the geoReplication property: Geo-Replication information for the Secondary Storage Service.
*
* @return the geoReplication value.
*/
public GeoReplication getGeoReplication() {
return this.geoReplication;
}
/**
* Set the geoReplication property: Geo-Replication information for the Secondary Storage Service.
*
* @param geoReplication the geoReplication value to set.
* @return the BlobServiceStatistics object itself.
*/
public BlobServiceStatistics setGeoReplication(GeoReplication geoReplication) {
this.geoReplication = geoReplication;
return this;
}
}