Show / Hide Table of Contents

Class CreateServiceCatalogAssociationDetails

The model to create a single association between a service catalog and a resource.

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

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.

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

In this article
Back to top