Show / Hide Table of Contents

Class PoolConfig

An object containing the details about the compute shapes and number of compute instances to provison.

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

Properties

Max

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

Maximum number of compute instances in the pool for a given compute shape.

Min

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

Minimum number of compute instances in the pool for a given compute shape.

Shape

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

The compute shape of the resources you would like to provision.

ShapeConfig

Declaration
[JsonProperty(PropertyName = "shapeConfig")]
public ShapeConfig ShapeConfig { get; set; }
Property Value
Type Description
ShapeConfig
In this article
Back to top