published on Friday, Sep 11, 2026 by Pulumi
published on Friday, Sep 11, 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
previewFeaturesEnabledfield 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 hybrid tables. Filtering is aligned with the current possibilities for SHOW HYBRID TABLES query (like, in, startsWith, limit). The results of SHOW, DESCRIBE, SHOW PARAMETERS, SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, SHOW IMPORTED KEYS, and SHOW INDEXES are encapsulated in one output collection hybridTables.
Using getHybridTables
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 getHybridTables(args: GetHybridTablesArgs, opts?: InvokeOptions): Promise<GetHybridTablesResult>
function getHybridTablesOutput(args: GetHybridTablesOutputArgs, opts?: InvokeOutputOptions): Output<GetHybridTablesResult>def get_hybrid_tables(in_: Optional[GetHybridTablesIn] = None,
like: Optional[str] = None,
limit: Optional[GetHybridTablesLimit] = None,
starts_with: Optional[str] = None,
with_describe: Optional[bool] = None,
with_indexes: Optional[bool] = None,
with_keys: Optional[bool] = None,
with_parameters: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetHybridTablesResult
def get_hybrid_tables_output(in_: pulumi.Input[Optional[GetHybridTablesInArgs]] = None,
like: pulumi.Input[Optional[str]] = None,
limit: pulumi.Input[Optional[GetHybridTablesLimitArgs]] = None,
starts_with: pulumi.Input[Optional[str]] = None,
with_describe: pulumi.Input[Optional[bool]] = None,
with_indexes: pulumi.Input[Optional[bool]] = None,
with_keys: pulumi.Input[Optional[bool]] = None,
with_parameters: pulumi.Input[Optional[bool]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetHybridTablesResult]func GetHybridTables(ctx *Context, args *GetHybridTablesArgs, opts ...InvokeOption) (*GetHybridTablesResult, error)
func GetHybridTablesOutput(ctx *Context, args *GetHybridTablesOutputArgs, opts ...InvokeOption) GetHybridTablesResultOutput> Note: This function is named GetHybridTables in the Go SDK.
public static class GetHybridTables
{
public static Task<GetHybridTablesResult> InvokeAsync(GetHybridTablesArgs args, InvokeOptions? opts = null)
public static Output<GetHybridTablesResult> Invoke(GetHybridTablesInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetHybridTablesResult> Invoke(GetHybridTablesInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetHybridTablesResult> getHybridTables(GetHybridTablesArgs args, InvokeOptions options)
public static Output<GetHybridTablesResult> getHybridTables(GetHybridTablesArgs args, InvokeOptions options)
public static Output<GetHybridTablesResult> getHybridTables(GetHybridTablesArgs args, InvokeOutputOptions options)
fn::invoke:
function: snowflake:index/getHybridTables:getHybridTables
arguments:
# arguments dictionarydata "snowflake_get_hybrid_tables" "name" {
# arguments
}The following arguments are supported:
- In
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - With
Indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - With
Keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - With
Parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- In
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - With
Indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - With
Keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - With
Parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID 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.fromis 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 withstartsWithorlike. - starts_
with string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with_
indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with_
keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with_
parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- in
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with
Indexes Boolean - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with
Keys Boolean - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with
Parameters Boolean - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- in
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe boolean - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with
Indexes boolean - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with
Keys boolean - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with
Parameters boolean - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- in_
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts_
with str - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with_
indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with_
keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with_
parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID 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.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with
Indexes Boolean - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with
Keys Boolean - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with
Parameters Boolean - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
getHybridTables Result
The following output properties are available:
- Hybrid
Tables List<GetHybrid Tables Hybrid Table> - Holds the aggregated output of all hybrid table details queries.
- Id string
- The provider-assigned unique ID for this managed resource.
- In
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - With
Indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - With
Keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - With
Parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- Hybrid
Tables []GetHybrid Tables Hybrid Table - Holds the aggregated output of all hybrid table details queries.
- Id string
- The provider-assigned unique ID for this managed resource.
- In
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - With
Indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - With
Keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - With
Parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- hybrid_
tables list(object) - Holds the aggregated output of all hybrid 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.fromis 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 withstartsWithorlike. - starts_
with string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with_
indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with_
keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with_
parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- hybrid
Tables List<GetHybrid Tables Hybrid Table> - Holds the aggregated output of all hybrid table details queries.
- id String
- The provider-assigned unique ID for this managed resource.
- in
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with
Indexes Boolean - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with
Keys Boolean - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with
Parameters Boolean - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- hybrid
Tables GetHybrid Tables Hybrid Table[] - Holds the aggregated output of all hybrid table details queries.
- id string
- The provider-assigned unique ID for this managed resource.
- in
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe boolean - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with
Indexes boolean - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with
Keys boolean - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with
Parameters boolean - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- hybrid_
tables Sequence[GetHybrid Tables Hybrid Table] - Holds the aggregated output of all hybrid table details queries.
- id str
- The provider-assigned unique ID for this managed resource.
- in_
Get
Hybrid Tables In - 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
Get
Hybrid Tables Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts_
with str - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with_
indexes bool - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with_
keys bool - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with_
parameters bool - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
- hybrid
Tables List<Property Map> - Holds the aggregated output of all hybrid 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.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - (Default:
true) Runs DESC TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output of describe is saved to the describeOutput field. By default this value is set to true. - with
Indexes Boolean - (Default:
false) Runs SHOW INDEXES for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the showIndexes field. By default this value is set to false. - with
Keys Boolean - (Default:
false) Runs SHOW PRIMARY KEYS, SHOW UNIQUE KEYS, and SHOW IMPORTED KEYS for each hybrid table returned by SHOW HYBRID TABLES. The merged constraints are saved to the showkeysoutput field, grouped by constraint name and ordered by kind, then by column names. By default this value is set to false. - with
Parameters Boolean - (Default:
true) Runs SHOW PARAMETERS FOR TABLE for each hybrid table returned by SHOW HYBRID TABLES. The output is saved to the parameters field. By default this value is set to true.
Supporting Types
GetHybridTablesHybridTable
- Describe
Outputs List<GetHybrid Tables Hybrid Table Describe Output> - Holds the output of DESCRIBE TABLE.
- Parameters
List<Get
Hybrid Tables Hybrid Table Parameter> - Holds the output of SHOW PARAMETERS FOR TABLE.
- Show
Indexes List<GetHybrid Tables Hybrid Table Show Index> - Holds the output of SHOW INDEXES.
- Show
Keys List<GetOutputs Hybrid Tables Hybrid Table Show Keys Output> - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - Show
Outputs List<GetHybrid Tables Hybrid Table Show Output> - Holds the output of SHOW HYBRID TABLES.
- Describe
Outputs []GetHybrid Tables Hybrid Table Describe Output - Holds the output of DESCRIBE TABLE.
- Parameters
[]Get
Hybrid Tables Hybrid Table Parameter - Holds the output of SHOW PARAMETERS FOR TABLE.
- Show
Indexes []GetHybrid Tables Hybrid Table Show Index - Holds the output of SHOW INDEXES.
- Show
Keys []GetOutputs Hybrid Tables Hybrid Table Show Keys Output - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - Show
Outputs []GetHybrid Tables Hybrid Table Show Output - Holds the output of SHOW HYBRID TABLES.
- describe_
outputs list(object) - Holds the output of DESCRIBE TABLE.
- parameters list(object)
- Holds the output of SHOW PARAMETERS FOR TABLE.
- show_
indexes list(object) - Holds the output of SHOW INDEXES.
- show_
keys_ list(object)outputs - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - show_
outputs list(object) - Holds the output of SHOW HYBRID TABLES.
- describe
Outputs List<GetHybrid Tables Hybrid Table Describe Output> - Holds the output of DESCRIBE TABLE.
- parameters
List<Get
Hybrid Tables Hybrid Table Parameter> - Holds the output of SHOW PARAMETERS FOR TABLE.
- show
Indexes List<GetHybrid Tables Hybrid Table Show Index> - Holds the output of SHOW INDEXES.
- show
Keys List<GetOutputs Hybrid Tables Hybrid Table Show Keys Output> - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - show
Outputs List<GetHybrid Tables Hybrid Table Show Output> - Holds the output of SHOW HYBRID TABLES.
- describe
Outputs GetHybrid Tables Hybrid Table Describe Output[] - Holds the output of DESCRIBE TABLE.
- parameters
Get
Hybrid Tables Hybrid Table Parameter[] - Holds the output of SHOW PARAMETERS FOR TABLE.
- show
Indexes GetHybrid Tables Hybrid Table Show Index[] - Holds the output of SHOW INDEXES.
- show
Keys GetOutputs Hybrid Tables Hybrid Table Show Keys Output[] - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - show
Outputs GetHybrid Tables Hybrid Table Show Output[] - Holds the output of SHOW HYBRID TABLES.
- describe_
outputs Sequence[GetHybrid Tables Hybrid Table Describe Output] - Holds the output of DESCRIBE TABLE.
- parameters
Sequence[Get
Hybrid Tables Hybrid Table Parameter] - Holds the output of SHOW PARAMETERS FOR TABLE.
- show_
indexes Sequence[GetHybrid Tables Hybrid Table Show Index] - Holds the output of SHOW INDEXES.
- show_
keys_ Sequence[Getoutputs Hybrid Tables Hybrid Table Show Keys Output] - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - show_
outputs Sequence[GetHybrid Tables Hybrid Table Show Output] - Holds the output of SHOW HYBRID TABLES.
- describe
Outputs List<Property Map> - Holds the output of DESCRIBE TABLE.
- parameters List<Property Map>
- Holds the output of SHOW PARAMETERS FOR TABLE.
- show
Indexes List<Property Map> - Holds the output of SHOW INDEXES.
- show
Keys List<Property Map>Outputs - Holds the result of
SHOW PRIMARY KEYS,SHOW UNIQUE KEYS, andSHOW IMPORTED KEYSfor the given hybrid table, merged and grouped by constraint name and ordered by kind, then by column names. ThereferencedTable,referencedColumns,deleteRule, andupdateRulefields are populated for FOREIGN KEY constraints only. - show
Outputs List<Property Map> - Holds the output of SHOW HYBRID TABLES.
GetHybridTablesHybridTableDescribeOutput
- Check string
- Collation string
- Comment string
- Default string
- Expression string
- Is
Nullable bool - Kind string
- Name string
- Policy
Name string - Primary
Key bool - Privacy
Domain string - Schema
Evolution stringRecord - Type string
- Unique
Key bool
- Check string
- Collation string
- Comment string
- Default string
- Expression string
- Is
Nullable bool - Kind string
- Name string
- Policy
Name string - Primary
Key bool - Privacy
Domain string - Schema
Evolution stringRecord - Type string
- Unique
Key bool
- check string
- collation string
- comment string
- default string
- expression string
- is_
nullable bool - kind string
- name string
- policy_
name string - primary_
key bool - privacy_
domain string - schema_
evolution_ stringrecord - type string
- unique_
key bool
- check String
- collation String
- comment String
- default_ String
- expression String
- is
Nullable Boolean - kind String
- name String
- policy
Name String - primary
Key Boolean - privacy
Domain String - schema
Evolution StringRecord - type String
- unique
Key Boolean
- check string
- collation string
- comment string
- default string
- expression string
- is
Nullable boolean - kind string
- name string
- policy
Name string - primary
Key boolean - privacy
Domain string - schema
Evolution stringRecord - type string
- unique
Key boolean
- check str
- collation str
- comment str
- default str
- expression str
- is_
nullable bool - kind str
- name str
- policy_
name str - primary_
key bool - privacy_
domain str - schema_
evolution_ strrecord - type str
- unique_
key bool
- check String
- collation String
- comment String
- default String
- expression String
- is
Nullable Boolean - kind String
- name String
- policy
Name String - primary
Key Boolean - privacy
Domain String - schema
Evolution StringRecord - type String
- unique
Key Boolean
GetHybridTablesHybridTableParameter
GetHybridTablesHybridTableParameterDataRetentionTimeInDay
- 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 str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetHybridTablesHybridTableParameterMaxDataExtensionTimeInDay
- 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 str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetHybridTablesHybridTableShowIndex
- Columns string
- Created
On string - Database
Name string - Included
Columns string - Is
Unique bool - Name string
- Owner string
- Owner
Role stringType - Schema
Name string - Table
Name string
- Columns string
- Created
On string - Database
Name string - Included
Columns string - Is
Unique bool - Name string
- Owner string
- Owner
Role stringType - Schema
Name string - Table
Name string
- columns string
- created_
on string - database_
name string - included_
columns string - is_
unique bool - name string
- owner string
- owner_
role_ stringtype - schema_
name string - table_
name string
- columns String
- created
On String - database
Name String - included
Columns String - is
Unique Boolean - name String
- owner String
- owner
Role StringType - schema
Name String - table
Name String
- columns string
- created
On string - database
Name string - included
Columns string - is
Unique boolean - name string
- owner string
- owner
Role stringType - schema
Name string - table
Name string
- columns str
- created_
on str - database_
name str - included_
columns str - is_
unique bool - name str
- owner str
- owner_
role_ strtype - schema_
name str - table_
name str
- columns String
- created
On String - database
Name String - included
Columns String - is
Unique Boolean - name String
- owner String
- owner
Role StringType - schema
Name String - table
Name String
GetHybridTablesHybridTableShowKeysOutput
- Columns List<string>
- Delete
Rule string - Kind string
- Name string
- Referenced
Columns List<string> - Referenced
Table string - Update
Rule string
- Columns []string
- Delete
Rule string - Kind string
- Name string
- Referenced
Columns []string - Referenced
Table string - Update
Rule string
- columns list(string)
- delete_
rule string - kind string
- name string
- referenced_
columns list(string) - referenced_
table string - update_
rule string
- columns List<String>
- delete
Rule String - kind String
- name String
- referenced
Columns List<String> - referenced
Table String - update
Rule String
- columns string[]
- delete
Rule string - kind string
- name string
- referenced
Columns string[] - referenced
Table string - update
Rule string
- columns Sequence[str]
- delete_
rule str - kind str
- name str
- referenced_
columns Sequence[str] - referenced_
table str - update_
rule str
- columns List<String>
- delete
Rule String - kind String
- name String
- referenced
Columns List<String> - referenced
Table String - update
Rule String
GetHybridTablesHybridTableShowOutput
- Bytes int
- Comment string
- Created
On string - Database
Name string - Name string
- Owner string
- Owner
Role stringType - Rows int
- Schema
Name string
- Bytes int
- Comment string
- Created
On string - Database
Name string - Name string
- Owner string
- Owner
Role stringType - Rows int
- Schema
Name string
- bytes number
- comment string
- created_
on string - database_
name string - name string
- owner string
- owner_
role_ stringtype - rows number
- schema_
name string
- bytes Integer
- comment String
- created
On String - database
Name String - name String
- owner String
- owner
Role StringType - rows Integer
- schema
Name String
- bytes number
- comment string
- created
On string - database
Name string - name string
- owner string
- owner
Role stringType - rows number
- schema
Name string
- bytes int
- comment str
- created_
on str - database_
name str - name str
- owner str
- owner_
role_ strtype - rows int
- schema_
name str
- bytes Number
- comment String
- created
On String - database
Name String - name String
- owner String
- owner
Role StringType - rows Number
- schema
Name String
GetHybridTablesIn
GetHybridTablesLimit
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflakeTerraform Provider.
published on Friday, Sep 11, 2026 by Pulumi