1. Packages
  2. Snowflake Provider
  3. API Docs
  4. StageInternal
Snowflake v2.12.0 published on Friday, Feb 13, 2026 by Pulumi
snowflake logo
Snowflake v2.12.0 published on Friday, Feb 13, 2026 by Pulumi

    !> Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to preview_features_enabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.

    Note Temporary stages are not supported because they result in per-session objects.

    Note External changes detection on the encryption field is not supported because Snowflake does not return encryption settings in DESCRIBE or SHOW STAGE output.

    Note Due to Snowflake limitations, when directory.auto_refresh is set to a new value in the configuration, the resource is recreated. When it is unset, the provider alters the whole directory field with the enable value from the configuration.

    Resource used to manage internal stages. For more information, check internal stage documentation.

    Example Usage

    Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // basic resource
    const basic = new snowflake.StageInternal("basic", {
        name: "my_internal_stage",
        database: "my_database",
        schema: "my_schema",
    });
    // complete resource
    const complete = new snowflake.StageInternal("complete", {
        name: "complete_stage",
        database: "my_database",
        schema: "my_schema",
        encryption: {
            snowflakeFull: {},
        },
        directory: {
            enable: true,
            autoRefresh: "false",
        },
        comment: "Fully configured internal stage",
    });
    // resource with inline CSV file format
    const withCsvFormat = new snowflake.StageInternal("with_csv_format", {
        name: "csv_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            csv: {
                compression: "GZIP",
                recordDelimiter: "\n",
                fieldDelimiter: "|",
                multiLine: "false",
                fileExtension: ".csv",
                skipHeader: 1,
                skipBlankLines: "true",
                dateFormat: "AUTO",
                timeFormat: "AUTO",
                timestampFormat: "AUTO",
                binaryFormat: "HEX",
                escape: "\\",
                escapeUnenclosedField: "\\",
                trimSpace: "false",
                fieldOptionallyEnclosedBy: "\"",
                nullIfs: [
                    "NULL",
                    "",
                ],
                errorOnColumnCountMismatch: "true",
                replaceInvalidCharacters: "false",
                emptyFieldAsNull: "true",
                skipByteOrderMark: "true",
                encoding: "UTF8",
            },
        },
    });
    // resource with inline JSON file format
    const withJsonFormat = new snowflake.StageInternal("with_json_format", {
        name: "json_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            json: {
                compression: "AUTO",
                dateFormat: "AUTO",
                timeFormat: "AUTO",
                timestampFormat: "AUTO",
                binaryFormat: "HEX",
                trimSpace: "false",
                multiLine: "false",
                nullIfs: [
                    "NULL",
                    "",
                ],
                fileExtension: ".json",
                enableOctal: "false",
                allowDuplicate: "false",
                stripOuterArray: "false",
                stripNullValues: "false",
                replaceInvalidCharacters: "false",
                skipByteOrderMark: "false",
            },
        },
    });
    // resource with inline AVRO file format
    const withAvroFormat = new snowflake.StageInternal("with_avro_format", {
        name: "avro_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            avro: {
                compression: "GZIP",
                trimSpace: "false",
                replaceInvalidCharacters: "false",
                nullIfs: [
                    "NULL",
                    "",
                ],
            },
        },
    });
    // resource with inline ORC file format
    const withOrcFormat = new snowflake.StageInternal("with_orc_format", {
        name: "orc_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            orc: {
                trimSpace: "false",
                replaceInvalidCharacters: "false",
                nullIfs: [
                    "NULL",
                    "",
                ],
            },
        },
    });
    // resource with inline Parquet file format
    const withParquetFormat = new snowflake.StageInternal("with_parquet_format", {
        name: "parquet_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            parquet: {
                compression: "SNAPPY",
                binaryAsText: "true",
                useLogicalType: "true",
                trimSpace: "false",
                useVectorizedScanner: "false",
                replaceInvalidCharacters: "false",
                nullIfs: [
                    "NULL",
                    "",
                ],
            },
        },
    });
    // resource with inline XML file format
    const withXmlFormat = new snowflake.StageInternal("with_xml_format", {
        name: "xml_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            xml: {
                compression: "AUTO",
                preserveSpace: "false",
                stripOuterElement: "false",
                disableAutoConvert: "false",
                replaceInvalidCharacters: "false",
                skipByteOrderMark: "false",
            },
        },
    });
    // resource with named file format
    const withNamedFormat = new snowflake.StageInternal("with_named_format", {
        name: "named_format_stage",
        database: "my_database",
        schema: "my_schema",
        fileFormat: {
            formatName: test.fullyQualifiedName,
        },
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # basic resource
    basic = snowflake.StageInternal("basic",
        name="my_internal_stage",
        database="my_database",
        schema="my_schema")
    # complete resource
    complete = snowflake.StageInternal("complete",
        name="complete_stage",
        database="my_database",
        schema="my_schema",
        encryption={
            "snowflake_full": {},
        },
        directory={
            "enable": True,
            "auto_refresh": "false",
        },
        comment="Fully configured internal stage")
    # resource with inline CSV file format
    with_csv_format = snowflake.StageInternal("with_csv_format",
        name="csv_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "csv": {
                "compression": "GZIP",
                "record_delimiter": "\n",
                "field_delimiter": "|",
                "multi_line": "false",
                "file_extension": ".csv",
                "skip_header": 1,
                "skip_blank_lines": "true",
                "date_format": "AUTO",
                "time_format": "AUTO",
                "timestamp_format": "AUTO",
                "binary_format": "HEX",
                "escape": "\\",
                "escape_unenclosed_field": "\\",
                "trim_space": "false",
                "field_optionally_enclosed_by": "\"",
                "null_ifs": [
                    "NULL",
                    "",
                ],
                "error_on_column_count_mismatch": "true",
                "replace_invalid_characters": "false",
                "empty_field_as_null": "true",
                "skip_byte_order_mark": "true",
                "encoding": "UTF8",
            },
        })
    # resource with inline JSON file format
    with_json_format = snowflake.StageInternal("with_json_format",
        name="json_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "json": {
                "compression": "AUTO",
                "date_format": "AUTO",
                "time_format": "AUTO",
                "timestamp_format": "AUTO",
                "binary_format": "HEX",
                "trim_space": "false",
                "multi_line": "false",
                "null_ifs": [
                    "NULL",
                    "",
                ],
                "file_extension": ".json",
                "enable_octal": "false",
                "allow_duplicate": "false",
                "strip_outer_array": "false",
                "strip_null_values": "false",
                "replace_invalid_characters": "false",
                "skip_byte_order_mark": "false",
            },
        })
    # resource with inline AVRO file format
    with_avro_format = snowflake.StageInternal("with_avro_format",
        name="avro_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "avro": {
                "compression": "GZIP",
                "trim_space": "false",
                "replace_invalid_characters": "false",
                "null_ifs": [
                    "NULL",
                    "",
                ],
            },
        })
    # resource with inline ORC file format
    with_orc_format = snowflake.StageInternal("with_orc_format",
        name="orc_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "orc": {
                "trim_space": "false",
                "replace_invalid_characters": "false",
                "null_ifs": [
                    "NULL",
                    "",
                ],
            },
        })
    # resource with inline Parquet file format
    with_parquet_format = snowflake.StageInternal("with_parquet_format",
        name="parquet_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "parquet": {
                "compression": "SNAPPY",
                "binary_as_text": "true",
                "use_logical_type": "true",
                "trim_space": "false",
                "use_vectorized_scanner": "false",
                "replace_invalid_characters": "false",
                "null_ifs": [
                    "NULL",
                    "",
                ],
            },
        })
    # resource with inline XML file format
    with_xml_format = snowflake.StageInternal("with_xml_format",
        name="xml_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "xml": {
                "compression": "AUTO",
                "preserve_space": "false",
                "strip_outer_element": "false",
                "disable_auto_convert": "false",
                "replace_invalid_characters": "false",
                "skip_byte_order_mark": "false",
            },
        })
    # resource with named file format
    with_named_format = snowflake.StageInternal("with_named_format",
        name="named_format_stage",
        database="my_database",
        schema="my_schema",
        file_format={
            "format_name": test["fullyQualifiedName"],
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// basic resource
    		_, err := snowflake.NewStageInternal(ctx, "basic", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("my_internal_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    		})
    		if err != nil {
    			return err
    		}
    		// complete resource
    		_, err = snowflake.NewStageInternal(ctx, "complete", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("complete_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			Encryption: &snowflake.StageInternalEncryptionArgs{
    				SnowflakeFull: &snowflake.StageInternalEncryptionSnowflakeFullArgs{},
    			},
    			Directory: &snowflake.StageInternalDirectoryArgs{
    				Enable:      pulumi.Bool(true),
    				AutoRefresh: pulumi.String("false"),
    			},
    			Comment: pulumi.String("Fully configured internal stage"),
    		})
    		if err != nil {
    			return err
    		}
    		// resource with inline CSV file format
    		_, err = snowflake.NewStageInternal(ctx, "with_csv_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("csv_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				Csv: &snowflake.StageInternalFileFormatCsvArgs{
    					Compression:               pulumi.String("GZIP"),
    					RecordDelimiter:           pulumi.String("\n"),
    					FieldDelimiter:            pulumi.String("|"),
    					MultiLine:                 pulumi.String("false"),
    					FileExtension:             pulumi.String(".csv"),
    					SkipHeader:                pulumi.Int(1),
    					SkipBlankLines:            pulumi.String("true"),
    					DateFormat:                pulumi.String("AUTO"),
    					TimeFormat:                pulumi.String("AUTO"),
    					TimestampFormat:           pulumi.String("AUTO"),
    					BinaryFormat:              pulumi.String("HEX"),
    					Escape:                    pulumi.String("\\"),
    					EscapeUnenclosedField:     pulumi.String("\\"),
    					TrimSpace:                 pulumi.String("false"),
    					FieldOptionallyEnclosedBy: pulumi.String("\""),
    					NullIfs: pulumi.StringArray{
    						pulumi.String("NULL"),
    						pulumi.String(""),
    					},
    					ErrorOnColumnCountMismatch: pulumi.String("true"),
    					ReplaceInvalidCharacters:   pulumi.String("false"),
    					EmptyFieldAsNull:           pulumi.String("true"),
    					SkipByteOrderMark:          pulumi.String("true"),
    					Encoding:                   pulumi.String("UTF8"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// resource with inline JSON file format
    		_, err = snowflake.NewStageInternal(ctx, "with_json_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("json_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				Json: &snowflake.StageInternalFileFormatJsonArgs{
    					Compression:     pulumi.String("AUTO"),
    					DateFormat:      pulumi.String("AUTO"),
    					TimeFormat:      pulumi.String("AUTO"),
    					TimestampFormat: pulumi.String("AUTO"),
    					BinaryFormat:    pulumi.String("HEX"),
    					TrimSpace:       pulumi.String("false"),
    					MultiLine:       pulumi.String("false"),
    					NullIfs: pulumi.StringArray{
    						pulumi.String("NULL"),
    						pulumi.String(""),
    					},
    					FileExtension:            pulumi.String(".json"),
    					EnableOctal:              pulumi.String("false"),
    					AllowDuplicate:           pulumi.String("false"),
    					StripOuterArray:          pulumi.String("false"),
    					StripNullValues:          pulumi.String("false"),
    					ReplaceInvalidCharacters: pulumi.String("false"),
    					SkipByteOrderMark:        pulumi.String("false"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// resource with inline AVRO file format
    		_, err = snowflake.NewStageInternal(ctx, "with_avro_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("avro_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				Avro: &snowflake.StageInternalFileFormatAvroArgs{
    					Compression:              pulumi.String("GZIP"),
    					TrimSpace:                pulumi.String("false"),
    					ReplaceInvalidCharacters: pulumi.String("false"),
    					NullIfs: pulumi.StringArray{
    						pulumi.String("NULL"),
    						pulumi.String(""),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// resource with inline ORC file format
    		_, err = snowflake.NewStageInternal(ctx, "with_orc_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("orc_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				Orc: &snowflake.StageInternalFileFormatOrcArgs{
    					TrimSpace:                pulumi.String("false"),
    					ReplaceInvalidCharacters: pulumi.String("false"),
    					NullIfs: pulumi.StringArray{
    						pulumi.String("NULL"),
    						pulumi.String(""),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// resource with inline Parquet file format
    		_, err = snowflake.NewStageInternal(ctx, "with_parquet_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("parquet_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				Parquet: &snowflake.StageInternalFileFormatParquetArgs{
    					Compression:              pulumi.String("SNAPPY"),
    					BinaryAsText:             pulumi.String("true"),
    					UseLogicalType:           pulumi.String("true"),
    					TrimSpace:                pulumi.String("false"),
    					UseVectorizedScanner:     pulumi.String("false"),
    					ReplaceInvalidCharacters: pulumi.String("false"),
    					NullIfs: pulumi.StringArray{
    						pulumi.String("NULL"),
    						pulumi.String(""),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// resource with inline XML file format
    		_, err = snowflake.NewStageInternal(ctx, "with_xml_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("xml_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				Xml: &snowflake.StageInternalFileFormatXmlArgs{
    					Compression:              pulumi.String("AUTO"),
    					PreserveSpace:            pulumi.String("false"),
    					StripOuterElement:        pulumi.String("false"),
    					DisableAutoConvert:       pulumi.String("false"),
    					ReplaceInvalidCharacters: pulumi.String("false"),
    					SkipByteOrderMark:        pulumi.String("false"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// resource with named file format
    		_, err = snowflake.NewStageInternal(ctx, "with_named_format", &snowflake.StageInternalArgs{
    			Name:     pulumi.String("named_format_stage"),
    			Database: pulumi.String("my_database"),
    			Schema:   pulumi.String("my_schema"),
    			FileFormat: &snowflake.StageInternalFileFormatArgs{
    				FormatName: pulumi.Any(test.FullyQualifiedName),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        // basic resource
        var basic = new Snowflake.StageInternal("basic", new()
        {
            Name = "my_internal_stage",
            Database = "my_database",
            Schema = "my_schema",
        });
    
        // complete resource
        var complete = new Snowflake.StageInternal("complete", new()
        {
            Name = "complete_stage",
            Database = "my_database",
            Schema = "my_schema",
            Encryption = new Snowflake.Inputs.StageInternalEncryptionArgs
            {
                SnowflakeFull = null,
            },
            Directory = new Snowflake.Inputs.StageInternalDirectoryArgs
            {
                Enable = true,
                AutoRefresh = "false",
            },
            Comment = "Fully configured internal stage",
        });
    
        // resource with inline CSV file format
        var withCsvFormat = new Snowflake.StageInternal("with_csv_format", new()
        {
            Name = "csv_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                Csv = new Snowflake.Inputs.StageInternalFileFormatCsvArgs
                {
                    Compression = "GZIP",
                    RecordDelimiter = @"
    ",
                    FieldDelimiter = "|",
                    MultiLine = "false",
                    FileExtension = ".csv",
                    SkipHeader = 1,
                    SkipBlankLines = "true",
                    DateFormat = "AUTO",
                    TimeFormat = "AUTO",
                    TimestampFormat = "AUTO",
                    BinaryFormat = "HEX",
                    Escape = "\\",
                    EscapeUnenclosedField = "\\",
                    TrimSpace = "false",
                    FieldOptionallyEnclosedBy = "\"",
                    NullIfs = new[]
                    {
                        "NULL",
                        "",
                    },
                    ErrorOnColumnCountMismatch = "true",
                    ReplaceInvalidCharacters = "false",
                    EmptyFieldAsNull = "true",
                    SkipByteOrderMark = "true",
                    Encoding = "UTF8",
                },
            },
        });
    
        // resource with inline JSON file format
        var withJsonFormat = new Snowflake.StageInternal("with_json_format", new()
        {
            Name = "json_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                Json = new Snowflake.Inputs.StageInternalFileFormatJsonArgs
                {
                    Compression = "AUTO",
                    DateFormat = "AUTO",
                    TimeFormat = "AUTO",
                    TimestampFormat = "AUTO",
                    BinaryFormat = "HEX",
                    TrimSpace = "false",
                    MultiLine = "false",
                    NullIfs = new[]
                    {
                        "NULL",
                        "",
                    },
                    FileExtension = ".json",
                    EnableOctal = "false",
                    AllowDuplicate = "false",
                    StripOuterArray = "false",
                    StripNullValues = "false",
                    ReplaceInvalidCharacters = "false",
                    SkipByteOrderMark = "false",
                },
            },
        });
    
        // resource with inline AVRO file format
        var withAvroFormat = new Snowflake.StageInternal("with_avro_format", new()
        {
            Name = "avro_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                Avro = new Snowflake.Inputs.StageInternalFileFormatAvroArgs
                {
                    Compression = "GZIP",
                    TrimSpace = "false",
                    ReplaceInvalidCharacters = "false",
                    NullIfs = new[]
                    {
                        "NULL",
                        "",
                    },
                },
            },
        });
    
        // resource with inline ORC file format
        var withOrcFormat = new Snowflake.StageInternal("with_orc_format", new()
        {
            Name = "orc_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                Orc = new Snowflake.Inputs.StageInternalFileFormatOrcArgs
                {
                    TrimSpace = "false",
                    ReplaceInvalidCharacters = "false",
                    NullIfs = new[]
                    {
                        "NULL",
                        "",
                    },
                },
            },
        });
    
        // resource with inline Parquet file format
        var withParquetFormat = new Snowflake.StageInternal("with_parquet_format", new()
        {
            Name = "parquet_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                Parquet = new Snowflake.Inputs.StageInternalFileFormatParquetArgs
                {
                    Compression = "SNAPPY",
                    BinaryAsText = "true",
                    UseLogicalType = "true",
                    TrimSpace = "false",
                    UseVectorizedScanner = "false",
                    ReplaceInvalidCharacters = "false",
                    NullIfs = new[]
                    {
                        "NULL",
                        "",
                    },
                },
            },
        });
    
        // resource with inline XML file format
        var withXmlFormat = new Snowflake.StageInternal("with_xml_format", new()
        {
            Name = "xml_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                Xml = new Snowflake.Inputs.StageInternalFileFormatXmlArgs
                {
                    Compression = "AUTO",
                    PreserveSpace = "false",
                    StripOuterElement = "false",
                    DisableAutoConvert = "false",
                    ReplaceInvalidCharacters = "false",
                    SkipByteOrderMark = "false",
                },
            },
        });
    
        // resource with named file format
        var withNamedFormat = new Snowflake.StageInternal("with_named_format", new()
        {
            Name = "named_format_stage",
            Database = "my_database",
            Schema = "my_schema",
            FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
            {
                FormatName = test.FullyQualifiedName,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.StageInternal;
    import com.pulumi.snowflake.StageInternalArgs;
    import com.pulumi.snowflake.inputs.StageInternalEncryptionArgs;
    import com.pulumi.snowflake.inputs.StageInternalEncryptionSnowflakeFullArgs;
    import com.pulumi.snowflake.inputs.StageInternalDirectoryArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatCsvArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatJsonArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatAvroArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatOrcArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatParquetArgs;
    import com.pulumi.snowflake.inputs.StageInternalFileFormatXmlArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // basic resource
            var basic = new StageInternal("basic", StageInternalArgs.builder()
                .name("my_internal_stage")
                .database("my_database")
                .schema("my_schema")
                .build());
    
            // complete resource
            var complete = new StageInternal("complete", StageInternalArgs.builder()
                .name("complete_stage")
                .database("my_database")
                .schema("my_schema")
                .encryption(StageInternalEncryptionArgs.builder()
                    .snowflakeFull(StageInternalEncryptionSnowflakeFullArgs.builder()
                        .build())
                    .build())
                .directory(StageInternalDirectoryArgs.builder()
                    .enable(true)
                    .autoRefresh("false")
                    .build())
                .comment("Fully configured internal stage")
                .build());
    
            // resource with inline CSV file format
            var withCsvFormat = new StageInternal("withCsvFormat", StageInternalArgs.builder()
                .name("csv_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .csv(StageInternalFileFormatCsvArgs.builder()
                        .compression("GZIP")
                        .recordDelimiter("""
    
                        """)
                        .fieldDelimiter("|")
                        .multiLine("false")
                        .fileExtension(".csv")
                        .skipHeader(1)
                        .skipBlankLines("true")
                        .dateFormat("AUTO")
                        .timeFormat("AUTO")
                        .timestampFormat("AUTO")
                        .binaryFormat("HEX")
                        .escape("\\")
                        .escapeUnenclosedField("\\")
                        .trimSpace("false")
                        .fieldOptionallyEnclosedBy("\"")
                        .nullIfs(                    
                            "NULL",
                            "")
                        .errorOnColumnCountMismatch("true")
                        .replaceInvalidCharacters("false")
                        .emptyFieldAsNull("true")
                        .skipByteOrderMark("true")
                        .encoding("UTF8")
                        .build())
                    .build())
                .build());
    
            // resource with inline JSON file format
            var withJsonFormat = new StageInternal("withJsonFormat", StageInternalArgs.builder()
                .name("json_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .json(StageInternalFileFormatJsonArgs.builder()
                        .compression("AUTO")
                        .dateFormat("AUTO")
                        .timeFormat("AUTO")
                        .timestampFormat("AUTO")
                        .binaryFormat("HEX")
                        .trimSpace("false")
                        .multiLine("false")
                        .nullIfs(                    
                            "NULL",
                            "")
                        .fileExtension(".json")
                        .enableOctal("false")
                        .allowDuplicate("false")
                        .stripOuterArray("false")
                        .stripNullValues("false")
                        .replaceInvalidCharacters("false")
                        .skipByteOrderMark("false")
                        .build())
                    .build())
                .build());
    
            // resource with inline AVRO file format
            var withAvroFormat = new StageInternal("withAvroFormat", StageInternalArgs.builder()
                .name("avro_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .avro(StageInternalFileFormatAvroArgs.builder()
                        .compression("GZIP")
                        .trimSpace("false")
                        .replaceInvalidCharacters("false")
                        .nullIfs(                    
                            "NULL",
                            "")
                        .build())
                    .build())
                .build());
    
            // resource with inline ORC file format
            var withOrcFormat = new StageInternal("withOrcFormat", StageInternalArgs.builder()
                .name("orc_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .orc(StageInternalFileFormatOrcArgs.builder()
                        .trimSpace("false")
                        .replaceInvalidCharacters("false")
                        .nullIfs(                    
                            "NULL",
                            "")
                        .build())
                    .build())
                .build());
    
            // resource with inline Parquet file format
            var withParquetFormat = new StageInternal("withParquetFormat", StageInternalArgs.builder()
                .name("parquet_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .parquet(StageInternalFileFormatParquetArgs.builder()
                        .compression("SNAPPY")
                        .binaryAsText("true")
                        .useLogicalType("true")
                        .trimSpace("false")
                        .useVectorizedScanner("false")
                        .replaceInvalidCharacters("false")
                        .nullIfs(                    
                            "NULL",
                            "")
                        .build())
                    .build())
                .build());
    
            // resource with inline XML file format
            var withXmlFormat = new StageInternal("withXmlFormat", StageInternalArgs.builder()
                .name("xml_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .xml(StageInternalFileFormatXmlArgs.builder()
                        .compression("AUTO")
                        .preserveSpace("false")
                        .stripOuterElement("false")
                        .disableAutoConvert("false")
                        .replaceInvalidCharacters("false")
                        .skipByteOrderMark("false")
                        .build())
                    .build())
                .build());
    
            // resource with named file format
            var withNamedFormat = new StageInternal("withNamedFormat", StageInternalArgs.builder()
                .name("named_format_stage")
                .database("my_database")
                .schema("my_schema")
                .fileFormat(StageInternalFileFormatArgs.builder()
                    .formatName(test.fullyQualifiedName())
                    .build())
                .build());
    
        }
    }
    
    resources:
      # basic resource
      basic:
        type: snowflake:StageInternal
        properties:
          name: my_internal_stage
          database: my_database
          schema: my_schema
      # complete resource
      complete:
        type: snowflake:StageInternal
        properties:
          name: complete_stage
          database: my_database
          schema: my_schema
          encryption:
            snowflakeFull: {}
          directory:
            enable: true
            autoRefresh: false
          comment: Fully configured internal stage
      # resource with inline CSV file format
      withCsvFormat:
        type: snowflake:StageInternal
        name: with_csv_format
        properties:
          name: csv_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            csv:
              compression: GZIP
              recordDelimiter: |2+
              fieldDelimiter: '|'
              multiLine: 'false'
              fileExtension: .csv
              skipHeader: 1
              skipBlankLines: 'true'
              dateFormat: AUTO
              timeFormat: AUTO
              timestampFormat: AUTO
              binaryFormat: HEX
              escape: \
              escapeUnenclosedField: \
              trimSpace: 'false'
              fieldOptionallyEnclosedBy: '"'
              nullIfs:
                - NULL
                - ""
              errorOnColumnCountMismatch: 'true'
              replaceInvalidCharacters: 'false'
              emptyFieldAsNull: 'true'
              skipByteOrderMark: 'true'
              encoding: UTF8
      # resource with inline JSON file format
      withJsonFormat:
        type: snowflake:StageInternal
        name: with_json_format
        properties:
          name: json_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            json:
              compression: AUTO
              dateFormat: AUTO
              timeFormat: AUTO
              timestampFormat: AUTO
              binaryFormat: HEX
              trimSpace: 'false'
              multiLine: 'false'
              nullIfs:
                - NULL
                - ""
              fileExtension: .json
              enableOctal: 'false'
              allowDuplicate: 'false'
              stripOuterArray: 'false'
              stripNullValues: 'false'
              replaceInvalidCharacters: 'false'
              skipByteOrderMark: 'false'
      # resource with inline AVRO file format
      withAvroFormat:
        type: snowflake:StageInternal
        name: with_avro_format
        properties:
          name: avro_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            avro:
              compression: GZIP
              trimSpace: 'false'
              replaceInvalidCharacters: 'false'
              nullIfs:
                - NULL
                - ""
      # resource with inline ORC file format
      withOrcFormat:
        type: snowflake:StageInternal
        name: with_orc_format
        properties:
          name: orc_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            orc:
              trimSpace: 'false'
              replaceInvalidCharacters: 'false'
              nullIfs:
                - NULL
                - ""
      # resource with inline Parquet file format
      withParquetFormat:
        type: snowflake:StageInternal
        name: with_parquet_format
        properties:
          name: parquet_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            parquet:
              compression: SNAPPY
              binaryAsText: 'true'
              useLogicalType: 'true'
              trimSpace: 'false'
              useVectorizedScanner: 'false'
              replaceInvalidCharacters: 'false'
              nullIfs:
                - NULL
                - ""
      # resource with inline XML file format
      withXmlFormat:
        type: snowflake:StageInternal
        name: with_xml_format
        properties:
          name: xml_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            xml:
              compression: AUTO
              preserveSpace: 'false'
              stripOuterElement: 'false'
              disableAutoConvert: 'false'
              replaceInvalidCharacters: 'false'
              skipByteOrderMark: 'false'
      # resource with named file format
      withNamedFormat:
        type: snowflake:StageInternal
        name: with_named_format
        properties:
          name: named_format_stage
          database: my_database
          schema: my_schema
          fileFormat:
            formatName: ${test.fullyQualifiedName}
    

    Note If a field has a default value, it is shown next to the type in the schema.

    Create StageInternal Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new StageInternal(name: string, args: StageInternalArgs, opts?: CustomResourceOptions);
    @overload
    def StageInternal(resource_name: str,
                      args: StageInternalArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def StageInternal(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      database: Optional[str] = None,
                      schema: Optional[str] = None,
                      comment: Optional[str] = None,
                      directory: Optional[StageInternalDirectoryArgs] = None,
                      encryption: Optional[StageInternalEncryptionArgs] = None,
                      file_format: Optional[StageInternalFileFormatArgs] = None,
                      name: Optional[str] = None)
    func NewStageInternal(ctx *Context, name string, args StageInternalArgs, opts ...ResourceOption) (*StageInternal, error)
    public StageInternal(string name, StageInternalArgs args, CustomResourceOptions? opts = null)
    public StageInternal(String name, StageInternalArgs args)
    public StageInternal(String name, StageInternalArgs args, CustomResourceOptions options)
    
    type: snowflake:StageInternal
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args StageInternalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args StageInternalArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args StageInternalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StageInternalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StageInternalArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var stageInternalResource = new Snowflake.StageInternal("stageInternalResource", new()
    {
        Database = "string",
        Schema = "string",
        Comment = "string",
        Directory = new Snowflake.Inputs.StageInternalDirectoryArgs
        {
            Enable = false,
            AutoRefresh = "string",
        },
        Encryption = new Snowflake.Inputs.StageInternalEncryptionArgs
        {
            SnowflakeFull = null,
            SnowflakeSse = null,
        },
        FileFormat = new Snowflake.Inputs.StageInternalFileFormatArgs
        {
            Avro = new Snowflake.Inputs.StageInternalFileFormatAvroArgs
            {
                Compression = "string",
                NullIfs = new[]
                {
                    "string",
                },
                ReplaceInvalidCharacters = "string",
                TrimSpace = "string",
            },
            Csv = new Snowflake.Inputs.StageInternalFileFormatCsvArgs
            {
                BinaryFormat = "string",
                Compression = "string",
                DateFormat = "string",
                EmptyFieldAsNull = "string",
                Encoding = "string",
                ErrorOnColumnCountMismatch = "string",
                Escape = "string",
                EscapeUnenclosedField = "string",
                FieldDelimiter = "string",
                FieldOptionallyEnclosedBy = "string",
                FileExtension = "string",
                MultiLine = "string",
                NullIfs = new[]
                {
                    "string",
                },
                ParseHeader = "string",
                RecordDelimiter = "string",
                ReplaceInvalidCharacters = "string",
                SkipBlankLines = "string",
                SkipByteOrderMark = "string",
                SkipHeader = 0,
                TimeFormat = "string",
                TimestampFormat = "string",
                TrimSpace = "string",
            },
            FormatName = "string",
            Json = new Snowflake.Inputs.StageInternalFileFormatJsonArgs
            {
                AllowDuplicate = "string",
                BinaryFormat = "string",
                Compression = "string",
                DateFormat = "string",
                EnableOctal = "string",
                FileExtension = "string",
                IgnoreUtf8Errors = "string",
                MultiLine = "string",
                NullIfs = new[]
                {
                    "string",
                },
                ReplaceInvalidCharacters = "string",
                SkipByteOrderMark = "string",
                StripNullValues = "string",
                StripOuterArray = "string",
                TimeFormat = "string",
                TimestampFormat = "string",
                TrimSpace = "string",
            },
            Orc = new Snowflake.Inputs.StageInternalFileFormatOrcArgs
            {
                NullIfs = new[]
                {
                    "string",
                },
                ReplaceInvalidCharacters = "string",
                TrimSpace = "string",
            },
            Parquet = new Snowflake.Inputs.StageInternalFileFormatParquetArgs
            {
                BinaryAsText = "string",
                Compression = "string",
                NullIfs = new[]
                {
                    "string",
                },
                ReplaceInvalidCharacters = "string",
                TrimSpace = "string",
                UseLogicalType = "string",
                UseVectorizedScanner = "string",
            },
            Xml = new Snowflake.Inputs.StageInternalFileFormatXmlArgs
            {
                Compression = "string",
                DisableAutoConvert = "string",
                IgnoreUtf8Errors = "string",
                PreserveSpace = "string",
                ReplaceInvalidCharacters = "string",
                SkipByteOrderMark = "string",
                StripOuterElement = "string",
            },
        },
        Name = "string",
    });
    
    example, err := snowflake.NewStageInternal(ctx, "stageInternalResource", &snowflake.StageInternalArgs{
    	Database: pulumi.String("string"),
    	Schema:   pulumi.String("string"),
    	Comment:  pulumi.String("string"),
    	Directory: &snowflake.StageInternalDirectoryArgs{
    		Enable:      pulumi.Bool(false),
    		AutoRefresh: pulumi.String("string"),
    	},
    	Encryption: &snowflake.StageInternalEncryptionArgs{
    		SnowflakeFull: &snowflake.StageInternalEncryptionSnowflakeFullArgs{},
    		SnowflakeSse:  &snowflake.StageInternalEncryptionSnowflakeSseArgs{},
    	},
    	FileFormat: &snowflake.StageInternalFileFormatArgs{
    		Avro: &snowflake.StageInternalFileFormatAvroArgs{
    			Compression: pulumi.String("string"),
    			NullIfs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ReplaceInvalidCharacters: pulumi.String("string"),
    			TrimSpace:                pulumi.String("string"),
    		},
    		Csv: &snowflake.StageInternalFileFormatCsvArgs{
    			BinaryFormat:               pulumi.String("string"),
    			Compression:                pulumi.String("string"),
    			DateFormat:                 pulumi.String("string"),
    			EmptyFieldAsNull:           pulumi.String("string"),
    			Encoding:                   pulumi.String("string"),
    			ErrorOnColumnCountMismatch: pulumi.String("string"),
    			Escape:                     pulumi.String("string"),
    			EscapeUnenclosedField:      pulumi.String("string"),
    			FieldDelimiter:             pulumi.String("string"),
    			FieldOptionallyEnclosedBy:  pulumi.String("string"),
    			FileExtension:              pulumi.String("string"),
    			MultiLine:                  pulumi.String("string"),
    			NullIfs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ParseHeader:              pulumi.String("string"),
    			RecordDelimiter:          pulumi.String("string"),
    			ReplaceInvalidCharacters: pulumi.String("string"),
    			SkipBlankLines:           pulumi.String("string"),
    			SkipByteOrderMark:        pulumi.String("string"),
    			SkipHeader:               pulumi.Int(0),
    			TimeFormat:               pulumi.String("string"),
    			TimestampFormat:          pulumi.String("string"),
    			TrimSpace:                pulumi.String("string"),
    		},
    		FormatName: pulumi.String("string"),
    		Json: &snowflake.StageInternalFileFormatJsonArgs{
    			AllowDuplicate:   pulumi.String("string"),
    			BinaryFormat:     pulumi.String("string"),
    			Compression:      pulumi.String("string"),
    			DateFormat:       pulumi.String("string"),
    			EnableOctal:      pulumi.String("string"),
    			FileExtension:    pulumi.String("string"),
    			IgnoreUtf8Errors: pulumi.String("string"),
    			MultiLine:        pulumi.String("string"),
    			NullIfs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ReplaceInvalidCharacters: pulumi.String("string"),
    			SkipByteOrderMark:        pulumi.String("string"),
    			StripNullValues:          pulumi.String("string"),
    			StripOuterArray:          pulumi.String("string"),
    			TimeFormat:               pulumi.String("string"),
    			TimestampFormat:          pulumi.String("string"),
    			TrimSpace:                pulumi.String("string"),
    		},
    		Orc: &snowflake.StageInternalFileFormatOrcArgs{
    			NullIfs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ReplaceInvalidCharacters: pulumi.String("string"),
    			TrimSpace:                pulumi.String("string"),
    		},
    		Parquet: &snowflake.StageInternalFileFormatParquetArgs{
    			BinaryAsText: pulumi.String("string"),
    			Compression:  pulumi.String("string"),
    			NullIfs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ReplaceInvalidCharacters: pulumi.String("string"),
    			TrimSpace:                pulumi.String("string"),
    			UseLogicalType:           pulumi.String("string"),
    			UseVectorizedScanner:     pulumi.String("string"),
    		},
    		Xml: &snowflake.StageInternalFileFormatXmlArgs{
    			Compression:              pulumi.String("string"),
    			DisableAutoConvert:       pulumi.String("string"),
    			IgnoreUtf8Errors:         pulumi.String("string"),
    			PreserveSpace:            pulumi.String("string"),
    			ReplaceInvalidCharacters: pulumi.String("string"),
    			SkipByteOrderMark:        pulumi.String("string"),
    			StripOuterElement:        pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    })
    
    var stageInternalResource = new StageInternal("stageInternalResource", StageInternalArgs.builder()
        .database("string")
        .schema("string")
        .comment("string")
        .directory(StageInternalDirectoryArgs.builder()
            .enable(false)
            .autoRefresh("string")
            .build())
        .encryption(StageInternalEncryptionArgs.builder()
            .snowflakeFull(StageInternalEncryptionSnowflakeFullArgs.builder()
                .build())
            .snowflakeSse(StageInternalEncryptionSnowflakeSseArgs.builder()
                .build())
            .build())
        .fileFormat(StageInternalFileFormatArgs.builder()
            .avro(StageInternalFileFormatAvroArgs.builder()
                .compression("string")
                .nullIfs("string")
                .replaceInvalidCharacters("string")
                .trimSpace("string")
                .build())
            .csv(StageInternalFileFormatCsvArgs.builder()
                .binaryFormat("string")
                .compression("string")
                .dateFormat("string")
                .emptyFieldAsNull("string")
                .encoding("string")
                .errorOnColumnCountMismatch("string")
                .escape("string")
                .escapeUnenclosedField("string")
                .fieldDelimiter("string")
                .fieldOptionallyEnclosedBy("string")
                .fileExtension("string")
                .multiLine("string")
                .nullIfs("string")
                .parseHeader("string")
                .recordDelimiter("string")
                .replaceInvalidCharacters("string")
                .skipBlankLines("string")
                .skipByteOrderMark("string")
                .skipHeader(0)
                .timeFormat("string")
                .timestampFormat("string")
                .trimSpace("string")
                .build())
            .formatName("string")
            .json(StageInternalFileFormatJsonArgs.builder()
                .allowDuplicate("string")
                .binaryFormat("string")
                .compression("string")
                .dateFormat("string")
                .enableOctal("string")
                .fileExtension("string")
                .ignoreUtf8Errors("string")
                .multiLine("string")
                .nullIfs("string")
                .replaceInvalidCharacters("string")
                .skipByteOrderMark("string")
                .stripNullValues("string")
                .stripOuterArray("string")
                .timeFormat("string")
                .timestampFormat("string")
                .trimSpace("string")
                .build())
            .orc(StageInternalFileFormatOrcArgs.builder()
                .nullIfs("string")
                .replaceInvalidCharacters("string")
                .trimSpace("string")
                .build())
            .parquet(StageInternalFileFormatParquetArgs.builder()
                .binaryAsText("string")
                .compression("string")
                .nullIfs("string")
                .replaceInvalidCharacters("string")
                .trimSpace("string")
                .useLogicalType("string")
                .useVectorizedScanner("string")
                .build())
            .xml(StageInternalFileFormatXmlArgs.builder()
                .compression("string")
                .disableAutoConvert("string")
                .ignoreUtf8Errors("string")
                .preserveSpace("string")
                .replaceInvalidCharacters("string")
                .skipByteOrderMark("string")
                .stripOuterElement("string")
                .build())
            .build())
        .name("string")
        .build());
    
    stage_internal_resource = snowflake.StageInternal("stageInternalResource",
        database="string",
        schema="string",
        comment="string",
        directory={
            "enable": False,
            "auto_refresh": "string",
        },
        encryption={
            "snowflake_full": {},
            "snowflake_sse": {},
        },
        file_format={
            "avro": {
                "compression": "string",
                "null_ifs": ["string"],
                "replace_invalid_characters": "string",
                "trim_space": "string",
            },
            "csv": {
                "binary_format": "string",
                "compression": "string",
                "date_format": "string",
                "empty_field_as_null": "string",
                "encoding": "string",
                "error_on_column_count_mismatch": "string",
                "escape": "string",
                "escape_unenclosed_field": "string",
                "field_delimiter": "string",
                "field_optionally_enclosed_by": "string",
                "file_extension": "string",
                "multi_line": "string",
                "null_ifs": ["string"],
                "parse_header": "string",
                "record_delimiter": "string",
                "replace_invalid_characters": "string",
                "skip_blank_lines": "string",
                "skip_byte_order_mark": "string",
                "skip_header": 0,
                "time_format": "string",
                "timestamp_format": "string",
                "trim_space": "string",
            },
            "format_name": "string",
            "json": {
                "allow_duplicate": "string",
                "binary_format": "string",
                "compression": "string",
                "date_format": "string",
                "enable_octal": "string",
                "file_extension": "string",
                "ignore_utf8_errors": "string",
                "multi_line": "string",
                "null_ifs": ["string"],
                "replace_invalid_characters": "string",
                "skip_byte_order_mark": "string",
                "strip_null_values": "string",
                "strip_outer_array": "string",
                "time_format": "string",
                "timestamp_format": "string",
                "trim_space": "string",
            },
            "orc": {
                "null_ifs": ["string"],
                "replace_invalid_characters": "string",
                "trim_space": "string",
            },
            "parquet": {
                "binary_as_text": "string",
                "compression": "string",
                "null_ifs": ["string"],
                "replace_invalid_characters": "string",
                "trim_space": "string",
                "use_logical_type": "string",
                "use_vectorized_scanner": "string",
            },
            "xml": {
                "compression": "string",
                "disable_auto_convert": "string",
                "ignore_utf8_errors": "string",
                "preserve_space": "string",
                "replace_invalid_characters": "string",
                "skip_byte_order_mark": "string",
                "strip_outer_element": "string",
            },
        },
        name="string")
    
    const stageInternalResource = new snowflake.StageInternal("stageInternalResource", {
        database: "string",
        schema: "string",
        comment: "string",
        directory: {
            enable: false,
            autoRefresh: "string",
        },
        encryption: {
            snowflakeFull: {},
            snowflakeSse: {},
        },
        fileFormat: {
            avro: {
                compression: "string",
                nullIfs: ["string"],
                replaceInvalidCharacters: "string",
                trimSpace: "string",
            },
            csv: {
                binaryFormat: "string",
                compression: "string",
                dateFormat: "string",
                emptyFieldAsNull: "string",
                encoding: "string",
                errorOnColumnCountMismatch: "string",
                escape: "string",
                escapeUnenclosedField: "string",
                fieldDelimiter: "string",
                fieldOptionallyEnclosedBy: "string",
                fileExtension: "string",
                multiLine: "string",
                nullIfs: ["string"],
                parseHeader: "string",
                recordDelimiter: "string",
                replaceInvalidCharacters: "string",
                skipBlankLines: "string",
                skipByteOrderMark: "string",
                skipHeader: 0,
                timeFormat: "string",
                timestampFormat: "string",
                trimSpace: "string",
            },
            formatName: "string",
            json: {
                allowDuplicate: "string",
                binaryFormat: "string",
                compression: "string",
                dateFormat: "string",
                enableOctal: "string",
                fileExtension: "string",
                ignoreUtf8Errors: "string",
                multiLine: "string",
                nullIfs: ["string"],
                replaceInvalidCharacters: "string",
                skipByteOrderMark: "string",
                stripNullValues: "string",
                stripOuterArray: "string",
                timeFormat: "string",
                timestampFormat: "string",
                trimSpace: "string",
            },
            orc: {
                nullIfs: ["string"],
                replaceInvalidCharacters: "string",
                trimSpace: "string",
            },
            parquet: {
                binaryAsText: "string",
                compression: "string",
                nullIfs: ["string"],
                replaceInvalidCharacters: "string",
                trimSpace: "string",
                useLogicalType: "string",
                useVectorizedScanner: "string",
            },
            xml: {
                compression: "string",
                disableAutoConvert: "string",
                ignoreUtf8Errors: "string",
                preserveSpace: "string",
                replaceInvalidCharacters: "string",
                skipByteOrderMark: "string",
                stripOuterElement: "string",
            },
        },
        name: "string",
    });
    
    type: snowflake:StageInternal
    properties:
        comment: string
        database: string
        directory:
            autoRefresh: string
            enable: false
        encryption:
            snowflakeFull: {}
            snowflakeSse: {}
        fileFormat:
            avro:
                compression: string
                nullIfs:
                    - string
                replaceInvalidCharacters: string
                trimSpace: string
            csv:
                binaryFormat: string
                compression: string
                dateFormat: string
                emptyFieldAsNull: string
                encoding: string
                errorOnColumnCountMismatch: string
                escape: string
                escapeUnenclosedField: string
                fieldDelimiter: string
                fieldOptionallyEnclosedBy: string
                fileExtension: string
                multiLine: string
                nullIfs:
                    - string
                parseHeader: string
                recordDelimiter: string
                replaceInvalidCharacters: string
                skipBlankLines: string
                skipByteOrderMark: string
                skipHeader: 0
                timeFormat: string
                timestampFormat: string
                trimSpace: string
            formatName: string
            json:
                allowDuplicate: string
                binaryFormat: string
                compression: string
                dateFormat: string
                enableOctal: string
                fileExtension: string
                ignoreUtf8Errors: string
                multiLine: string
                nullIfs:
                    - string
                replaceInvalidCharacters: string
                skipByteOrderMark: string
                stripNullValues: string
                stripOuterArray: string
                timeFormat: string
                timestampFormat: string
                trimSpace: string
            orc:
                nullIfs:
                    - string
                replaceInvalidCharacters: string
                trimSpace: string
            parquet:
                binaryAsText: string
                compression: string
                nullIfs:
                    - string
                replaceInvalidCharacters: string
                trimSpace: string
                useLogicalType: string
                useVectorizedScanner: string
            xml:
                compression: string
                disableAutoConvert: string
                ignoreUtf8Errors: string
                preserveSpace: string
                replaceInvalidCharacters: string
                skipByteOrderMark: string
                stripOuterElement: string
        name: string
        schema: string
    

    StageInternal Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The StageInternal resource accepts the following input properties:

    Database string
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Comment string
    Specifies a comment for the stage.
    Directory StageInternalDirectory
    Directory tables store a catalog of staged files in cloud storage.
    Encryption StageInternalEncryption
    Specifies the encryption settings for the internal stage.
    FileFormat StageInternalFileFormat
    Specifies the file format for the stage.
    Name string
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Database string
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Comment string
    Specifies a comment for the stage.
    Directory StageInternalDirectoryArgs
    Directory tables store a catalog of staged files in cloud storage.
    Encryption StageInternalEncryptionArgs
    Specifies the encryption settings for the internal stage.
    FileFormat StageInternalFileFormatArgs
    Specifies the file format for the stage.
    Name string
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment String
    Specifies a comment for the stage.
    directory StageInternalDirectory
    Directory tables store a catalog of staged files in cloud storage.
    encryption StageInternalEncryption
    Specifies the encryption settings for the internal stage.
    fileFormat StageInternalFileFormat
    Specifies the file format for the stage.
    name String
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database string
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment string
    Specifies a comment for the stage.
    directory StageInternalDirectory
    Directory tables store a catalog of staged files in cloud storage.
    encryption StageInternalEncryption
    Specifies the encryption settings for the internal stage.
    fileFormat StageInternalFileFormat
    Specifies the file format for the stage.
    name string
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database str
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema str
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment str
    Specifies a comment for the stage.
    directory StageInternalDirectoryArgs
    Directory tables store a catalog of staged files in cloud storage.
    encryption StageInternalEncryptionArgs
    Specifies the encryption settings for the internal stage.
    file_format StageInternalFileFormatArgs
    Specifies the file format for the stage.
    name str
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment String
    Specifies a comment for the stage.
    directory Property Map
    Directory tables store a catalog of staged files in cloud storage.
    encryption Property Map
    Specifies the encryption settings for the internal stage.
    fileFormat Property Map
    Specifies the file format for the stage.
    name String
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".

    Outputs

    All input properties are implicitly available as output properties. Additionally, the StageInternal resource produces the following output properties:

    DescribeOutputs List<StageInternalDescribeOutput>
    Outputs the result of DESCRIBE STAGE for the given stage.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs List<StageInternalShowOutput>
    Outputs the result of SHOW STAGES for the given stage.
    StageType string
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    DescribeOutputs []StageInternalDescribeOutput
    Outputs the result of DESCRIBE STAGE for the given stage.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs []StageInternalShowOutput
    Outputs the result of SHOW STAGES for the given stage.
    StageType string
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    describeOutputs List<StageInternalDescribeOutput>
    Outputs the result of DESCRIBE STAGE for the given stage.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<StageInternalShowOutput>
    Outputs the result of SHOW STAGES for the given stage.
    stageType String
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    describeOutputs StageInternalDescribeOutput[]
    Outputs the result of DESCRIBE STAGE for the given stage.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    showOutputs StageInternalShowOutput[]
    Outputs the result of SHOW STAGES for the given stage.
    stageType string
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    describe_outputs Sequence[StageInternalDescribeOutput]
    Outputs the result of DESCRIBE STAGE for the given stage.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    id str
    The provider-assigned unique ID for this managed resource.
    show_outputs Sequence[StageInternalShowOutput]
    Outputs the result of SHOW STAGES for the given stage.
    stage_type str
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE STAGE for the given stage.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<Property Map>
    Outputs the result of SHOW STAGES for the given stage.
    stageType String
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.

    Look up Existing StageInternal Resource

    Get an existing StageInternal resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: StageInternalState, opts?: CustomResourceOptions): StageInternal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            database: Optional[str] = None,
            describe_outputs: Optional[Sequence[StageInternalDescribeOutputArgs]] = None,
            directory: Optional[StageInternalDirectoryArgs] = None,
            encryption: Optional[StageInternalEncryptionArgs] = None,
            file_format: Optional[StageInternalFileFormatArgs] = None,
            fully_qualified_name: Optional[str] = None,
            name: Optional[str] = None,
            schema: Optional[str] = None,
            show_outputs: Optional[Sequence[StageInternalShowOutputArgs]] = None,
            stage_type: Optional[str] = None) -> StageInternal
    func GetStageInternal(ctx *Context, name string, id IDInput, state *StageInternalState, opts ...ResourceOption) (*StageInternal, error)
    public static StageInternal Get(string name, Input<string> id, StageInternalState? state, CustomResourceOptions? opts = null)
    public static StageInternal get(String name, Output<String> id, StageInternalState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:StageInternal    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Comment string
    Specifies a comment for the stage.
    Database string
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs List<StageInternalDescribeOutput>
    Outputs the result of DESCRIBE STAGE for the given stage.
    Directory StageInternalDirectory
    Directory tables store a catalog of staged files in cloud storage.
    Encryption StageInternalEncryption
    Specifies the encryption settings for the internal stage.
    FileFormat StageInternalFileFormat
    Specifies the file format for the stage.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs List<StageInternalShowOutput>
    Outputs the result of SHOW STAGES for the given stage.
    StageType string
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    Comment string
    Specifies a comment for the stage.
    Database string
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs []StageInternalDescribeOutputArgs
    Outputs the result of DESCRIBE STAGE for the given stage.
    Directory StageInternalDirectoryArgs
    Directory tables store a catalog of staged files in cloud storage.
    Encryption StageInternalEncryptionArgs
    Specifies the encryption settings for the internal stage.
    FileFormat StageInternalFileFormatArgs
    Specifies the file format for the stage.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs []StageInternalShowOutputArgs
    Outputs the result of SHOW STAGES for the given stage.
    StageType string
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    comment String
    Specifies a comment for the stage.
    database String
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<StageInternalDescribeOutput>
    Outputs the result of DESCRIBE STAGE for the given stage.
    directory StageInternalDirectory
    Directory tables store a catalog of staged files in cloud storage.
    encryption StageInternalEncryption
    Specifies the encryption settings for the internal stage.
    fileFormat StageInternalFileFormat
    Specifies the file format for the stage.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<StageInternalShowOutput>
    Outputs the result of SHOW STAGES for the given stage.
    stageType String
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    comment string
    Specifies a comment for the stage.
    database string
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs StageInternalDescribeOutput[]
    Outputs the result of DESCRIBE STAGE for the given stage.
    directory StageInternalDirectory
    Directory tables store a catalog of staged files in cloud storage.
    encryption StageInternalEncryption
    Specifies the encryption settings for the internal stage.
    fileFormat StageInternalFileFormat
    Specifies the file format for the stage.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs StageInternalShowOutput[]
    Outputs the result of SHOW STAGES for the given stage.
    stageType string
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    comment str
    Specifies a comment for the stage.
    database str
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs Sequence[StageInternalDescribeOutputArgs]
    Outputs the result of DESCRIBE STAGE for the given stage.
    directory StageInternalDirectoryArgs
    Directory tables store a catalog of staged files in cloud storage.
    encryption StageInternalEncryptionArgs
    Specifies the encryption settings for the internal stage.
    file_format StageInternalFileFormatArgs
    Specifies the file format for the stage.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    name str
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema str
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs Sequence[StageInternalShowOutputArgs]
    Outputs the result of SHOW STAGES for the given stage.
    stage_type str
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.
    comment String
    Specifies a comment for the stage.
    database String
    The database in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE STAGE for the given stage.
    directory Property Map
    Directory tables store a catalog of staged files in cloud storage.
    encryption Property Map
    Specifies the encryption settings for the internal stage.
    fileFormat Property Map
    Specifies the file format for the stage.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the stage; must be unique for the database and schema in which the stage is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the stage. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<Property Map>
    Outputs the result of SHOW STAGES for the given stage.
    stageType String
    Specifies a type for the stage. This field is used for checking external changes and recreating the resources if needed.

    Supporting Types

    StageInternalDescribeOutput, StageInternalDescribeOutputArgs

    StageInternalDescribeOutputDirectoryTable, StageInternalDescribeOutputDirectoryTableArgs

    autoRefresh Boolean
    enable Boolean
    autoRefresh boolean
    enable boolean
    autoRefresh Boolean
    enable Boolean

    StageInternalDescribeOutputFileFormat, StageInternalDescribeOutputFileFormatArgs

    StageInternalDescribeOutputFileFormatAvro, StageInternalDescribeOutputFileFormatAvroArgs

    Compression string
    NullIfs List<string>
    ReplaceInvalidCharacters bool
    TrimSpace bool
    Type string
    compression String
    nullIfs List<String>
    replaceInvalidCharacters Boolean
    trimSpace Boolean
    type String
    compression string
    nullIfs string[]
    replaceInvalidCharacters boolean
    trimSpace boolean
    type string
    compression String
    nullIfs List<String>
    replaceInvalidCharacters Boolean
    trimSpace Boolean
    type String

    StageInternalDescribeOutputFileFormatCsv, StageInternalDescribeOutputFileFormatCsvArgs

    StageInternalDescribeOutputFileFormatJson, StageInternalDescribeOutputFileFormatJsonArgs

    StageInternalDescribeOutputFileFormatOrc, StageInternalDescribeOutputFileFormatOrcArgs

    NullIfs List<string>
    ReplaceInvalidCharacters bool
    TrimSpace bool
    Type string
    nullIfs List<String>
    replaceInvalidCharacters Boolean
    trimSpace Boolean
    type String
    nullIfs string[]
    replaceInvalidCharacters boolean
    trimSpace boolean
    type string
    nullIfs List<String>
    replaceInvalidCharacters Boolean
    trimSpace Boolean
    type String

    StageInternalDescribeOutputFileFormatParquet, StageInternalDescribeOutputFileFormatParquetArgs

    StageInternalDescribeOutputFileFormatXml, StageInternalDescribeOutputFileFormatXmlArgs

    StageInternalDirectory, StageInternalDirectoryArgs

    Enable bool
    Specifies whether to enable a directory table on the internal named stage.
    AutoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should automatically refresh the directory table metadata when new or updated data files are available on the internal named stage.
    Enable bool
    Specifies whether to enable a directory table on the internal named stage.
    AutoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should automatically refresh the directory table metadata when new or updated data files are available on the internal named stage.
    enable Boolean
    Specifies whether to enable a directory table on the internal named stage.
    autoRefresh String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should automatically refresh the directory table metadata when new or updated data files are available on the internal named stage.
    enable boolean
    Specifies whether to enable a directory table on the internal named stage.
    autoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should automatically refresh the directory table metadata when new or updated data files are available on the internal named stage.
    enable bool
    Specifies whether to enable a directory table on the internal named stage.
    auto_refresh str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should automatically refresh the directory table metadata when new or updated data files are available on the internal named stage.
    enable Boolean
    Specifies whether to enable a directory table on the internal named stage.
    autoRefresh String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should automatically refresh the directory table metadata when new or updated data files are available on the internal named stage.

    StageInternalEncryption, StageInternalEncryptionArgs

    SnowflakeFull StageInternalEncryptionSnowflakeFull
    Client-side and server-side encryption.
    SnowflakeSse StageInternalEncryptionSnowflakeSse
    Server-side encryption only.
    SnowflakeFull StageInternalEncryptionSnowflakeFull
    Client-side and server-side encryption.
    SnowflakeSse StageInternalEncryptionSnowflakeSse
    Server-side encryption only.
    snowflakeFull StageInternalEncryptionSnowflakeFull
    Client-side and server-side encryption.
    snowflakeSse StageInternalEncryptionSnowflakeSse
    Server-side encryption only.
    snowflakeFull StageInternalEncryptionSnowflakeFull
    Client-side and server-side encryption.
    snowflakeSse StageInternalEncryptionSnowflakeSse
    Server-side encryption only.
    snowflake_full StageInternalEncryptionSnowflakeFull
    Client-side and server-side encryption.
    snowflake_sse StageInternalEncryptionSnowflakeSse
    Server-side encryption only.
    snowflakeFull Property Map
    Client-side and server-side encryption.
    snowflakeSse Property Map
    Server-side encryption only.

    StageInternalFileFormat, StageInternalFileFormatArgs

    Avro StageInternalFileFormatAvro
    AVRO file format options.
    Csv StageInternalFileFormatCsv
    CSV file format options.
    FormatName string
    Fully qualified name of the file format (e.g., 'database.schema.format_name').
    Json StageInternalFileFormatJson
    JSON file format options.
    Orc StageInternalFileFormatOrc
    ORC file format options.
    Parquet StageInternalFileFormatParquet
    Parquet file format options.
    Xml StageInternalFileFormatXml
    XML file format options.
    Avro StageInternalFileFormatAvro
    AVRO file format options.
    Csv StageInternalFileFormatCsv
    CSV file format options.
    FormatName string
    Fully qualified name of the file format (e.g., 'database.schema.format_name').
    Json StageInternalFileFormatJson
    JSON file format options.
    Orc StageInternalFileFormatOrc
    ORC file format options.
    Parquet StageInternalFileFormatParquet
    Parquet file format options.
    Xml StageInternalFileFormatXml
    XML file format options.
    avro StageInternalFileFormatAvro
    AVRO file format options.
    csv StageInternalFileFormatCsv
    CSV file format options.
    formatName String
    Fully qualified name of the file format (e.g., 'database.schema.format_name').
    json StageInternalFileFormatJson
    JSON file format options.
    orc StageInternalFileFormatOrc
    ORC file format options.
    parquet StageInternalFileFormatParquet
    Parquet file format options.
    xml StageInternalFileFormatXml
    XML file format options.
    avro StageInternalFileFormatAvro
    AVRO file format options.
    csv StageInternalFileFormatCsv
    CSV file format options.
    formatName string
    Fully qualified name of the file format (e.g., 'database.schema.format_name').
    json StageInternalFileFormatJson
    JSON file format options.
    orc StageInternalFileFormatOrc
    ORC file format options.
    parquet StageInternalFileFormatParquet
    Parquet file format options.
    xml StageInternalFileFormatXml
    XML file format options.
    avro StageInternalFileFormatAvro
    AVRO file format options.
    csv StageInternalFileFormatCsv
    CSV file format options.
    format_name str
    Fully qualified name of the file format (e.g., 'database.schema.format_name').
    json StageInternalFileFormatJson
    JSON file format options.
    orc StageInternalFileFormatOrc
    ORC file format options.
    parquet StageInternalFileFormatParquet
    Parquet file format options.
    xml StageInternalFileFormatXml
    XML file format options.
    avro Property Map
    AVRO file format options.
    csv Property Map
    CSV file format options.
    formatName String
    Fully qualified name of the file format (e.g., 'database.schema.format_name').
    json Property Map
    JSON file format options.
    orc Property Map
    ORC file format options.
    parquet Property Map
    Parquet file format options.
    xml Property Map
    XML file format options.

    StageInternalFileFormatAvro, StageInternalFileFormatAvroArgs

    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    NullIfs List<string>
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    NullIfs []string
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    nullIfs string[]
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression str
    Specifies the compression format. Valid values: AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    null_ifs Sequence[str]
    String used to convert to and from SQL NULL.
    replace_invalid_characters str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trim_space str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.

    StageInternalFileFormatCsv, StageInternalFileFormatCsvArgs

    BinaryFormat string
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    DateFormat string
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    EmptyFieldAsNull string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to insert SQL NULL for empty fields in an input file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Encoding string
    Specifies the character set of the source data when loading data into a table. Valid values: BIG5 | EUCJP | EUCKR | GB18030 | IBM420 | IBM424 | ISO2022CN | ISO2022JP | ISO2022KR | ISO88591 | ISO88592 | ISO88595 | ISO88596 | ISO88597 | ISO88598 | ISO88599 | ISO885915 | KOI8R | SHIFTJIS | UTF8 | UTF16 | UTF16BE | UTF16LE | UTF32 | UTF32BE | UTF32LE | WINDOWS1250 | WINDOWS1251 | WINDOWS1252 | WINDOWS1253 | WINDOWS1254 | WINDOWS1255 | WINDOWS1256.
    ErrorOnColumnCountMismatch string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to generate a parsing error if the number of delimited columns in an input file does not match the number of columns in the corresponding table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Escape string
    Single character string used as the escape character for field values. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    EscapeUnenclosedField string
    Single character string used as the escape character for unenclosed field values only. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    FieldDelimiter string
    One or more singlebyte or multibyte characters that separate fields in an input file. Use NONE to specify no delimiter.
    FieldOptionallyEnclosedBy string
    Character used to enclose strings. Use NONE to specify no enclosure character.
    FileExtension string
    Specifies the extension for files unloaded to a stage.
    MultiLine string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to parse CSV files containing multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    NullIfs List<string>
    String used to convert to and from SQL NULL.
    ParseHeader string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use the first row headers in the data files to determine column names. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    RecordDelimiter string
    One or more singlebyte or multibyte characters that separate records in an input file. Use NONE to specify no delimiter.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipBlankLines string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies to skip any blank lines encountered in the data files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipHeader int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Number of lines at the start of the file to skip.
    TimeFormat string
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TimestampFormat string
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    BinaryFormat string
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    DateFormat string
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    EmptyFieldAsNull string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to insert SQL NULL for empty fields in an input file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Encoding string
    Specifies the character set of the source data when loading data into a table. Valid values: BIG5 | EUCJP | EUCKR | GB18030 | IBM420 | IBM424 | ISO2022CN | ISO2022JP | ISO2022KR | ISO88591 | ISO88592 | ISO88595 | ISO88596 | ISO88597 | ISO88598 | ISO88599 | ISO885915 | KOI8R | SHIFTJIS | UTF8 | UTF16 | UTF16BE | UTF16LE | UTF32 | UTF32BE | UTF32LE | WINDOWS1250 | WINDOWS1251 | WINDOWS1252 | WINDOWS1253 | WINDOWS1254 | WINDOWS1255 | WINDOWS1256.
    ErrorOnColumnCountMismatch string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to generate a parsing error if the number of delimited columns in an input file does not match the number of columns in the corresponding table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Escape string
    Single character string used as the escape character for field values. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    EscapeUnenclosedField string
    Single character string used as the escape character for unenclosed field values only. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    FieldDelimiter string
    One or more singlebyte or multibyte characters that separate fields in an input file. Use NONE to specify no delimiter.
    FieldOptionallyEnclosedBy string
    Character used to enclose strings. Use NONE to specify no enclosure character.
    FileExtension string
    Specifies the extension for files unloaded to a stage.
    MultiLine string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to parse CSV files containing multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    NullIfs []string
    String used to convert to and from SQL NULL.
    ParseHeader string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use the first row headers in the data files to determine column names. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    RecordDelimiter string
    One or more singlebyte or multibyte characters that separate records in an input file. Use NONE to specify no delimiter.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipBlankLines string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies to skip any blank lines encountered in the data files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipHeader int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Number of lines at the start of the file to skip.
    TimeFormat string
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TimestampFormat string
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryFormat String
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    dateFormat String
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    emptyFieldAsNull String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to insert SQL NULL for empty fields in an input file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    encoding String
    Specifies the character set of the source data when loading data into a table. Valid values: BIG5 | EUCJP | EUCKR | GB18030 | IBM420 | IBM424 | ISO2022CN | ISO2022JP | ISO2022KR | ISO88591 | ISO88592 | ISO88595 | ISO88596 | ISO88597 | ISO88598 | ISO88599 | ISO885915 | KOI8R | SHIFTJIS | UTF8 | UTF16 | UTF16BE | UTF16LE | UTF32 | UTF32BE | UTF32LE | WINDOWS1250 | WINDOWS1251 | WINDOWS1252 | WINDOWS1253 | WINDOWS1254 | WINDOWS1255 | WINDOWS1256.
    errorOnColumnCountMismatch String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to generate a parsing error if the number of delimited columns in an input file does not match the number of columns in the corresponding table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    escape String
    Single character string used as the escape character for field values. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    escapeUnenclosedField String
    Single character string used as the escape character for unenclosed field values only. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    fieldDelimiter String
    One or more singlebyte or multibyte characters that separate fields in an input file. Use NONE to specify no delimiter.
    fieldOptionallyEnclosedBy String
    Character used to enclose strings. Use NONE to specify no enclosure character.
    fileExtension String
    Specifies the extension for files unloaded to a stage.
    multiLine String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to parse CSV files containing multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    parseHeader String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use the first row headers in the data files to determine column names. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    recordDelimiter String
    One or more singlebyte or multibyte characters that separate records in an input file. Use NONE to specify no delimiter.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipBlankLines String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies to skip any blank lines encountered in the data files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipHeader Integer
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Number of lines at the start of the file to skip.
    timeFormat String
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestampFormat String
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryFormat string
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    dateFormat string
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    emptyFieldAsNull string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to insert SQL NULL for empty fields in an input file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    encoding string
    Specifies the character set of the source data when loading data into a table. Valid values: BIG5 | EUCJP | EUCKR | GB18030 | IBM420 | IBM424 | ISO2022CN | ISO2022JP | ISO2022KR | ISO88591 | ISO88592 | ISO88595 | ISO88596 | ISO88597 | ISO88598 | ISO88599 | ISO885915 | KOI8R | SHIFTJIS | UTF8 | UTF16 | UTF16BE | UTF16LE | UTF32 | UTF32BE | UTF32LE | WINDOWS1250 | WINDOWS1251 | WINDOWS1252 | WINDOWS1253 | WINDOWS1254 | WINDOWS1255 | WINDOWS1256.
    errorOnColumnCountMismatch string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to generate a parsing error if the number of delimited columns in an input file does not match the number of columns in the corresponding table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    escape string
    Single character string used as the escape character for field values. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    escapeUnenclosedField string
    Single character string used as the escape character for unenclosed field values only. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    fieldDelimiter string
    One or more singlebyte or multibyte characters that separate fields in an input file. Use NONE to specify no delimiter.
    fieldOptionallyEnclosedBy string
    Character used to enclose strings. Use NONE to specify no enclosure character.
    fileExtension string
    Specifies the extension for files unloaded to a stage.
    multiLine string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to parse CSV files containing multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs string[]
    String used to convert to and from SQL NULL.
    parseHeader string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use the first row headers in the data files to determine column names. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    recordDelimiter string
    One or more singlebyte or multibyte characters that separate records in an input file. Use NONE to specify no delimiter.
    replaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipBlankLines string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies to skip any blank lines encountered in the data files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipHeader number
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Number of lines at the start of the file to skip.
    timeFormat string
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestampFormat string
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binary_format str
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression str
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    date_format str
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    empty_field_as_null str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to insert SQL NULL for empty fields in an input file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    encoding str
    Specifies the character set of the source data when loading data into a table. Valid values: BIG5 | EUCJP | EUCKR | GB18030 | IBM420 | IBM424 | ISO2022CN | ISO2022JP | ISO2022KR | ISO88591 | ISO88592 | ISO88595 | ISO88596 | ISO88597 | ISO88598 | ISO88599 | ISO885915 | KOI8R | SHIFTJIS | UTF8 | UTF16 | UTF16BE | UTF16LE | UTF32 | UTF32BE | UTF32LE | WINDOWS1250 | WINDOWS1251 | WINDOWS1252 | WINDOWS1253 | WINDOWS1254 | WINDOWS1255 | WINDOWS1256.
    error_on_column_count_mismatch str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to generate a parsing error if the number of delimited columns in an input file does not match the number of columns in the corresponding table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    escape str
    Single character string used as the escape character for field values. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    escape_unenclosed_field str
    Single character string used as the escape character for unenclosed field values only. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    field_delimiter str
    One or more singlebyte or multibyte characters that separate fields in an input file. Use NONE to specify no delimiter.
    field_optionally_enclosed_by str
    Character used to enclose strings. Use NONE to specify no enclosure character.
    file_extension str
    Specifies the extension for files unloaded to a stage.
    multi_line str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to parse CSV files containing multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    null_ifs Sequence[str]
    String used to convert to and from SQL NULL.
    parse_header str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use the first row headers in the data files to determine column names. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    record_delimiter str
    One or more singlebyte or multibyte characters that separate records in an input file. Use NONE to specify no delimiter.
    replace_invalid_characters str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skip_blank_lines str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies to skip any blank lines encountered in the data files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skip_byte_order_mark str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skip_header int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Number of lines at the start of the file to skip.
    time_format str
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestamp_format str
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trim_space str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryFormat String
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    dateFormat String
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    emptyFieldAsNull String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to insert SQL NULL for empty fields in an input file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    encoding String
    Specifies the character set of the source data when loading data into a table. Valid values: BIG5 | EUCJP | EUCKR | GB18030 | IBM420 | IBM424 | ISO2022CN | ISO2022JP | ISO2022KR | ISO88591 | ISO88592 | ISO88595 | ISO88596 | ISO88597 | ISO88598 | ISO88599 | ISO885915 | KOI8R | SHIFTJIS | UTF8 | UTF16 | UTF16BE | UTF16LE | UTF32 | UTF32BE | UTF32LE | WINDOWS1250 | WINDOWS1251 | WINDOWS1252 | WINDOWS1253 | WINDOWS1254 | WINDOWS1255 | WINDOWS1256.
    errorOnColumnCountMismatch String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to generate a parsing error if the number of delimited columns in an input file does not match the number of columns in the corresponding table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    escape String
    Single character string used as the escape character for field values. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    escapeUnenclosedField String
    Single character string used as the escape character for unenclosed field values only. Use NONE to specify no escape character. NOTE: This value may be not imported properly from Snowflake. Snowflake returns escaped values.
    fieldDelimiter String
    One or more singlebyte or multibyte characters that separate fields in an input file. Use NONE to specify no delimiter.
    fieldOptionallyEnclosedBy String
    Character used to enclose strings. Use NONE to specify no enclosure character.
    fileExtension String
    Specifies the extension for files unloaded to a stage.
    multiLine String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to parse CSV files containing multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    parseHeader String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use the first row headers in the data files to determine column names. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    recordDelimiter String
    One or more singlebyte or multibyte characters that separate records in an input file. Use NONE to specify no delimiter.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipBlankLines String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies to skip any blank lines encountered in the data files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipHeader Number
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Number of lines at the start of the file to skip.
    timeFormat String
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestampFormat String
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.

    StageInternalFileFormatJson, StageInternalFileFormatJsonArgs

    AllowDuplicate string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow duplicate object field names (only the last one will be preserved). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    BinaryFormat string
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    DateFormat string
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    EnableOctal string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that enables parsing of octal numbers. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    FileExtension string
    Specifies the extension for files unloaded to a stage.
    IgnoreUtf8Errors string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    MultiLine string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    NullIfs List<string>
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    StripNullValues string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove object fields or array elements containing null values. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    StripOuterArray string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove outer brackets. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TimeFormat string
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TimestampFormat string
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    AllowDuplicate string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow duplicate object field names (only the last one will be preserved). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    BinaryFormat string
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    DateFormat string
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    EnableOctal string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that enables parsing of octal numbers. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    FileExtension string
    Specifies the extension for files unloaded to a stage.
    IgnoreUtf8Errors string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    MultiLine string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    NullIfs []string
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    StripNullValues string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove object fields or array elements containing null values. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    StripOuterArray string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove outer brackets. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TimeFormat string
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TimestampFormat string
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    allowDuplicate String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow duplicate object field names (only the last one will be preserved). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryFormat String
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    dateFormat String
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    enableOctal String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that enables parsing of octal numbers. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    fileExtension String
    Specifies the extension for files unloaded to a stage.
    ignoreUtf8Errors String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    multiLine String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripNullValues String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove object fields or array elements containing null values. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripOuterArray String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove outer brackets. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    timeFormat String
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestampFormat String
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    allowDuplicate string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow duplicate object field names (only the last one will be preserved). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryFormat string
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    dateFormat string
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    enableOctal string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that enables parsing of octal numbers. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    fileExtension string
    Specifies the extension for files unloaded to a stage.
    ignoreUtf8Errors string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    multiLine string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs string[]
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripNullValues string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove object fields or array elements containing null values. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripOuterArray string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove outer brackets. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    timeFormat string
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestampFormat string
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    allow_duplicate str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow duplicate object field names (only the last one will be preserved). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binary_format str
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression str
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    date_format str
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    enable_octal str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that enables parsing of octal numbers. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    file_extension str
    Specifies the extension for files unloaded to a stage.
    ignore_utf8_errors str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    multi_line str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    null_ifs Sequence[str]
    String used to convert to and from SQL NULL.
    replace_invalid_characters str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skip_byte_order_mark str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    strip_null_values str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove object fields or array elements containing null values. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    strip_outer_array str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove outer brackets. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    time_format str
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestamp_format str
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trim_space str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    allowDuplicate String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow duplicate object field names (only the last one will be preserved). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryFormat String
    Defines the encoding format for binary input or output. Valid values: HEX | BASE64 | UTF8.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    dateFormat String
    Defines the format of date values in the data files. Use AUTO to have Snowflake auto-detect the format.
    enableOctal String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that enables parsing of octal numbers. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    fileExtension String
    Specifies the extension for files unloaded to a stage.
    ignoreUtf8Errors String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    multiLine String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to allow multiple records on a single line. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripNullValues String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove object fields or array elements containing null values. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripOuterArray String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that instructs the JSON parser to remove outer brackets. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    timeFormat String
    Defines the format of time values in the data files. Use AUTO to have Snowflake auto-detect the format.
    timestampFormat String
    Defines the format of timestamp values in the data files. Use AUTO to have Snowflake auto-detect the format.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.

    StageInternalFileFormatOrc, StageInternalFileFormatOrcArgs

    NullIfs List<string>
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    NullIfs []string
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs string[]
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    null_ifs Sequence[str]
    String used to convert to and from SQL NULL.
    replace_invalid_characters str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trim_space str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.

    StageInternalFileFormatParquet, StageInternalFileFormatParquetArgs

    BinaryAsText string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to interpret columns with no defined logical data type as UTF-8 text. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    NullIfs List<string>
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    UseLogicalType string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use Parquet logical types when loading data. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    UseVectorizedScanner string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use a vectorized scanner for loading Parquet files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    BinaryAsText string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to interpret columns with no defined logical data type as UTF-8 text. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    NullIfs []string
    String used to convert to and from SQL NULL.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    TrimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    UseLogicalType string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use Parquet logical types when loading data. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    UseVectorizedScanner string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use a vectorized scanner for loading Parquet files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryAsText String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to interpret columns with no defined logical data type as UTF-8 text. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression String
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    useLogicalType String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use Parquet logical types when loading data. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    useVectorizedScanner String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use a vectorized scanner for loading Parquet files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryAsText string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to interpret columns with no defined logical data type as UTF-8 text. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    nullIfs string[]
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    useLogicalType string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use Parquet logical types when loading data. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    useVectorizedScanner string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use a vectorized scanner for loading Parquet files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binary_as_text str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to interpret columns with no defined logical data type as UTF-8 text. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression str
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    null_ifs Sequence[str]
    String used to convert to and from SQL NULL.
    replace_invalid_characters str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trim_space str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    use_logical_type str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use Parquet logical types when loading data. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    use_vectorized_scanner str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use a vectorized scanner for loading Parquet files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    binaryAsText String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to interpret columns with no defined logical data type as UTF-8 text. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression String
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    nullIfs List<String>
    String used to convert to and from SQL NULL.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    trimSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to remove white space from fields. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    useLogicalType String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use Parquet logical types when loading data. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    useVectorizedScanner String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to use a vectorized scanner for loading Parquet files. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.

    StageInternalFileFormatXml, StageInternalFileFormatXmlArgs

    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    DisableAutoConvert string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser disables automatic conversion of numeric and Boolean values from text to native representation. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    IgnoreUtf8Errors string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    PreserveSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser preserves leading and trailing spaces in element content. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    StripOuterElement string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser strips out the outer XML element, exposing 2nd level elements as separate documents. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    DisableAutoConvert string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser disables automatic conversion of numeric and Boolean values from text to native representation. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    IgnoreUtf8Errors string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    PreserveSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser preserves leading and trailing spaces in element content. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    ReplaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    SkipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    StripOuterElement string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser strips out the outer XML element, exposing 2nd level elements as separate documents. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    disableAutoConvert String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser disables automatic conversion of numeric and Boolean values from text to native representation. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    ignoreUtf8Errors String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    preserveSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser preserves leading and trailing spaces in element content. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripOuterElement String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser strips out the outer XML element, exposing 2nd level elements as separate documents. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression string
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    disableAutoConvert string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser disables automatic conversion of numeric and Boolean values from text to native representation. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    ignoreUtf8Errors string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    preserveSpace string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser preserves leading and trailing spaces in element content. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    replaceInvalidCharacters string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripOuterElement string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser strips out the outer XML element, exposing 2nd level elements as separate documents. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression str
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    disable_auto_convert str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser disables automatic conversion of numeric and Boolean values from text to native representation. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    ignore_utf8_errors str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    preserve_space str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser preserves leading and trailing spaces in element content. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    replace_invalid_characters str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skip_byte_order_mark str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    strip_outer_element str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser strips out the outer XML element, exposing 2nd level elements as separate documents. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    compression String
    Specifies the compression format. Valid values: AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE.
    disableAutoConvert String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser disables automatic conversion of numeric and Boolean values from text to native representation. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    ignoreUtf8Errors String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether UTF-8 encoding errors produce error conditions. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    preserveSpace String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser preserves leading and trailing spaces in element content. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    replaceInvalidCharacters String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to replace invalid UTF-8 characters with the Unicode replacement character. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    skipByteOrderMark String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether to skip the BOM (byte order mark) if present in a data file. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    stripOuterElement String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Boolean that specifies whether the XML parser strips out the outer XML element, exposing 2nd level elements as separate documents. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.

    StageInternalShowOutput, StageInternalShowOutputArgs

    Cloud string
    Comment string
    CreatedOn string
    DatabaseName string
    DirectoryEnabled bool
    Endpoint string
    HasCredentials bool
    HasEncryptionKey bool
    Name string
    Owner string
    OwnerRoleType string
    Region string
    SchemaName string
    StorageIntegration string
    Type string
    Url string
    Cloud string
    Comment string
    CreatedOn string
    DatabaseName string
    DirectoryEnabled bool
    Endpoint string
    HasCredentials bool
    HasEncryptionKey bool
    Name string
    Owner string
    OwnerRoleType string
    Region string
    SchemaName string
    StorageIntegration string
    Type string
    Url string
    cloud String
    comment String
    createdOn String
    databaseName String
    directoryEnabled Boolean
    endpoint String
    hasCredentials Boolean
    hasEncryptionKey Boolean
    name String
    owner String
    ownerRoleType String
    region String
    schemaName String
    storageIntegration String
    type String
    url String
    cloud string
    comment string
    createdOn string
    databaseName string
    directoryEnabled boolean
    endpoint string
    hasCredentials boolean
    hasEncryptionKey boolean
    name string
    owner string
    ownerRoleType string
    region string
    schemaName string
    storageIntegration string
    type string
    url string
    cloud String
    comment String
    createdOn String
    databaseName String
    directoryEnabled Boolean
    endpoint String
    hasCredentials Boolean
    hasEncryptionKey Boolean
    name String
    owner String
    ownerRoleType String
    region String
    schemaName String
    storageIntegration String
    type String
    url String

    Import

    $ pulumi import snowflake:index/stageInternal:StageInternal example '"<database_name>"."<schema_name>"."<stage_name>"'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Snowflake v2.12.0 published on Friday, Feb 13, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate