Show / Hide Table of Contents

Class OrganizationTenancySummary

An organization tenancy summary entity.

Inheritance
object
OrganizationTenancySummary
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 OrganizationTenancySummary

Properties

GovernanceStatus

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

The governance status of the tenancy.

Remarks

Required

IsApprovedForTransfer

Declaration
[JsonProperty(PropertyName = "isApprovedForTransfer")]
public bool? IsApprovedForTransfer { get; set; }
Property Value
Type Description
bool?

Parameter to indicate the tenancy is approved for transfer to another organization.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OrganizationTenancyLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
OrganizationTenancyLifecycleState?

Lifecycle state of the organization tenancy.

Name

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

Name of the tenancy.

Role

Declaration
[JsonProperty(PropertyName = "role")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OrganizationTenancyRole? Role { get; set; }
Property Value
Type Description
OrganizationTenancyRole?

Role of the organization tenancy.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TenancyId

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

OCID of the tenancy.

Remarks

Required

TimeJoined

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

Date and time when the tenancy joined the organization.

TimeLeft

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

Date and time when the tenancy left the organization.

In this article
Back to top