Show / Hide Table of Contents

Class CreateTenancyAttachmentDetails

The data to create a TenancyAttachment.

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

Properties

Description

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

A description of the tenancy.

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

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

In this article
Back to top