All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.storage.blob.models.BlobServiceStatistics Maven / Gradle / Ivy

There is a newer version: 12.29.0
Show newest version
// 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy