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

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

There is a newer version: 2.78.0
Show 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class SalesforceV2SinkResponse {
    /**
     * @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
     * 
     */
    private @Nullable Object disableMetricsCollection;
    /**
     * @return The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string).
     * 
     */
    private @Nullable Object externalIdFieldName;
    /**
     * @return The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean).
     * 
     */
    private @Nullable Object ignoreNullValues;
    /**
     * @return The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
     * 
     */
    private @Nullable Object maxConcurrentConnections;
    /**
     * @return Sink retry count. Type: integer (or Expression with resultType integer).
     * 
     */
    private @Nullable Object sinkRetryCount;
    /**
     * @return Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    private @Nullable Object sinkRetryWait;
    /**
     * @return Copy sink type.
     * Expected value is 'SalesforceV2Sink'.
     * 
     */
    private String type;
    /**
     * @return Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
     * 
     */
    private @Nullable Object writeBatchSize;
    /**
     * @return Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    private @Nullable Object writeBatchTimeout;
    /**
     * @return The write behavior for the operation. Default is Insert.
     * 
     */
    private @Nullable String writeBehavior;

    private SalesforceV2SinkResponse() {}
    /**
     * @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
     * 
     */
    public Optional disableMetricsCollection() {
        return Optional.ofNullable(this.disableMetricsCollection);
    }
    /**
     * @return The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string).
     * 
     */
    public Optional externalIdFieldName() {
        return Optional.ofNullable(this.externalIdFieldName);
    }
    /**
     * @return The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean).
     * 
     */
    public Optional ignoreNullValues() {
        return Optional.ofNullable(this.ignoreNullValues);
    }
    /**
     * @return The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
     * 
     */
    public Optional maxConcurrentConnections() {
        return Optional.ofNullable(this.maxConcurrentConnections);
    }
    /**
     * @return Sink retry count. Type: integer (or Expression with resultType integer).
     * 
     */
    public Optional sinkRetryCount() {
        return Optional.ofNullable(this.sinkRetryCount);
    }
    /**
     * @return Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    public Optional sinkRetryWait() {
        return Optional.ofNullable(this.sinkRetryWait);
    }
    /**
     * @return Copy sink type.
     * Expected value is 'SalesforceV2Sink'.
     * 
     */
    public String type() {
        return this.type;
    }
    /**
     * @return Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
     * 
     */
    public Optional writeBatchSize() {
        return Optional.ofNullable(this.writeBatchSize);
    }
    /**
     * @return Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    public Optional writeBatchTimeout() {
        return Optional.ofNullable(this.writeBatchTimeout);
    }
    /**
     * @return The write behavior for the operation. Default is Insert.
     * 
     */
    public Optional writeBehavior() {
        return Optional.ofNullable(this.writeBehavior);
    }

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

    public static Builder builder(SalesforceV2SinkResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Object disableMetricsCollection;
        private @Nullable Object externalIdFieldName;
        private @Nullable Object ignoreNullValues;
        private @Nullable Object maxConcurrentConnections;
        private @Nullable Object sinkRetryCount;
        private @Nullable Object sinkRetryWait;
        private String type;
        private @Nullable Object writeBatchSize;
        private @Nullable Object writeBatchTimeout;
        private @Nullable String writeBehavior;
        public Builder() {}
        public Builder(SalesforceV2SinkResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.disableMetricsCollection = defaults.disableMetricsCollection;
    	      this.externalIdFieldName = defaults.externalIdFieldName;
    	      this.ignoreNullValues = defaults.ignoreNullValues;
    	      this.maxConcurrentConnections = defaults.maxConcurrentConnections;
    	      this.sinkRetryCount = defaults.sinkRetryCount;
    	      this.sinkRetryWait = defaults.sinkRetryWait;
    	      this.type = defaults.type;
    	      this.writeBatchSize = defaults.writeBatchSize;
    	      this.writeBatchTimeout = defaults.writeBatchTimeout;
    	      this.writeBehavior = defaults.writeBehavior;
        }

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

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

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

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

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

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

            this.sinkRetryWait = sinkRetryWait;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("SalesforceV2SinkResponse", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder writeBatchSize(@Nullable Object writeBatchSize) {

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

            this.writeBatchTimeout = writeBatchTimeout;
            return this;
        }
        @CustomType.Setter
        public Builder writeBehavior(@Nullable String writeBehavior) {

            this.writeBehavior = writeBehavior;
            return this;
        }
        public SalesforceV2SinkResponse build() {
            final var _resultValue = new SalesforceV2SinkResponse();
            _resultValue.disableMetricsCollection = disableMetricsCollection;
            _resultValue.externalIdFieldName = externalIdFieldName;
            _resultValue.ignoreNullValues = ignoreNullValues;
            _resultValue.maxConcurrentConnections = maxConcurrentConnections;
            _resultValue.sinkRetryCount = sinkRetryCount;
            _resultValue.sinkRetryWait = sinkRetryWait;
            _resultValue.type = type;
            _resultValue.writeBatchSize = writeBatchSize;
            _resultValue.writeBatchTimeout = writeBatchTimeout;
            _resultValue.writeBehavior = writeBehavior;
            return _resultValue;
        }
    }
}