com.azure.resourcemanager.automation.models.DscConfigurationState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-automation Show documentation
Show all versions of azure-resourcemanager-automation Show documentation
This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2022-02-22.
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.automation.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Gets or sets the state of the configuration.
*/
public final class DscConfigurationState extends ExpandableStringEnum {
/**
* Static value New for DscConfigurationState.
*/
public static final DscConfigurationState NEW = fromString("New");
/**
* Static value Edit for DscConfigurationState.
*/
public static final DscConfigurationState EDIT = fromString("Edit");
/**
* Static value Published for DscConfigurationState.
*/
public static final DscConfigurationState PUBLISHED = fromString("Published");
/**
* Creates a new instance of DscConfigurationState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DscConfigurationState() {
}
/**
* Creates or finds a DscConfigurationState from its string representation.
*
* @param name a name to look for.
* @return the corresponding DscConfigurationState.
*/
public static DscConfigurationState fromString(String name) {
return fromString(name, DscConfigurationState.class);
}
/**
* Gets known DscConfigurationState values.
*
* @return known DscConfigurationState values.
*/
public static Collection values() {
return values(DscConfigurationState.class);
}
}