Show / Hide Table of Contents

Class UpdateMacOrderDetails

The data to update a MacOrder.

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

Properties

DisplayName

Declaration
[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

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.

OrderDescription

Declaration
[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.

OrderSize

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

Number of macs requested in this MacOrder.

Shape

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

The shape of the Mac.

In this article
Back to top