published on Saturday, May 9, 2026 by Pulumi
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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 intSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 intSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ numberseconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 IntegerSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 numberSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ intseconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 NumberSeconds - 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:
- 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<CatalogIntegration Object Storage Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Fully
Qualified stringName - 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<CatalogIntegration Object Storage Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 []CatalogIntegration Object Storage Describe Output - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Fully
Qualified stringName - 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 []CatalogIntegration Object Storage Show Output - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 INTEGRATIONfor the given catalog integration. - fully_
qualified_ stringname - 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 INTEGRATIONSfor 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<CatalogIntegration Object Storage Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully
Qualified StringName - 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<CatalogIntegration Object Storage Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 CatalogIntegration Object Storage Describe Output[] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully
Qualified stringName - 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 CatalogIntegration Object Storage Show Output[] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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[CatalogIntegration Object Storage Describe Output] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully_
qualified_ strname - 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[CatalogIntegration Object Storage Show Output] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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<Property Map> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully
Qualified StringName - 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<Property Map> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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) -> CatalogIntegrationObjectStoragefunc 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.
- 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<CatalogIntegration Object Storage Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringName - 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 intSeconds - 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<CatalogIntegration Object Storage Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration. - Table
Format 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 []CatalogIntegration Object Storage Describe Output Args - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringName - 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 intSeconds - 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 []CatalogIntegration Object Storage Show Output Args - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration. - Table
Format 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 INTEGRATIONfor the given catalog integration. - enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ stringname - 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_ numberseconds - 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 INTEGRATIONSfor the given catalog integration. - table_
format 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<CatalogIntegration Object Storage Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled Boolean
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 StringName - 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 IntegerSeconds - 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<CatalogIntegration Object Storage Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration. - table
Format 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 CatalogIntegration Object Storage Describe Output[] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled boolean
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringName - 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 numberSeconds - 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 CatalogIntegration Object Storage Show Output[] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration. - table
Format 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[CatalogIntegration Object Storage Describe Output Args] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ strname - 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_ intseconds - 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[CatalogIntegration Object Storage Show Output Args] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration. - table_
format str - 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<Property Map> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled Boolean
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 StringName - 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 NumberSeconds - 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<Property Map> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration. - table
Format String - Specifies the table format. Valid values are (case-insensitive):
ICEBERG|DELTA.
Supporting Types
CatalogIntegrationObjectStorageDescribeOutput, CatalogIntegrationObjectStorageDescribeOutputArgs
- Catalog
Source string - Comment string
- Enabled bool
- Id string
- Refresh
Interval intSeconds - Table
Format string
- Catalog
Source string - Comment string
- Enabled bool
- Id string
- Refresh
Interval intSeconds - Table
Format string
- catalog_
source string - comment string
- enabled bool
- id string
- refresh_
interval_ numberseconds - table_
format string
- catalog
Source String - comment String
- enabled Boolean
- id String
- refresh
Interval IntegerSeconds - table
Format String
- catalog
Source string - comment string
- enabled boolean
- id string
- refresh
Interval numberSeconds - table
Format string
- catalog_
source str - comment str
- enabled bool
- id str
- refresh_
interval_ intseconds - table_
format str
- catalog
Source String - comment String
- enabled Boolean
- id String
- refresh
Interval NumberSeconds - table
Format String
CatalogIntegrationObjectStorageShowOutput, CatalogIntegrationObjectStorageShowOutputArgs
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
snowflakeTerraform Provider.
published on Saturday, May 9, 2026 by Pulumi