public static enum RegistryConfiguration.AuthorizationType extends Enum<RegistryConfiguration.AuthorizationType>
| Enum Constant and Description |
|---|
awsecr
AWS ECR authorization model.
|
basicauth
Uses a basic authentication.
|
dockerhub
OAuth2 token based authorization.
|
| Modifier and Type | Method and Description |
|---|---|
static RegistryConfiguration.AuthorizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistryConfiguration.AuthorizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryConfiguration.AuthorizationType basicauth
public static final RegistryConfiguration.AuthorizationType dockerhub
public static final RegistryConfiguration.AuthorizationType awsecr
public static RegistryConfiguration.AuthorizationType[] values()
for (RegistryConfiguration.AuthorizationType c : RegistryConfiguration.AuthorizationType.values()) System.out.println(c);
public static RegistryConfiguration.AuthorizationType 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 © 2020 Pivotal Software, Inc.. All rights reserved.