
com.pulumi.azurenative.datafactory.outputs.SnowflakeImportCopyCommandResponse 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.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SnowflakeImportCopyCommandResponse {
/**
* @return Additional copy options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalCopyOptions": { "DATE_FORMAT": "MM/DD/YYYY", "TIME_FORMAT": "'HH24:MI:SS.FF'" }
*
*/
private @Nullable Map additionalCopyOptions;
/**
* @return Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalFormatOptions": { "FORCE": "TRUE", "LOAD_UNCERTAIN_FILES": "'FALSE'" }
*
*/
private @Nullable Map additionalFormatOptions;
/**
* @return The name of the snowflake storage integration to use for the copy operation. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object storageIntegration;
/**
* @return The import setting type.
* Expected value is 'SnowflakeImportCopyCommand'.
*
*/
private String type;
private SnowflakeImportCopyCommandResponse() {}
/**
* @return Additional copy options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalCopyOptions": { "DATE_FORMAT": "MM/DD/YYYY", "TIME_FORMAT": "'HH24:MI:SS.FF'" }
*
*/
public Map additionalCopyOptions() {
return this.additionalCopyOptions == null ? Map.of() : this.additionalCopyOptions;
}
/**
* @return Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalFormatOptions": { "FORCE": "TRUE", "LOAD_UNCERTAIN_FILES": "'FALSE'" }
*
*/
public Map additionalFormatOptions() {
return this.additionalFormatOptions == null ? Map.of() : this.additionalFormatOptions;
}
/**
* @return The name of the snowflake storage integration to use for the copy operation. Type: string (or Expression with resultType string).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy