public enum KeypairAction extends Enum<KeypairAction>
| Enum Constant and Description |
|---|
attach
The action to attach the keypair to instances.
|
create
The action to create the keypair.
|
detach
The action to detach keypair from instances.
|
rename
The action to rename the keypair of instances.
|
updateDesc
The action to update the description keypair of instances.
|
| Modifier and Type | Method and Description |
|---|---|
static KeypairAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeypairAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeypairAction create
public static final KeypairAction attach
public static final KeypairAction detach
public static final KeypairAction rename
public static final KeypairAction updateDesc
public static KeypairAction[] values()
for (KeypairAction c : KeypairAction.values()) System.out.println(c);
public static KeypairAction 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 nullCopyright © 2023. All rights reserved.