public enum StorageAuthenticationType extends Enum<StorageAuthenticationType>
| Enum Constant and Description |
|---|
IDENTITY
Use the Active Directory identity configured on the hub for authentication to storage
|
KEY
Use a shared access key for authentication
This means authentication must be supplied in the storage URI(s)
|
| Modifier and Type | Method and Description |
|---|---|
static StorageAuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="keyBased") public static final StorageAuthenticationType KEY
@SerializedName(value="identityBased") public static final StorageAuthenticationType IDENTITY
public static StorageAuthenticationType[] values()
for (StorageAuthenticationType c : StorageAuthenticationType.values()) System.out.println(c);
public static StorageAuthenticationType 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 © 2024. All rights reserved.