1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. FileFormatParquet
Viewing docs for Snowflake v2.19.0
published on Friday, Jul 31, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.19.0
published on Friday, Jul 31, 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 previewFeaturesEnabled 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 A file format cannot be dropped successfully if it has dependent external tables. Before dropping the resource, first drop the dependent external tables manually.

    Note Snowflake returns the same DESCRIBE FILE FORMAT output for nullIf set to an empty list and for nullIf set to a list with a single empty string. Because of that, the provider cannot detect an external change between these two values, and describe_output.null_if is empty in both cases.

    Resource used to manage Parquet file formats. For more information, check file format 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";
    
    //# Minimal
    const basic = new snowflake.FileFormatParquet("basic", {
        database: "database_name",
        schema: "schema_name",
        name: "file_format_name",
    });
    //# Complete (with every optional set)
    const complete = new snowflake.FileFormatParquet("complete", {
        database: "database_name",
        schema: "schema_name",
        name: "file_format_name",
        compression: "LZO",
        binaryAsText: "false",
        useLogicalType: "true",
        trimSpace: "true",
        useVectorizedScanner: "true",
        replaceInvalidCharacters: "false",
        nullIfs: [
            "NULL",
            "",
        ],
        comment: "My Parquet file format",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    ## Minimal
    basic = snowflake.FileFormatParquet("basic",
        database="database_name",
        schema="schema_name",
        name="file_format_name")
    ## Complete (with every optional set)
    complete = snowflake.FileFormatParquet("complete",
        database="database_name",
        schema="schema_name",
        name="file_format_name",
        compression="LZO",
        binary_as_text="false",
        use_logical_type="true",
        trim_space="true",
        use_vectorized_scanner="true",
        replace_invalid_characters="false",
        null_ifs=[
            "NULL",
            "",
        ],
        comment="My Parquet file format")
    
    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 {
    		// # Minimal
    		_, err := snowflake.NewFileFormatParquet(ctx, "basic", &snowflake.FileFormatParquetArgs{
    			Database: pulumi.String("database_name"),
    			Schema:   pulumi.String("schema_name"),
    			Name:     pulumi.String("file_format_name"),
    		})
    		if err != nil {
    			return err
    		}
    		// # Complete (with every optional set)
    		_, err = snowflake.NewFileFormatParquet(ctx, "complete", &snowflake.FileFormatParquetArgs{
    			Database:                 pulumi.String("database_name"),
    			Schema:                   pulumi.String("schema_name"),
    			Name:                     pulumi.String("file_format_name"),
    			Compression:              pulumi.String("LZO"),
    			BinaryAsText:             pulumi.String("false"),
    			UseLogicalType:           pulumi.String("true"),
    			TrimSpace:                pulumi.String("true"),
    			UseVectorizedScanner:     pulumi.String("true"),
    			ReplaceInvalidCharacters: pulumi.String("false"),
    			NullIfs: pulumi.StringArray{
    				pulumi.String("NULL"),
    				pulumi.String(""),
    			},
    			Comment: pulumi.String("My Parquet file format"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        //# Minimal
        var basic = new Snowflake.FileFormatParquet("basic", new()
        {
            Database = "database_name",
            Schema = "schema_name",
            Name = "file_format_name",
        });
    
        //# Complete (with every optional set)
        var complete = new Snowflake.FileFormatParquet("complete", new()
        {
            Database = "database_name",
            Schema = "schema_name",
            Name = "file_format_name",
            Compression = "LZO",
            BinaryAsText = "false",
            UseLogicalType = "true",
            TrimSpace = "true",
            UseVectorizedScanner = "true",
            ReplaceInvalidCharacters = "false",
            NullIfs = new[]
            {
                "NULL",
                "",
            },
            Comment = "My Parquet file format",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.FileFormatParquet;
    import com.pulumi.snowflake.FileFormatParquetArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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) {
            //# Minimal
            var basic = new FileFormatParquet("basic", FileFormatParquetArgs.builder()
                .database("database_name")
                .schema("schema_name")
                .name("file_format_name")
                .build());
    
            //# Complete (with every optional set)
            var complete = new FileFormatParquet("complete", FileFormatParquetArgs.builder()
                .database("database_name")
                .schema("schema_name")
                .name("file_format_name")
                .compression("LZO")
                .binaryAsText("false")
                .useLogicalType("true")
                .trimSpace("true")
                .useVectorizedScanner("true")
                .replaceInvalidCharacters("false")
                .nullIfs(            
                    "NULL",
                    "")
                .comment("My Parquet file format")
                .build());
    
        }
    }
    
    resources:
      ## Minimal
      basic:
        type: snowflake:FileFormatParquet
        properties:
          database: database_name
          schema: schema_name
          name: file_format_name
      ## Complete (with every optional set)
      complete:
        type: snowflake:FileFormatParquet
        properties:
          database: database_name
          schema: schema_name
          name: file_format_name
          compression: LZO
          binaryAsText: 'false'
          useLogicalType: 'true'
          trimSpace: 'true'
          useVectorizedScanner: 'true'
          replaceInvalidCharacters: 'false'
          nullIfs:
            - NULL
            - ""
          comment: My Parquet file format
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    ## Minimal
    resource "snowflake_fileformatparquet" "basic" {
      database = "database_name"
      schema   = "schema_name"
      name     = "file_format_name"
    }
    ## Complete (with every optional set)
    resource "snowflake_fileformatparquet" "complete" {
      database                   = "database_name"
      schema                     = "schema_name"
      name                       = "file_format_name"
      compression                = "LZO"
      binary_as_text             = "false"
      use_logical_type           = "true"
      trim_space                 = "true"
      use_vectorized_scanner     = "true"
      replace_invalid_characters = "false"
      null_ifs                   = ["NULL", ""]
      comment                    = "My Parquet file format"
    }
    

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

    Create FileFormatParquet Resource

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

    Constructor syntax

    new FileFormatParquet(name: string, args: FileFormatParquetArgs, opts?: CustomResourceOptions);
    @overload
    def FileFormatParquet(resource_name: str,
                          args: FileFormatParquetArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def FileFormatParquet(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          database: Optional[str] = None,
                          schema: Optional[str] = None,
                          binary_as_text: Optional[str] = None,
                          comment: Optional[str] = None,
                          compression: Optional[str] = None,
                          name: Optional[str] = None,
                          null_ifs: Optional[Sequence[str]] = None,
                          replace_invalid_characters: Optional[str] = None,
                          trim_space: Optional[str] = None,
                          use_logical_type: Optional[str] = None,
                          use_vectorized_scanner: Optional[str] = None)
    func NewFileFormatParquet(ctx *Context, name string, args FileFormatParquetArgs, opts ...ResourceOption) (*FileFormatParquet, error)
    public FileFormatParquet(string name, FileFormatParquetArgs args, CustomResourceOptions? opts = null)
    public FileFormatParquet(String name, FileFormatParquetArgs args)
    public FileFormatParquet(String name, FileFormatParquetArgs args, CustomResourceOptions options)
    
    type: snowflake:FileFormatParquet
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_file_format_parquet" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args FileFormatParquetArgs
    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 FileFormatParquetArgs
    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 FileFormatParquetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileFormatParquetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileFormatParquetArgs
    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 fileFormatParquetResource = new Snowflake.FileFormatParquet("fileFormatParquetResource", new()
    {
        Database = "string",
        Schema = "string",
        BinaryAsText = "string",
        Comment = "string",
        Compression = "string",
        Name = "string",
        NullIfs = new[]
        {
            "string",
        },
        ReplaceInvalidCharacters = "string",
        TrimSpace = "string",
        UseLogicalType = "string",
        UseVectorizedScanner = "string",
    });
    
    example, err := snowflake.NewFileFormatParquet(ctx, "fileFormatParquetResource", &snowflake.FileFormatParquetArgs{
    	Database:     pulumi.String("string"),
    	Schema:       pulumi.String("string"),
    	BinaryAsText: pulumi.String("string"),
    	Comment:      pulumi.String("string"),
    	Compression:  pulumi.String("string"),
    	Name:         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"),
    })
    
    resource "snowflake_file_format_parquet" "fileFormatParquetResource" {
      lifecycle {
        create_before_destroy = true
      }
      database                   = "string"
      schema                     = "string"
      binary_as_text             = "string"
      comment                    = "string"
      compression                = "string"
      name                       = "string"
      null_ifs                   = ["string"]
      replace_invalid_characters = "string"
      trim_space                 = "string"
      use_logical_type           = "string"
      use_vectorized_scanner     = "string"
    }
    
    var fileFormatParquetResource = new FileFormatParquet("fileFormatParquetResource", FileFormatParquetArgs.builder()
        .database("string")
        .schema("string")
        .binaryAsText("string")
        .comment("string")
        .compression("string")
        .name("string")
        .nullIfs("string")
        .replaceInvalidCharacters("string")
        .trimSpace("string")
        .useLogicalType("string")
        .useVectorizedScanner("string")
        .build());
    
    file_format_parquet_resource = snowflake.FileFormatParquet("fileFormatParquetResource",
        database="string",
        schema="string",
        binary_as_text="string",
        comment="string",
        compression="string",
        name="string",
        null_ifs=["string"],
        replace_invalid_characters="string",
        trim_space="string",
        use_logical_type="string",
        use_vectorized_scanner="string")
    
    const fileFormatParquetResource = new snowflake.FileFormatParquet("fileFormatParquetResource", {
        database: "string",
        schema: "string",
        binaryAsText: "string",
        comment: "string",
        compression: "string",
        name: "string",
        nullIfs: ["string"],
        replaceInvalidCharacters: "string",
        trimSpace: "string",
        useLogicalType: "string",
        useVectorizedScanner: "string",
    });
    
    type: snowflake:FileFormatParquet
    properties:
        binaryAsText: string
        comment: string
        compression: string
        database: string
        name: string
        nullIfs:
            - string
        replaceInvalidCharacters: string
        schema: string
        trimSpace: string
        useLogicalType: string
        useVectorizedScanner: string
    

    FileFormatParquet 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 FileFormatParquet resource accepts the following input properties:

    Database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    Comment string
    Specifies a comment for the file format.
    Compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    Name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    Database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    Comment string
    Specifies a comment for the file format.
    Compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    Name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    binary_as_text 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.
    comment string
    Specifies a comment for the file format.
    compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    null_ifs list(string)
    String used to convert to and from SQL NULL.
    replace_invalid_characters 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.
    trim_space 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.
    use_logical_type 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.
    use_vectorized_scanner 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.
    database String
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    comment String
    Specifies a comment for the file format.
    compression String
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    name String
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    comment string
    Specifies a comment for the file format.
    compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    database str
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema str
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    comment str
    Specifies a comment for the file format.
    compression str
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    name str
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    database String
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    comment String
    Specifies a comment for the file format.
    compression String
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    name String
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.

    Outputs

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

    DescribeOutputs List<FileFormatParquetDescribeOutput>
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    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<FileFormatParquetShowOutput>
    Outputs the result of SHOW FILE FORMATS for this file format.
    Type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    DescribeOutputs []FileFormatParquetDescribeOutput
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    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 []FileFormatParquetShowOutput
    Outputs the result of SHOW FILE FORMATS for this file format.
    Type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs list(object)
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    fully_qualified_name 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.
    show_outputs list(object)
    Outputs the result of SHOW FILE FORMATS for this file format.
    type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<FileFormatParquetDescribeOutput>
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    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<FileFormatParquetShowOutput>
    Outputs the result of SHOW FILE FORMATS for this file format.
    type String
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs FileFormatParquetDescribeOutput[]
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    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 FileFormatParquetShowOutput[]
    Outputs the result of SHOW FILE FORMATS for this file format.
    type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs Sequence[FileFormatParquetDescribeOutput]
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    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[FileFormatParquetShowOutput]
    Outputs the result of SHOW FILE FORMATS for this file format.
    type str
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    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 FILE FORMATS for this file format.
    type String
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.

    Look up Existing FileFormatParquet Resource

    Get an existing FileFormatParquet 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?: FileFormatParquetState, opts?: CustomResourceOptions): FileFormatParquet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            binary_as_text: Optional[str] = None,
            comment: Optional[str] = None,
            compression: Optional[str] = None,
            database: Optional[str] = None,
            describe_outputs: Optional[Sequence[FileFormatParquetDescribeOutputArgs]] = None,
            fully_qualified_name: Optional[str] = None,
            name: Optional[str] = None,
            null_ifs: Optional[Sequence[str]] = None,
            replace_invalid_characters: Optional[str] = None,
            schema: Optional[str] = None,
            show_outputs: Optional[Sequence[FileFormatParquetShowOutputArgs]] = None,
            trim_space: Optional[str] = None,
            type: Optional[str] = None,
            use_logical_type: Optional[str] = None,
            use_vectorized_scanner: Optional[str] = None) -> FileFormatParquet
    func GetFileFormatParquet(ctx *Context, name string, id IDInput, state *FileFormatParquetState, opts ...ResourceOption) (*FileFormatParquet, error)
    public static FileFormatParquet Get(string name, Input<string> id, FileFormatParquetState? state, CustomResourceOptions? opts = null)
    public static FileFormatParquet get(String name, Output<String> id, FileFormatParquetState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:FileFormatParquet    get:      id: ${id}
    import {
      to = snowflake_file_format_parquet.example
      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:
    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.
    Comment string
    Specifies a comment for the file format.
    Compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    Database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs List<FileFormatParquetDescribeOutput>
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    Schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs List<FileFormatParquetShowOutput>
    Outputs the result of SHOW FILE FORMATS for this file 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.
    Type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    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.
    Comment string
    Specifies a comment for the file format.
    Compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    Database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs []FileFormatParquetDescribeOutputArgs
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    Schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs []FileFormatParquetShowOutputArgs
    Outputs the result of SHOW FILE FORMATS for this file 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.
    Type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    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 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.
    comment string
    Specifies a comment for the file format.
    compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs list(object)
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    null_ifs list(string)
    String used to convert to and from SQL NULL.
    replace_invalid_characters 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.
    schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs list(object)
    Outputs the result of SHOW FILE FORMATS for this file format.
    trim_space 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.
    type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    use_logical_type 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.
    use_vectorized_scanner 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.
    comment String
    Specifies a comment for the file format.
    compression String
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    database String
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<FileFormatParquetDescribeOutput>
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    schema String
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<FileFormatParquetShowOutput>
    Outputs the result of SHOW FILE FORMATS for this file 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.
    type String
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    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.
    comment string
    Specifies a comment for the file format.
    compression string
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    database string
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs FileFormatParquetDescribeOutput[]
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    schema string
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs FileFormatParquetShowOutput[]
    Outputs the result of SHOW FILE FORMATS for this file 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.
    type string
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    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.
    comment str
    Specifies a comment for the file format.
    compression str
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    database str
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs Sequence[FileFormatParquetDescribeOutputArgs]
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    name str
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    schema str
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs Sequence[FileFormatParquetShowOutputArgs]
    Outputs the result of SHOW FILE FORMATS for this file 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.
    type str
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    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.
    comment String
    Specifies a comment for the file format.
    compression String
    Specifies the compression format. Valid values: AUTO | LZO | SNAPPY | NONE.
    database String
    The database in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE FILE FORMAT for this file format.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the file format; must be unique for the database and schema in which the file format is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    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.
    schema String
    The schema in which to create the file format. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<Property Map>
    Outputs the result of SHOW FILE FORMATS for this file 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.
    type String
    Specifies the type of the file format. This field is used to detect when the file format type was changed outside of Terraform and to recreate the resource when that happens.
    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.

    Supporting Types

    FileFormatParquetDescribeOutput, FileFormatParquetDescribeOutputArgs

    binaryAsText Boolean
    compression String
    id String
    nullIfs List<String>
    replaceInvalidCharacters Boolean
    trimSpace Boolean
    type String
    useLogicalType Boolean
    useVectorizedScanner Boolean
    binaryAsText boolean
    compression string
    id string
    nullIfs string[]
    replaceInvalidCharacters boolean
    trimSpace boolean
    type string
    useLogicalType boolean
    useVectorizedScanner boolean
    binaryAsText Boolean
    compression String
    id String
    nullIfs List<String>
    replaceInvalidCharacters Boolean
    trimSpace Boolean
    type String
    useLogicalType Boolean
    useVectorizedScanner Boolean

    FileFormatParquetShowOutput, FileFormatParquetShowOutputArgs

    Comment string
    CreatedOn string
    DatabaseName string
    FormatOptions string
    Name string
    Owner string
    OwnerRoleType string
    SchemaName string
    Type string
    Comment string
    CreatedOn string
    DatabaseName string
    FormatOptions string
    Name string
    Owner string
    OwnerRoleType string
    SchemaName string
    Type string
    comment string
    created_on string
    database_name string
    format_options string
    name string
    owner string
    owner_role_type string
    schema_name string
    type string
    comment String
    createdOn String
    databaseName String
    formatOptions String
    name String
    owner String
    ownerRoleType String
    schemaName String
    type String
    comment string
    createdOn string
    databaseName string
    formatOptions string
    name string
    owner string
    ownerRoleType string
    schemaName string
    type string
    comment String
    createdOn String
    databaseName String
    formatOptions String
    name String
    owner String
    ownerRoleType String
    schemaName String
    type String

    Import

    $ pulumi import snowflake:index/fileFormatParquet:FileFormatParquet example '"<database_name>"."<schema_name>"."<file_format_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
    Viewing docs for Snowflake v2.19.0
    published on Friday, Jul 31, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial