Show / Hide Table of Contents

Class GroupsResource.MembershipsResource.CheckTransitiveMembershipRequest

Check a potential member for membership in a group. Note: This feature is only available to Google Workspace Enterprise Standard, Enterprise Plus, and Enterprise for Education; and Cloud Identity Premium accounts. If the account of the member is not one of these, a 403 (PERMISSION_DENIED) HTTP status code will be returned. A member has membership to a group as long as there is a single viewable transitive membership between the group and the member. The actor must have view permissions to at least one transitive membership between the member and group.

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<CheckTransitiveMembershipResponse>
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>
GroupsResource.MembershipsResource.CheckTransitiveMembershipRequest
Implements
Google.Apis.Requests.IClientServiceRequest<CheckTransitiveMembershipResponse>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.Xgafv
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.AccessToken
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.Alt
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.Callback
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.Fields
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.Key
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.OauthToken
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.PrettyPrint
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.QuotaUser
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.UploadType
CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>.UploadProtocol
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.GetBody()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudIdentity.v1.Data.CheckTransitiveMembershipResponse>.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 CheckTransitiveMembershipRequest : CloudIdentityBaseServiceRequest<CheckTransitiveMembershipResponse>, IClientServiceRequest<CheckTransitiveMembershipResponse>, IClientServiceRequest

Constructors

CheckTransitiveMembershipRequest(IClientService, String)

Constructs a new CheckTransitiveMembership request.

Declaration
public CheckTransitiveMembershipRequest(IClientService service, string parent)
Parameters
Type Name Description
Google.Apis.Services.IClientService service
System.String parent

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.CheckTransitiveMembershipResponse>.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.CheckTransitiveMembershipResponse>.MethodName

Parent

Resource name of the group to check the transitive membership in. Format: groups/{group}, where group is the unique id assigned to the Group to which the Membership belongs to.

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

Query

Required. A CEL expression that MUST include member specification. This is a required field. Certain 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 == &apos;member_key_id_value&apos;

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.CheckTransitiveMembershipResponse>.RestPath

Methods

InitParameters()

Initializes CheckTransitiveMembership parameter list.

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

Implements

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