Show / Hide Table of Contents

Class BatchDeleteRowsRequest

Request message for TablesService.BatchDeleteRows

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

Constructors

BatchDeleteRowsRequest()

Declaration
public BatchDeleteRowsRequest()

BatchDeleteRowsRequest(BatchDeleteRowsRequest)

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

Properties

Names

Required. The names of the rows to delete. All rows must belong to the parent table or else the entire batch will fail. A maximum of 500 rows can be deleted in a batch. Format: tables/{table}/rows/{row}

Declaration
public RepeatedField<string> Names { get; }
Property Value
Type Description
RepeatedField<string>

Parent

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

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

ParentAsTableName

TableName-typed view over the Parent resource name property.

Declaration
public TableName ParentAsTableName { get; set; }
Property Value
Type Description
TableName

RowNames

RowName-typed view over the Names resource name property.

Declaration
public ResourceNameList<RowName> RowNames { get; }
Property Value
Type Description
ResourceNameList<RowName>
In this article
Back to top Generated by DocFX