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

com.pulumi.googlenative.dataplex.v1.inputs.GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs 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.dataplex.v1.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Evaluates whether each column value is contained by a specified set.
 * 
 */
public final class GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs extends com.pulumi.resources.ResourceArgs {

    public static final GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs Empty = new GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs();

    /**
     * Expected values for the column value.
     * 
     */
    @Import(name="values")
    private @Nullable Output> values;

    /**
     * @return Expected values for the column value.
     * 
     */
    public Optional>> values() {
        return Optional.ofNullable(this.values);
    }

    private GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs() {}

    private GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs(GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs $) {
        this.values = $.values;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs $;

        public Builder() {
            $ = new GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs();
        }

        public Builder(GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs defaults) {
            $ = new GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param values Expected values for the column value.
         * 
         * @return builder
         * 
         */
        public Builder values(@Nullable Output> values) {
            $.values = values;
            return this;
        }

        /**
         * @param values Expected values for the column value.
         * 
         * @return builder
         * 
         */
        public Builder values(List values) {
            return values(Output.of(values));
        }

        /**
         * @param values Expected values for the column value.
         * 
         * @return builder
         * 
         */
        public Builder values(String... values) {
            return values(List.of(values));
        }

        public GoogleCloudDataplexV1DataQualityRuleSetExpectationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy