Interface RewriteResponseOrBuilder (2.36.1)

public interface RewriteResponseOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getDone()

public abstract boolean getDone()

true if the copy is finished; otherwise, false if the copy is in progress. This property is always present in the response.

bool done = 3;

Returns
TypeDescription
boolean

The done.

getObjectSize()

public abstract long getObjectSize()

The total size of the object being copied in bytes. This property is always present in the response.

int64 object_size = 2;

Returns
TypeDescription
long

The objectSize.

getResource()

public abstract Object getResource()

A resource containing the metadata for the copied-to object. This property is present in the response only when copying completes.

.google.storage.v2.Object resource = 5;

Returns
TypeDescription
Object

The resource.

getResourceOrBuilder()

public abstract ObjectOrBuilder getResourceOrBuilder()

A resource containing the metadata for the copied-to object. This property is present in the response only when copying completes.

.google.storage.v2.Object resource = 5;

Returns
TypeDescription
ObjectOrBuilder

getRewriteToken()

public abstract String getRewriteToken()

A token to use in subsequent requests to continue copying data. This token is present in the response only when there is more data to copy.

string rewrite_token = 4;

Returns
TypeDescription
String

The rewriteToken.

getRewriteTokenBytes()

public abstract ByteString getRewriteTokenBytes()

A token to use in subsequent requests to continue copying data. This token is present in the response only when there is more data to copy.

string rewrite_token = 4;

Returns
TypeDescription
ByteString

The bytes for rewriteToken.

getTotalBytesRewritten()

public abstract long getTotalBytesRewritten()

The total bytes written so far, which can be used to provide a waiting user with a progress indicator. This property is always present in the response.

int64 total_bytes_rewritten = 1;

Returns
TypeDescription
long

The totalBytesRewritten.

hasResource()

public abstract boolean hasResource()

A resource containing the metadata for the copied-to object. This property is present in the response only when copying completes.

.google.storage.v2.Object resource = 5;

Returns
TypeDescription
boolean

Whether the resource field is set.