
com.azure.resourcemanager.network.models.VpnLinkConnectionMode 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.network.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Vpn link connection mode.
*/
public final class VpnLinkConnectionMode extends ExpandableStringEnum {
/**
* Static value Default for VpnLinkConnectionMode.
*/
public static final VpnLinkConnectionMode DEFAULT = fromString("Default");
/**
* Static value ResponderOnly for VpnLinkConnectionMode.
*/
public static final VpnLinkConnectionMode RESPONDER_ONLY = fromString("ResponderOnly");
/**
* Static value InitiatorOnly for VpnLinkConnectionMode.
*/
public static final VpnLinkConnectionMode INITIATOR_ONLY = fromString("InitiatorOnly");
/**
* Creates a new instance of VpnLinkConnectionMode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public VpnLinkConnectionMode() {
}
/**
* Creates or finds a VpnLinkConnectionMode from its string representation.
*
* @param name a name to look for.
* @return the corresponding VpnLinkConnectionMode.
*/
public static VpnLinkConnectionMode fromString(String name) {
return fromString(name, VpnLinkConnectionMode.class);
}
/**
* Gets known VpnLinkConnectionMode values.
*
* @return known VpnLinkConnectionMode values.
*/
public static Collection values() {
return values(VpnLinkConnectionMode.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy