Show / Hide Table of Contents

Class StopDbSystemDetails

DB System shutdown parameters.

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

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