Show / Hide Table of Contents

Class InternalOccmDemandSignalDelivery

An internal model that contains information about the demand signal item delivery from OCI to customers.

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

Properties

AcceptedQuantity

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

The quantity of the resource that OCI will supply to the customer.

Remarks

Required

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 delivery resource is 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"}}

DemandSignalId

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

The OCID of the demand signal under which this delivery will be grouped.

Remarks

Required

DemandSignalItemId

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

The OCID of the demand signal item corresponding to which this delivery is made.

Remarks

Required

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 this demand signal delivery resource.

Remarks

Required

Justification

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

This field could be used by OCI to communicate the reason for accepting or declining the request.

LifecycleDetails

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

The enum values corresponding to the various states associated with the delivery resource.
SUBMITTED -> The state where operators have started working and thinking on the quantity that OCI can delivery for the corresponding demand signal item. IN_REVIEW -> The operators are waiting on approvals from different teams/folks in this state. ACCEPTED -> OCI has accepted your resource request and will deliver the quantity as specified by acceptance quantity of this resource. DECLINED -> OCI has declined you resource request. DELIVERED -> OCI has delivered the accepted quantity to the customers.
NOTE: The resource becomes visible to customers in ACCEPTED, DECLINED or DELIVERED state.

Remarks

Required

LifecycleState

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

The current lifecycle state of the resource.

Remarks

Required

Notes

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

This field acts as a notes section for operators.

OccCustomerGroupId

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

The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

Remarks

Required

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"}}

TimeDelivered

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

The date on which the OCI delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.

In this article
Back to top