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

com.azure.resourcemanager.network.models.IkeIntegrity 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 IKE integrity algorithm (IKE phase 2).
 */
public final class IkeIntegrity extends ExpandableStringEnum {
    /**
     * Static value MD5 for IkeIntegrity.
     */
    public static final IkeIntegrity MD5 = fromString("MD5");

    /**
     * Static value SHA1 for IkeIntegrity.
     */
    public static final IkeIntegrity SHA1 = fromString("SHA1");

    /**
     * Static value SHA256 for IkeIntegrity.
     */
    public static final IkeIntegrity SHA256 = fromString("SHA256");

    /**
     * Static value SHA384 for IkeIntegrity.
     */
    public static final IkeIntegrity SHA384 = fromString("SHA384");

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy