Show / Hide Table of Contents

Class Organization

The root node in the resource hierarchy to which a particular entity's (e.g., company) resources belong.

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

Properties

CreationTime

Timestamp when the Organization was created. Assigned by the server.

Declaration
[JsonProperty("creationTime")]
public virtual object CreationTime { get; set; }
Property Value
Type Description
System.Object

DisplayName

A human-readable string that refers to the Organization in the GCP Console UI. This string is set by the server and cannot be changed. The string will be set to the primary domain (for example, "google.com") of the G Suite customer that owns the organization.

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

ETag

The ETag of the item.

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

LifecycleState

The organization's current lifecycle state. Assigned by the server.

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

Name

Output only. The resource name of the organization. This is the organization's relative path in the API. Its format is "organizations/[organization_id]". For example, "organizations/1234".

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

Owner

The owner of this Organization. The owner should be specified on creation. Once set, it cannot be changed. This field is required.

Declaration
[JsonProperty("owner")]
public virtual OrganizationOwner Owner { get; set; }
Property Value
Type Description
OrganizationOwner

Implements

IDirectResponseSchema
In This Article
Back to top