com.azure.resourcemanager.delegatednetwork.models.DelegatedSubnetState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-delegatednetwork Show documentation
Show all versions of azure-resourcemanager-delegatednetwork Show documentation
This package contains Microsoft Azure SDK for DelegatedNetwork Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. DNC web api provides way to create, get and delete dnc controller. Package tag package-2021-03-15.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.delegatednetwork.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for DelegatedSubnetState. */
public final class DelegatedSubnetState extends ExpandableStringEnum {
/** Static value Deleting for DelegatedSubnetState. */
public static final DelegatedSubnetState DELETING = fromString("Deleting");
/** Static value Succeeded for DelegatedSubnetState. */
public static final DelegatedSubnetState SUCCEEDED = fromString("Succeeded");
/** Static value Failed for DelegatedSubnetState. */
public static final DelegatedSubnetState FAILED = fromString("Failed");
/** Static value Provisioning for DelegatedSubnetState. */
public static final DelegatedSubnetState PROVISIONING = fromString("Provisioning");
/**
* Creates or finds a DelegatedSubnetState from its string representation.
*
* @param name a name to look for.
* @return the corresponding DelegatedSubnetState.
*/
@JsonCreator
public static DelegatedSubnetState fromString(String name) {
return fromString(name, DelegatedSubnetState.class);
}
/** @return known DelegatedSubnetState values. */
public static Collection values() {
return values(DelegatedSubnetState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy