Enum StoragePermissions
- java.lang.Object
-
- java.lang.Enum<StoragePermissions>
-
- com.pulumi.azurenative.keyvault.enums.StoragePermissions
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StoragePermissions>
public enum StoragePermissions extends java.lang.Enum<StoragePermissions>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
java.lang.String
toString()
static StoragePermissions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StoragePermissions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
All
public static final StoragePermissions All
-
Get
public static final StoragePermissions Get
-
List
public static final StoragePermissions List
-
Delete
public static final StoragePermissions Delete
-
Set
public static final StoragePermissions Set
-
Update
public static final StoragePermissions Update
-
Regeneratekey
public static final StoragePermissions Regeneratekey
-
Recover
public static final StoragePermissions Recover
-
Purge
public static final StoragePermissions Purge
-
Backup
public static final StoragePermissions Backup
-
Restore
public static final StoragePermissions Restore
-
Setsas
public static final StoragePermissions Setsas
-
Listsas
public static final StoragePermissions Listsas
-
Getsas
public static final StoragePermissions Getsas
-
Deletesas
public static final StoragePermissions Deletesas
-
-
Method Detail
-
values
public static StoragePermissions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StoragePermissions c : StoragePermissions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StoragePermissions valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<StoragePermissions>
-
-