Interface MutateRowsResponse.EntryOrBuilder (2.13.0)

public static interface MutateRowsResponse.EntryOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getIndex()

public abstract long getIndex()

The index into the original request's entries list of the Entry for which a result is being reported.

int64 index = 1;

Returns
TypeDescription
long

The index.

getStatus()

public abstract Status getStatus()

The result of the request Entry identified by index. Depending on how requests are batched during execution, it is possible for one Entry to fail due to an error with another Entry. In the event that this occurs, the same error will be reported for both entries.

.google.rpc.Status status = 2;

Returns
TypeDescription
com.google.rpc.Status

The status.

getStatusOrBuilder()

public abstract StatusOrBuilder getStatusOrBuilder()

The result of the request Entry identified by index. Depending on how requests are batched during execution, it is possible for one Entry to fail due to an error with another Entry. In the event that this occurs, the same error will be reported for both entries.

.google.rpc.Status status = 2;

Returns
TypeDescription
com.google.rpc.StatusOrBuilder

hasStatus()

public abstract boolean hasStatus()

The result of the request Entry identified by index. Depending on how requests are batched during execution, it is possible for one Entry to fail due to an error with another Entry. In the event that this occurs, the same error will be reported for both entries.

.google.rpc.Status status = 2;

Returns
TypeDescription
boolean

Whether the status field is set.