Show / Hide Table of Contents

Class CreateInternalOccmDemandSignalDeliveryDetails

An internal model containing details about the properties required for creating a demand signal delivery resource.

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

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

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 declining the request.

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

In this article
Back to top