/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/netapp/v1/replication.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.netapp.v1;
public interface TransferStatsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.netapp.v1.TransferStats)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Cumulative bytes trasferred so far for the replication relatinonship.
*
*
* optional int64 transfer_bytes = 1;
*
* @return Whether the transferBytes field is set.
*/
boolean hasTransferBytes();
/**
*
*
*
* Cumulative bytes trasferred so far for the replication relatinonship.
*
*
* optional int64 transfer_bytes = 1;
*
* @return The transferBytes.
*/
long getTransferBytes();
/**
*
*
*
* Cumulative time taken across all transfers for the replication
* relationship.
*
*
* optional .google.protobuf.Duration total_transfer_duration = 2;
*
* @return Whether the totalTransferDuration field is set.
*/
boolean hasTotalTransferDuration();
/**
*
*
*
* Cumulative time taken across all transfers for the replication
* relationship.
*
*
* optional .google.protobuf.Duration total_transfer_duration = 2;
*
* @return The totalTransferDuration.
*/
com.google.protobuf.Duration getTotalTransferDuration();
/**
*
*
*
* Cumulative time taken across all transfers for the replication
* relationship.
*
*
* optional .google.protobuf.Duration total_transfer_duration = 2;
*/
com.google.protobuf.DurationOrBuilder getTotalTransferDurationOrBuilder();
/**
*
*
*
* Last transfer size in bytes.
*
*
* optional int64 last_transfer_bytes = 3;
*
* @return Whether the lastTransferBytes field is set.
*/
boolean hasLastTransferBytes();
/**
*
*
*
* Last transfer size in bytes.
*
*
* optional int64 last_transfer_bytes = 3;
*
* @return The lastTransferBytes.
*/
long getLastTransferBytes();
/**
*
*
*
* Time taken during last transfer.
*
*
* optional .google.protobuf.Duration last_transfer_duration = 4;
*
* @return Whether the lastTransferDuration field is set.
*/
boolean hasLastTransferDuration();
/**
*
*
*
* Time taken during last transfer.
*
*
* optional .google.protobuf.Duration last_transfer_duration = 4;
*
* @return The lastTransferDuration.
*/
com.google.protobuf.Duration getLastTransferDuration();
/**
*
*
*
* Time taken during last transfer.
*
*
* optional .google.protobuf.Duration last_transfer_duration = 4;
*/
com.google.protobuf.DurationOrBuilder getLastTransferDurationOrBuilder();
/**
*
*
*
* Lag duration indicates the duration by which Destination region volume
* content lags behind the primary region volume content.
*
*
* optional .google.protobuf.Duration lag_duration = 5;
*
* @return Whether the lagDuration field is set.
*/
boolean hasLagDuration();
/**
*
*
*
* Lag duration indicates the duration by which Destination region volume
* content lags behind the primary region volume content.
*
*
* optional .google.protobuf.Duration lag_duration = 5;
*
* @return The lagDuration.
*/
com.google.protobuf.Duration getLagDuration();
/**
*
*
*
* Lag duration indicates the duration by which Destination region volume
* content lags behind the primary region volume content.
*
*
* optional .google.protobuf.Duration lag_duration = 5;
*/
com.google.protobuf.DurationOrBuilder getLagDurationOrBuilder();
/**
*
*
*
* Time when progress was updated last.
*
*
* optional .google.protobuf.Timestamp update_time = 6;
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Time when progress was updated last.
*
*
* optional .google.protobuf.Timestamp update_time = 6;
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Time when progress was updated last.
*
*
* optional .google.protobuf.Timestamp update_time = 6;
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Time when last transfer completed.
*
*
* optional .google.protobuf.Timestamp last_transfer_end_time = 7;
*
* @return Whether the lastTransferEndTime field is set.
*/
boolean hasLastTransferEndTime();
/**
*
*
*
* Time when last transfer completed.
*
*
* optional .google.protobuf.Timestamp last_transfer_end_time = 7;
*
* @return The lastTransferEndTime.
*/
com.google.protobuf.Timestamp getLastTransferEndTime();
/**
*
*
*
* Time when last transfer completed.
*
*
* optional .google.protobuf.Timestamp last_transfer_end_time = 7;
*/
com.google.protobuf.TimestampOrBuilder getLastTransferEndTimeOrBuilder();
/**
*
*
*
* A message describing the cause of the last transfer failure.
*
*
* optional string last_transfer_error = 8;
*
* @return Whether the lastTransferError field is set.
*/
boolean hasLastTransferError();
/**
*
*
*
* A message describing the cause of the last transfer failure.
*
*
* optional string last_transfer_error = 8;
*
* @return The lastTransferError.
*/
java.lang.String getLastTransferError();
/**
*
*
*
* A message describing the cause of the last transfer failure.
*
*
* optional string last_transfer_error = 8;
*
* @return The bytes for lastTransferError.
*/
com.google.protobuf.ByteString getLastTransferErrorBytes();
}