1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. getIcebergTables
Viewing docs for Snowflake v2.19.0
published on Friday, Jul 31, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.19.0
published on Friday, Jul 31, 2026 by Pulumi

    Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to previewFeaturesEnabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.

    Data source used to get details of filtered iceberg tables. Filtering is aligned with the current possibilities for SHOW ICEBERG TABLES query (like, in, startsWith, limit). The results of SHOW, DESCRIBE, and SHOW PARAMETERS are encapsulated in one output collection icebergTables.

    Using getIcebergTables

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getIcebergTables(args: GetIcebergTablesArgs, opts?: InvokeOptions): Promise<GetIcebergTablesResult>
    function getIcebergTablesOutput(args: GetIcebergTablesOutputArgs, opts?: InvokeOptions): Output<GetIcebergTablesResult>
    def get_iceberg_tables(in_: Optional[GetIcebergTablesIn] = None,
                           like: Optional[str] = None,
                           limit: Optional[GetIcebergTablesLimit] = None,
                           starts_with: Optional[str] = None,
                           with_describe: Optional[bool] = None,
                           with_parameters: Optional[bool] = None,
                           opts: Optional[InvokeOptions] = None) -> GetIcebergTablesResult
    def get_iceberg_tables_output(in_: pulumi.Input[Optional[GetIcebergTablesInArgs]] = None,
                           like: pulumi.Input[Optional[str]] = None,
                           limit: pulumi.Input[Optional[GetIcebergTablesLimitArgs]] = None,
                           starts_with: pulumi.Input[Optional[str]] = None,
                           with_describe: pulumi.Input[Optional[bool]] = None,
                           with_parameters: pulumi.Input[Optional[bool]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetIcebergTablesResult]
    func GetIcebergTables(ctx *Context, args *GetIcebergTablesArgs, opts ...InvokeOption) (*GetIcebergTablesResult, error)
    func GetIcebergTablesOutput(ctx *Context, args *GetIcebergTablesOutputArgs, opts ...InvokeOption) GetIcebergTablesResultOutput

    > Note: This function is named GetIcebergTables in the Go SDK.

    public static class GetIcebergTables 
    {
        public static Task<GetIcebergTablesResult> InvokeAsync(GetIcebergTablesArgs args, InvokeOptions? opts = null)
        public static Output<GetIcebergTablesResult> Invoke(GetIcebergTablesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIcebergTablesResult> getIcebergTables(GetIcebergTablesArgs args, InvokeOptions options)
    public static Output<GetIcebergTablesResult> getIcebergTables(GetIcebergTablesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: snowflake:index/getIcebergTables:getIcebergTables
      arguments:
        # arguments dictionary
    data "snowflake_get_iceberg_tables" "name" {
        # arguments
    }

    The following arguments are supported:

    In GetIcebergTablesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    In GetIcebergTablesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    in object
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit object
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    in GetIcebergTablesIn
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    in GetIcebergTablesIn
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe boolean
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    withParameters boolean
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    in_ GetIcebergTablesIn
    IN clause to filter the list of objects
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with str
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    in Property Map
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit Property Map
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.

    getIcebergTables Result

    The following output properties are available:

    IcebergTables List<GetIcebergTablesIcebergTable>
    Holds the aggregated output of all iceberg table details queries.
    Id string
    The provider-assigned unique ID for this managed resource.
    In GetIcebergTablesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    IcebergTables []GetIcebergTablesIcebergTable
    Holds the aggregated output of all iceberg table details queries.
    Id string
    The provider-assigned unique ID for this managed resource.
    In GetIcebergTablesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    iceberg_tables list(object)
    Holds the aggregated output of all iceberg table details queries.
    id string
    The provider-assigned unique ID for this managed resource.
    in object
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit object
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    icebergTables List<GetIcebergTablesIcebergTable>
    Holds the aggregated output of all iceberg table details queries.
    id String
    The provider-assigned unique ID for this managed resource.
    in GetIcebergTablesIn
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    icebergTables GetIcebergTablesIcebergTable[]
    Holds the aggregated output of all iceberg table details queries.
    id string
    The provider-assigned unique ID for this managed resource.
    in GetIcebergTablesIn
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe boolean
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    withParameters boolean
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    iceberg_tables Sequence[GetIcebergTablesIcebergTable]
    Holds the aggregated output of all iceberg table details queries.
    id str
    The provider-assigned unique ID for this managed resource.
    in_ GetIcebergTablesIn
    IN clause to filter the list of objects
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetIcebergTablesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with str
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.
    icebergTables List<Property Map>
    Holds the aggregated output of all iceberg table details queries.
    id String
    The provider-assigned unique ID for this managed resource.
    in Property Map
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit Property Map
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS FOR ICEBERG TABLE for each iceberg table returned by SHOW ICEBERG TABLES. The output is saved to the parameters field. By default this value is set to true.

    Supporting Types

    GetIcebergTablesIcebergTable

    DescribeOutputs List<GetIcebergTablesIcebergTableDescribeOutput>
    Holds the output of DESCRIBE ICEBERG TABLE.
    Parameters List<GetIcebergTablesIcebergTableParameter>
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    ShowOutputs List<GetIcebergTablesIcebergTableShowOutput>
    Holds the output of SHOW ICEBERG TABLES.
    DescribeOutputs []GetIcebergTablesIcebergTableDescribeOutput
    Holds the output of DESCRIBE ICEBERG TABLE.
    Parameters []GetIcebergTablesIcebergTableParameter
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    ShowOutputs []GetIcebergTablesIcebergTableShowOutput
    Holds the output of SHOW ICEBERG TABLES.
    describe_outputs list(object)
    Holds the output of DESCRIBE ICEBERG TABLE.
    parameters list(object)
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    show_outputs list(object)
    Holds the output of SHOW ICEBERG TABLES.
    describeOutputs List<GetIcebergTablesIcebergTableDescribeOutput>
    Holds the output of DESCRIBE ICEBERG TABLE.
    parameters List<GetIcebergTablesIcebergTableParameter>
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    showOutputs List<GetIcebergTablesIcebergTableShowOutput>
    Holds the output of SHOW ICEBERG TABLES.
    describeOutputs GetIcebergTablesIcebergTableDescribeOutput[]
    Holds the output of DESCRIBE ICEBERG TABLE.
    parameters GetIcebergTablesIcebergTableParameter[]
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    showOutputs GetIcebergTablesIcebergTableShowOutput[]
    Holds the output of SHOW ICEBERG TABLES.
    describe_outputs Sequence[GetIcebergTablesIcebergTableDescribeOutput]
    Holds the output of DESCRIBE ICEBERG TABLE.
    parameters Sequence[GetIcebergTablesIcebergTableParameter]
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    show_outputs Sequence[GetIcebergTablesIcebergTableShowOutput]
    Holds the output of SHOW ICEBERG TABLES.
    describeOutputs List<Property Map>
    Holds the output of DESCRIBE ICEBERG TABLE.
    parameters List<Property Map>
    Holds the output of SHOW PARAMETERS FOR ICEBERG TABLE.
    showOutputs List<Property Map>
    Holds the output of SHOW ICEBERG TABLES.

    GetIcebergTablesIcebergTableDescribeOutput

    Check string
    Comment string
    Default string
    Expression string
    IsNullable bool
    Kind string
    Name string
    NameMapping string
    PolicyName string
    PrimaryKey bool
    PrivacyDomain string
    SourceIcebergType string
    Type string
    UniqueKey bool
    WriteDefault string
    Check string
    Comment string
    Default string
    Expression string
    IsNullable bool
    Kind string
    Name string
    NameMapping string
    PolicyName string
    PrimaryKey bool
    PrivacyDomain string
    SourceIcebergType string
    Type string
    UniqueKey bool
    WriteDefault string
    check string
    comment string
    default string
    expression string
    is_nullable bool
    kind string
    name string
    name_mapping string
    policy_name string
    primary_key bool
    privacy_domain string
    source_iceberg_type string
    type string
    unique_key bool
    write_default string
    check String
    comment String
    default_ String
    expression String
    isNullable Boolean
    kind String
    name String
    nameMapping String
    policyName String
    primaryKey Boolean
    privacyDomain String
    sourceIcebergType String
    type String
    uniqueKey Boolean
    writeDefault String
    check string
    comment string
    default string
    expression string
    isNullable boolean
    kind string
    name string
    nameMapping string
    policyName string
    primaryKey boolean
    privacyDomain string
    sourceIcebergType string
    type string
    uniqueKey boolean
    writeDefault string
    check String
    comment String
    default String
    expression String
    isNullable Boolean
    kind String
    name String
    nameMapping String
    policyName String
    primaryKey Boolean
    privacyDomain String
    sourceIcebergType String
    type String
    uniqueKey Boolean
    writeDefault String

    GetIcebergTablesIcebergTableParameter

    CatalogSyncs List<GetIcebergTablesIcebergTableParameterCatalogSync>
    Catalogs List<GetIcebergTablesIcebergTableParameterCatalog>
    DataRetentionTimeInDays List<GetIcebergTablesIcebergTableParameterDataRetentionTimeInDay>
    EnableDataCompactions List<GetIcebergTablesIcebergTableParameterEnableDataCompaction>
    EnableIcebergMergeOnReads List<GetIcebergTablesIcebergTableParameterEnableIcebergMergeOnRead>
    ExternalVolumes List<GetIcebergTablesIcebergTableParameterExternalVolume>
    IcebergMergeOnReadBehaviors List<GetIcebergTablesIcebergTableParameterIcebergMergeOnReadBehavior>
    MaxDataExtensionTimeInDays List<GetIcebergTablesIcebergTableParameterMaxDataExtensionTimeInDay>
    ReplaceInvalidCharacters List<GetIcebergTablesIcebergTableParameterReplaceInvalidCharacter>
    StorageSerializationPolicies List<GetIcebergTablesIcebergTableParameterStorageSerializationPolicy>
    TargetFileSizes List<GetIcebergTablesIcebergTableParameterTargetFileSize>
    CatalogSyncs []GetIcebergTablesIcebergTableParameterCatalogSync
    Catalogs []GetIcebergTablesIcebergTableParameterCatalog
    DataRetentionTimeInDays []GetIcebergTablesIcebergTableParameterDataRetentionTimeInDay
    EnableDataCompactions []GetIcebergTablesIcebergTableParameterEnableDataCompaction
    EnableIcebergMergeOnReads []GetIcebergTablesIcebergTableParameterEnableIcebergMergeOnRead
    ExternalVolumes []GetIcebergTablesIcebergTableParameterExternalVolume
    IcebergMergeOnReadBehaviors []GetIcebergTablesIcebergTableParameterIcebergMergeOnReadBehavior
    MaxDataExtensionTimeInDays []GetIcebergTablesIcebergTableParameterMaxDataExtensionTimeInDay
    ReplaceInvalidCharacters []GetIcebergTablesIcebergTableParameterReplaceInvalidCharacter
    StorageSerializationPolicies []GetIcebergTablesIcebergTableParameterStorageSerializationPolicy
    TargetFileSizes []GetIcebergTablesIcebergTableParameterTargetFileSize
    catalogSyncs List<GetIcebergTablesIcebergTableParameterCatalogSync>
    catalogs List<GetIcebergTablesIcebergTableParameterCatalog>
    dataRetentionTimeInDays List<GetIcebergTablesIcebergTableParameterDataRetentionTimeInDay>
    enableDataCompactions List<GetIcebergTablesIcebergTableParameterEnableDataCompaction>
    enableIcebergMergeOnReads List<GetIcebergTablesIcebergTableParameterEnableIcebergMergeOnRead>
    externalVolumes List<GetIcebergTablesIcebergTableParameterExternalVolume>
    icebergMergeOnReadBehaviors List<GetIcebergTablesIcebergTableParameterIcebergMergeOnReadBehavior>
    maxDataExtensionTimeInDays List<GetIcebergTablesIcebergTableParameterMaxDataExtensionTimeInDay>
    replaceInvalidCharacters List<GetIcebergTablesIcebergTableParameterReplaceInvalidCharacter>
    storageSerializationPolicies List<GetIcebergTablesIcebergTableParameterStorageSerializationPolicy>
    targetFileSizes List<GetIcebergTablesIcebergTableParameterTargetFileSize>
    catalogSyncs GetIcebergTablesIcebergTableParameterCatalogSync[]
    catalogs GetIcebergTablesIcebergTableParameterCatalog[]
    dataRetentionTimeInDays GetIcebergTablesIcebergTableParameterDataRetentionTimeInDay[]
    enableDataCompactions GetIcebergTablesIcebergTableParameterEnableDataCompaction[]
    enableIcebergMergeOnReads GetIcebergTablesIcebergTableParameterEnableIcebergMergeOnRead[]
    externalVolumes GetIcebergTablesIcebergTableParameterExternalVolume[]
    icebergMergeOnReadBehaviors GetIcebergTablesIcebergTableParameterIcebergMergeOnReadBehavior[]
    maxDataExtensionTimeInDays GetIcebergTablesIcebergTableParameterMaxDataExtensionTimeInDay[]
    replaceInvalidCharacters GetIcebergTablesIcebergTableParameterReplaceInvalidCharacter[]
    storageSerializationPolicies GetIcebergTablesIcebergTableParameterStorageSerializationPolicy[]
    targetFileSizes GetIcebergTablesIcebergTableParameterTargetFileSize[]
    catalog_syncs Sequence[GetIcebergTablesIcebergTableParameterCatalogSync]
    catalogs Sequence[GetIcebergTablesIcebergTableParameterCatalog]
    data_retention_time_in_days Sequence[GetIcebergTablesIcebergTableParameterDataRetentionTimeInDay]
    enable_data_compactions Sequence[GetIcebergTablesIcebergTableParameterEnableDataCompaction]
    enable_iceberg_merge_on_reads Sequence[GetIcebergTablesIcebergTableParameterEnableIcebergMergeOnRead]
    external_volumes Sequence[GetIcebergTablesIcebergTableParameterExternalVolume]
    iceberg_merge_on_read_behaviors Sequence[GetIcebergTablesIcebergTableParameterIcebergMergeOnReadBehavior]
    max_data_extension_time_in_days Sequence[GetIcebergTablesIcebergTableParameterMaxDataExtensionTimeInDay]
    replace_invalid_characters Sequence[GetIcebergTablesIcebergTableParameterReplaceInvalidCharacter]
    storage_serialization_policies Sequence[GetIcebergTablesIcebergTableParameterStorageSerializationPolicy]
    target_file_sizes Sequence[GetIcebergTablesIcebergTableParameterTargetFileSize]

    GetIcebergTablesIcebergTableParameterCatalog

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterCatalogSync

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterDataRetentionTimeInDay

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterEnableDataCompaction

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterEnableIcebergMergeOnRead

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterExternalVolume

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterIcebergMergeOnReadBehavior

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterMaxDataExtensionTimeInDay

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterReplaceInvalidCharacter

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterStorageSerializationPolicy

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableParameterTargetFileSize

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    GetIcebergTablesIcebergTableShowOutput

    GetIcebergTablesIcebergTableShowOutputAutoRefreshStatus

    GetIcebergTablesIcebergTableShowOutputPartitionSpec

    GetIcebergTablesIcebergTableShowOutputPartitionSpecField

    FieldId int
    Name string
    SourceId int
    Transform string
    FieldId int
    Name string
    SourceId int
    Transform string
    field_id number
    name string
    source_id number
    transform string
    fieldId Integer
    name String
    sourceId Integer
    transform String
    fieldId number
    name string
    sourceId number
    transform string
    fieldId Number
    name String
    sourceId Number
    transform String

    GetIcebergTablesIn

    Account bool
    Returns records for the entire account.
    Database string
    Returns records for the current database in use or for a specified database.
    Schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    Account bool
    Returns records for the entire account.
    Database string
    Returns records for the current database in use or for a specified database.
    Schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account bool
    Returns records for the entire account.
    database string
    Returns records for the current database in use or for a specified database.
    schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account Boolean
    Returns records for the entire account.
    database String
    Returns records for the current database in use or for a specified database.
    schema String
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account boolean
    Returns records for the entire account.
    database string
    Returns records for the current database in use or for a specified database.
    schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account bool
    Returns records for the entire account.
    database str
    Returns records for the current database in use or for a specified database.
    schema str
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account Boolean
    Returns records for the entire account.
    database String
    Returns records for the current database in use or for a specified database.
    schema String
    Returns records for the current schema in use or a specified schema. Use fully qualified name.

    GetIcebergTablesLimit

    Rows int
    The maximum number of rows to return.
    From string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    Rows int
    The maximum number of rows to return.
    From string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows number
    The maximum number of rows to return.
    from string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows Integer
    The maximum number of rows to return.
    from String
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows number
    The maximum number of rows to return.
    from string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows int
    The maximum number of rows to return.
    from_ str
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows Number
    The maximum number of rows to return.
    from String
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Viewing docs for Snowflake v2.19.0
    published on Friday, Jul 31, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial