mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 07:33:32 -06:00
31349a9c3a
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
26 lines
885 B
Go
26 lines
885 B
Go
// Code generated by "stringer -type ProvisionerOnFailure"; DO NOT EDIT.
|
|
|
|
package configs
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[ProvisionerOnFailureInvalid-0]
|
|
_ = x[ProvisionerOnFailureContinue-1]
|
|
_ = x[ProvisionerOnFailureFail-2]
|
|
}
|
|
|
|
const _ProvisionerOnFailure_name = "ProvisionerOnFailureInvalidProvisionerOnFailureContinueProvisionerOnFailureFail"
|
|
|
|
var _ProvisionerOnFailure_index = [...]uint8{0, 27, 55, 79}
|
|
|
|
func (i ProvisionerOnFailure) String() string {
|
|
if i < 0 || i >= ProvisionerOnFailure(len(_ProvisionerOnFailure_index)-1) {
|
|
return "ProvisionerOnFailure(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _ProvisionerOnFailure_name[_ProvisionerOnFailure_index[i]:_ProvisionerOnFailure_index[i+1]]
|
|
}
|