com.azure.resourcemanager.servicefabricmanagedclusters.models.VmSetupAction Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicefabricmanagedclusters.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* action to be performed on the vms before bootstrapping the service fabric runtime.
*/
public final class VmSetupAction extends ExpandableStringEnum {
/**
* Static value EnableContainers for VmSetupAction.
*/
public static final VmSetupAction ENABLE_CONTAINERS = fromString("EnableContainers");
/**
* Static value EnableHyperV for VmSetupAction.
*/
public static final VmSetupAction ENABLE_HYPERV = fromString("EnableHyperV");
/**
* Creates a new instance of VmSetupAction value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public VmSetupAction() {
}
/**
* Creates or finds a VmSetupAction from its string representation.
*
* @param name a name to look for.
* @return the corresponding VmSetupAction.
*/
public static VmSetupAction fromString(String name) {
return fromString(name, VmSetupAction.class);
}
/**
* Gets known VmSetupAction values.
*
* @return known VmSetupAction values.
*/
public static Collection values() {
return values(VmSetupAction.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy