snowflake.ExternalTable
Explore with Pulumi AI
Import
format is database name | schema name | external table name
$ pulumi import snowflake:index/externalTable:ExternalTable example 'dbName|schemaName|externalTableName'
Create ExternalTable Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalTable(name: string, args: ExternalTableArgs, opts?: CustomResourceOptions);
@overload
def ExternalTable(resource_name: str,
args: ExternalTableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalTable(resource_name: str,
opts: Optional[ResourceOptions] = None,
database: Optional[str] = None,
schema: Optional[str] = None,
columns: Optional[Sequence[ExternalTableColumnArgs]] = None,
location: Optional[str] = None,
file_format: Optional[str] = None,
comment: Optional[str] = None,
copy_grants: Optional[bool] = None,
auto_refresh: Optional[bool] = None,
name: Optional[str] = None,
partition_bies: Optional[Sequence[str]] = None,
pattern: Optional[str] = None,
refresh_on_create: Optional[bool] = None,
aws_sns_topic: Optional[str] = None,
table_format: Optional[str] = None,
tags: Optional[Sequence[ExternalTableTagArgs]] = None)
func NewExternalTable(ctx *Context, name string, args ExternalTableArgs, opts ...ResourceOption) (*ExternalTable, error)
public ExternalTable(string name, ExternalTableArgs args, CustomResourceOptions? opts = null)
public ExternalTable(String name, ExternalTableArgs args)
public ExternalTable(String name, ExternalTableArgs args, CustomResourceOptions options)
type: snowflake:ExternalTable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. ExternalTableArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. ExternalTableArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. ExternalTableArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. ExternalTableArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. ExternalTableArgs - 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 externalTableResource = new Snowflake.ExternalTable("externalTableResource", new()
{
Database = "string",
Schema = "string",
Columns = new[]
{
new Snowflake.Inputs.ExternalTableColumnArgs
{
As = "string",
Name = "string",
Type = "string",
},
},
Location = "string",
FileFormat = "string",
Comment = "string",
CopyGrants = false,
AutoRefresh = false,
Name = "string",
PartitionBies = new[]
{
"string",
},
Pattern = "string",
RefreshOnCreate = false,
AwsSnsTopic = "string",
TableFormat = "string",
});
example, err := snowflake.NewExternalTable(ctx, "externalTableResource", &snowflake.ExternalTableArgs{
Database: pulumi.String("string"),
Schema: pulumi.String("string"),
Columns: snowflake.ExternalTableColumnArray{
&snowflake.ExternalTableColumnArgs{
As: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
FileFormat: pulumi.String("string"),
Comment: pulumi.String("string"),
CopyGrants: pulumi.Bool(false),
AutoRefresh: pulumi.Bool(false),
Name: pulumi.String("string"),
PartitionBies: pulumi.StringArray{
pulumi.String("string"),
},
Pattern: pulumi.String("string"),
RefreshOnCreate: pulumi.Bool(false),
AwsSnsTopic: pulumi.String("string"),
TableFormat: pulumi.String("string"),
})
var externalTableResource = new ExternalTable("externalTableResource", ExternalTableArgs.builder()
.database("string")
.schema("string")
.columns(ExternalTableColumnArgs.builder()
.as("string")
.name("string")
.type("string")
.build())
.location("string")
.fileFormat("string")
.comment("string")
.copyGrants(false)
.autoRefresh(false)
.name("string")
.partitionBies("string")
.pattern("string")
.refreshOnCreate(false)
.awsSnsTopic("string")
.tableFormat("string")
.build());
external_table_resource = snowflake.ExternalTable("externalTableResource",
database="string",
schema="string",
columns=[{
"as_": "string",
"name": "string",
"type": "string",
}],
location="string",
file_format="string",
comment="string",
copy_grants=False,
auto_refresh=False,
name="string",
partition_bies=["string"],
pattern="string",
refresh_on_create=False,
aws_sns_topic="string",
table_format="string")
const externalTableResource = new snowflake.ExternalTable("externalTableResource", {
database: "string",
schema: "string",
columns: [{
as: "string",
name: "string",
type: "string",
}],
location: "string",
fileFormat: "string",
comment: "string",
copyGrants: false,
autoRefresh: false,
name: "string",
partitionBies: ["string"],
pattern: "string",
refreshOnCreate: false,
awsSnsTopic: "string",
tableFormat: "string",
});
type: snowflake:ExternalTable
properties:
autoRefresh: false
awsSnsTopic: string
columns:
- as: string
name: string
type: string
comment: string
copyGrants: false
database: string
fileFormat: string
location: string
name: string
partitionBies:
- string
pattern: string
refreshOnCreate: false
schema: string
tableFormat: string
ExternalTable 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 ExternalTable resource accepts the following input properties:
- Columns
This property is required. Changes to this property will trigger replacement.
Table Column> - Definitions of a column to create in the external table. Minimum one required.
- Database
This property is required. Changes to this property will trigger replacement.
- The database in which to create the external table.
- File
Format This property is required. Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- Location
This property is required. Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - Schema
This property is required. Changes to this property will trigger replacement.
- The schema in which to create the external table.
- Auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- Aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- Comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- Copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- Name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- Partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- Pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- Refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- Table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- List<External
Table Tag> - Definitions of a tag to associate with the resource.
- Columns
This property is required. Changes to this property will trigger replacement.
Table Column Args - Definitions of a column to create in the external table. Minimum one required.
- Database
This property is required. Changes to this property will trigger replacement.
- The database in which to create the external table.
- File
Format This property is required. Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- Location
This property is required. Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - Schema
This property is required. Changes to this property will trigger replacement.
- The schema in which to create the external table.
- Auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- Aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- Comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- Copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- Name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- Partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- Pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- Refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- Table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- []External
Table Tag Args - Definitions of a tag to associate with the resource.
- columns
This property is required. Changes to this property will trigger replacement.
Table Column> - Definitions of a column to create in the external table. Minimum one required.
- database
This property is required. Changes to this property will trigger replacement.
- The database in which to create the external table.
- file
Format This property is required. Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- location
This property is required. Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - schema
This property is required. Changes to this property will trigger replacement.
- The schema in which to create the external table.
- auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- List<External
Table Tag> - Definitions of a tag to associate with the resource.
- columns
This property is required. Changes to this property will trigger replacement.
Table Column[] - Definitions of a column to create in the external table. Minimum one required.
- database
This property is required. Changes to this property will trigger replacement.
- The database in which to create the external table.
- file
Format This property is required. Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- location
This property is required. Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - schema
This property is required. Changes to this property will trigger replacement.
- The schema in which to create the external table.
- auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- External
Table Tag[] - Definitions of a tag to associate with the resource.
- columns
This property is required. Changes to this property will trigger replacement.
Table Column Args] - Definitions of a column to create in the external table. Minimum one required.
- database
This property is required. Changes to this property will trigger replacement.
- The database in which to create the external table.
- file_
format This property is required. Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- location
This property is required. Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - schema
This property is required. Changes to this property will trigger replacement.
- The schema in which to create the external table.
- auto_
refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws_
sns_ topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy_
grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- partition_
bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh_
on_ create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- table_
format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- Sequence[External
Table Tag Args] - Definitions of a tag to associate with the resource.
- columns
This property is required. Changes to this property will trigger replacement.
- Definitions of a column to create in the external table. Minimum one required.
- database
This property is required. Changes to this property will trigger replacement.
- The database in which to create the external table.
- file
Format This property is required. Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- location
This property is required. Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - schema
This property is required. Changes to this property will trigger replacement.
- The schema in which to create the external table.
- auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- List<Property Map>
- Definitions of a tag to associate with the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalTable resource produces the following output properties:
- 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.
- Owner string
- Name of the role that owns the external table.
- 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.
- Owner string
- Name of the role that owns the external table.
- 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.
- owner String
- Name of the role that owns the external table.
- 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.
- owner string
- Name of the role that owns the external table.
- 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.
- owner str
- Name of the role that owns the external table.
- 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.
- owner String
- Name of the role that owns the external table.
Look up Existing ExternalTable Resource
Get an existing ExternalTable 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?: ExternalTableState, opts?: CustomResourceOptions): ExternalTable
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_refresh: Optional[bool] = None,
aws_sns_topic: Optional[str] = None,
columns: Optional[Sequence[ExternalTableColumnArgs]] = None,
comment: Optional[str] = None,
copy_grants: Optional[bool] = None,
database: Optional[str] = None,
file_format: Optional[str] = None,
fully_qualified_name: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
owner: Optional[str] = None,
partition_bies: Optional[Sequence[str]] = None,
pattern: Optional[str] = None,
refresh_on_create: Optional[bool] = None,
schema: Optional[str] = None,
table_format: Optional[str] = None,
tags: Optional[Sequence[ExternalTableTagArgs]] = None) -> ExternalTable
func GetExternalTable(ctx *Context, name string, id IDInput, state *ExternalTableState, opts ...ResourceOption) (*ExternalTable, error)
public static ExternalTable Get(string name, Input<string> id, ExternalTableState? state, CustomResourceOptions? opts = null)
public static ExternalTable get(String name, Output<String> id, ExternalTableState state, CustomResourceOptions options)
resources: _: type: snowflake:ExternalTable get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- Auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- Aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- Columns
Changes to this property will trigger replacement.
Table Column> - Definitions of a column to create in the external table. Minimum one required.
- Comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- Copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- Database
Changes to this property will trigger replacement.
- The database in which to create the external table.
- File
Format Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Location
Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - Name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- Owner string
- Name of the role that owns the external table.
- Partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- Pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- Refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- Schema
Changes to this property will trigger replacement.
- The schema in which to create the external table.
- Table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- List<External
Table Tag> - Definitions of a tag to associate with the resource.
- Auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- Aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- Columns
Changes to this property will trigger replacement.
Table Column Args - Definitions of a column to create in the external table. Minimum one required.
- Comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- Copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- Database
Changes to this property will trigger replacement.
- The database in which to create the external table.
- File
Format Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Location
Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - Name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- Owner string
- Name of the role that owns the external table.
- Partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- Pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- Refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- Schema
Changes to this property will trigger replacement.
- The schema in which to create the external table.
- Table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- []External
Table Tag Args - Definitions of a tag to associate with the resource.
- auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- columns
Changes to this property will trigger replacement.
Table Column> - Definitions of a column to create in the external table. Minimum one required.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- database
Changes to this property will trigger replacement.
- The database in which to create the external table.
- file
Format Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- location
Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- owner String
- Name of the role that owns the external table.
- partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- schema
Changes to this property will trigger replacement.
- The schema in which to create the external table.
- table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- List<External
Table Tag> - Definitions of a tag to associate with the resource.
- auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- columns
Changes to this property will trigger replacement.
Table Column[] - Definitions of a column to create in the external table. Minimum one required.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- database
Changes to this property will trigger replacement.
- The database in which to create the external table.
- file
Format Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- location
Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- owner string
- Name of the role that owns the external table.
- partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- schema
Changes to this property will trigger replacement.
- The schema in which to create the external table.
- table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- External
Table Tag[] - Definitions of a tag to associate with the resource.
- auto_
refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws_
sns_ topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- columns
Changes to this property will trigger replacement.
Table Column Args] - Definitions of a column to create in the external table. Minimum one required.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy_
grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- database
Changes to this property will trigger replacement.
- The database in which to create the external table.
- file_
format Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- location
Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- owner str
- Name of the role that owns the external table.
- partition_
bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh_
on_ create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- schema
Changes to this property will trigger replacement.
- The schema in which to create the external table.
- table_
format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- Sequence[External
Table Tag Args] - Definitions of a tag to associate with the resource.
- auto
Refresh Changes to this property will trigger replacement.
- Specifies whether to automatically refresh the external table metadata once, immediately after the external table is created.
- aws
Sns Topic Changes to this property will trigger replacement.
- Specifies the aws sns topic for the external table.
- columns
Changes to this property will trigger replacement.
- Definitions of a column to create in the external table. Minimum one required.
- comment
Changes to this property will trigger replacement.
- Specifies a comment for the external table.
- copy
Grants Changes to this property will trigger replacement.
- Specifies to retain the access permissions from the original table when an external table is recreated using the CREATE OR REPLACE TABLE variant
- database
Changes to this property will trigger replacement.
- The database in which to create the external table.
- file
Format Changes to this property will trigger replacement.
- Specifies the file format for the external table.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- location
Changes to this property will trigger replacement.
- Specifies a location for the external table, using its FQDN. You can hardcode it (
"@MYDB.MYSCHEMA.MYSTAGE"
), or populate dynamically ("@${snowflake_stage.mystage.fully_qualified_name}"
) - name
Changes to this property will trigger replacement.
- Specifies the identifier for the external table; must be unique for the database and schema in which the externalTable is created.
- owner String
- Name of the role that owns the external table.
- partition
Bies Changes to this property will trigger replacement.
- Specifies any partition columns to evaluate for the external table.
- pattern
Changes to this property will trigger replacement.
- Specifies the file names and/or paths on the external stage to match.
- refresh
On Create Changes to this property will trigger replacement.
- Specifies weather to refresh when an external table is created.
- schema
Changes to this property will trigger replacement.
- The schema in which to create the external table.
- table
Format Changes to this property will trigger replacement.
- Identifies the external table table type. For now, only "delta" for Delta Lake table format is supported.
- List<Property Map>
- Definitions of a tag to associate with the resource.
Supporting Types
ExternalTableColumn, ExternalTableColumnArgs
- As
This property is required. Changes to this property will trigger replacement.
- String that specifies the expression for the column. When queried, the column returns results derived from this expression.
- Name
This property is required. Changes to this property will trigger replacement.
- Column name
- Type
This property is required. Changes to this property will trigger replacement.
- Column type, e.g. VARIANT
- As
This property is required. Changes to this property will trigger replacement.
- String that specifies the expression for the column. When queried, the column returns results derived from this expression.
- Name
This property is required. Changes to this property will trigger replacement.
- Column name
- Type
This property is required. Changes to this property will trigger replacement.
- Column type, e.g. VARIANT
- as
This property is required. Changes to this property will trigger replacement.
- String that specifies the expression for the column. When queried, the column returns results derived from this expression.
- name
This property is required. Changes to this property will trigger replacement.
- Column name
- type
This property is required. Changes to this property will trigger replacement.
- Column type, e.g. VARIANT
- as
This property is required. Changes to this property will trigger replacement.
- String that specifies the expression for the column. When queried, the column returns results derived from this expression.
- name
This property is required. Changes to this property will trigger replacement.
- Column name
- type
This property is required. Changes to this property will trigger replacement.
- Column type, e.g. VARIANT
- as_
This property is required. Changes to this property will trigger replacement.
- String that specifies the expression for the column. When queried, the column returns results derived from this expression.
- name
This property is required. Changes to this property will trigger replacement.
- Column name
- type
This property is required. Changes to this property will trigger replacement.
- Column type, e.g. VARIANT
- as
This property is required. Changes to this property will trigger replacement.
- String that specifies the expression for the column. When queried, the column returns results derived from this expression.
- name
This property is required. Changes to this property will trigger replacement.
- Column name
- type
This property is required. Changes to this property will trigger replacement.
- Column type, e.g. VARIANT
ExternalTableTag, ExternalTableTagArgs
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.