Show / Hide Table of Contents

Class DatabaseTool

Summary of database tools of autonomous database.

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

Properties

ComputeCount

Declaration
[JsonProperty(PropertyName = "computeCount")]
public float? ComputeCount { get; set; }
Property Value
Type Description
float?

Compute used by database tools.

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Indicates whether tool is enabled.

MaxIdleTimeInMinutes

Declaration
[JsonProperty(PropertyName = "maxIdleTimeInMinutes")]
public int? MaxIdleTimeInMinutes { get; set; }
Property Value
Type Description
int?

The max idle time, in minutes, after which the VM used by database tools will be terminated.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseTool.NameEnum? Name { get; set; }
Property Value
Type Description
DatabaseTool.NameEnum?

Name of database tool.

Remarks

Required

In this article
Back to top