1. Packages
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. CatalogIntegrationObjectStorage
Viewing docs for Snowflake v2.15.0
published on Saturday, May 9, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.15.0
published on Saturday, May 9, 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.

    Resource used to manage catalog integration objects for Apache Iceberg™ table files or Delta table files in object storage. For more information, check catalog integration 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.CatalogIntegrationObjectStorage("basic", {
        name: "example",
        enabled: false,
        tableFormat: "DELTA",
    });
    // complete resource
    const complete = new snowflake.CatalogIntegrationObjectStorage("complete", {
        name: "example_complete",
        enabled: true,
        refreshIntervalSeconds: 60,
        comment: "Lorem ipsum",
        tableFormat: "ICEBERG",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # basic resource
    basic = snowflake.CatalogIntegrationObjectStorage("basic",
        name="example",
        enabled=False,
        table_format="DELTA")
    # complete resource
    complete = snowflake.CatalogIntegrationObjectStorage("complete",
        name="example_complete",
        enabled=True,
        refresh_interval_seconds=60,
        comment="Lorem ipsum",
        table_format="ICEBERG")
    
    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.NewCatalogIntegrationObjectStorage(ctx, "basic", &snowflake.CatalogIntegrationObjectStorageArgs{
    			Name:        pulumi.String("example"),
    			Enabled:     pulumi.Bool(false),
    			TableFormat: pulumi.String("DELTA"),
    		})
    		if err != nil {
    			return err
    		}
    		// complete resource
    		_, err = snowflake.NewCatalogIntegrationObjectStorage(ctx, "complete", &snowflake.CatalogIntegrationObjectStorageArgs{
    			Name:                   pulumi.String("example_complete"),
    			Enabled:                pulumi.Bool(true),
    			RefreshIntervalSeconds: pulumi.Int(60),
    			Comment:                pulumi.String("Lorem ipsum"),
    			TableFormat:            pulumi.String("ICEBERG"),
    		})
    		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.CatalogIntegrationObjectStorage("basic", new()
        {
            Name = "example",
            Enabled = false,
            TableFormat = "DELTA",
        });
    
        // complete resource
        var complete = new Snowflake.CatalogIntegrationObjectStorage("complete", new()
        {
            Name = "example_complete",
            Enabled = true,
            RefreshIntervalSeconds = 60,
            Comment = "Lorem ipsum",
            TableFormat = "ICEBERG",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.CatalogIntegrationObjectStorage;
    import com.pulumi.snowflake.CatalogIntegrationObjectStorageArgs;
    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) {
            // basic resource
            var basic = new CatalogIntegrationObjectStorage("basic", CatalogIntegrationObjectStorageArgs.builder()
                .name("example")
                .enabled(false)
                .tableFormat("DELTA")
                .build());
    
            // complete resource
            var complete = new CatalogIntegrationObjectStorage("complete", CatalogIntegrationObjectStorageArgs.builder()
                .name("example_complete")
                .enabled(true)
                .refreshIntervalSeconds(60)
                .comment("Lorem ipsum")
                .tableFormat("ICEBERG")
                .build());
    
        }
    }
    
    resources:
      # basic resource
      basic:
        type: snowflake:CatalogIntegrationObjectStorage
        properties:
          name: example
          enabled: false
          tableFormat: DELTA
      # complete resource
      complete:
        type: snowflake:CatalogIntegrationObjectStorage
        properties:
          name: example_complete
          enabled: true
          refreshIntervalSeconds: 60
          comment: Lorem ipsum
          tableFormat: ICEBERG
    
    Example coming soon!
    

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

    Create CatalogIntegrationObjectStorage Resource

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

    Constructor syntax

    new CatalogIntegrationObjectStorage(name: string, args: CatalogIntegrationObjectStorageArgs, opts?: CustomResourceOptions);
    @overload
    def CatalogIntegrationObjectStorage(resource_name: str,
                                        args: CatalogIntegrationObjectStorageArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def CatalogIntegrationObjectStorage(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        enabled: Optional[bool] = None,
                                        table_format: Optional[str] = None,
                                        comment: Optional[str] = None,
                                        name: Optional[str] = None,
                                        refresh_interval_seconds: Optional[int] = None)
    func NewCatalogIntegrationObjectStorage(ctx *Context, name string, args CatalogIntegrationObjectStorageArgs, opts ...ResourceOption) (*CatalogIntegrationObjectStorage, error)
    public CatalogIntegrationObjectStorage(string name, CatalogIntegrationObjectStorageArgs args, CustomResourceOptions? opts = null)
    public CatalogIntegrationObjectStorage(String name, CatalogIntegrationObjectStorageArgs args)
    public CatalogIntegrationObjectStorage(String name, CatalogIntegrationObjectStorageArgs args, CustomResourceOptions options)
    
    type: snowflake:CatalogIntegrationObjectStorage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_catalogintegrationobjectstorage" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CatalogIntegrationObjectStorageArgs
    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 CatalogIntegrationObjectStorageArgs
    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 CatalogIntegrationObjectStorageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CatalogIntegrationObjectStorageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CatalogIntegrationObjectStorageArgs
    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 catalogIntegrationObjectStorageResource = new Snowflake.CatalogIntegrationObjectStorage("catalogIntegrationObjectStorageResource", new()
    {
        Enabled = false,
        TableFormat = "string",
        Comment = "string",
        Name = "string",
        RefreshIntervalSeconds = 0,
    });
    
    example, err := snowflake.NewCatalogIntegrationObjectStorage(ctx, "catalogIntegrationObjectStorageResource", &snowflake.CatalogIntegrationObjectStorageArgs{
    	Enabled:                pulumi.Bool(false),
    	TableFormat:            pulumi.String("string"),
    	Comment:                pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	RefreshIntervalSeconds: pulumi.Int(0),
    })
    
    resource "snowflake_catalogintegrationobjectstorage" "catalogIntegrationObjectStorageResource" {
      enabled                  = false
      table_format             = "string"
      comment                  = "string"
      name                     = "string"
      refresh_interval_seconds = 0
    }
    
    var catalogIntegrationObjectStorageResource = new CatalogIntegrationObjectStorage("catalogIntegrationObjectStorageResource", CatalogIntegrationObjectStorageArgs.builder()
        .enabled(false)
        .tableFormat("string")
        .comment("string")
        .name("string")
        .refreshIntervalSeconds(0)
        .build());
    
    catalog_integration_object_storage_resource = snowflake.CatalogIntegrationObjectStorage("catalogIntegrationObjectStorageResource",
        enabled=False,
        table_format="string",
        comment="string",
        name="string",
        refresh_interval_seconds=0)
    
    const catalogIntegrationObjectStorageResource = new snowflake.CatalogIntegrationObjectStorage("catalogIntegrationObjectStorageResource", {
        enabled: false,
        tableFormat: "string",
        comment: "string",
        name: "string",
        refreshIntervalSeconds: 0,
    });
    
    type: snowflake:CatalogIntegrationObjectStorage
    properties:
        comment: string
        enabled: false
        name: string
        refreshIntervalSeconds: 0
        tableFormat: string
    

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

    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    TableFormat string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    TableFormat string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    table_format string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    tableFormat String
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Integer
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    tableFormat string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    table_format str
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    comment str
    (Default: ``) Specifies a comment for the catalog integration.
    name str
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    tableFormat String
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.

    Outputs

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

    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    DescribeOutputs List<CatalogIntegrationObjectStorageDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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<CatalogIntegrationObjectStorageShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    DescribeOutputs []CatalogIntegrationObjectStorageDescribeOutput
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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 []CatalogIntegrationObjectStorageShowOutput
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalog_source string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs list(object)
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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 CATALOG INTEGRATIONS for the given catalog integration.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<CatalogIntegrationObjectStorageDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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<CatalogIntegrationObjectStorageShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs CatalogIntegrationObjectStorageDescribeOutput[]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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 CatalogIntegrationObjectStorageShowOutput[]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalog_source str
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs Sequence[CatalogIntegrationObjectStorageDescribeOutput]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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[CatalogIntegrationObjectStorageShowOutput]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    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 CATALOG INTEGRATIONS for the given catalog integration.

    Look up Existing CatalogIntegrationObjectStorage Resource

    Get an existing CatalogIntegrationObjectStorage 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?: CatalogIntegrationObjectStorageState, opts?: CustomResourceOptions): CatalogIntegrationObjectStorage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            catalog_source: Optional[str] = None,
            comment: Optional[str] = None,
            describe_outputs: Optional[Sequence[CatalogIntegrationObjectStorageDescribeOutputArgs]] = None,
            enabled: Optional[bool] = None,
            fully_qualified_name: Optional[str] = None,
            name: Optional[str] = None,
            refresh_interval_seconds: Optional[int] = None,
            show_outputs: Optional[Sequence[CatalogIntegrationObjectStorageShowOutputArgs]] = None,
            table_format: Optional[str] = None) -> CatalogIntegrationObjectStorage
    func GetCatalogIntegrationObjectStorage(ctx *Context, name string, id IDInput, state *CatalogIntegrationObjectStorageState, opts ...ResourceOption) (*CatalogIntegrationObjectStorage, error)
    public static CatalogIntegrationObjectStorage Get(string name, Input<string> id, CatalogIntegrationObjectStorageState? state, CustomResourceOptions? opts = null)
    public static CatalogIntegrationObjectStorage get(String name, Output<String> id, CatalogIntegrationObjectStorageState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:CatalogIntegrationObjectStorage    get:      id: ${id}
    import {
      to = snowflake_catalogintegrationobjectstorage.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:
    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    DescribeOutputs List<CatalogIntegrationObjectStorageDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    ShowOutputs List<CatalogIntegrationObjectStorageShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    TableFormat string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    DescribeOutputs []CatalogIntegrationObjectStorageDescribeOutputArgs
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    ShowOutputs []CatalogIntegrationObjectStorageShowOutputArgs
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    TableFormat string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    catalog_source string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    describe_outputs list(object)
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    show_outputs list(object)
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    table_format string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    describeOutputs List<CatalogIntegrationObjectStorageDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Integer
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    showOutputs List<CatalogIntegrationObjectStorageShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    tableFormat String
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    catalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    describeOutputs CatalogIntegrationObjectStorageDescribeOutput[]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    showOutputs CatalogIntegrationObjectStorageShowOutput[]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    tableFormat string
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    catalog_source str
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment str
    (Default: ``) Specifies a comment for the catalog integration.
    describe_outputs Sequence[CatalogIntegrationObjectStorageDescribeOutputArgs]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    name str
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    show_outputs Sequence[CatalogIntegrationObjectStorageShowOutputArgs]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    table_format str
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    showOutputs List<Property Map>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    tableFormat String
    Specifies the table format. Valid values are (case-insensitive): ICEBERG | DELTA.

    Supporting Types

    CatalogIntegrationObjectStorageDescribeOutput, CatalogIntegrationObjectStorageDescribeOutputArgs

    catalogSource String
    comment String
    enabled Boolean
    id String
    refreshIntervalSeconds Integer
    tableFormat String
    catalogSource string
    comment string
    enabled boolean
    id string
    refreshIntervalSeconds number
    tableFormat string
    catalogSource String
    comment String
    enabled Boolean
    id String
    refreshIntervalSeconds Number
    tableFormat String

    CatalogIntegrationObjectStorageShowOutput, CatalogIntegrationObjectStorageShowOutputArgs

    Category string
    Comment string
    CreatedOn string
    Enabled bool
    Name string
    Type string
    Category string
    Comment string
    CreatedOn string
    Enabled bool
    Name string
    Type string
    category string
    comment string
    created_on string
    enabled bool
    name string
    type string
    category String
    comment String
    createdOn String
    enabled Boolean
    name String
    type String
    category string
    comment string
    createdOn string
    enabled boolean
    name string
    type string
    category String
    comment String
    createdOn String
    enabled Boolean
    name String
    type String

    Import

    $ pulumi import snowflake:index/catalogIntegrationObjectStorage:CatalogIntegrationObjectStorage example '"<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.15.0
    published on Saturday, May 9, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial