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

com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihood 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.dlp.v2.enums;

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

    /**
     * Set the likelihood of a finding to a fixed value.
     * 
     */
    @EnumType
    public enum GooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihood {
        /**
         * Default value; same as POSSIBLE.
         * 
         */
        LikelihoodUnspecified("LIKELIHOOD_UNSPECIFIED"),
        /**
         * Highest chance of a false positive.
         * 
         */
        VeryUnlikely("VERY_UNLIKELY"),
        /**
         * High chance of a false positive.
         * 
         */
        Unlikely("UNLIKELY"),
        /**
         * Some matching signals. The default value.
         * 
         */
        Possible("POSSIBLE"),
        /**
         * Low chance of a false positive.
         * 
         */
        Likely("LIKELY"),
        /**
         * Confidence level is high. Lowest chance of a false positive.
         * 
         */
        VeryLikely("VERY_LIKELY");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy