Show / Hide Table of Contents

Class OccmDemandSignalCatalogResource

A model containing information about the details of a demand signal catalog resource.

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

Properties

AvailabilityDomain

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

The name of the availability domain for which you want to request the OCI resource. This is an optional parameter.

CompartmentId

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

The OCID of the tenancy from which the demand signal catalog was created.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

The OCID of the demand signal catalog resource.

Remarks

Required

LifecycleState

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

The current lifecycle state of the resource.

Remarks

Required

Name

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

The name of the OCI resource that you want to request.

Remarks

Required

Namespace

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

The name of the OCI service in consideration for demand signal submission. For Example: COMPUTE, NETWORK, GPU etc.

Remarks

Required

Region

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

The name of region for which you want to request the OCI resource. This is an optional parameter.

ResourceProperties

Declaration
[JsonProperty(PropertyName = "resourceProperties")]
public OccmDemandSignalResourcePropertiesCollection ResourceProperties { get; set; }
Property Value
Type Description
OccmDemandSignalResourcePropertiesCollection

ResourcePropertyConstraints

Declaration
[JsonProperty(PropertyName = "resourcePropertyConstraints")]
public OccmDemandSignalResourcePropertyConstraintsCollection ResourcePropertyConstraints { get; set; }
Property Value
Type Description
OccmDemandSignalResourcePropertyConstraintsCollection

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TargetCompartmentId

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

The OCID of the customer tenancy for which this resource will be available for the customer to order against.

TimeCreated

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

The time when the demand signal catalog resource was created.

Remarks

Required

TimeUpdated

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

The time when the demand signal catalog resource was last updated.

Remarks

Required

In this article
Back to top