Package com.azure.compute.batch.models
Class BatchCertificateState
java.lang.Object
com.azure.core.util.ExpandableStringEnum<BatchCertificateState>
com.azure.compute.batch.models.BatchCertificateState
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
public final class BatchCertificateState
extends com.azure.core.util.ExpandableStringEnum<BatchCertificateState>
BatchCertificateState enums.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BatchCertificateState
The Certificate is available for use in Pools.static final BatchCertificateState
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 Nodes.static final BatchCertificateState
The user has requested that the Certificate be deleted, but the delete operation has not yet completed. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BatchCertificateState
fromString
(String name) Creates or finds a BatchCertificateState from its string representation.static Collection
<BatchCertificateState> values()
Gets known BatchCertificateState values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
ACTIVE
The Certificate is available for use in Pools. -
DELETING
The user has requested that the Certificate be deleted, but the delete operation has not yet completed. You may not reference the Certificate when creating or updating Pools. -
DELETE_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 Nodes. (The latter can occur if the Certificate has been removed from the Pool, but the Compute Node has not yet restarted. Compute Nodes refresh their Certificates only when they restart.) You may use the cancel Certificate delete operation to cancel the delete, or the delete Certificate operation to retry the delete.
-
-
Constructor Details
-
BatchCertificateState
Deprecated.Use thefromString(String)
factory method.Creates a new instance of BatchCertificateState value.
-
-
Method Details
-
fromString
Creates or finds a BatchCertificateState from its string representation.- Parameters:
name
- a name to look for.- Returns:
- the corresponding BatchCertificateState.
-
values
Gets known BatchCertificateState values.- Returns:
- known BatchCertificateState values.
-
fromString(String)
factory method.