Show / Hide Table of Contents

Class AssociationSummary

The details of the association.

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

Properties

AssociatedResourceId

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

The OCID of the associated resource.

Remarks

Required

AssociationType

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

Type of the association.

Remarks

Required

CertificatesResourceId

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

The OCID of the certificate-related resource associated with another Oracle Cloud Infrastructure resource.

Remarks

Required

CompartmentId

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

The compartment OCID of the association. This is strongly tied to the compartment OCID of the certificate-related resource.

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 association.

Remarks

Required

LifecycleState

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

The current lifecycle state of the association.

Remarks

Required

Name

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

A user-friendly name generated by the service for the association. Name format follows the pattern [certificatesResourceEntityType]-[associatedResourceEntityType]-UUID.

Remarks

Required

TimeCreated

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

A property indicating when the association was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Remarks

Required

In this article
Back to top