Show / Hide Table of Contents

Class UpgradeStatus

The upgrade status of a DRG.

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

Properties

DrgId

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

The drgId of the upgraded DRG.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UpgradeStatus.StatusEnum? Status { get; set; }
Property Value
Type Description
UpgradeStatus.StatusEnum?

The current upgrade status of the DRG attachment.

Remarks

Required

UpgradedConnections

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

The number of upgraded connections.

Remarks

Required

In this article
Back to top