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

com.azure.resourcemanager.azurestackhci.models.EceSecrets Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for AzureStackHci Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Stack HCI management service. Package tag package-2024-04.

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.azurestackhci.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * Secret names allowed for Enterprise Cloud Engine (ECE) deployment.
 */
public final class EceSecrets extends ExpandableStringEnum {
    /**
     * Static value AzureStackLCMUserCredential for EceSecrets.
     */
    public static final EceSecrets AZURE_STACK_LCMUSER_CREDENTIAL = fromString("AzureStackLCMUserCredential");

    /**
     * Static value DefaultARBApplication for EceSecrets.
     */
    public static final EceSecrets DEFAULT_ARBAPPLICATION = fromString("DefaultARBApplication");

    /**
     * Static value LocalAdminCredential for EceSecrets.
     */
    public static final EceSecrets LOCAL_ADMIN_CREDENTIAL = fromString("LocalAdminCredential");

    /**
     * Static value WitnessStorageKey for EceSecrets.
     */
    public static final EceSecrets WITNESS_STORAGE_KEY = fromString("WitnessStorageKey");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy