Show / Hide Table of Contents

Class BatchCreateRowsRequest

Request message for TablesService.BatchCreateRows.

Inheritance
System.Object
BatchCreateRowsRequest
Implements
Google.Protobuf.IMessage<BatchCreateRowsRequest>
System.IEquatable<BatchCreateRowsRequest>
Google.Protobuf.IDeepCloneable<BatchCreateRowsRequest>
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 BatchCreateRowsRequest : IMessage<BatchCreateRowsRequest>, IEquatable<BatchCreateRowsRequest>, IDeepCloneable<BatchCreateRowsRequest>, IBufferMessage, IMessage

Constructors

BatchCreateRowsRequest()

Declaration
public BatchCreateRowsRequest()

BatchCreateRowsRequest(BatchCreateRowsRequest)

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

Properties

Parent

Required. The parent table where the rows will be created. Format: tables/{table}

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

Requests

Required. The request message specifying the rows to create.

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

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