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

com.azure.resourcemanager.recoveryservicesbackup.models.DedupState Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.5.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.recoveryservicesbackup.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/**
 * Vault Dedup state.
 */
public final class DedupState extends ExpandableStringEnum {
    /**
     * Static value Invalid for DedupState.
     */
    public static final DedupState INVALID = fromString("Invalid");

    /**
     * Static value Enabled for DedupState.
     */
    public static final DedupState ENABLED = fromString("Enabled");

    /**
     * Static value Disabled for DedupState.
     */
    public static final DedupState DISABLED = fromString("Disabled");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy