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

com.azure.resourcemanager.servicebus.models.PrivateLinkConnectionStatus Maven / Gradle / Ivy

Go to download

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

The 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.servicebus.models;

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

/**
 * Status of the connection.
 */
public final class PrivateLinkConnectionStatus extends ExpandableStringEnum {
    /**
     * Static value Pending for PrivateLinkConnectionStatus.
     */
    public static final PrivateLinkConnectionStatus PENDING = fromString("Pending");

    /**
     * Static value Approved for PrivateLinkConnectionStatus.
     */
    public static final PrivateLinkConnectionStatus APPROVED = fromString("Approved");

    /**
     * Static value Rejected for PrivateLinkConnectionStatus.
     */
    public static final PrivateLinkConnectionStatus REJECTED = fromString("Rejected");

    /**
     * Static value Disconnected for PrivateLinkConnectionStatus.
     */
    public static final PrivateLinkConnectionStatus DISCONNECTED = fromString("Disconnected");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy