All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.sqladmin.v1beta4.enums.SqlOutOfDiskReportSqlOutOfDiskState 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.sqladmin.v1beta4.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * This field represents the state generated by the proactive database wellness job for OutOfDisk issues. * Writers: * the proactive database wellness job for OOD. * Readers: * the proactive database wellness job
     * 
     */
    @EnumType
    public enum SqlOutOfDiskReportSqlOutOfDiskState {
        /**
         * Unspecified state
         * 
         */
        SqlOutOfDiskStateUnspecified("SQL_OUT_OF_DISK_STATE_UNSPECIFIED"),
        /**
         * The instance has plenty space on data disk
         * 
         */
        Normal("NORMAL"),
        /**
         * Data disk is almost used up. It is shutdown to prevent data corruption.
         * 
         */
        SoftShutdown("SOFT_SHUTDOWN");

        private final String value;

        SqlOutOfDiskReportSqlOutOfDiskState(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public String toString() {
            return new StringJoiner(", ", "SqlOutOfDiskReportSqlOutOfDiskState[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy