Show / Hide Table of Contents

Class ListWorkspacesRequest

Request message for TablesService.ListWorkspaces.

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

Constructors

ListWorkspacesRequest()

Declaration
public ListWorkspacesRequest()

ListWorkspacesRequest(ListWorkspacesRequest)

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

Properties

PageSize

The maximum number of workspaces to return. The service may return fewer than this value.

If unspecified, at most 10 workspaces are returned. The maximum value is 25; values above 25 are coerced to 25.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
Google.Api.Gax.Grpc.IPageRequest.PageSize

PageToken

A page token, received from a previous ListWorkspaces call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListWorkspaces must match the call that provided the page token.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
Google.Api.Gax.Grpc.IPageRequest.PageToken
Back to top