Show / Hide Table of Contents

Class CustomersResource.ProfilesResource.ListRequest

Lists Chrome browser profiles of a customer based on the given search and sorting criteria.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>
CustomersResource.ProfilesResource.ListRequest
Implements
IClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>
IClientServiceRequest
Inherited Members
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.Xgafv
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.AccessToken
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.Alt
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.Callback
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.Fields
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.Key
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.OauthToken
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.PrettyPrint
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.QuotaUser
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.UploadType
ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.UploadProtocol
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.Execute()
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ExecuteAsync()
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.CreateRequest(bool?)
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.GetBody()
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.GetDefaultETagAction(string)
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ETagAction
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ModifyRequest
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ValidateParameters
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.ApiVersion
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.RequestParameters
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.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.ProfilesResource.ListRequest : ChromeManagementBaseServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>, IClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>, 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. The filter used to filter profiles. The following fields can be used in the filter: - profile_id - display_name - user_email - last_activity_time - last_policy_sync_time - last_status_report_time - first_enrollment_time - os_platform_type - os_version - browser_version - browser_channel - policy_count - extension_count - identity_provider - affiliation_state - os_platform_version - ouId Any of the above fields can be used to specify a filter, and filtering by multiple fields is supported with AND operator. String type fields and enum type fields support '=' and '!=' operators. The integer type and the timestamp type fields support '=', '!=', '&lt;', '&gt;', '&lt;=' and '&gt;=' operators. Timestamps expect an RFC-3339 formatted string (e.g. 2012-04-21T11:30:00-04:00). Wildcard '*' can be used with a string type field filter. In addition, string literal filtering is also supported, for example, 'ABC' as a filter maps to a filter that checks if any of the filterable string type fields contains 'ABC'. Organization unit number can be used as a filtering criteria here by specifying 'ouId = ${your_org_unit_id}', please note that only single OU ID matching is supported.

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<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.HttpMethod

MethodName

Gets the method name.

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

OrderBy

Optional. The fields used to specify the ordering of the results. The supported fields are: - profile_id - display_name - user_email - last_activity_time - last_policy_sync_time - last_status_report_time - first_enrollment_time - os_platform_type - os_version - browser_version - browser_channel - policy_count - extension_count - identity_provider - affiliation_state - os_platform_version By default, sorting is in ascending order, to specify descending order for a field, a suffix " desc" should be added to the field name. The default ordering is the descending order of last_status_report_time.

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

PageSize

Optional. The maximum number of profiles to return. The default page size is 100 if page_size is unspecified, and the maximum page size allowed is 200.

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

PageToken

Optional. The page token used to retrieve a specific page of the listing request.

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

Parent

Required. Format: customers/{customer_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
ClientServiceRequest<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

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