Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.containerservice;
import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;
Defines values for ManagedClusterSKUName.
/**
* Defines values for ManagedClusterSKUName.
*/
public final class ManagedClusterSKUName extends ExpandableStringEnum<ManagedClusterSKUName> {
Static value Basic for ManagedClusterSKUName. /** Static value Basic for ManagedClusterSKUName. */
public static final ManagedClusterSKUName BASIC = fromString("Basic");
Creates or finds a ManagedClusterSKUName from its string representation.
Params: - name – a name to look for
Returns: the corresponding ManagedClusterSKUName
/**
* Creates or finds a ManagedClusterSKUName from its string representation.
* @param name a name to look for
* @return the corresponding ManagedClusterSKUName
*/
@JsonCreator
public static ManagedClusterSKUName fromString(String name) {
return fromString(name, ManagedClusterSKUName.class);
}
Returns: known ManagedClusterSKUName values
/**
* @return known ManagedClusterSKUName values
*/
public static Collection<ManagedClusterSKUName> values() {
return values(ManagedClusterSKUName.class);
}
}