All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.recoveryservicesdatareplication.models.VMNicSelection 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.recoveryservicesdatareplication.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * Gets or sets the selection type of the NIC.
 */
public final class VMNicSelection extends ExpandableStringEnum {
    /**
     * Static value NotSelected for VMNicSelection.
     */
    public static final VMNicSelection NOT_SELECTED = fromString("NotSelected");

    /**
     * Static value SelectedByUser for VMNicSelection.
     */
    public static final VMNicSelection SELECTED_BY_USER = fromString("SelectedByUser");

    /**
     * Static value SelectedByDefault for VMNicSelection.
     */
    public static final VMNicSelection SELECTED_BY_DEFAULT = fromString("SelectedByDefault");

    /**
     * Static value SelectedByUserOverride for VMNicSelection.
     */
    public static final VMNicSelection SELECTED_BY_USER_OVERRIDE = fromString("SelectedByUserOverride");

    /**
     * Creates a new instance of VMNicSelection value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public VMNicSelection() {
    }

    /**
     * Creates or finds a VMNicSelection from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding VMNicSelection.
     */
    public static VMNicSelection fromString(String name) {
        return fromString(name, VMNicSelection.class);
    }

    /**
     * Gets known VMNicSelection values.
     * 
     * @return known VMNicSelection values.
     */
    public static Collection values() {
        return values(VMNicSelection.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy