Show / Hide Table of Contents

Class OccmDemandSignalDeliverySummary

A summary model containing information about the demand signal delivery resources.

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

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 OccmDemandSignalDeliverySummary.LifecycleDetailsEnum? LifecycleDetails { get; set; }
Property Value
Type Description
OccmDemandSignalDeliverySummary.LifecycleDetailsEnum?

The enum values corresponding to the various states associated with the delivery resource.
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: Under extreme rare scenarios the delivery state can toggle between ACCEPTED and DECLINED states

Remarks

Required

LifecycleState

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

The current lifecycle state of the resource.

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.

In this article
Back to top