com.azure.resourcemanager.databoxedge.models.SslStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-databoxedge Show documentation
Show all versions of azure-resourcemanager-databoxedge Show documentation
This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.
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.databoxedge.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Signifies whether SSL needs to be enabled or not.
*/
public final class SslStatus extends ExpandableStringEnum {
/**
* Static value Enabled for SslStatus.
*/
public static final SslStatus ENABLED = fromString("Enabled");
/**
* Static value Disabled for SslStatus.
*/
public static final SslStatus DISABLED = fromString("Disabled");
/**
* Creates a new instance of SslStatus value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public SslStatus() {
}
/**
* Creates or finds a SslStatus from its string representation.
*
* @param name a name to look for.
* @return the corresponding SslStatus.
*/
public static SslStatus fromString(String name) {
return fromString(name, SslStatus.class);
}
/**
* Gets known SslStatus values.
*
* @return known SslStatus values.
*/
public static Collection values() {
return values(SslStatus.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy