Show / Hide Table of Contents

Class MySqlConfigurationDataSummary

The configuration variables for a MySQL Database. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.

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

Properties

DefaultValue

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

The default value of the variable.

Remarks

Required

Description

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

The description of the variable.

Remarks

Required

HostSet

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

The host from where the value of the variable was set. This is empty for a MySQL Database System.

Remarks

Required

IsConfigurable

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

Indicates whether the variable is configurable.

Remarks

Required

IsDynamic

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

Indicates whether the variable can be set dynamically or not.

Remarks

Required

IsInit

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

Indicates whether the variable is set at server startup.

Remarks

Required

MaxValue

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

The maximum value of the variable.

Remarks

Required

MinValue

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

The minimum value of the variable.

Remarks

Required

Name

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

The name of the configuration variable

Remarks

Required

Path

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

The path name of the option file (VARIABLE_PATH), if the variable was set in an option file. If the variable was not set in an

Remarks

Required

PossibleValues

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

The comma-separated list of possible values for the variable in value:valueDescription format.

Remarks

Required

Source

Declaration
[Required(ErrorMessage = "Source is required.")]
[JsonProperty(PropertyName = "source")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MySqlConfigurationDataSummary.SourceEnum? Source { get; set; }
Property Value
Type Description
MySqlConfigurationDataSummary.SourceEnum?

The source from which the variable was most recently set.

Remarks

Required

SupportedVersions

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

The comma-separated list of MySQL versions that support the variable.

Remarks

Required

TimeSet

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

The time when the value of the variable was set.

Remarks

Required

Type

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

The type of variable.

Remarks

Required

UserSet

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

The user who sets the value of the variable. This is empty for a MySQL Database System.

Remarks

Required

Value

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

The value of the variable.

Remarks

Required

In this article
Back to top