Show / Hide Table of Contents

Class OdaPrivateEndpointAttachmentSummary

Summary of the ODA private endpoint attachment.

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

Properties

CompartmentId

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

The OCID of the compartment that the ODA private endpoint attachment belongs to.

Remarks

Required

Id

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

The OCID of the ODA Private Endpoint Attachment.

Remarks

Required

LifecycleState

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

The current state of the ODA Private Endpoint attachment.

Remarks

Required

OdaInstanceId

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

The OCID of the attached ODA Instance.

Remarks

Required

OdaPrivateEndpointId

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

The OCID of the ODA Private Endpoint.

Remarks

Required

TimeCreated

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

When the resource was created. A date-time string as described in RFC 3339, section 14.29.

Remarks

Required

TimeUpdated

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

When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.

In this article
Back to top