Show / Hide Table of Contents

Class ServiceCatalogAssociation

The detailed model for service catalog association.

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

Properties

EntityId

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

Identifier of the entity being associated with service catalog.

Remarks

Required

EntityType

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

The type of the entity that is associated with the service catalog.

Id

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

Identifier of the association.

Remarks

Required

ServiceCatalogId

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

Identifier of the service catalog.

Remarks

Required

TimeCreated

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

Timestamp of when the resource was associated with service catalog.

Remarks

Required

In this article
Back to top