Show / Hide Table of Contents

Class MacOrderSummary

Summary information about a MacOrder.

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

Properties

CommitmentTerm

Declaration
[Required(ErrorMessage = "CommitmentTerm is required.")]
[JsonProperty(PropertyName = "commitmentTerm")]
[JsonConverter(typeof(StringEnumConverter))]
public MacOrder.CommitmentTermEnum? CommitmentTerm { get; set; }
Property Value
Type Description
MacOrder.CommitmentTermEnum?

Enum indicating the agreed commitment term on the MacOrder.

Remarks

Required

CompartmentId

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

OCID of the compartment to which the resource belongs to.

Remarks

Required

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Example: My new resource

Remarks

Required

Id

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

The OCID of the resource.

Remarks

Required

IpRange

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

The IP Range specified by the customer for this order.

IsDocusigned

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

Checkbox value that indicates whether the customer completed docusign process.

Remarks

Required

LifecycleDetails

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

A message that describes the current state of the MacOrder in more detail.

LifecycleState

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

The current state of the MacOrder.

Remarks

Required

OrderDescription

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

A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.

Remarks

Required

OrderSize

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

Number of macs requested in this MacOrder.

Remarks

Required

OrderStatus

Declaration
[Required(ErrorMessage = "OrderStatus is required.")]
[JsonProperty(PropertyName = "orderStatus")]
[JsonConverter(typeof(StringEnumConverter))]
public MacOrder.OrderStatusEnum? OrderStatus { get; set; }
Property Value
Type Description
MacOrder.OrderStatusEnum?

The current status of the MacOrder.

Remarks

Required

Shape

Declaration
[Required(ErrorMessage = "Shape is required.")]
[JsonProperty(PropertyName = "shape")]
[JsonConverter(typeof(StringEnumConverter))]
public MacOrder.ShapeEnum? Shape { get; set; }
Property Value
Type Description
MacOrder.ShapeEnum?

The requested shape for Macs in this MacOrder.

Remarks

Required

TimeBillingEnded

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

An RFC3339-formatted datetime string containing the date and time this MacOrder begins.

TimeBillingStarted

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

An RFC3339-formatted datetime string containing the date and time this MacOrder begins.

TimeCreated

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

The time this resource was created. An RFC3339 formatted datetime string.

Remarks

Required

TimeUpdated

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

The time this resource was last updated. An RFC3339 formatted datetime string.

In this article
Back to top