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

com.azure.resourcemanager.azurestackhci.models.ArcSettingAggregateState 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;

/**
 * Aggregate state of Arc agent across the nodes in this HCI cluster.
 */
public final class ArcSettingAggregateState extends ExpandableStringEnum {
    /**
     * Static value NotSpecified for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState NOT_SPECIFIED = fromString("NotSpecified");

    /**
     * Static value Error for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState ERROR = fromString("Error");

    /**
     * Static value Succeeded for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState SUCCEEDED = fromString("Succeeded");

    /**
     * Static value Canceled for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState CANCELED = fromString("Canceled");

    /**
     * Static value Failed for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState FAILED = fromString("Failed");

    /**
     * Static value Connected for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState CONNECTED = fromString("Connected");

    /**
     * Static value Disconnected for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState DISCONNECTED = fromString("Disconnected");

    /**
     * Static value Deleted for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState DELETED = fromString("Deleted");

    /**
     * Static value Creating for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState CREATING = fromString("Creating");

    /**
     * Static value Updating for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState UPDATING = fromString("Updating");

    /**
     * Static value Deleting for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState DELETING = fromString("Deleting");

    /**
     * Static value Moving for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState MOVING = fromString("Moving");

    /**
     * Static value PartiallySucceeded for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState PARTIALLY_SUCCEEDED = fromString("PartiallySucceeded");

    /**
     * Static value PartiallyConnected for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState PARTIALLY_CONNECTED = fromString("PartiallyConnected");

    /**
     * Static value InProgress for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState IN_PROGRESS = fromString("InProgress");

    /**
     * Static value Accepted for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState ACCEPTED = fromString("Accepted");

    /**
     * Static value Provisioning for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState PROVISIONING = fromString("Provisioning");

    /**
     * Static value DisableInProgress for ArcSettingAggregateState.
     */
    public static final ArcSettingAggregateState DISABLE_IN_PROGRESS = fromString("DisableInProgress");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy