Show / Hide Table of Contents

Class GroupsResource

The "groups" collection of methods.

Inheritance
System.Object
GroupsResource
Inherited Members
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 GroupsResource

Constructors

GroupsResource(IClientService)

Constructs a new resource.

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

Properties

Memberships

Gets the Memberships resource.

Declaration
public virtual GroupsResource.MembershipsResource Memberships { get; }
Property Value
Type Description
GroupsResource.MembershipsResource

Methods

Create(Group)

Creates a Group.

Declaration
public virtual GroupsResource.CreateRequest Create(Group body)
Parameters
Type Name Description
Group body

The body of the request.

Returns
Type Description
GroupsResource.CreateRequest

Delete(String)

Deletes a Group.

Declaration
public virtual GroupsResource.DeleteRequest Delete(string name)
Parameters
Type Name Description
System.String name

Required. The resource name of the Group to retrieve. Must be of the form groups/{group}.

Returns
Type Description
GroupsResource.DeleteRequest

Get(String)

Retrieves a Group.

Declaration
public virtual GroupsResource.GetRequest Get(string name)
Parameters
Type Name Description
System.String name

Required. The resource name of the Group to retrieve. Must be of the form groups/{group}.

Returns
Type Description
GroupsResource.GetRequest

List()

Lists the Group resources under a customer or namespace.

Declaration
public virtual GroupsResource.ListRequest List()
Returns
Type Description
GroupsResource.ListRequest

Lookup()

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

Declaration
public virtual GroupsResource.LookupRequest Lookup()
Returns
Type Description
GroupsResource.LookupRequest

Patch(Group, String)

Updates a Group.

Declaration
public virtual GroupsResource.PatchRequest Patch(Group body, string name)
Parameters
Type Name Description
Group body

The body of the request.

System.String name

Output only. The resource name of the Group. Shall be of the form groups/{group}.

Returns
Type Description
GroupsResource.PatchRequest

Search()

Searches for Group resources matching a specified query.

Declaration
public virtual GroupsResource.SearchRequest Search()
Returns
Type Description
GroupsResource.SearchRequest
In This Article
Back to top