Class CustomersResource.ChromeResource.PrintServersResource.ListRequest
Lists print server configurations.
Inheritance
Inherited Members
Namespace: Google.Apis.Admin.Directory.directory_v1
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class CustomersResource.ChromeResource.PrintServersResource.ListRequest : DirectoryBaseServiceRequest<ListPrintServersResponse>, IClientServiceRequest<ListPrintServersResponse>, 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
Search query in Common Expression Language syntax.
Supported filters are display_name
, description
, and uri
. Example:
printServer.displayName=='marketing-queue'
.
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
Sort order for results. Supported values are display_name
, description
, or create_time
.
Default order is ascending, but descending order can be returned by appending "desc" to the
order_by
field. For instance, orderBy=='description desc'
returns the print servers sorted
by description in descending order.
Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type | Description |
---|---|
string |
OrgUnitId
If org_unit_id
is present in the request, only print servers owned or inherited by the
organizational unit (OU) are returned. If the PrintServer
resource's org_unit_id
matches the
one in the request, the OU owns the server. If org_unit_id
is not specified in the request,
all print servers are returned or filtered against.
Declaration
[RequestParameter("orgUnitId", RequestParameterType.Query)]
public virtual string OrgUnitId { get; set; }
Property Value
Type | Description |
---|---|
string |
PageSize
The maximum number of objects to return (default 100
, max 100
). The service might return
fewer than this value.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
A generated token to paginate results (the next_page_token
from a previous call).
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The unique
ID of the
customer's Google Workspace account. Format: customers/{id}
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
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()