Show / Hide Table of Contents

Class GroupsResource.SearchRequest

Searches for Group resources matching a specified query.

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<SearchGroupsResponse>
CloudIdentityBaseServiceRequest<SearchGroupsResponse>
GroupsResource.SearchRequest
Implements
Google.Apis.Requests.IClientServiceRequest<SearchGroupsResponse>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.Xgafv
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.AccessToken
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.Alt
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.Callback
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.Fields
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.Key
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.OauthToken
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.PrettyPrint
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.QuotaUser
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.UploadType
CloudIdentityBaseServiceRequest<SearchGroupsResponse>.UploadProtocol
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.GetBody()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.Service
Google.Apis.Requests.ClientServiceRequest._unsuccessfulResponseHandlers
Google.Apis.Requests.ClientServiceRequest._exceptionHandlers
Google.Apis.Requests.ClientServiceRequest._executeInterceptors
Google.Apis.Requests.ClientServiceRequest.AddUnsuccessfulResponseHandler(Google.Apis.Http.IHttpUnsuccessfulResponseHandler)
Google.Apis.Requests.ClientServiceRequest.AddExceptionHandler(Google.Apis.Http.IHttpExceptionHandler)
Google.Apis.Requests.ClientServiceRequest.AddExecuteInterceptor(Google.Apis.Http.IHttpExecuteInterceptor)
Google.Apis.Requests.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.CloudIdentity.v1
Assembly: Google.Apis.CloudIdentity.v1.dll
Syntax
public class SearchRequest : CloudIdentityBaseServiceRequest<SearchGroupsResponse>, IClientServiceRequest<SearchGroupsResponse>, IClientServiceRequest

Constructors

SearchRequest(IClientService)

Constructs a new Search request.

Declaration
public SearchRequest(IClientService service)
Parameters
Type Name Description
Google.Apis.Services.IClientService service

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.MethodName

PageSize

The maximum number of results to return. Note that the number of results returned may be less than this value even if there are more available results. To fetch all results, clients must continue calling this method repeatedly until the response no longer contains a next_page_token. If unspecified, defaults to 200 for GroupView.BASIC and 50 for GroupView.FULL. Must not be greater than 1000 for GroupView.BASIC or 500 for GroupView.FULL.

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

PageToken

The next_page_token value returned from a previous search request, if any.

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

Query

Required. The search query. Must be specified in Common Expression Language. May only contain equality operators on the parent and inclusion operators on labels (e.g., parent == &apos;customers/{customer}&apos; &amp;amp;&amp;amp; &apos;cloudidentity.googleapis.com/groups.discussion_forum&apos; in labels). The customer must begin with "C" (for example, 'C046psxkn').

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.CloudIdentity.v1.Data.SearchGroupsResponse>.RestPath

View

The level of detail to be returned. If unspecified, defaults to View.BASIC.

Declaration
[RequestParameter("view", RequestParameterType.Query)]
public virtual GroupsResource.SearchRequest.ViewEnum? View { get; set; }
Property Value
Type Description
System.Nullable<GroupsResource.SearchRequest.ViewEnum>

Methods

InitParameters()

Initializes Search parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.CloudIdentity.v1.CloudIdentityBaseServiceRequest<Google.Apis.CloudIdentity.v1.Data.SearchGroupsResponse>.InitParameters()

Implements

Google.Apis.Requests.IClientServiceRequest<TResponse>
Google.Apis.Requests.IClientServiceRequest
In This Article
Back to top