Show / Hide Table of Contents

Class ShapeConfig

This is used to configure the shape of the driver or executor if a flexible shape is used.

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

Properties

MemoryInGBs

Declaration
[JsonProperty(PropertyName = "memoryInGBs")]
public decimal? MemoryInGBs { get; set; }
Property Value
Type Description
decimal?

The amount of memory used for the driver or executors.

Ocpus

Declaration
[JsonProperty(PropertyName = "ocpus")]
public decimal? Ocpus { get; set; }
Property Value
Type Description
decimal?

The total number of OCPUs used for the driver or executors. See here for details.

In this article
Back to top