Interface KubernetesCluster.UpdateStages.WithAgentPool
-
- All Known Subinterfaces:
KubernetesCluster.Update
- Enclosing interface:
- KubernetesCluster.UpdateStages
public static interface KubernetesCluster.UpdateStages.WithAgentPoolThe stage of the Kubernetes cluster update definition allowing to specify the agent poll in the cluster.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KubernetesClusterAgentPool.DefinitionStages.Blank<? extends KubernetesCluster.Update>defineAgentPool(String name)Begins the definition of an agent pool profile to be attached to the Kubernetes cluster.KubernetesClusterAgentPool.Update<? extends KubernetesCluster.Update>updateAgentPool(String name)Begins the definition of an agent pool profile to be attached to the Kubernetes cluster.KubernetesCluster.UpdatewithoutAgentPool(String name)Removes an agent pool profile from the Kubernetes cluster.
-
-
-
Method Detail
-
defineAgentPool
KubernetesClusterAgentPool.DefinitionStages.Blank<? extends KubernetesCluster.Update> defineAgentPool(String name)
Begins the definition of an agent pool profile to be attached to the Kubernetes cluster.- Parameters:
name- the name for the agent pool profile- Returns:
- the stage representing configuration for the agent pool profile
-
updateAgentPool
KubernetesClusterAgentPool.Update<? extends KubernetesCluster.Update> updateAgentPool(String name)
Begins the definition of an agent pool profile to be attached to the Kubernetes cluster.- Parameters:
name- the name for the agent pool profile- Returns:
- the stage representing configuration for the agent pool profile
-
withoutAgentPool
KubernetesCluster.Update withoutAgentPool(String name)
Removes an agent pool profile from the Kubernetes cluster.- Parameters:
name- the name for the agent pool profile- Returns:
- the next stage of the update
-
-