Show / Hide Table of Contents

Class BatchUpdateRowsRequest

Request message for TablesService.BatchUpdateRows.

Inheritance
System.Object
BatchUpdateRowsRequest
Implements
Google.Protobuf.IMessage<BatchUpdateRowsRequest>
System.IEquatable<BatchUpdateRowsRequest>
Google.Protobuf.IDeepCloneable<BatchUpdateRowsRequest>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class BatchUpdateRowsRequest : IMessage<BatchUpdateRowsRequest>, IEquatable<BatchUpdateRowsRequest>, IDeepCloneable<BatchUpdateRowsRequest>, IBufferMessage, IMessage

Constructors

BatchUpdateRowsRequest()

Declaration
public BatchUpdateRowsRequest()

BatchUpdateRowsRequest(BatchUpdateRowsRequest)

Declaration
public BatchUpdateRowsRequest(BatchUpdateRowsRequest other)
Parameters
Type Name Description
BatchUpdateRowsRequest other

Properties

Parent

Required. The parent table shared by all rows being updated. Format: tables/{table}

Declaration
public string Parent { get; set; }
Property Value
Type Description
System.String

Requests

Required. The request messages specifying the rows to update.

A maximum of 500 rows can be modified in a single batch.

Declaration
public RepeatedField<UpdateRowRequest> Requests { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<UpdateRowRequest>
Back to top