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

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

There is a newer version: 2.72.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 DynamicsCrmSinkResponse {
    /**
     * @return The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
     * 
     */
    private @Nullable Object alternateKeyName;
    /**
     * @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
     * 
     */
    private @Nullable Object disableMetricsCollection;
    /**
     * @return The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. 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 'DynamicsCrmSink'.
     * 
     */
    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.
     * 
     */
    private String writeBehavior;

    private DynamicsCrmSinkResponse() {}
    /**
     * @return The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
     * 
     */
    public Optional alternateKeyName() {
        return Optional.ofNullable(this.alternateKeyName);
    }
    /**
     * @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 flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. 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 'DynamicsCrmSink'.
     * 
     */
    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.
     * 
     */
    public String writeBehavior() {
        return this.writeBehavior;
    }

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

    public static Builder builder(DynamicsCrmSinkResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Object alternateKeyName;
        private @Nullable Object disableMetricsCollection;
        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 String writeBehavior;
        public Builder() {}
        public Builder(DynamicsCrmSinkResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.alternateKeyName = defaults.alternateKeyName;
    	      this.disableMetricsCollection = defaults.disableMetricsCollection;
    	      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 alternateKeyName(@Nullable Object alternateKeyName) {

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

            this.disableMetricsCollection = disableMetricsCollection;
            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("DynamicsCrmSinkResponse", "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(String writeBehavior) {
            if (writeBehavior == null) {
              throw new MissingRequiredPropertyException("DynamicsCrmSinkResponse", "writeBehavior");
            }
            this.writeBehavior = writeBehavior;
            return this;
        }
        public DynamicsCrmSinkResponse build() {
            final var _resultValue = new DynamicsCrmSinkResponse();
            _resultValue.alternateKeyName = alternateKeyName;
            _resultValue.disableMetricsCollection = disableMetricsCollection;
            _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;
        }
    }
}