Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_34_0

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_34_0 . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: KubernetesClusterAgentPool.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the mode of the agent pool
 */
@Beta(SinceVersion.V1_34_0)
AgentPoolMode mode();
 
Example 2
Source File: KubernetesClusterAgentPool.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the mode of the agents.
 *
 * @param mode the agent pool mode
 * @return the next stage
 */
@Beta(SinceVersion.V1_34_0)
WithAttach<ParentT> withMode(AgentPoolMode mode);
 
Example 3
Source File: KubernetesCluster.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the sku of the cluster
 */
@Beta(SinceVersion.V1_34_0)
ManagedClusterSKU sku();
 
Example 4
Source File: KubernetesCluster.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the cluster's sku.
 *
 * @param sku the cluster's sku
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_34_0)
KubernetesCluster.DefinitionStages.WithCreate withSku(ManagedClusterSKU sku);