Show / Hide Table of Contents

Class GroupsResource.MembershipsResource.LookupRequest

Looks up the resource name of a Membership by its EntityKey.

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

Constructors

LookupRequest(IClientService, String)

Constructs a new Lookup request.

Declaration
public LookupRequest(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.LookupMembershipNameResponse>.HttpMethod

MemberKeyId

The ID of the entity. For Google-managed entities, the id should be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.

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

MemberKeyNamespace

The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source}.

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

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

Parent

Required. The parent Group resource under which to lookup the Membership name. Must be of the form groups/{group}.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
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.LookupMembershipNameResponse>.RestPath

Methods

InitParameters()

Initializes Lookup parameter list.

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

Implements

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