Show / Hide Table of Contents

Class Principal

Reference to a user, group, or domain.

Inheritance
System.Object
Principal
Implements
IDirectResponseSchema
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class Principal : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GroupResourceName

This principal is a group identified using an external identity. The name field must specify the group resource name with this format: identitysources/{source_id}/groups/{ID}

Declaration
[JsonProperty("groupResourceName")]
public virtual string GroupResourceName { get; set; }
Property Value
Type Description
System.String

GsuitePrincipal

This principal is a GSuite user, group or domain.

Declaration
[JsonProperty("gsuitePrincipal")]
public virtual GSuitePrincipal GsuitePrincipal { get; set; }
Property Value
Type Description
GSuitePrincipal

UserResourceName

This principal is a user identified using an external identity. The name field must specify the user resource name with this format: identitysources/{source_id}/users/{ID}

Declaration
[JsonProperty("userResourceName")]
public virtual string UserResourceName { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top