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

com.azure.resourcemanager.network.models.IpsecEncryption Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.44.0
Show newest version
// 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 com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/**
 * The IPSec encryption algorithm (IKE phase 1).
 */
public final class IpsecEncryption extends ExpandableStringEnum {
    /**
     * Static value None for IpsecEncryption.
     */
    public static final IpsecEncryption NONE = fromString("None");

    /**
     * Static value DES for IpsecEncryption.
     */
    public static final IpsecEncryption DES = fromString("DES");

    /**
     * Static value DES3 for IpsecEncryption.
     */
    public static final IpsecEncryption DES3 = fromString("DES3");

    /**
     * Static value AES128 for IpsecEncryption.
     */
    public static final IpsecEncryption AES128 = fromString("AES128");

    /**
     * Static value AES192 for IpsecEncryption.
     */
    public static final IpsecEncryption AES192 = fromString("AES192");

    /**
     * Static value AES256 for IpsecEncryption.
     */
    public static final IpsecEncryption AES256 = fromString("AES256");

    /**
     * Static value GCMAES128 for IpsecEncryption.
     */
    public static final IpsecEncryption GCMAES128 = fromString("GCMAES128");

    /**
     * Static value GCMAES192 for IpsecEncryption.
     */
    public static final IpsecEncryption GCMAES192 = fromString("GCMAES192");

    /**
     * Static value GCMAES256 for IpsecEncryption.
     */
    public static final IpsecEncryption GCMAES256 = fromString("GCMAES256");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy