com.azure.resourcemanager.recoveryservicesbackup.models.EnhancedSecurityState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* Enabled or Disabled.
*/
public final class EnhancedSecurityState extends ExpandableStringEnum {
/**
* Static value Invalid for EnhancedSecurityState.
*/
public static final EnhancedSecurityState INVALID = fromString("Invalid");
/**
* Static value Enabled for EnhancedSecurityState.
*/
public static final EnhancedSecurityState ENABLED = fromString("Enabled");
/**
* Static value Disabled for EnhancedSecurityState.
*/
public static final EnhancedSecurityState DISABLED = fromString("Disabled");
/**
* Creates a new instance of EnhancedSecurityState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public EnhancedSecurityState() {
}
/**
* Creates or finds a EnhancedSecurityState from its string representation.
*
* @param name a name to look for.
* @return the corresponding EnhancedSecurityState.
*/
@JsonCreator
public static EnhancedSecurityState fromString(String name) {
return fromString(name, EnhancedSecurityState.class);
}
/**
* Gets known EnhancedSecurityState values.
*
* @return known EnhancedSecurityState values.
*/
public static Collection values() {
return values(EnhancedSecurityState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy