Show / Hide Table of Contents

Class TenancyAttachmentSummary

Summary information about a TenancyAttachment.

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

Properties

Description

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

A description of the tenancy.

Id

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

The OCID of the TenancyAttachment.

Remarks

Required

IsReportingTenancy

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

Whether the tenancy is the tenancy used when creating Resource Analytics Instance.

Remarks

Required

LifecycleDetails

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

A message that describes the current state of the TenancyAttachment in more detail. For example, can be used to provide actionable information for a resource in the Failed state.

LifecycleState

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

The current state of the TenancyAttachment.

Remarks

Required

ResourceAnalyticsInstanceId

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

The OCID of the ResourceAnalyticsInstance associated with this TenancyAttachment.

Remarks

Required

SystemTags

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

System tags for this resource. Each key is predefined and scoped to a namespace.
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

The OCID of the tenancy associated with this TenancyAttachment.

Remarks

Required

TimeCreated

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

The date and time the TenancyAttachment was created, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The date and time the TenancyAttachment was updated, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

In this article
Back to top