Show / Hide Table of Contents

Class AssociatedResourceSummary

Summary details of the associated resource of an attribute set.

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

Properties

AssociatedResourceId

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

The OCID of the resource that is associated with the attribute set.

AssociatedResourceName

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

The display name of the resource that is associated with the attribute set. The name does not have to be unique, and is changeable.

AssociatedResourceType

Declaration
[JsonProperty(PropertyName = "associatedResourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AssociatedResourceSummary.AssociatedResourceTypeEnum? AssociatedResourceType { get; set; }
Property Value
Type Description
AssociatedResourceSummary.AssociatedResourceTypeEnum?

The resource type that is associated with the attribute set.

TimeCreated

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

The date and time when associated started between resource and the attribute set, in the format defined by RFC3339.

TimeUpdated

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

The date and time when associated is removed between resources and the attribute set, in the format defined by RFC3339.

In this article
Back to top