public enum CertificateProvisioningState extends Enum<CertificateProvisioningState>
| Enum Constant and Description |
|---|
DELETING
The user has requested that the certificate be deleted, but the delete operation has not yet completed.
|
FAILED
The user requested that the certificate be deleted, but there are pools that still have references to the certificate, or it is still installed on one or more compute nodes.
|
SUCCEEDED
The certificate is available for use in pools.
|
| Modifier and Type | Method and Description |
|---|---|
static CertificateProvisioningState |
fromString(String value)
Parses a serialized value to a CertificateProvisioningState instance.
|
String |
toString() |
static CertificateProvisioningState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateProvisioningState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateProvisioningState SUCCEEDED
public static final CertificateProvisioningState DELETING
public static final CertificateProvisioningState FAILED
public static CertificateProvisioningState[] values()
for (CertificateProvisioningState c : CertificateProvisioningState.values()) System.out.println(c);
public static CertificateProvisioningState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CertificateProvisioningState fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<CertificateProvisioningState>/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/