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

com.microsoft.azure.keyvault.models.DeletionRecoveryLevel Maven / Gradle / Ivy

Go to download

This library has been replaced by new Azure SDKs, you can read about them at https://aka.ms/azsdkvalueprop. The latest libraries to interact with the Azure Key Vault service are: (1) https://search.maven.org/artifact/com.azure/azure-security-keyvault-keys. (2) https://search.maven.org/artifact/com.azure/azure-security-keyvault-secrets. (3) https://search.maven.org/artifact/com.azure/azure-security-keyvault-certificates. It is recommended that you move to the new package.

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.microsoft.azure.keyvault.models;

import com.fasterxml.jackson.annotation.JsonValue;

/**
 * Defines values for DeletionRecoveryLevel.
 */
public final class DeletionRecoveryLevel {
    /** Static value Purgeable for DeletionRecoveryLevel. */
    public static final DeletionRecoveryLevel PURGEABLE = new DeletionRecoveryLevel("Purgeable");

    /** Static value Recoverable+Purgeable for DeletionRecoveryLevel. */
    public static final DeletionRecoveryLevel RECOVERABLE_PURGEABLE = new DeletionRecoveryLevel("Recoverable+Purgeable");

    /** Static value Recoverable for DeletionRecoveryLevel. */
    public static final DeletionRecoveryLevel RECOVERABLE = new DeletionRecoveryLevel("Recoverable");

    /** Static value Recoverable+ProtectedSubscription for DeletionRecoveryLevel. */
    public static final DeletionRecoveryLevel RECOVERABLE_PROTECTED_SUBSCRIPTION = new DeletionRecoveryLevel("Recoverable+ProtectedSubscription");

    private String value;

    /**
     * Creates a custom value for DeletionRecoveryLevel.
     * @param value the custom value
     */
    public DeletionRecoveryLevel(String value) {
        this.value = value;
    }

    @JsonValue
    @Override
    public String toString() {
        return value;
    }

    @Override
    public int hashCode() {
        return value.hashCode();
    }

    @Override
    public boolean equals(Object obj) {
        if (!(obj instanceof DeletionRecoveryLevel)) {
            return false;
        }
        if (obj == this) {
            return true;
        }
        DeletionRecoveryLevel rhs = (DeletionRecoveryLevel) obj;
        if (value == null) {
            return rhs.value == null;
        } else {
            return value.equals(rhs.value);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy