com.azure.resourcemanager.mongocluster.models.PublicNetworkAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mongocluster Show documentation
Show all versions of azure-resourcemanager-mongocluster Show documentation
This package contains Microsoft Azure SDK for Mongo Cluster Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Microsoft Azure management API provides create, read, update, and delete functionality for Azure Cosmos DB for MongoDB vCore resources including clusters and firewall rules.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.resourcemanager.mongocluster.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Whether or not public endpoint access is allowed for this Mongo cluster. Value is optional and default value is
* 'Enabled'.
*/
public final class PublicNetworkAccess extends ExpandableStringEnum {
/**
* Static value Enabled for PublicNetworkAccess.
*/
public static final PublicNetworkAccess ENABLED = fromString("Enabled");
/**
* Static value Disabled for PublicNetworkAccess.
*/
public static final PublicNetworkAccess DISABLED = fromString("Disabled");
/**
* Creates a new instance of PublicNetworkAccess value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public PublicNetworkAccess() {
}
/**
* Creates or finds a PublicNetworkAccess from its string representation.
*
* @param name a name to look for.
* @return the corresponding PublicNetworkAccess.
*/
public static PublicNetworkAccess fromString(String name) {
return fromString(name, PublicNetworkAccess.class);
}
/**
* Gets known PublicNetworkAccess values.
*
* @return known PublicNetworkAccess values.
*/
public static Collection values() {
return values(PublicNetworkAccess.class);
}
}