Package io.github.cdklabs.projen.github
Enum DependabotRegistryType
- java.lang.Object
-
- java.lang.Enum<DependabotRegistryType>
-
- io.github.cdklabs.projen.github.DependabotRegistryType
-
- All Implemented Interfaces:
Serializable,Comparable<DependabotRegistryType>
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.068Z") @Stability(Experimental) public enum DependabotRegistryType extends Enum<DependabotRegistryType>
(experimental) Each configuration type requires you to provide particular settings.Some types allow more than one way to connect
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOSER_REGISTRY(experimental) The composer-repository type supports username and password.DOCKER_REGISTRY(experimental) The docker-registry type supports username and password.GIT(experimental) The git type supports username and password.HEX_ORGANIZATION(experimental) The hex-organization type supports organization and key.MAVEN_REPOSITORY(experimental) The maven-repository type supports username and password, or token.NPM_REGISTRY(experimental) The npm-registry type supports username and password, or token.NUGET_FEED(experimental) The nuget-feed type supports username and password, or token.PYTHON_INDEX(experimental) The python-index type supports username and password, or token.RUBYGEMS_SERVER(experimental) The rubygems-server type supports username and password, or token.TERRAFORM_REGISTRY(experimental) The terraform-registry type supports a token.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DependabotRegistryTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DependabotRegistryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPOSER_REGISTRY
@Stability(Experimental) public static final DependabotRegistryType COMPOSER_REGISTRY
(experimental) The composer-repository type supports username and password.
-
DOCKER_REGISTRY
@Stability(Experimental) public static final DependabotRegistryType DOCKER_REGISTRY
(experimental) The docker-registry type supports username and password.The docker-registry type can also be used to pull from Amazon ECR using static AWS credentials
-
GIT
@Stability(Experimental) public static final DependabotRegistryType GIT
(experimental) The git type supports username and password.
-
HEX_ORGANIZATION
@Stability(Experimental) public static final DependabotRegistryType HEX_ORGANIZATION
(experimental) The hex-organization type supports organization and key.
-
MAVEN_REPOSITORY
@Stability(Experimental) public static final DependabotRegistryType MAVEN_REPOSITORY
(experimental) The maven-repository type supports username and password, or token.
-
NPM_REGISTRY
@Stability(Experimental) public static final DependabotRegistryType NPM_REGISTRY
(experimental) The npm-registry type supports username and password, or token.
-
NUGET_FEED
@Stability(Experimental) public static final DependabotRegistryType NUGET_FEED
(experimental) The nuget-feed type supports username and password, or token.
-
PYTHON_INDEX
@Stability(Experimental) public static final DependabotRegistryType PYTHON_INDEX
(experimental) The python-index type supports username and password, or token.
-
RUBYGEMS_SERVER
@Stability(Experimental) public static final DependabotRegistryType RUBYGEMS_SERVER
(experimental) The rubygems-server type supports username and password, or token.
-
TERRAFORM_REGISTRY
@Stability(Experimental) public static final DependabotRegistryType TERRAFORM_REGISTRY
(experimental) The terraform-registry type supports a token.
-
-
Method Detail
-
values
public static DependabotRegistryType[] 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 (DependabotRegistryType c : DependabotRegistryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DependabotRegistryType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-