Show / Hide Table of Contents

Class VirtualNodePoolSummary

The properties that define a virtual node pool summary.

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

Properties

ClusterId

Declaration
[Required(ErrorMessage = "ClusterId is required.")]
[JsonProperty(PropertyName = "clusterId")]
public string ClusterId { get; set; }
Property Value
Type Description
string

The cluster the virtual node pool is associated with. A virtual node pool can only be associated with one cluster.

Remarks

Required

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

Compartment of the virtual node pool.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Display name of the virtual node pool. This is a non-unique value.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the virtual node pool.

Remarks

Required

InitialVirtualNodeLabels

Declaration
[JsonProperty(PropertyName = "initialVirtualNodeLabels")]
public List<InitialVirtualNodeLabel> InitialVirtualNodeLabels { get; set; }
Property Value
Type Description
List<InitialVirtualNodeLabel>

Initial labels that will be added to the Kubernetes Virtual Node object when it registers. This is the same as virtualNodePool resources.

KubernetesVersion

Declaration
[Required(ErrorMessage = "KubernetesVersion is required.")]
[JsonProperty(PropertyName = "kubernetesVersion")]
public string KubernetesVersion { get; set; }
Property Value
Type Description
string

The version of Kubernetes running on the nodes in the node pool.

Remarks

Required

LifecycleDetails

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

Details about the state of the Virtual Node Pool.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VirtualNodePoolLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
VirtualNodePoolLifecycleState?

The state of the Virtual Node Pool.

NsgIds

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

List of network security group id's applied to the Virtual Node VNIC.

PlacementConfigurations

Declaration
[Required(ErrorMessage = "PlacementConfigurations is required.")]
[JsonProperty(PropertyName = "placementConfigurations")]
public List<PlacementConfiguration> PlacementConfigurations { get; set; }
Property Value
Type Description
List<PlacementConfiguration>

The list of placement configurations which determines where Virtual Nodes will be provisioned across as it relates to the subnet and availability domains. The size attribute determines how many we evenly spread across these placement configurations

Remarks

Required

PodConfiguration

Declaration
[JsonProperty(PropertyName = "podConfiguration")]
public PodConfiguration PodConfiguration { get; set; }
Property Value
Type Description
PodConfiguration

The pod configuration for pods run on virtual nodes of this virtual node pool.

Size

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

The number of Virtual Nodes that should be in the Virtual Node Pool. The placement configurations determine where these virtual nodes are placed.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

Taints

Declaration
[JsonProperty(PropertyName = "taints")]
public List<Taint> Taints { get; set; }
Property Value
Type Description
List<Taint>

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the virtual node pool was created.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the virtual node pool was updated.

VirtualNodeTags

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