public sealed class ExecuteBatchDmlRequest : IMessage<ExecuteBatchDmlRequest>, IEquatable<ExecuteBatchDmlRequest>, IDeepCloneable<ExecuteBatchDmlRequest>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Spanner v1 API class ExecuteBatchDmlRequest.
The request for [ExecuteBatchDml][google.spanner.v1.Spanner.ExecuteBatchDml].
Implements
IMessageExecuteBatchDmlRequest, IEquatableExecuteBatchDmlRequest, IDeepCloneableExecuteBatchDmlRequest, IBufferMessage, IMessageNamespace
Google.Cloud.Spanner.V1Assembly
Google.Cloud.Spanner.V1.dll
Constructors
ExecuteBatchDmlRequest()
public ExecuteBatchDmlRequest()
ExecuteBatchDmlRequest(ExecuteBatchDmlRequest)
public ExecuteBatchDmlRequest(ExecuteBatchDmlRequest other)
Parameter | |
---|---|
Name | Description |
other |
ExecuteBatchDmlRequest |
Properties
RequestOptions
public RequestOptions RequestOptions { get; set; }
Common options for this request.
Property Value | |
---|---|
Type | Description |
RequestOptions |
Seqno
public long Seqno { get; set; }
Required. A per-transaction sequence number used to identify this request. This field makes each request idempotent such that if the request is received multiple times, at most one will succeed.
The sequence number must be monotonically increasing within the transaction. If a request arrives for the first time with an out-of-order sequence number, the transaction may be aborted. Replays of previously handled requests will yield the same response as the first execution.
Property Value | |
---|---|
Type | Description |
long |
Session
public string Session { get; set; }
Required. The session in which the DML statements should be performed.
Property Value | |
---|---|
Type | Description |
string |
SessionAsSessionName
public SessionName SessionAsSessionName { get; set; }
SessionName-typed view over the Session resource name property.
Property Value | |
---|---|
Type | Description |
SessionName |
Statements
public RepeatedField<ExecuteBatchDmlRequest.Types.Statement> Statements { get; }
Required. The list of statements to execute in this batch. Statements are
executed serially, such that the effects of statement i
are visible to
statement i+1
. Each statement must be a DML statement. Execution stops at
the first failed statement; the remaining statements are not executed.
Callers must provide at least one statement.
Property Value | |
---|---|
Type | Description |
RepeatedFieldExecuteBatchDmlRequestTypesStatement |
Transaction
public TransactionSelector Transaction { get; set; }
Required. The transaction to use. Must be a read-write transaction.
To protect against replays, single-use transactions are not supported. The caller must either supply an existing transaction ID or begin a new transaction.
Property Value | |
---|---|
Type | Description |
TransactionSelector |