Show / Hide Table of Contents

Class StartDbSystemDetails

DB System start parameters to update ocpu, memory, shape and configuration.

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

Properties

ConfigId

Declaration
[JsonProperty(PropertyName = "configId")]
public string ConfigId { get; set; }
Property Value
Type Description
string

The updated configId for the database system.

InstanceMemorySizeInGBs

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

The total amount of memory available to each database system node, in gigabytes.

InstanceOcpuCount

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

The total number of OCPUs available to each database system node.

Shape

Declaration
[JsonProperty(PropertyName = "shape")]
public string Shape { get; set; }
Property Value
Type Description
string

The name of the shape for the database system nodes. Example: VM.Standard.E4.Flex

In this article
Back to top