![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.desktopvirtualization.models.UpdateState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
This package contains Microsoft Azure SDK for DesktopVirtualization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. 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.desktopvirtualization.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Update state of a SessionHost.
*/
public final class UpdateState extends ExpandableStringEnum {
/**
* Static value Initial for UpdateState.
*/
public static final UpdateState INITIAL = fromString("Initial");
/**
* Static value Pending for UpdateState.
*/
public static final UpdateState PENDING = fromString("Pending");
/**
* Static value Started for UpdateState.
*/
public static final UpdateState STARTED = fromString("Started");
/**
* Static value Succeeded for UpdateState.
*/
public static final UpdateState SUCCEEDED = fromString("Succeeded");
/**
* Static value Failed for UpdateState.
*/
public static final UpdateState FAILED = fromString("Failed");
/**
* Creates a new instance of UpdateState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public UpdateState() {
}
/**
* Creates or finds a UpdateState from its string representation.
*
* @param name a name to look for.
* @return the corresponding UpdateState.
*/
public static UpdateState fromString(String name) {
return fromString(name, UpdateState.class);
}
/**
* Gets known UpdateState values.
*
* @return known UpdateState values.
*/
public static Collection values() {
return values(UpdateState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy