com.pulumi.googlenative.workstations.v1beta.enums.GceRegionalPersistentDiskReclaimPolicy Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.workstations.v1beta.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* What should happen to the disk after the workstation is deleted. Defaults to DELETE.
*
*/
@EnumType
public enum GceRegionalPersistentDiskReclaimPolicy {
/**
* Do not use.
*
*/
ReclaimPolicyUnspecified("RECLAIM_POLICY_UNSPECIFIED"),
/**
* The persistent disk will be deleted with the workstation.
*
*/
Delete("DELETE"),
/**
* The persistent disk will be remain after the workstation is deleted, and the administrator must manually delete the disk.
*
*/
Retain("RETAIN");
private final String value;
GceRegionalPersistentDiskReclaimPolicy(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public String toString() {
return new StringJoiner(", ", "GceRegionalPersistentDiskReclaimPolicy[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy