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

com.pulumi.azurenative.datafactory.outputs.SqlUpsertSettingsResponse Maven / Gradle / Ivy

The newest version!
// *** 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.azurenative.datafactory.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class SqlUpsertSettingsResponse {
    /**
     * @return Schema name for interim table. Type: string (or Expression with resultType string).
     * 
     */
    private @Nullable Object interimSchemaName;
    /**
     * @return Key column names for unique row identification. Type: array of strings (or Expression with resultType array of strings).
     * 
     */
    private @Nullable Object keys;
    /**
     * @return Specifies whether to use temp db for upsert interim table. Type: boolean (or Expression with resultType boolean).
     * 
     */
    private @Nullable Object useTempDB;

    private SqlUpsertSettingsResponse() {}
    /**
     * @return Schema name for interim table. Type: string (or Expression with resultType string).
     * 
     */
    public Optional interimSchemaName() {
        return Optional.ofNullable(this.interimSchemaName);
    }
    /**
     * @return Key column names for unique row identification. Type: array of strings (or Expression with resultType array of strings).
     * 
     */
    public Optional keys() {
        return Optional.ofNullable(this.keys);
    }
    /**
     * @return Specifies whether to use temp db for upsert interim table. Type: boolean (or Expression with resultType boolean).
     * 
     */
    public Optional useTempDB() {
        return Optional.ofNullable(this.useTempDB);
    }

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

    public static Builder builder(SqlUpsertSettingsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Object interimSchemaName;
        private @Nullable Object keys;
        private @Nullable Object useTempDB;
        public Builder() {}
        public Builder(SqlUpsertSettingsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.interimSchemaName = defaults.interimSchemaName;
    	      this.keys = defaults.keys;
    	      this.useTempDB = defaults.useTempDB;
        }

        @CustomType.Setter
        public Builder interimSchemaName(@Nullable Object interimSchemaName) {

            this.interimSchemaName = interimSchemaName;
            return this;
        }
        @CustomType.Setter
        public Builder keys(@Nullable Object keys) {

            this.keys = keys;
            return this;
        }
        @CustomType.Setter
        public Builder useTempDB(@Nullable Object useTempDB) {

            this.useTempDB = useTempDB;
            return this;
        }
        public SqlUpsertSettingsResponse build() {
            final var _resultValue = new SqlUpsertSettingsResponse();
            _resultValue.interimSchemaName = interimSchemaName;
            _resultValue.keys = keys;
            _resultValue.useTempDB = useTempDB;
            return _resultValue;
        }
    }
}