Show / Hide Table of Contents

Class MacDeviceSummary

Summary information about a MacDevice.

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

Properties

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

Id

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

The unique ID of the MacDevice.

Remarks

Required

IpAddress

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

The IP address assigned to the MacDevice.

Remarks

Required

IsMarkedDecom

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

A flag that indicates if this MacDevice is decommissioned.

Remarks

Required

LifecycleState

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

The current status of the MacDevice.

Remarks

Required

MacOrderId

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

The OCID of the resource.

Remarks

Required

SerialNumber

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

The serial number of the MacDevice.

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 shape of the MacDevice.

Remarks

Required

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

TimeDecom

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

An RFC3339-formatted datetime string containing the time this MacDevice was decommissioned.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[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.

Remarks

Required

In this article
Back to top