Show / Hide Table of Contents

Class Organization

An organization entity.

Inheritance
object
Organization
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.TenantmanagercontrolplaneService.Models
Assembly: OCI.DotNetSDK.Tenantmanagercontrolplane.dll
Syntax
public class Organization

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

OCID of the compartment containing the organization. Always a tenancy OCID.

Remarks

Required

DefaultUcmSubscriptionId

Declaration
[Required(ErrorMessage = "DefaultUcmSubscriptionId is required.")]
[JsonProperty(PropertyName = "defaultUcmSubscriptionId")]
public string DefaultUcmSubscriptionId { get; set; }
Property Value
Type Description
string

OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned.

Remarks

Required

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A display name for the organization. Avoid entering confidential information.

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

OCID of the organization.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Organization.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Organization.LifecycleStateEnum?

Lifecycle state of the organization.

Remarks

Required

ParentName

Declaration
[JsonProperty(PropertyName = "parentName")]
public string ParentName { get; set; }
Property Value
Type Description
string

The name of the tenancy that is the organization parent.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Date and time when the organization was created.

Remarks

Required

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

Date and time when the organization was last updated.

In this article
Back to top