Show / Hide Table of Contents

Class CustomersResource.ReportsResource.CountPrintJobsByPrinterRequest

Get a summary of printing done by each printer.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>
CustomersResource.ReportsResource.CountPrintJobsByPrinterRequest
Implements
IClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>
IClientServiceRequest
Inherited Members
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Xgafv
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.AccessToken
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Alt
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Callback
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Fields
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Key
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.OauthToken
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.PrettyPrint
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.QuotaUser
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.UploadType
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.UploadProtocol
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Execute()
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ExecuteAsync()
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.CreateRequest(bool?)
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.GetBody()
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.GetDefaultETagAction(string)
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ETagAction
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ModifyRequest
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ValidateParameters
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.ApiVersion
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.RequestParameters
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.ChromeManagement.v1
Assembly: Google.Apis.ChromeManagement.v1.dll
Syntax
public class CustomersResource.ReportsResource.CountPrintJobsByPrinterRequest : ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>, IClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>, IClientServiceRequest

Constructors

CountPrintJobsByPrinterRequest(IClientService, string)

Constructs a new CountPrintJobsByPrinter request.

Declaration
public CountPrintJobsByPrinterRequest(IClientService service, string customer)
Parameters
Type Name Description
IClientService service
string customer

Properties

Customer

Required. Customer ID prefixed with "customers/" or "customers/my_customer" to use the customer associated to the account making the request.

Declaration
[RequestParameter("customer", RequestParameterType.Path)]
public virtual string Customer { get; }
Property Value
Type Description
string

Filter

Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Note: Only &gt;= and &lt;= comparators are supported in this filter. Supported filter fields: * complete_time

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
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.MethodName

OrderBy

Field used to order results. If omitted, results will be ordered in ascending order of the 'printer' field. Supported order_by fields: * printer * job_count * device_count * user_count

Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type Description
string

PageSize

Maximum number of results to return. Maximum and default are 100.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
int?

PageToken

Token to specify the page of the response to be returned.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
string

PrinterOrgUnitId

The ID of the organizational unit for printers. If specified, only data for printers from the specified organizational unit will be returned. If omitted, data for printers from all organizational units will be returned.

Declaration
[RequestParameter("printerOrgUnitId", RequestParameterType.Query)]
public virtual string PrinterOrgUnitId { get; set; }
Property Value
Type Description
string

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.RestPath

Methods

InitParameters()

Initializes CountPrintJobsByPrinter parameter list.

Declaration
protected override void InitParameters()
Overrides
ChromeManagementBaseServiceRequest<GoogleChromeManagementV1CountPrintJobsByPrinterResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX