public sealed class CommitRequest : IMessage<CommitRequest>, IEquatable<CommitRequest>, IDeepCloneable<CommitRequest>, IBufferMessage, IMessage
The request for [Commit][google.spanner.v1.Spanner.Commit].
Implements
IMessage<CommitRequest>, IEquatable<CommitRequest>, IDeepCloneable<CommitRequest>, IBufferMessage, IMessageNamespace
Google.Cloud.Spanner.V1Assembly
Google.Cloud.Spanner.V1.dll
Constructors
CommitRequest()
public CommitRequest()
CommitRequest(CommitRequest)
public CommitRequest(CommitRequest other)
Parameter | |
---|---|
Name | Description |
other | CommitRequest |
Properties
Mutations
public RepeatedField<Mutation> Mutations { get; }
The mutations to be executed when this transaction commits. All mutations are applied atomically, in the order they appear in this list.
Property Value | |
---|---|
Type | Description |
RepeatedField<Mutation> |
RequestOptions
public RequestOptions RequestOptions { get; set; }
Common options for this request.
Property Value | |
---|---|
Type | Description |
RequestOptions |
ReturnCommitStats
public bool ReturnCommitStats { get; set; }
If true
, then statistics related to the transaction will be included in
the [CommitResponse][google.spanner.v1.CommitResponse.commit_stats]. Default value is
false
.
Property Value | |
---|---|
Type | Description |
Boolean |
Session
public string Session { get; set; }
Required. The session in which the transaction to be committed is running.
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 |
SingleUseTransaction
public TransactionOptions SingleUseTransaction { get; set; }
Execute mutations in a temporary transaction. Note that unlike
commit of a previously-started transaction, commit with a
temporary transaction is non-idempotent. That is, if the
CommitRequest
is sent to Cloud Spanner more than once (for
instance, due to retries in the application, or in the
transport library), it is possible that the mutations are
executed more than once. If this is undesirable, use
[BeginTransaction][google.spanner.v1.Spanner.BeginTransaction] and
[Commit][google.spanner.v1.Spanner.Commit] instead.
Property Value | |
---|---|
Type | Description |
TransactionOptions |
TransactionCase
public CommitRequest.TransactionOneofCase TransactionCase { get; }
Property Value | |
---|---|
Type | Description |
CommitRequest.TransactionOneofCase |
TransactionId
public ByteString TransactionId { get; set; }
Commit a previously-started transaction.
Property Value | |
---|---|
Type | Description |
ByteString |