Show / Hide Table of Contents

Class GroupsResource.MembershipsResource.SearchDirectGroupsRequest

Searches direct groups of a member.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<SearchDirectGroupsResponse>
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>
GroupsResource.MembershipsResource.SearchDirectGroupsRequest
Implements
IClientServiceRequest<SearchDirectGroupsResponse>
IClientServiceRequest
Inherited Members
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.Xgafv
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.AccessToken
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.Alt
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.Callback
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.Fields
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.Key
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.OauthToken
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.PrettyPrint
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.QuotaUser
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.UploadType
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.UploadProtocol
ClientServiceRequest<SearchDirectGroupsResponse>.Execute()
ClientServiceRequest<SearchDirectGroupsResponse>.ExecuteAsStream()
ClientServiceRequest<SearchDirectGroupsResponse>.ExecuteAsync()
ClientServiceRequest<SearchDirectGroupsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<SearchDirectGroupsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<SearchDirectGroupsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<SearchDirectGroupsResponse>.CreateRequest(bool?)
ClientServiceRequest<SearchDirectGroupsResponse>.GenerateRequestUri()
ClientServiceRequest<SearchDirectGroupsResponse>.GetBody()
ClientServiceRequest<SearchDirectGroupsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<SearchDirectGroupsResponse>.ETagAction
ClientServiceRequest<SearchDirectGroupsResponse>.ModifyRequest
ClientServiceRequest<SearchDirectGroupsResponse>.ValidateParameters
ClientServiceRequest<SearchDirectGroupsResponse>.ApiVersion
ClientServiceRequest<SearchDirectGroupsResponse>.RequestParameters
ClientServiceRequest<SearchDirectGroupsResponse>.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.CloudIdentity.v1
Assembly: Google.Apis.CloudIdentity.v1.dll
Syntax
public class GroupsResource.MembershipsResource.SearchDirectGroupsRequest : CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>, IClientServiceRequest<SearchDirectGroupsResponse>, IClientServiceRequest

Constructors

SearchDirectGroupsRequest(IClientService, string)

Constructs a new SearchDirectGroups request.

Declaration
public SearchDirectGroupsRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
string parent

Properties

HttpMethod

Gets the HTTP method.

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

MethodName

Gets the method name.

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

OrderBy

The ordering of membership relation for the display name or email in the response. The syntax for this field can be found at https://cloud.google.com/apis/design/design_patterns#sorting_order. Example: Sort by the ascending display name: order_by="group_name" or order_by="group_name asc". Sort by the descending display name: order_by="group_name desc". Sort by the ascending group key: order_by="group_key" or order_by="group_key asc". Sort by the descending group key: order_by="group_key desc".

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

PageSize

The default page size is 200 (max 1000).

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

PageToken

The next_page_token value returned from a previous list request, if any

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

Parent

Resource name of the group to search transitive memberships in. Format: groups/{group_id}, where group_id is always '-' as this API will search across all groups for a given member.

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

Query

Required. A CEL expression that MUST include member specification AND label(s). Users can search on label attributes of groups. CONTAINS match ('in') is supported on labels. Identity-mapped groups are uniquely identified by both a member_key_id and a member_key_namespace, which requires an additional query input: member_key_namespace. Example query: member_key_id == 'member_key_id_value' &amp;&amp; 'label_value' in labels

Declaration
[RequestParameter("query", RequestParameterType.Query)]
public virtual string Query { 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<SearchDirectGroupsResponse>.RestPath

Methods

InitParameters()

Initializes SearchDirectGroups parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudIdentityBaseServiceRequest<SearchDirectGroupsResponse>.InitParameters()

Implements

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