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™ tables that integrate with Snowflake Open Catalog. 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.CatalogIntegrationOpenCatalog("basic", {
name: "example_open_catalog",
enabled: false,
restConfig: {
catalogUri: "https://your-org.snowflakecomputing.com/polaris/api/catalog",
catalogName: "my_catalog",
},
restAuthentication: {
oauthClientId: "your_oauth_client_id",
oauthClientSecret: "your_oauth_client_secret",
oauthAllowedScopes: ["PRINCIPAL_ROLE:ALL"],
},
});
// complete resource
const complete = new snowflake.CatalogIntegrationOpenCatalog("complete", {
name: "example_open_catalog_complete",
enabled: true,
refreshIntervalSeconds: 60,
comment: "Lorem ipsum",
catalogNamespace: "my_namespace",
restConfig: {
catalogUri: "https://your-org.snowflakecomputing.com/polaris/api/catalog",
catalogName: "my_catalog",
catalogApiType: "PUBLIC",
accessDelegationMode: "EXTERNAL_VOLUME_CREDENTIALS",
},
restAuthentication: {
oauthTokenUri: "https://your-org.snowflakecomputing.com/polaris/api/catalog/v1/oauth/tokens",
oauthClientId: "your_oauth_client_id",
oauthClientSecret: "your_oauth_client_secret",
oauthAllowedScopes: ["PRINCIPAL_ROLE:ALL"],
},
});
import pulumi
import pulumi_snowflake as snowflake
# basic resource
basic = snowflake.CatalogIntegrationOpenCatalog("basic",
name="example_open_catalog",
enabled=False,
rest_config={
"catalog_uri": "https://your-org.snowflakecomputing.com/polaris/api/catalog",
"catalog_name": "my_catalog",
},
rest_authentication={
"oauth_client_id": "your_oauth_client_id",
"oauth_client_secret": "your_oauth_client_secret",
"oauth_allowed_scopes": ["PRINCIPAL_ROLE:ALL"],
})
# complete resource
complete = snowflake.CatalogIntegrationOpenCatalog("complete",
name="example_open_catalog_complete",
enabled=True,
refresh_interval_seconds=60,
comment="Lorem ipsum",
catalog_namespace="my_namespace",
rest_config={
"catalog_uri": "https://your-org.snowflakecomputing.com/polaris/api/catalog",
"catalog_name": "my_catalog",
"catalog_api_type": "PUBLIC",
"access_delegation_mode": "EXTERNAL_VOLUME_CREDENTIALS",
},
rest_authentication={
"oauth_token_uri": "https://your-org.snowflakecomputing.com/polaris/api/catalog/v1/oauth/tokens",
"oauth_client_id": "your_oauth_client_id",
"oauth_client_secret": "your_oauth_client_secret",
"oauth_allowed_scopes": ["PRINCIPAL_ROLE:ALL"],
})
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.NewCatalogIntegrationOpenCatalog(ctx, "basic", &snowflake.CatalogIntegrationOpenCatalogArgs{
Name: pulumi.String("example_open_catalog"),
Enabled: pulumi.Bool(false),
RestConfig: &snowflake.CatalogIntegrationOpenCatalogRestConfigArgs{
CatalogUri: pulumi.String("https://your-org.snowflakecomputing.com/polaris/api/catalog"),
CatalogName: pulumi.String("my_catalog"),
},
RestAuthentication: &snowflake.CatalogIntegrationOpenCatalogRestAuthenticationArgs{
OauthClientId: pulumi.String("your_oauth_client_id"),
OauthClientSecret: pulumi.String("your_oauth_client_secret"),
OauthAllowedScopes: pulumi.StringArray{
pulumi.String("PRINCIPAL_ROLE:ALL"),
},
},
})
if err != nil {
return err
}
// complete resource
_, err = snowflake.NewCatalogIntegrationOpenCatalog(ctx, "complete", &snowflake.CatalogIntegrationOpenCatalogArgs{
Name: pulumi.String("example_open_catalog_complete"),
Enabled: pulumi.Bool(true),
RefreshIntervalSeconds: pulumi.Int(60),
Comment: pulumi.String("Lorem ipsum"),
CatalogNamespace: pulumi.String("my_namespace"),
RestConfig: &snowflake.CatalogIntegrationOpenCatalogRestConfigArgs{
CatalogUri: pulumi.String("https://your-org.snowflakecomputing.com/polaris/api/catalog"),
CatalogName: pulumi.String("my_catalog"),
CatalogApiType: pulumi.String("PUBLIC"),
AccessDelegationMode: pulumi.String("EXTERNAL_VOLUME_CREDENTIALS"),
},
RestAuthentication: &snowflake.CatalogIntegrationOpenCatalogRestAuthenticationArgs{
OauthTokenUri: pulumi.String("https://your-org.snowflakecomputing.com/polaris/api/catalog/v1/oauth/tokens"),
OauthClientId: pulumi.String("your_oauth_client_id"),
OauthClientSecret: pulumi.String("your_oauth_client_secret"),
OauthAllowedScopes: pulumi.StringArray{
pulumi.String("PRINCIPAL_ROLE:ALL"),
},
},
})
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.CatalogIntegrationOpenCatalog("basic", new()
{
Name = "example_open_catalog",
Enabled = false,
RestConfig = new Snowflake.Inputs.CatalogIntegrationOpenCatalogRestConfigArgs
{
CatalogUri = "https://your-org.snowflakecomputing.com/polaris/api/catalog",
CatalogName = "my_catalog",
},
RestAuthentication = new Snowflake.Inputs.CatalogIntegrationOpenCatalogRestAuthenticationArgs
{
OauthClientId = "your_oauth_client_id",
OauthClientSecret = "your_oauth_client_secret",
OauthAllowedScopes = new[]
{
"PRINCIPAL_ROLE:ALL",
},
},
});
// complete resource
var complete = new Snowflake.CatalogIntegrationOpenCatalog("complete", new()
{
Name = "example_open_catalog_complete",
Enabled = true,
RefreshIntervalSeconds = 60,
Comment = "Lorem ipsum",
CatalogNamespace = "my_namespace",
RestConfig = new Snowflake.Inputs.CatalogIntegrationOpenCatalogRestConfigArgs
{
CatalogUri = "https://your-org.snowflakecomputing.com/polaris/api/catalog",
CatalogName = "my_catalog",
CatalogApiType = "PUBLIC",
AccessDelegationMode = "EXTERNAL_VOLUME_CREDENTIALS",
},
RestAuthentication = new Snowflake.Inputs.CatalogIntegrationOpenCatalogRestAuthenticationArgs
{
OauthTokenUri = "https://your-org.snowflakecomputing.com/polaris/api/catalog/v1/oauth/tokens",
OauthClientId = "your_oauth_client_id",
OauthClientSecret = "your_oauth_client_secret",
OauthAllowedScopes = new[]
{
"PRINCIPAL_ROLE:ALL",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.CatalogIntegrationOpenCatalog;
import com.pulumi.snowflake.CatalogIntegrationOpenCatalogArgs;
import com.pulumi.snowflake.inputs.CatalogIntegrationOpenCatalogRestConfigArgs;
import com.pulumi.snowflake.inputs.CatalogIntegrationOpenCatalogRestAuthenticationArgs;
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 CatalogIntegrationOpenCatalog("basic", CatalogIntegrationOpenCatalogArgs.builder()
.name("example_open_catalog")
.enabled(false)
.restConfig(CatalogIntegrationOpenCatalogRestConfigArgs.builder()
.catalogUri("https://your-org.snowflakecomputing.com/polaris/api/catalog")
.catalogName("my_catalog")
.build())
.restAuthentication(CatalogIntegrationOpenCatalogRestAuthenticationArgs.builder()
.oauthClientId("your_oauth_client_id")
.oauthClientSecret("your_oauth_client_secret")
.oauthAllowedScopes("PRINCIPAL_ROLE:ALL")
.build())
.build());
// complete resource
var complete = new CatalogIntegrationOpenCatalog("complete", CatalogIntegrationOpenCatalogArgs.builder()
.name("example_open_catalog_complete")
.enabled(true)
.refreshIntervalSeconds(60)
.comment("Lorem ipsum")
.catalogNamespace("my_namespace")
.restConfig(CatalogIntegrationOpenCatalogRestConfigArgs.builder()
.catalogUri("https://your-org.snowflakecomputing.com/polaris/api/catalog")
.catalogName("my_catalog")
.catalogApiType("PUBLIC")
.accessDelegationMode("EXTERNAL_VOLUME_CREDENTIALS")
.build())
.restAuthentication(CatalogIntegrationOpenCatalogRestAuthenticationArgs.builder()
.oauthTokenUri("https://your-org.snowflakecomputing.com/polaris/api/catalog/v1/oauth/tokens")
.oauthClientId("your_oauth_client_id")
.oauthClientSecret("your_oauth_client_secret")
.oauthAllowedScopes("PRINCIPAL_ROLE:ALL")
.build())
.build());
}
}
resources:
# basic resource
basic:
type: snowflake:CatalogIntegrationOpenCatalog
properties:
name: example_open_catalog
enabled: false
restConfig:
catalogUri: https://your-org.snowflakecomputing.com/polaris/api/catalog
catalogName: my_catalog
restAuthentication:
oauthClientId: your_oauth_client_id
oauthClientSecret: your_oauth_client_secret
oauthAllowedScopes:
- PRINCIPAL_ROLE:ALL
# complete resource
complete:
type: snowflake:CatalogIntegrationOpenCatalog
properties:
name: example_open_catalog_complete
enabled: true
refreshIntervalSeconds: 60
comment: Lorem ipsum
catalogNamespace: my_namespace
restConfig:
catalogUri: https://your-org.snowflakecomputing.com/polaris/api/catalog
catalogName: my_catalog
catalogApiType: PUBLIC
accessDelegationMode: EXTERNAL_VOLUME_CREDENTIALS
restAuthentication:
oauthTokenUri: https://your-org.snowflakecomputing.com/polaris/api/catalog/v1/oauth/tokens
oauthClientId: your_oauth_client_id
oauthClientSecret: your_oauth_client_secret
oauthAllowedScopes:
- PRINCIPAL_ROLE:ALL
Example coming soon!
Note If a field has a default value, it is shown next to the type in the schema.
Create CatalogIntegrationOpenCatalog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CatalogIntegrationOpenCatalog(name: string, args: CatalogIntegrationOpenCatalogArgs, opts?: CustomResourceOptions);@overload
def CatalogIntegrationOpenCatalog(resource_name: str,
args: CatalogIntegrationOpenCatalogArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CatalogIntegrationOpenCatalog(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
rest_authentication: Optional[CatalogIntegrationOpenCatalogRestAuthenticationArgs] = None,
rest_config: Optional[CatalogIntegrationOpenCatalogRestConfigArgs] = None,
catalog_namespace: Optional[str] = None,
comment: Optional[str] = None,
name: Optional[str] = None,
refresh_interval_seconds: Optional[int] = None)func NewCatalogIntegrationOpenCatalog(ctx *Context, name string, args CatalogIntegrationOpenCatalogArgs, opts ...ResourceOption) (*CatalogIntegrationOpenCatalog, error)public CatalogIntegrationOpenCatalog(string name, CatalogIntegrationOpenCatalogArgs args, CustomResourceOptions? opts = null)
public CatalogIntegrationOpenCatalog(String name, CatalogIntegrationOpenCatalogArgs args)
public CatalogIntegrationOpenCatalog(String name, CatalogIntegrationOpenCatalogArgs args, CustomResourceOptions options)
type: snowflake:CatalogIntegrationOpenCatalog
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "snowflake_catalogintegrationopencatalog" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args CatalogIntegrationOpenCatalogArgs
- 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 CatalogIntegrationOpenCatalogArgs
- 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 CatalogIntegrationOpenCatalogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CatalogIntegrationOpenCatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CatalogIntegrationOpenCatalogArgs
- 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 catalogIntegrationOpenCatalogResource = new Snowflake.CatalogIntegrationOpenCatalog("catalogIntegrationOpenCatalogResource", new()
{
Enabled = false,
RestAuthentication = new Snowflake.Inputs.CatalogIntegrationOpenCatalogRestAuthenticationArgs
{
OauthAllowedScopes = new[]
{
"string",
},
OauthClientId = "string",
OauthClientSecret = "string",
OauthTokenUri = "string",
},
RestConfig = new Snowflake.Inputs.CatalogIntegrationOpenCatalogRestConfigArgs
{
CatalogName = "string",
CatalogUri = "string",
AccessDelegationMode = "string",
CatalogApiType = "string",
},
CatalogNamespace = "string",
Comment = "string",
Name = "string",
RefreshIntervalSeconds = 0,
});
example, err := snowflake.NewCatalogIntegrationOpenCatalog(ctx, "catalogIntegrationOpenCatalogResource", &snowflake.CatalogIntegrationOpenCatalogArgs{
Enabled: pulumi.Bool(false),
RestAuthentication: &snowflake.CatalogIntegrationOpenCatalogRestAuthenticationArgs{
OauthAllowedScopes: pulumi.StringArray{
pulumi.String("string"),
},
OauthClientId: pulumi.String("string"),
OauthClientSecret: pulumi.String("string"),
OauthTokenUri: pulumi.String("string"),
},
RestConfig: &snowflake.CatalogIntegrationOpenCatalogRestConfigArgs{
CatalogName: pulumi.String("string"),
CatalogUri: pulumi.String("string"),
AccessDelegationMode: pulumi.String("string"),
CatalogApiType: pulumi.String("string"),
},
CatalogNamespace: pulumi.String("string"),
Comment: pulumi.String("string"),
Name: pulumi.String("string"),
RefreshIntervalSeconds: pulumi.Int(0),
})
resource "snowflake_catalogintegrationopencatalog" "catalogIntegrationOpenCatalogResource" {
enabled = false
rest_authentication = {
oauth_allowed_scopes = ["string"]
oauth_client_id = "string"
oauth_client_secret = "string"
oauth_token_uri = "string"
}
rest_config = {
catalog_name = "string"
catalog_uri = "string"
access_delegation_mode = "string"
catalog_api_type = "string"
}
catalog_namespace = "string"
comment = "string"
name = "string"
refresh_interval_seconds = 0
}
var catalogIntegrationOpenCatalogResource = new CatalogIntegrationOpenCatalog("catalogIntegrationOpenCatalogResource", CatalogIntegrationOpenCatalogArgs.builder()
.enabled(false)
.restAuthentication(CatalogIntegrationOpenCatalogRestAuthenticationArgs.builder()
.oauthAllowedScopes("string")
.oauthClientId("string")
.oauthClientSecret("string")
.oauthTokenUri("string")
.build())
.restConfig(CatalogIntegrationOpenCatalogRestConfigArgs.builder()
.catalogName("string")
.catalogUri("string")
.accessDelegationMode("string")
.catalogApiType("string")
.build())
.catalogNamespace("string")
.comment("string")
.name("string")
.refreshIntervalSeconds(0)
.build());
catalog_integration_open_catalog_resource = snowflake.CatalogIntegrationOpenCatalog("catalogIntegrationOpenCatalogResource",
enabled=False,
rest_authentication={
"oauth_allowed_scopes": ["string"],
"oauth_client_id": "string",
"oauth_client_secret": "string",
"oauth_token_uri": "string",
},
rest_config={
"catalog_name": "string",
"catalog_uri": "string",
"access_delegation_mode": "string",
"catalog_api_type": "string",
},
catalog_namespace="string",
comment="string",
name="string",
refresh_interval_seconds=0)
const catalogIntegrationOpenCatalogResource = new snowflake.CatalogIntegrationOpenCatalog("catalogIntegrationOpenCatalogResource", {
enabled: false,
restAuthentication: {
oauthAllowedScopes: ["string"],
oauthClientId: "string",
oauthClientSecret: "string",
oauthTokenUri: "string",
},
restConfig: {
catalogName: "string",
catalogUri: "string",
accessDelegationMode: "string",
catalogApiType: "string",
},
catalogNamespace: "string",
comment: "string",
name: "string",
refreshIntervalSeconds: 0,
});
type: snowflake:CatalogIntegrationOpenCatalog
properties:
catalogNamespace: string
comment: string
enabled: false
name: string
refreshIntervalSeconds: 0
restAuthentication:
oauthAllowedScopes:
- string
oauthClientId: string
oauthClientSecret: string
oauthTokenUri: string
restConfig:
accessDelegationMode: string
catalogApiType: string
catalogName: string
catalogUri: string
CatalogIntegrationOpenCatalog 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 CatalogIntegrationOpenCatalog 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. - Rest
Authentication CatalogIntegration Open Catalog Rest Authentication - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- Rest
Config CatalogIntegration Open Catalog Rest Config - Specifies information about the Open Catalog account and catalog name.
- Catalog
Namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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. - Rest
Authentication CatalogIntegration Open Catalog Rest Authentication Args - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- Rest
Config CatalogIntegration Open Catalog Rest Config Args - Specifies information about the Open Catalog account and catalog name.
- Catalog
Namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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. - rest_
authentication object - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest_
config object - Specifies information about the Open Catalog account and catalog name.
- catalog_
namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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. - rest
Authentication CatalogIntegration Open Catalog Rest Authentication - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest
Config CatalogIntegration Open Catalog Rest Config - Specifies information about the Open Catalog account and catalog name.
- catalog
Namespace String - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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. - rest
Authentication CatalogIntegration Open Catalog Rest Authentication - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest
Config CatalogIntegration Open Catalog Rest Config - Specifies information about the Open Catalog account and catalog name.
- catalog
Namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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. - rest_
authentication CatalogIntegration Open Catalog Rest Authentication Args - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest_
config CatalogIntegration Open Catalog Rest Config Args - Specifies information about the Open Catalog account and catalog name.
- catalog_
namespace str - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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. - rest
Authentication Property Map - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest
Config Property Map - Specifies information about the Open Catalog account and catalog name.
- catalog
Namespace String - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the catalog integration.
- 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 CatalogIntegrationOpenCatalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 Open Catalog 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 CatalogIntegrationOpenCatalog Resource
Get an existing CatalogIntegrationOpenCatalog 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?: CatalogIntegrationOpenCatalogState, opts?: CustomResourceOptions): CatalogIntegrationOpenCatalog@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog_namespace: Optional[str] = None,
catalog_source: Optional[str] = None,
comment: Optional[str] = None,
describe_outputs: Optional[Sequence[CatalogIntegrationOpenCatalogDescribeOutputArgs]] = None,
enabled: Optional[bool] = None,
fully_qualified_name: Optional[str] = None,
name: Optional[str] = None,
refresh_interval_seconds: Optional[int] = None,
rest_authentication: Optional[CatalogIntegrationOpenCatalogRestAuthenticationArgs] = None,
rest_config: Optional[CatalogIntegrationOpenCatalogRestConfigArgs] = None,
show_outputs: Optional[Sequence[CatalogIntegrationOpenCatalogShowOutputArgs]] = None) -> CatalogIntegrationOpenCatalogfunc GetCatalogIntegrationOpenCatalog(ctx *Context, name string, id IDInput, state *CatalogIntegrationOpenCatalogState, opts ...ResourceOption) (*CatalogIntegrationOpenCatalog, error)public static CatalogIntegrationOpenCatalog Get(string name, Input<string> id, CatalogIntegrationOpenCatalogState? state, CustomResourceOptions? opts = null)public static CatalogIntegrationOpenCatalog get(String name, Output<String> id, CatalogIntegrationOpenCatalogState state, CustomResourceOptions options)resources: _: type: snowflake:CatalogIntegrationOpenCatalog get: id: ${id}import {
to = snowflake_catalogintegrationopencatalog.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
Namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- Comment string
- (Default: ``) Specifies a comment for the catalog integration.
- Describe
Outputs List<CatalogIntegration Open Catalog 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.
- Rest
Authentication CatalogIntegration Open Catalog Rest Authentication - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- Rest
Config CatalogIntegration Open Catalog Rest Config - Specifies information about the Open Catalog account and catalog name.
- Show
Outputs List<CatalogIntegration Open Catalog Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
- Catalog
Namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- Comment string
- (Default: ``) Specifies a comment for the catalog integration.
- Describe
Outputs []CatalogIntegration Open Catalog 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.
- Rest
Authentication CatalogIntegration Open Catalog Rest Authentication Args - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- Rest
Config CatalogIntegration Open Catalog Rest Config Args - Specifies information about the Open Catalog account and catalog name.
- Show
Outputs []CatalogIntegration Open Catalog Show Output Args - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
- catalog_
namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- 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.
- rest_
authentication object - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest_
config object - Specifies information about the Open Catalog account and catalog name.
- show_
outputs list(object) - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
- catalog
Namespace String - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- comment String
- (Default: ``) Specifies a comment for the catalog integration.
- describe
Outputs List<CatalogIntegration Open Catalog 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.
- rest
Authentication CatalogIntegration Open Catalog Rest Authentication - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest
Config CatalogIntegration Open Catalog Rest Config - Specifies information about the Open Catalog account and catalog name.
- show
Outputs List<CatalogIntegration Open Catalog Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
- catalog
Namespace string - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- comment string
- (Default: ``) Specifies a comment for the catalog integration.
- describe
Outputs CatalogIntegration Open Catalog 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.
- rest
Authentication CatalogIntegration Open Catalog Rest Authentication - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest
Config CatalogIntegration Open Catalog Rest Config - Specifies information about the Open Catalog account and catalog name.
- show
Outputs CatalogIntegration Open Catalog Show Output[] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
- catalog_
namespace str - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- comment str
- (Default: ``) Specifies a comment for the catalog integration.
- describe_
outputs Sequence[CatalogIntegration Open Catalog 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.
- rest_
authentication CatalogIntegration Open Catalog Rest Authentication Args - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest_
config CatalogIntegration Open Catalog Rest Config Args - Specifies information about the Open Catalog account and catalog name.
- show_
outputs Sequence[CatalogIntegration Open Catalog Show Output Args] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
- catalog
Namespace String - Specifies the default Open Catalog namespace for all Iceberg tables that you associate with the 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.
- 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.
- rest
Authentication Property Map - Specifies authentication details that Snowflake uses to connect to Open Catalog.
- rest
Config Property Map - Specifies information about the Open Catalog account and catalog name.
- show
Outputs List<Property Map> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
Supporting Types
CatalogIntegrationOpenCatalogDescribeOutput, CatalogIntegrationOpenCatalogDescribeOutputArgs
- catalog_
namespace string - catalog_
source string - comment string
- enabled bool
- id string
- refresh_
interval_ numberseconds - rest_
authentications list(object) - rest_
configs list(object) - table_
format string
- catalog
Namespace String - catalog
Source String - comment String
- enabled Boolean
- id String
- refresh
Interval NumberSeconds - rest
Authentications List<Property Map> - rest
Configs List<Property Map> - table
Format String
CatalogIntegrationOpenCatalogDescribeOutputRestAuthentication, CatalogIntegrationOpenCatalogDescribeOutputRestAuthenticationArgs
- Oauth
Allowed List<string>Scopes - Oauth
Client stringId - Oauth
Token stringUri
- Oauth
Allowed []stringScopes - Oauth
Client stringId - Oauth
Token stringUri
- oauth_
allowed_ list(string)scopes - oauth_
client_ stringid - oauth_
token_ stringuri
- oauth
Allowed List<String>Scopes - oauth
Client StringId - oauth
Token StringUri
- oauth
Allowed string[]Scopes - oauth
Client stringId - oauth
Token stringUri
- oauth_
allowed_ Sequence[str]scopes - oauth_
client_ strid - oauth_
token_ struri
- oauth
Allowed List<String>Scopes - oauth
Client StringId - oauth
Token StringUri
CatalogIntegrationOpenCatalogDescribeOutputRestConfig, CatalogIntegrationOpenCatalogDescribeOutputRestConfigArgs
- Access
Delegation stringMode - Catalog
Api stringType - Catalog
Name string - Catalog
Uri string
- Access
Delegation stringMode - Catalog
Api stringType - Catalog
Name string - Catalog
Uri string
- access_
delegation_ stringmode - catalog_
api_ stringtype - catalog_
name string - catalog_
uri string
- access
Delegation StringMode - catalog
Api StringType - catalog
Name String - catalog
Uri String
- access
Delegation stringMode - catalog
Api stringType - catalog
Name string - catalog
Uri string
- access_
delegation_ strmode - catalog_
api_ strtype - catalog_
name str - catalog_
uri str
- access
Delegation StringMode - catalog
Api StringType - catalog
Name String - catalog
Uri String
CatalogIntegrationOpenCatalogRestAuthentication, CatalogIntegrationOpenCatalogRestAuthenticationArgs
- Oauth
Allowed List<string>Scopes - Specifies one or more scopes for the OAuth token.
- Oauth
Client stringId - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- Oauth
Client stringSecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- Oauth
Token stringUri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
- Oauth
Allowed []stringScopes - Specifies one or more scopes for the OAuth token.
- Oauth
Client stringId - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- Oauth
Client stringSecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- Oauth
Token stringUri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
- oauth_
allowed_ list(string)scopes - Specifies one or more scopes for the OAuth token.
- oauth_
client_ stringid - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- oauth_
client_ stringsecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- oauth_
token_ stringuri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
- oauth
Allowed List<String>Scopes - Specifies one or more scopes for the OAuth token.
- oauth
Client StringId - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- oauth
Client StringSecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- oauth
Token StringUri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
- oauth
Allowed string[]Scopes - Specifies one or more scopes for the OAuth token.
- oauth
Client stringId - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- oauth
Client stringSecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- oauth
Token stringUri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
- oauth_
allowed_ Sequence[str]scopes - Specifies one or more scopes for the OAuth token.
- oauth_
client_ strid - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- oauth_
client_ strsecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- oauth_
token_ struri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
- oauth
Allowed List<String>Scopes - Specifies one or more scopes for the OAuth token.
- oauth
Client StringId - Specifies the client ID of the OAuth2 credential associated with your Open Catalog service connection.
- oauth
Client StringSecret - Specifies the secret of the OAuth2 credential associated with your Open Catalog service connection. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- oauth
Token StringUri - Specifies URL for the third-party identity provider. If not specified, Snowflake assumes the remote catalog provider is the identity provider.
CatalogIntegrationOpenCatalogRestConfig, CatalogIntegrationOpenCatalogRestConfigArgs
- Catalog
Name string - Specifies the name of the catalog to use in Open Catalog.
- Catalog
Uri string - Specifies Open Catalog account URL.
- Access
Delegation stringMode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - Catalog
Api stringType - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
- Catalog
Name string - Specifies the name of the catalog to use in Open Catalog.
- Catalog
Uri string - Specifies Open Catalog account URL.
- Access
Delegation stringMode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - Catalog
Api stringType - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
- catalog_
name string - Specifies the name of the catalog to use in Open Catalog.
- catalog_
uri string - Specifies Open Catalog account URL.
- access_
delegation_ stringmode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - catalog_
api_ stringtype - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
- catalog
Name String - Specifies the name of the catalog to use in Open Catalog.
- catalog
Uri String - Specifies Open Catalog account URL.
- access
Delegation StringMode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - catalog
Api StringType - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
- catalog
Name string - Specifies the name of the catalog to use in Open Catalog.
- catalog
Uri string - Specifies Open Catalog account URL.
- access
Delegation stringMode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - catalog
Api stringType - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
- catalog_
name str - Specifies the name of the catalog to use in Open Catalog.
- catalog_
uri str - Specifies Open Catalog account URL.
- access_
delegation_ strmode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - catalog_
api_ strtype - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
- catalog
Name String - Specifies the name of the catalog to use in Open Catalog.
- catalog
Uri String - Specifies Open Catalog account URL.
- access
Delegation StringMode - Specifies the access delegation mode for accessing Iceberg table files in your external cloud storage. Valid values are (case-insensitive):
VENDED_CREDENTIALS|EXTERNAL_VOLUME_CREDENTIALS. - catalog
Api StringType - Specifies how Snowflake connects to Open Catalog. Valid values are (case-insensitive):
PUBLIC|PRIVATE|AWS_API_GATEWAY|AWS_PRIVATE_API_GATEWAY|AWS_GLUE|AWS_PRIVATE_GLUE.
CatalogIntegrationOpenCatalogShowOutput, CatalogIntegrationOpenCatalogShowOutputArgs
Import
$ pulumi import snowflake:index/catalogIntegrationOpenCatalog:CatalogIntegrationOpenCatalog basic '"<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