Show / Hide Table of Contents

Class ChromeosdevicesResource.ListRequest

Retrieves a paginated list of Chrome OS devices within an account.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ChromeOsDevices>
DirectoryBaseServiceRequest<ChromeOsDevices>
ChromeosdevicesResource.ListRequest
Implements
IClientServiceRequest<ChromeOsDevices>
IClientServiceRequest
Inherited Members
DirectoryBaseServiceRequest<ChromeOsDevices>.Xgafv
DirectoryBaseServiceRequest<ChromeOsDevices>.AccessToken
DirectoryBaseServiceRequest<ChromeOsDevices>.Alt
DirectoryBaseServiceRequest<ChromeOsDevices>.Callback
DirectoryBaseServiceRequest<ChromeOsDevices>.Fields
DirectoryBaseServiceRequest<ChromeOsDevices>.Key
DirectoryBaseServiceRequest<ChromeOsDevices>.OauthToken
DirectoryBaseServiceRequest<ChromeOsDevices>.PrettyPrint
DirectoryBaseServiceRequest<ChromeOsDevices>.QuotaUser
DirectoryBaseServiceRequest<ChromeOsDevices>.UploadType
DirectoryBaseServiceRequest<ChromeOsDevices>.UploadProtocol
ClientServiceRequest<ChromeOsDevices>.Execute()
ClientServiceRequest<ChromeOsDevices>.ExecuteAsStream()
ClientServiceRequest<ChromeOsDevices>.ExecuteAsync()
ClientServiceRequest<ChromeOsDevices>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ChromeOsDevices>.ExecuteAsStreamAsync()
ClientServiceRequest<ChromeOsDevices>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ChromeOsDevices>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ChromeOsDevices>.GenerateRequestUri()
ClientServiceRequest<ChromeOsDevices>.GetBody()
ClientServiceRequest<ChromeOsDevices>.GetDefaultETagAction(String)
ClientServiceRequest<ChromeOsDevices>.ETagAction
ClientServiceRequest<ChromeOsDevices>.ModifyRequest
ClientServiceRequest<ChromeOsDevices>.RequestParameters
ClientServiceRequest<ChromeOsDevices>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class ListRequest : DirectoryBaseServiceRequest<ChromeOsDevices>, IClientServiceRequest<ChromeOsDevices>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string customerId)
Parameters
Type Name Description
IClientService service
System.String customerId

Properties

CustomerId

The unique ID for the customer's G Suite account. As an account administrator, you can also use the my_customer alias to represent your account's customerId. The customerId is also returned as part of the Users resource.

Declaration
[RequestParameter("customerId", RequestParameterType.Path)]
public virtual string CustomerId { get; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Admin.Directory.directory_v1.Data.ChromeOsDevices>.HttpMethod

MaxResults

Maximum number of results to return.

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual int? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Admin.Directory.directory_v1.Data.ChromeOsDevices>.MethodName

OrderBy

Device property to use for sorting results.

Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual ChromeosdevicesResource.ListRequest.OrderByEnum? OrderBy { get; set; }
Property Value
Type Description
System.Nullable<ChromeosdevicesResource.ListRequest.OrderByEnum>

OrgUnitPath

The full path of the organizational unit or its unique ID.

Declaration
[RequestParameter("orgUnitPath", RequestParameterType.Query)]
public virtual string OrgUnitPath { get; set; }
Property Value
Type Description
System.String

PageToken

The pageToken query parameter is used to request the next page of query results. The follow- on request's pageToken query parameter is the nextPageToken from your previous response.

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

Projection

Restrict information returned to a set of selected fields.

Declaration
[RequestParameter("projection", RequestParameterType.Query)]
public virtual ChromeosdevicesResource.ListRequest.ProjectionEnum? Projection { get; set; }
Property Value
Type Description
System.Nullable<ChromeosdevicesResource.ListRequest.ProjectionEnum>

Query

Search string in the format given at http://support.google.com/chromeos/a/bin/answer.py?answer=1698333

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

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Admin.Directory.directory_v1.Data.ChromeOsDevices>.RestPath

SortOrder

Whether to return results in ascending or descending order. Must be used with the orderBy parameter.

Declaration
[RequestParameter("sortOrder", RequestParameterType.Query)]
public virtual ChromeosdevicesResource.ListRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
System.Nullable<ChromeosdevicesResource.ListRequest.SortOrderEnum>

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Admin.Directory.directory_v1.DirectoryBaseServiceRequest<Google.Apis.Admin.Directory.directory_v1.Data.ChromeOsDevices>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top