Show / Hide Table of Contents

Class RestartDbInstanceInDbSystemDetails

Database instance node restart parameters.

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

Properties

DbInstanceId

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

A unique identifier for the database instance, or node.

Remarks

Required

RestartType

Declaration
[Required(ErrorMessage = "RestartType is required.")]
[JsonProperty(PropertyName = "restartType")]
[JsonConverter(typeof(StringEnumConverter))]
public RestartDbInstanceInDbSystemDetails.RestartTypeEnum? RestartType { get; set; }
Property Value
Type Description
RestartDbInstanceInDbSystemDetails.RestartTypeEnum?

The restart type for the database instance.

Remarks

Required

In this article
Back to top