
com.pulumi.azurenative.datafactory.outputs.SqlDWSinkResponse 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.azurenative.datafactory.outputs;
import com.pulumi.azurenative.datafactory.outputs.DWCopyCommandSettingsResponse;
import com.pulumi.azurenative.datafactory.outputs.PolybaseSettingsResponse;
import com.pulumi.azurenative.datafactory.outputs.SqlDWUpsertSettingsResponse;
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 SqlDWSinkResponse {
/**
* @return Indicates to use Copy Command to copy data into SQL Data Warehouse. Type: boolean (or Expression with resultType boolean).
*
*/
private @Nullable Object allowCopyCommand;
/**
* @return Indicates to use PolyBase to copy data into SQL Data Warehouse when applicable. Type: boolean (or Expression with resultType boolean).
*
*/
private @Nullable Object allowPolyBase;
/**
* @return Specifies Copy Command related settings when allowCopyCommand is true.
*
*/
private @Nullable DWCopyCommandSettingsResponse copyCommandSettings;
/**
* @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
*
*/
private @Nullable Object disableMetricsCollection;
/**
* @return The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
*
*/
private @Nullable Object maxConcurrentConnections;
/**
* @return Specifies PolyBase-related settings when allowPolyBase is true.
*
*/
private @Nullable PolybaseSettingsResponse polyBaseSettings;
/**
* @return SQL pre-copy script. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object preCopyScript;
/**
* @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 Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
*
*/
private @Nullable Object sqlWriterUseTableLock;
/**
* @return The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object tableOption;
/**
* @return Copy sink type.
* Expected value is 'SqlDWSink'.
*
*/
private String type;
/**
* @return SQL DW upsert settings.
*
*/
private @Nullable SqlDWUpsertSettingsResponse upsertSettings;
/**
* @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 Write behavior when copying data into azure SQL DW. Type: SqlDWWriteBehaviorEnum (or Expression with resultType SqlDWWriteBehaviorEnum)
*
*/
private @Nullable Object writeBehavior;
private SqlDWSinkResponse() {}
/**
* @return Indicates to use Copy Command to copy data into SQL Data Warehouse. Type: boolean (or Expression with resultType boolean).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy