Class TablesResource.RowsResource.ListRequest
Lists rows in a table. Returns NOT_FOUND if the table does not exist.
Inheritance
Inherited Members
Namespace: Google.Apis.Area120Tables.v1alpha1
Assembly: Google.Apis.Area120Tables.v1alpha1.dll
Syntax
public class TablesResource.RowsResource.ListRequest : Area120TablesBaseServiceRequest<ListRowsResponse>, IClientServiceRequest<ListRowsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
Filter
Optional. Filter to only include resources matching the requirements. For more information, see Filtering list results.
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
OrderBy
Optional. Sorting order for the list of rows on createTime/updateTime.
Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type | Description |
---|---|
string |
PageSize
The maximum number of rows to return. The service may return fewer than this value. If unspecified, at most 50 rows are returned. The maximum value is 1,000; values above 1,000 are coerced to 1,000.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
A page token, received from a previous ListRows
call. Provide this to retrieve the subsequent
page. When paginating, all other parameters provided to ListRows
must match the call that provided
the page token.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The parent table. Format: tables/{table}
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
View
Optional. Column key to use for values in the row. Defaults to user entered name.
Declaration
[RequestParameter("view", RequestParameterType.Query)]
public virtual TablesResource.RowsResource.ListRequest.ViewEnum? View { get; set; }
Property Value
Type | Description |
---|---|
TablesResource.RowsResource.ListRequest.ViewEnum? |
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()