com.azure.resourcemanager.automation.models.RunbookProvisioningState 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-2019-06.
// 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.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/** Defines values for RunbookProvisioningState. */
public enum RunbookProvisioningState {
/** Enum value Succeeded. */
SUCCEEDED("Succeeded");
/** The actual serialized value for a RunbookProvisioningState instance. */
private final String value;
RunbookProvisioningState(String value) {
this.value = value;
}
/**
* Parses a serialized value to a RunbookProvisioningState instance.
*
* @param value the serialized value to parse.
* @return the parsed RunbookProvisioningState object, or null if unable to parse.
*/
@JsonCreator
public static RunbookProvisioningState fromString(String value) {
RunbookProvisioningState[] items = RunbookProvisioningState.values();
for (RunbookProvisioningState item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@JsonValue
@Override
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy