1. Packages
  2. Snowflake
  3. API Docs
  4. getSchemas
Snowflake v0.59.0 published on Friday, Sep 20, 2024 by Pulumi

snowflake.getSchemas

Explore with Pulumi AI

snowflake logo
Snowflake v0.59.0 published on Friday, Sep 20, 2024 by Pulumi

    !> 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 schemas. Filtering is aligned with the current possibilities for SHOW SCHEMAS query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.

    Using getSchemas

    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 getSchemas(args: GetSchemasArgs, opts?: InvokeOptions): Promise<GetSchemasResult>
    function getSchemasOutput(args: GetSchemasOutputArgs, opts?: InvokeOptions): Output<GetSchemasResult>
    def get_schemas(in_: Optional[GetSchemasIn] = None,
                    like: Optional[str] = None,
                    limit: Optional[GetSchemasLimit] = None,
                    starts_with: Optional[str] = None,
                    with_describe: Optional[bool] = None,
                    with_parameters: Optional[bool] = None,
                    opts: Optional[InvokeOptions] = None) -> GetSchemasResult
    def get_schemas_output(in_: Optional[pulumi.Input[GetSchemasInArgs]] = None,
                    like: Optional[pulumi.Input[str]] = None,
                    limit: Optional[pulumi.Input[GetSchemasLimitArgs]] = 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[GetSchemasResult]
    func GetSchemas(ctx *Context, args *GetSchemasArgs, opts ...InvokeOption) (*GetSchemasResult, error)
    func GetSchemasOutput(ctx *Context, args *GetSchemasOutputArgs, opts ...InvokeOption) GetSchemasResultOutput

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

    public static class GetSchemas 
    {
        public static Task<GetSchemasResult> InvokeAsync(GetSchemasArgs args, InvokeOptions? opts = null)
        public static Output<GetSchemasResult> Invoke(GetSchemasInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchemasResult> getSchemas(GetSchemasArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: snowflake:index/getSchemas:getSchemas
      arguments:
        # arguments dictionary

    The following arguments are supported:

    In GetSchemasIn
    IN clause to filter the list of streamlits
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetSchemasLimit
    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 with starts_with or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    In GetSchemasIn
    IN clause to filter the list of streamlits
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetSchemasLimit
    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 with starts_with or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    in GetSchemasIn
    IN clause to filter the list of streamlits
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetSchemasLimit
    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 with starts_with or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    in GetSchemasIn
    IN clause to filter the list of streamlits
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetSchemasLimit
    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 with starts_with or like.
    startsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe boolean
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters boolean
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    in_ GetSchemasIn
    IN clause to filter the list of streamlits
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetSchemasLimit
    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 with starts_with or like.
    starts_with str
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. 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 SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    in Property Map
    IN clause to filter the list of streamlits
    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 with starts_with or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.

    getSchemas Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Schemas List<GetSchemasSchema>
    Holds the aggregated output of all SCHEMA details queries.
    In GetSchemasIn
    IN clause to filter the list of streamlits
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetSchemasLimit
    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 with starts_with or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    Id string
    The provider-assigned unique ID for this managed resource.
    Schemas []GetSchemasSchema
    Holds the aggregated output of all SCHEMA details queries.
    In GetSchemasIn
    IN clause to filter the list of streamlits
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetSchemasLimit
    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 with starts_with or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    schemas List<GetSchemasSchema>
    Holds the aggregated output of all SCHEMA details queries.
    in GetSchemasIn
    IN clause to filter the list of streamlits
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetSchemasLimit
    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 with starts_with or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    schemas GetSchemasSchema[]
    Holds the aggregated output of all SCHEMA details queries.
    in GetSchemasIn
    IN clause to filter the list of streamlits
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetSchemasLimit
    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 with starts_with or like.
    startsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe boolean
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters boolean
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    id str
    The provider-assigned unique ID for this managed resource.
    schemas Sequence[GetSchemasSchema]
    Holds the aggregated output of all SCHEMA details queries.
    in_ GetSchemasIn
    IN clause to filter the list of streamlits
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetSchemasLimit
    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 with starts_with or like.
    starts_with str
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. 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 SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    schemas List<Property Map>
    Holds the aggregated output of all SCHEMA details queries.
    in Property Map
    IN clause to filter the list of streamlits
    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 with starts_with or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.

    Supporting Types

    GetSchemasIn

    Account bool
    Returns records for the entire account.
    Application string
    Returns records for the specified application.
    ApplicationPackage string
    Returns records for the specified application package.
    Database string
    Returns records for the current database in use or for a specified database (db_name).
    Account bool
    Returns records for the entire account.
    Application string
    Returns records for the specified application.
    ApplicationPackage string
    Returns records for the specified application package.
    Database string
    Returns records for the current database in use or for a specified database (db_name).
    account Boolean
    Returns records for the entire account.
    application String
    Returns records for the specified application.
    applicationPackage String
    Returns records for the specified application package.
    database String
    Returns records for the current database in use or for a specified database (db_name).
    account boolean
    Returns records for the entire account.
    application string
    Returns records for the specified application.
    applicationPackage string
    Returns records for the specified application package.
    database string
    Returns records for the current database in use or for a specified database (db_name).
    account bool
    Returns records for the entire account.
    application str
    Returns records for the specified application.
    application_package str
    Returns records for the specified application package.
    database str
    Returns records for the current database in use or for a specified database (db_name).
    account Boolean
    Returns records for the entire account.
    application String
    Returns records for the specified application.
    applicationPackage String
    Returns records for the specified application package.
    database String
    Returns records for the current database in use or for a specified database (db_name).

    GetSchemasLimit

    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 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.

    GetSchemasSchema

    DescribeOutputs List<GetSchemasSchemaDescribeOutput>
    Holds the output of DESCRIBE SCHEMA.
    Parameters List<GetSchemasSchemaParameter>
    Holds the output of SHOW PARAMETERS FOR SCHEMA.
    ShowOutputs List<GetSchemasSchemaShowOutput>
    Holds the output of SHOW SCHEMAS.
    DescribeOutputs []GetSchemasSchemaDescribeOutput
    Holds the output of DESCRIBE SCHEMA.
    Parameters []GetSchemasSchemaParameter
    Holds the output of SHOW PARAMETERS FOR SCHEMA.
    ShowOutputs []GetSchemasSchemaShowOutput
    Holds the output of SHOW SCHEMAS.
    describeOutputs List<GetSchemasSchemaDescribeOutput>
    Holds the output of DESCRIBE SCHEMA.
    parameters List<GetSchemasSchemaParameter>
    Holds the output of SHOW PARAMETERS FOR SCHEMA.
    showOutputs List<GetSchemasSchemaShowOutput>
    Holds the output of SHOW SCHEMAS.
    describeOutputs GetSchemasSchemaDescribeOutput[]
    Holds the output of DESCRIBE SCHEMA.
    parameters GetSchemasSchemaParameter[]
    Holds the output of SHOW PARAMETERS FOR SCHEMA.
    showOutputs GetSchemasSchemaShowOutput[]
    Holds the output of SHOW SCHEMAS.
    describe_outputs Sequence[GetSchemasSchemaDescribeOutput]
    Holds the output of DESCRIBE SCHEMA.
    parameters Sequence[GetSchemasSchemaParameter]
    Holds the output of SHOW PARAMETERS FOR SCHEMA.
    show_outputs Sequence[GetSchemasSchemaShowOutput]
    Holds the output of SHOW SCHEMAS.
    describeOutputs List<Property Map>
    Holds the output of DESCRIBE SCHEMA.
    parameters List<Property Map>
    Holds the output of SHOW PARAMETERS FOR SCHEMA.
    showOutputs List<Property Map>
    Holds the output of SHOW SCHEMAS.

    GetSchemasSchemaDescribeOutput

    CreatedOn string
    Kind string
    Name string
    CreatedOn string
    Kind string
    Name string
    createdOn String
    kind String
    name String
    createdOn string
    kind string
    name string
    created_on str
    kind str
    name str
    createdOn String
    kind String
    name String

    GetSchemasSchemaParameter

    Catalogs List<GetSchemasSchemaParameterCatalog>
    DataRetentionTimeInDays List<GetSchemasSchemaParameterDataRetentionTimeInDay>
    DefaultDdlCollations List<GetSchemasSchemaParameterDefaultDdlCollation>
    EnableConsoleOutputs List<GetSchemasSchemaParameterEnableConsoleOutput>
    ExternalVolumes List<GetSchemasSchemaParameterExternalVolume>
    LogLevels List<GetSchemasSchemaParameterLogLevel>
    MaxDataExtensionTimeInDays List<GetSchemasSchemaParameterMaxDataExtensionTimeInDay>
    PipeExecutionPauseds List<GetSchemasSchemaParameterPipeExecutionPaused>
    QuotedIdentifiersIgnoreCases List<GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase>
    ReplaceInvalidCharacters List<GetSchemasSchemaParameterReplaceInvalidCharacter>
    StorageSerializationPolicies List<GetSchemasSchemaParameterStorageSerializationPolicy>
    SuspendTaskAfterNumFailures List<GetSchemasSchemaParameterSuspendTaskAfterNumFailure>
    TaskAutoRetryAttempts List<GetSchemasSchemaParameterTaskAutoRetryAttempt>
    TraceLevels List<GetSchemasSchemaParameterTraceLevel>
    UserTaskManagedInitialWarehouseSizes List<GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize>
    UserTaskMinimumTriggerIntervalInSeconds List<GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond>
    UserTaskTimeoutMs List<GetSchemasSchemaParameterUserTaskTimeoutM>
    Catalogs []GetSchemasSchemaParameterCatalog
    DataRetentionTimeInDays []GetSchemasSchemaParameterDataRetentionTimeInDay
    DefaultDdlCollations []GetSchemasSchemaParameterDefaultDdlCollation
    EnableConsoleOutputs []GetSchemasSchemaParameterEnableConsoleOutput
    ExternalVolumes []GetSchemasSchemaParameterExternalVolume
    LogLevels []GetSchemasSchemaParameterLogLevel
    MaxDataExtensionTimeInDays []GetSchemasSchemaParameterMaxDataExtensionTimeInDay
    PipeExecutionPauseds []GetSchemasSchemaParameterPipeExecutionPaused
    QuotedIdentifiersIgnoreCases []GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase
    ReplaceInvalidCharacters []GetSchemasSchemaParameterReplaceInvalidCharacter
    StorageSerializationPolicies []GetSchemasSchemaParameterStorageSerializationPolicy
    SuspendTaskAfterNumFailures []GetSchemasSchemaParameterSuspendTaskAfterNumFailure
    TaskAutoRetryAttempts []GetSchemasSchemaParameterTaskAutoRetryAttempt
    TraceLevels []GetSchemasSchemaParameterTraceLevel
    UserTaskManagedInitialWarehouseSizes []GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize
    UserTaskMinimumTriggerIntervalInSeconds []GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond
    UserTaskTimeoutMs []GetSchemasSchemaParameterUserTaskTimeoutM
    catalogs List<GetSchemasSchemaParameterCatalog>
    dataRetentionTimeInDays List<GetSchemasSchemaParameterDataRetentionTimeInDay>
    defaultDdlCollations List<GetSchemasSchemaParameterDefaultDdlCollation>
    enableConsoleOutputs List<GetSchemasSchemaParameterEnableConsoleOutput>
    externalVolumes List<GetSchemasSchemaParameterExternalVolume>
    logLevels List<GetSchemasSchemaParameterLogLevel>
    maxDataExtensionTimeInDays List<GetSchemasSchemaParameterMaxDataExtensionTimeInDay>
    pipeExecutionPauseds List<GetSchemasSchemaParameterPipeExecutionPaused>
    quotedIdentifiersIgnoreCases List<GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase>
    replaceInvalidCharacters List<GetSchemasSchemaParameterReplaceInvalidCharacter>
    storageSerializationPolicies List<GetSchemasSchemaParameterStorageSerializationPolicy>
    suspendTaskAfterNumFailures List<GetSchemasSchemaParameterSuspendTaskAfterNumFailure>
    taskAutoRetryAttempts List<GetSchemasSchemaParameterTaskAutoRetryAttempt>
    traceLevels List<GetSchemasSchemaParameterTraceLevel>
    userTaskManagedInitialWarehouseSizes List<GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize>
    userTaskMinimumTriggerIntervalInSeconds List<GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond>
    userTaskTimeoutMs List<GetSchemasSchemaParameterUserTaskTimeoutM>
    catalogs GetSchemasSchemaParameterCatalog[]
    dataRetentionTimeInDays GetSchemasSchemaParameterDataRetentionTimeInDay[]
    defaultDdlCollations GetSchemasSchemaParameterDefaultDdlCollation[]
    enableConsoleOutputs GetSchemasSchemaParameterEnableConsoleOutput[]
    externalVolumes GetSchemasSchemaParameterExternalVolume[]
    logLevels GetSchemasSchemaParameterLogLevel[]
    maxDataExtensionTimeInDays GetSchemasSchemaParameterMaxDataExtensionTimeInDay[]
    pipeExecutionPauseds GetSchemasSchemaParameterPipeExecutionPaused[]
    quotedIdentifiersIgnoreCases GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase[]
    replaceInvalidCharacters GetSchemasSchemaParameterReplaceInvalidCharacter[]
    storageSerializationPolicies GetSchemasSchemaParameterStorageSerializationPolicy[]
    suspendTaskAfterNumFailures GetSchemasSchemaParameterSuspendTaskAfterNumFailure[]
    taskAutoRetryAttempts GetSchemasSchemaParameterTaskAutoRetryAttempt[]
    traceLevels GetSchemasSchemaParameterTraceLevel[]
    userTaskManagedInitialWarehouseSizes GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize[]
    userTaskMinimumTriggerIntervalInSeconds GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond[]
    userTaskTimeoutMs GetSchemasSchemaParameterUserTaskTimeoutM[]
    catalogs Sequence[GetSchemasSchemaParameterCatalog]
    data_retention_time_in_days Sequence[GetSchemasSchemaParameterDataRetentionTimeInDay]
    default_ddl_collations Sequence[GetSchemasSchemaParameterDefaultDdlCollation]
    enable_console_outputs Sequence[GetSchemasSchemaParameterEnableConsoleOutput]
    external_volumes Sequence[GetSchemasSchemaParameterExternalVolume]
    log_levels Sequence[GetSchemasSchemaParameterLogLevel]
    max_data_extension_time_in_days Sequence[GetSchemasSchemaParameterMaxDataExtensionTimeInDay]
    pipe_execution_pauseds Sequence[GetSchemasSchemaParameterPipeExecutionPaused]
    quoted_identifiers_ignore_cases Sequence[GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase]
    replace_invalid_characters Sequence[GetSchemasSchemaParameterReplaceInvalidCharacter]
    storage_serialization_policies Sequence[GetSchemasSchemaParameterStorageSerializationPolicy]
    suspend_task_after_num_failures Sequence[GetSchemasSchemaParameterSuspendTaskAfterNumFailure]
    task_auto_retry_attempts Sequence[GetSchemasSchemaParameterTaskAutoRetryAttempt]
    trace_levels Sequence[GetSchemasSchemaParameterTraceLevel]
    user_task_managed_initial_warehouse_sizes Sequence[GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize]
    user_task_minimum_trigger_interval_in_seconds Sequence[GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond]
    user_task_timeout_ms Sequence[GetSchemasSchemaParameterUserTaskTimeoutM]

    GetSchemasSchemaParameterCatalog

    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

    GetSchemasSchemaParameterDataRetentionTimeInDay

    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

    GetSchemasSchemaParameterDefaultDdlCollation

    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

    GetSchemasSchemaParameterEnableConsoleOutput

    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

    GetSchemasSchemaParameterExternalVolume

    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

    GetSchemasSchemaParameterLogLevel

    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

    GetSchemasSchemaParameterMaxDataExtensionTimeInDay

    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

    GetSchemasSchemaParameterPipeExecutionPaused

    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

    GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase

    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

    GetSchemasSchemaParameterReplaceInvalidCharacter

    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

    GetSchemasSchemaParameterStorageSerializationPolicy

    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

    GetSchemasSchemaParameterSuspendTaskAfterNumFailure

    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

    GetSchemasSchemaParameterTaskAutoRetryAttempt

    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

    GetSchemasSchemaParameterTraceLevel

    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

    GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize

    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

    GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond

    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

    GetSchemasSchemaParameterUserTaskTimeoutM

    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

    GetSchemasSchemaShowOutput

    Comment string
    CreatedOn string
    DatabaseName string
    DroppedOn string
    IsCurrent bool
    IsDefault bool
    Name string
    Options string
    Owner string
    OwnerRoleType string
    RetentionTime string
    Comment string
    CreatedOn string
    DatabaseName string
    DroppedOn string
    IsCurrent bool
    IsDefault bool
    Name string
    Options string
    Owner string
    OwnerRoleType string
    RetentionTime string
    comment String
    createdOn String
    databaseName String
    droppedOn String
    isCurrent Boolean
    isDefault Boolean
    name String
    options String
    owner String
    ownerRoleType String
    retentionTime String
    comment string
    createdOn string
    databaseName string
    droppedOn string
    isCurrent boolean
    isDefault boolean
    name string
    options string
    owner string
    ownerRoleType string
    retentionTime string
    comment String
    createdOn String
    databaseName String
    droppedOn String
    isCurrent Boolean
    isDefault Boolean
    name String
    options String
    owner String
    ownerRoleType String
    retentionTime String

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Snowflake v0.59.0 published on Friday, Sep 20, 2024 by Pulumi