Show / Hide Table of Contents

Class RestartDbSystemDetails

DB System restart parameters.

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

Properties

ShutdownType

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

The InnoDB shutdown mode to use, following the option "innodb_fast_shutdown".

Remarks

Required

In this article
Back to top