Show / Hide Table of Contents

Class NodePoolOptions

Options for creating or updating node pools.

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

Properties

Images

Declaration
[JsonProperty(PropertyName = "images")]
public List<string> Images { get; set; }
Property Value
Type Description
List<string>

Deprecated. See sources. When creating a node pool using the CreateNodePoolDetails object, only image names contained in this property can be passed to the nodeImageName property.

KubernetesVersions

Declaration
[JsonProperty(PropertyName = "kubernetesVersions")]
public List<string> KubernetesVersions { get; set; }
Property Value
Type Description
List<string>

Available Kubernetes versions.

Shapes

Declaration
[JsonProperty(PropertyName = "shapes")]
public List<string> Shapes { get; set; }
Property Value
Type Description
List<string>

Available shapes for nodes.

Sources

Declaration
[JsonProperty(PropertyName = "sources")]
public List<NodeSourceOption> Sources { get; set; }
Property Value
Type Description
List<NodeSourceOption>

Available source of the node.

In this article
Back to top