Enum ConfigSource.ConfigSourceType
- java.lang.Object
-
- java.lang.Enum<ConfigSource.ConfigSourceType>
-
- com.oracle.bmc.resourcemanager.model.ConfigSource.ConfigSourceType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ConfigSource.ConfigSourceType>
- Enclosing class:
- ConfigSource
public static enum ConfigSource.ConfigSourceType extends Enum<ConfigSource.ConfigSourceType> implements BmcEnum
The type of configuration source to use for the Terraform configuration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BitbucketCloudConfigSource
BitbucketServerConfigSource
CompartmentConfigSource
DevopsConfigSource
GitConfigSource
ObjectStorageConfigSource
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.ZipUpload
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigSource.ConfigSourceType
create(String key)
String
getValue()
static ConfigSource.ConfigSourceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfigSource.ConfigSourceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BitbucketCloudConfigSource
public static final ConfigSource.ConfigSourceType BitbucketCloudConfigSource
-
BitbucketServerConfigSource
public static final ConfigSource.ConfigSourceType BitbucketServerConfigSource
-
CompartmentConfigSource
public static final ConfigSource.ConfigSourceType CompartmentConfigSource
-
DevopsConfigSource
public static final ConfigSource.ConfigSourceType DevopsConfigSource
-
GitConfigSource
public static final ConfigSource.ConfigSourceType GitConfigSource
-
ObjectStorageConfigSource
public static final ConfigSource.ConfigSourceType ObjectStorageConfigSource
-
ZipUpload
public static final ConfigSource.ConfigSourceType ZipUpload
-
UnknownEnumValue
public static final ConfigSource.ConfigSourceType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static ConfigSource.ConfigSourceType[] 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 (ConfigSource.ConfigSourceType c : ConfigSource.ConfigSourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigSource.ConfigSourceType 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
-
create
public static ConfigSource.ConfigSourceType create(String key)
-
-