EnvironmentAction¶
Entries¶
Start¶
Default value. Indicates that the job starts the environment. The deployment is created after the job starts.
Prepare¶
Indicates that the job is only preparing the environment. It does not trigger deployments. Read more about preparing environments.
Stop¶
Indicates that the job stops an environment. Read more about stopping an environment.
Verify¶
Indicates that the job is only verifying the environment. It does not trigger deployments. Read more about verifying environments.
Access¶
Indicates that the job is only accessing the environment. It does not trigger deployments. Read more about accessing environments.
Properties¶
entries¶
Returns a representation of an immutable list of all enum entries, in the order they're declared.
This method may be used to iterate over the enum entries.
name¶
ordinal¶
Functions¶
valueOf¶
fun valueOf(value: String): Environment.EnvironmentAction
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.)
Throws
IllegalArgumentException-
if this enum type has no constant with the specified name
values¶
fun values(): Array<Environment.EnvironmentAction>
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.