snowflake.getDatabases
Explore with Pulumi AI
!> V1 release candidate This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
Datasource used to get details of filtered databases. Filtering is aligned with the current possibilities for SHOW DATABASES query (like
, starts_with
, and limit
are all supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
Using getDatabases
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 getDatabases(args: GetDatabasesArgs, opts?: InvokeOptions): Promise<GetDatabasesResult>
function getDatabasesOutput(args: GetDatabasesOutputArgs, opts?: InvokeOptions): Output<GetDatabasesResult>
def get_databases(like: Optional[str] = None,
limit: Optional[GetDatabasesLimit] = None,
starts_with: Optional[str] = None,
with_describe: Optional[bool] = None,
with_parameters: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetDatabasesResult
def get_databases_output(like: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[GetDatabasesLimitArgs]] = None,
starts_with: Optional[pulumi.Input[str]] = None,
with_describe: Optional[pulumi.Input[bool]] = None,
with_parameters: Optional[pulumi.Input[bool]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDatabasesResult]
func GetDatabases(ctx *Context, args *GetDatabasesArgs, opts ...InvokeOption) (*GetDatabasesResult, error)
func GetDatabasesOutput(ctx *Context, args *GetDatabasesOutputArgs, opts ...InvokeOption) GetDatabasesResultOutput
> Note: This function is named GetDatabases
in the Go SDK.
public static class GetDatabases
{
public static Task<GetDatabasesResult> InvokeAsync(GetDatabasesArgs args, InvokeOptions? opts = null)
public static Output<GetDatabasesResult> Invoke(GetDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDatabasesResult> getDatabases(GetDatabasesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: snowflake:index/getDatabases:getDatabases
arguments:
# arguments dictionary
The following arguments are supported:
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe boolean - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters boolean - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like str
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - starts_
with str - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with_
parameters bool - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- 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 wll 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
getDatabases Result
The following output properties are available:
- Databases
List<Get
Databases Database> - Holds the aggregated output of all database details queries.
- Id string
- The provider-assigned unique ID for this managed resource.
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- Databases
[]Get
Databases Database - Holds the aggregated output of all database details queries.
- Id string
- The provider-assigned unique ID for this managed resource.
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- databases
List<Get
Databases Database> - Holds the aggregated output of all database details queries.
- id String
- The provider-assigned unique ID for this managed resource.
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- databases
Get
Databases Database[] - Holds the aggregated output of all database details queries.
- id string
- The provider-assigned unique ID for this managed resource.
- like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe boolean - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters boolean - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- databases
Sequence[Get
Databases Database] - Holds the aggregated output of all database details queries.
- id str
- The provider-assigned unique ID for this managed resource.
- like str
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Databases Limit - Limits the number of rows returned. If the
limit.from
is set, then the limit wll 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 withstarts_with
orlike
. - starts_
with str - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with_
parameters bool - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- databases List<Property Map>
- Holds the aggregated output of all database details queries.
- id String
- The provider-assigned unique ID for this managed resource.
- 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 wll 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR DATABASE for each database returned by SHOW DATABASES. The output of describe is saved to the parameters field as a map. By default this value is set to true.
Supporting Types
GetDatabasesDatabase
- Describe
Outputs List<GetDatabases Database Describe Output> - Holds the output of DESCRIBE DATABASE.
- Parameters
List<Get
Databases Database Parameter> - Holds the output of SHOW PARAMETERS FOR DATABASE.
- Show
Outputs List<GetDatabases Database Show Output> - Holds the output of SHOW DATABASES.
- Describe
Outputs []GetDatabases Database Describe Output - Holds the output of DESCRIBE DATABASE.
- Parameters
[]Get
Databases Database Parameter - Holds the output of SHOW PARAMETERS FOR DATABASE.
- Show
Outputs []GetDatabases Database Show Output - Holds the output of SHOW DATABASES.
- describe
Outputs List<GetDatabases Database Describe Output> - Holds the output of DESCRIBE DATABASE.
- parameters
List<Get
Databases Database Parameter> - Holds the output of SHOW PARAMETERS FOR DATABASE.
- show
Outputs List<GetDatabases Database Show Output> - Holds the output of SHOW DATABASES.
- describe
Outputs GetDatabases Database Describe Output[] - Holds the output of DESCRIBE DATABASE.
- parameters
Get
Databases Database Parameter[] - Holds the output of SHOW PARAMETERS FOR DATABASE.
- show
Outputs GetDatabases Database Show Output[] - Holds the output of SHOW DATABASES.
- describe_
outputs Sequence[GetDatabases Database Describe Output] - Holds the output of DESCRIBE DATABASE.
- parameters
Sequence[Get
Databases Database Parameter] - Holds the output of SHOW PARAMETERS FOR DATABASE.
- show_
outputs Sequence[GetDatabases Database Show Output] - Holds the output of SHOW DATABASES.
- describe
Outputs List<Property Map> - Holds the output of DESCRIBE DATABASE.
- parameters List<Property Map>
- Holds the output of SHOW PARAMETERS FOR DATABASE.
- show
Outputs List<Property Map> - Holds the output of SHOW DATABASES.
GetDatabasesDatabaseDescribeOutput
- created_
on str - kind str
- name str
GetDatabasesDatabaseParameter
- Catalogs
List<Get
Databases Database Parameter Catalog> - Data
Retention List<GetTime In Days Databases Database Parameter Data Retention Time In Day> - Default
Ddl List<GetCollations Databases Database Parameter Default Ddl Collation> - Enable
Console List<GetOutputs Databases Database Parameter Enable Console Output> - External
Volumes List<GetDatabases Database Parameter External Volume> - Log
Levels List<GetDatabases Database Parameter Log Level> - Max
Data List<GetExtension Time In Days Databases Database Parameter Max Data Extension Time In Day> - Quoted
Identifiers List<GetIgnore Cases Databases Database Parameter Quoted Identifiers Ignore Case> - Replace
Invalid List<GetCharacters Databases Database Parameter Replace Invalid Character> - Storage
Serialization List<GetPolicies Databases Database Parameter Storage Serialization Policy> - Suspend
Task List<GetAfter Num Failures Databases Database Parameter Suspend Task After Num Failure> - Task
Auto List<GetRetry Attempts Databases Database Parameter Task Auto Retry Attempt> - Trace
Levels List<GetDatabases Database Parameter Trace Level> - User
Task List<GetManaged Initial Warehouse Sizes Databases Database Parameter User Task Managed Initial Warehouse Size> - User
Task List<GetMinimum Trigger Interval In Seconds Databases Database Parameter User Task Minimum Trigger Interval In Second> - User
Task List<GetTimeout Ms Databases Database Parameter User Task Timeout M>
- Catalogs
[]Get
Databases Database Parameter Catalog - Data
Retention []GetTime In Days Databases Database Parameter Data Retention Time In Day - Default
Ddl []GetCollations Databases Database Parameter Default Ddl Collation - Enable
Console []GetOutputs Databases Database Parameter Enable Console Output - External
Volumes []GetDatabases Database Parameter External Volume - Log
Levels []GetDatabases Database Parameter Log Level - Max
Data []GetExtension Time In Days Databases Database Parameter Max Data Extension Time In Day - Quoted
Identifiers []GetIgnore Cases Databases Database Parameter Quoted Identifiers Ignore Case - Replace
Invalid []GetCharacters Databases Database Parameter Replace Invalid Character - Storage
Serialization []GetPolicies Databases Database Parameter Storage Serialization Policy - Suspend
Task []GetAfter Num Failures Databases Database Parameter Suspend Task After Num Failure - Task
Auto []GetRetry Attempts Databases Database Parameter Task Auto Retry Attempt - Trace
Levels []GetDatabases Database Parameter Trace Level - User
Task []GetManaged Initial Warehouse Sizes Databases Database Parameter User Task Managed Initial Warehouse Size - User
Task []GetMinimum Trigger Interval In Seconds Databases Database Parameter User Task Minimum Trigger Interval In Second - User
Task []GetTimeout Ms Databases Database Parameter User Task Timeout M
- catalogs
List<Get
Databases Database Parameter Catalog> - data
Retention List<GetTime In Days Databases Database Parameter Data Retention Time In Day> - default
Ddl List<GetCollations Databases Database Parameter Default Ddl Collation> - enable
Console List<GetOutputs Databases Database Parameter Enable Console Output> - external
Volumes List<GetDatabases Database Parameter External Volume> - log
Levels List<GetDatabases Database Parameter Log Level> - max
Data List<GetExtension Time In Days Databases Database Parameter Max Data Extension Time In Day> - quoted
Identifiers List<GetIgnore Cases Databases Database Parameter Quoted Identifiers Ignore Case> - replace
Invalid List<GetCharacters Databases Database Parameter Replace Invalid Character> - storage
Serialization List<GetPolicies Databases Database Parameter Storage Serialization Policy> - suspend
Task List<GetAfter Num Failures Databases Database Parameter Suspend Task After Num Failure> - task
Auto List<GetRetry Attempts Databases Database Parameter Task Auto Retry Attempt> - trace
Levels List<GetDatabases Database Parameter Trace Level> - user
Task List<GetManaged Initial Warehouse Sizes Databases Database Parameter User Task Managed Initial Warehouse Size> - user
Task List<GetMinimum Trigger Interval In Seconds Databases Database Parameter User Task Minimum Trigger Interval In Second> - user
Task List<GetTimeout Ms Databases Database Parameter User Task Timeout M>
- catalogs
Get
Databases Database Parameter Catalog[] - data
Retention GetTime In Days Databases Database Parameter Data Retention Time In Day[] - default
Ddl GetCollations Databases Database Parameter Default Ddl Collation[] - enable
Console GetOutputs Databases Database Parameter Enable Console Output[] - external
Volumes GetDatabases Database Parameter External Volume[] - log
Levels GetDatabases Database Parameter Log Level[] - max
Data GetExtension Time In Days Databases Database Parameter Max Data Extension Time In Day[] - quoted
Identifiers GetIgnore Cases Databases Database Parameter Quoted Identifiers Ignore Case[] - replace
Invalid GetCharacters Databases Database Parameter Replace Invalid Character[] - storage
Serialization GetPolicies Databases Database Parameter Storage Serialization Policy[] - suspend
Task GetAfter Num Failures Databases Database Parameter Suspend Task After Num Failure[] - task
Auto GetRetry Attempts Databases Database Parameter Task Auto Retry Attempt[] - trace
Levels GetDatabases Database Parameter Trace Level[] - user
Task GetManaged Initial Warehouse Sizes Databases Database Parameter User Task Managed Initial Warehouse Size[] - user
Task GetMinimum Trigger Interval In Seconds Databases Database Parameter User Task Minimum Trigger Interval In Second[] - user
Task GetTimeout Ms Databases Database Parameter User Task Timeout M[]
- catalogs
Sequence[Get
Databases Database Parameter Catalog] - data_
retention_ Sequence[Gettime_ in_ days Databases Database Parameter Data Retention Time In Day] - default_
ddl_ Sequence[Getcollations Databases Database Parameter Default Ddl Collation] - enable_
console_ Sequence[Getoutputs Databases Database Parameter Enable Console Output] - external_
volumes Sequence[GetDatabases Database Parameter External Volume] - log_
levels Sequence[GetDatabases Database Parameter Log Level] - max_
data_ Sequence[Getextension_ time_ in_ days Databases Database Parameter Max Data Extension Time In Day] - quoted_
identifiers_ Sequence[Getignore_ cases Databases Database Parameter Quoted Identifiers Ignore Case] - replace_
invalid_ Sequence[Getcharacters Databases Database Parameter Replace Invalid Character] - storage_
serialization_ Sequence[Getpolicies Databases Database Parameter Storage Serialization Policy] - suspend_
task_ Sequence[Getafter_ num_ failures Databases Database Parameter Suspend Task After Num Failure] - task_
auto_ Sequence[Getretry_ attempts Databases Database Parameter Task Auto Retry Attempt] - trace_
levels Sequence[GetDatabases Database Parameter Trace Level] - user_
task_ Sequence[Getmanaged_ initial_ warehouse_ sizes Databases Database Parameter User Task Managed Initial Warehouse Size] - user_
task_ Sequence[Getminimum_ trigger_ interval_ in_ seconds Databases Database Parameter User Task Minimum Trigger Interval In Second] - user_
task_ Sequence[Gettimeout_ ms Databases Database Parameter User Task Timeout M]
- catalogs List<Property Map>
- data
Retention List<Property Map>Time In Days - default
Ddl List<Property Map>Collations - enable
Console List<Property Map>Outputs - external
Volumes List<Property Map> - log
Levels List<Property Map> - max
Data List<Property Map>Extension Time In Days - quoted
Identifiers List<Property Map>Ignore Cases - replace
Invalid List<Property Map>Characters - storage
Serialization List<Property Map>Policies - suspend
Task List<Property Map>After Num Failures - task
Auto List<Property Map>Retry Attempts - trace
Levels List<Property Map> - user
Task List<Property Map>Managed Initial Warehouse Sizes - user
Task List<Property Map>Minimum Trigger Interval In Seconds - user
Task List<Property Map>Timeout Ms
GetDatabasesDatabaseParameterCatalog
- 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
GetDatabasesDatabaseParameterDataRetentionTimeInDay
- 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
GetDatabasesDatabaseParameterDefaultDdlCollation
- 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
GetDatabasesDatabaseParameterEnableConsoleOutput
- 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
GetDatabasesDatabaseParameterExternalVolume
- 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
GetDatabasesDatabaseParameterLogLevel
- 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
GetDatabasesDatabaseParameterMaxDataExtensionTimeInDay
- 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
GetDatabasesDatabaseParameterQuotedIdentifiersIgnoreCase
- 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
GetDatabasesDatabaseParameterReplaceInvalidCharacter
- 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
GetDatabasesDatabaseParameterStorageSerializationPolicy
- 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
GetDatabasesDatabaseParameterSuspendTaskAfterNumFailure
- 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
GetDatabasesDatabaseParameterTaskAutoRetryAttempt
- 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
GetDatabasesDatabaseParameterTraceLevel
- 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
GetDatabasesDatabaseParameterUserTaskManagedInitialWarehouseSize
- 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
GetDatabasesDatabaseParameterUserTaskMinimumTriggerIntervalInSecond
- 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
GetDatabasesDatabaseParameterUserTaskTimeoutM
- 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
GetDatabasesDatabaseShowOutput
- Comment string
- Created
On string - Dropped
On string - Is
Current bool - Is
Default bool - Kind string
- Name string
- Options string
- Origin string
- Owner string
- Owner
Role stringType - Resource
Group string - Retention
Time int - Transient bool
- Comment string
- Created
On string - Dropped
On string - Is
Current bool - Is
Default bool - Kind string
- Name string
- Options string
- Origin string
- Owner string
- Owner
Role stringType - Resource
Group string - Retention
Time int - Transient bool
- comment String
- created
On String - dropped
On String - is
Current Boolean - is
Default Boolean - kind String
- name String
- options String
- origin String
- owner String
- owner
Role StringType - resource
Group String - retention
Time Integer - transient_ Boolean
- comment string
- created
On string - dropped
On string - is
Current boolean - is
Default boolean - kind string
- name string
- options string
- origin string
- owner string
- owner
Role stringType - resource
Group string - retention
Time number - transient boolean
- comment str
- created_
on str - dropped_
on str - is_
current bool - is_
default bool - kind str
- name str
- options str
- origin str
- owner str
- owner_
role_ strtype - resource_
group str - retention_
time int - transient bool
- comment String
- created
On String - dropped
On String - is
Current Boolean - is
Default Boolean - kind String
- name String
- options String
- origin String
- owner String
- owner
Role StringType - resource
Group String - retention
Time Number - transient Boolean
GetDatabasesLimit
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.