published on Saturday, May 9, 2026 by Pulumi
published on Saturday, May 9, 2026 by Pulumi
!> Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to previewFeaturesEnabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
Resource used to manage adaptive warehouse objects. Adaptive Compute is a compute service focused on delivering strong performance with effortless operations. It replaces the fixed compute of the Standard Warehouse with a workload-aware one that adapts to your queries automatically. The system decides how to allocate resources for the best performance, eliminating the need for infrastructure tuning.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
// Basic adaptive warehouse (only required fields)
const basic = new snowflake.WarehouseAdaptive("basic", {name: "my_adaptive_warehouse"});
// Complete adaptive warehouse (all fields set)
const complete = new snowflake.WarehouseAdaptive("complete", {
name: "my_adaptive_warehouse_complete",
comment: "My adaptive warehouse with all options set",
maxQueryPerformanceLevel: "MEDIUM",
queryThroughputMultiplier: 1,
statementQueuedTimeoutInSeconds: 30,
statementTimeoutInSeconds: 3600,
});
import pulumi
import pulumi_snowflake as snowflake
# Basic adaptive warehouse (only required fields)
basic = snowflake.WarehouseAdaptive("basic", name="my_adaptive_warehouse")
# Complete adaptive warehouse (all fields set)
complete = snowflake.WarehouseAdaptive("complete",
name="my_adaptive_warehouse_complete",
comment="My adaptive warehouse with all options set",
max_query_performance_level="MEDIUM",
query_throughput_multiplier=1,
statement_queued_timeout_in_seconds=30,
statement_timeout_in_seconds=3600)
package main
import (
"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Basic adaptive warehouse (only required fields)
_, err := snowflake.NewWarehouseAdaptive(ctx, "basic", &snowflake.WarehouseAdaptiveArgs{
Name: pulumi.String("my_adaptive_warehouse"),
})
if err != nil {
return err
}
// Complete adaptive warehouse (all fields set)
_, err = snowflake.NewWarehouseAdaptive(ctx, "complete", &snowflake.WarehouseAdaptiveArgs{
Name: pulumi.String("my_adaptive_warehouse_complete"),
Comment: pulumi.String("My adaptive warehouse with all options set"),
MaxQueryPerformanceLevel: pulumi.String("MEDIUM"),
QueryThroughputMultiplier: pulumi.Int(1),
StatementQueuedTimeoutInSeconds: pulumi.Int(30),
StatementTimeoutInSeconds: pulumi.Int(3600),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
// Basic adaptive warehouse (only required fields)
var basic = new Snowflake.WarehouseAdaptive("basic", new()
{
Name = "my_adaptive_warehouse",
});
// Complete adaptive warehouse (all fields set)
var complete = new Snowflake.WarehouseAdaptive("complete", new()
{
Name = "my_adaptive_warehouse_complete",
Comment = "My adaptive warehouse with all options set",
MaxQueryPerformanceLevel = "MEDIUM",
QueryThroughputMultiplier = 1,
StatementQueuedTimeoutInSeconds = 30,
StatementTimeoutInSeconds = 3600,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.WarehouseAdaptive;
import com.pulumi.snowflake.WarehouseAdaptiveArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Basic adaptive warehouse (only required fields)
var basic = new WarehouseAdaptive("basic", WarehouseAdaptiveArgs.builder()
.name("my_adaptive_warehouse")
.build());
// Complete adaptive warehouse (all fields set)
var complete = new WarehouseAdaptive("complete", WarehouseAdaptiveArgs.builder()
.name("my_adaptive_warehouse_complete")
.comment("My adaptive warehouse with all options set")
.maxQueryPerformanceLevel("MEDIUM")
.queryThroughputMultiplier(1)
.statementQueuedTimeoutInSeconds(30)
.statementTimeoutInSeconds(3600)
.build());
}
}
resources:
# Basic adaptive warehouse (only required fields)
basic:
type: snowflake:WarehouseAdaptive
properties:
name: my_adaptive_warehouse
# Complete adaptive warehouse (all fields set)
complete:
type: snowflake:WarehouseAdaptive
properties:
name: my_adaptive_warehouse_complete
comment: My adaptive warehouse with all options set
maxQueryPerformanceLevel: MEDIUM
queryThroughputMultiplier: 1
statementQueuedTimeoutInSeconds: 30
statementTimeoutInSeconds: 3600
Example coming soon!
Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.
Note If a field has a default value, it is shown next to the type in the schema.
Create WarehouseAdaptive Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WarehouseAdaptive(name: string, args?: WarehouseAdaptiveArgs, opts?: CustomResourceOptions);@overload
def WarehouseAdaptive(resource_name: str,
args: Optional[WarehouseAdaptiveArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def WarehouseAdaptive(resource_name: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
max_query_performance_level: Optional[str] = None,
name: Optional[str] = None,
query_throughput_multiplier: Optional[int] = None,
statement_queued_timeout_in_seconds: Optional[int] = None,
statement_timeout_in_seconds: Optional[int] = None)func NewWarehouseAdaptive(ctx *Context, name string, args *WarehouseAdaptiveArgs, opts ...ResourceOption) (*WarehouseAdaptive, error)public WarehouseAdaptive(string name, WarehouseAdaptiveArgs? args = null, CustomResourceOptions? opts = null)
public WarehouseAdaptive(String name, WarehouseAdaptiveArgs args)
public WarehouseAdaptive(String name, WarehouseAdaptiveArgs args, CustomResourceOptions options)
type: snowflake:WarehouseAdaptive
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "snowflake_warehouseadaptive" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args WarehouseAdaptiveArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WarehouseAdaptiveArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WarehouseAdaptiveArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WarehouseAdaptiveArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WarehouseAdaptiveArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var warehouseAdaptiveResource = new Snowflake.WarehouseAdaptive("warehouseAdaptiveResource", new()
{
Comment = "string",
MaxQueryPerformanceLevel = "string",
Name = "string",
QueryThroughputMultiplier = 0,
StatementQueuedTimeoutInSeconds = 0,
StatementTimeoutInSeconds = 0,
});
example, err := snowflake.NewWarehouseAdaptive(ctx, "warehouseAdaptiveResource", &snowflake.WarehouseAdaptiveArgs{
Comment: pulumi.String("string"),
MaxQueryPerformanceLevel: pulumi.String("string"),
Name: pulumi.String("string"),
QueryThroughputMultiplier: pulumi.Int(0),
StatementQueuedTimeoutInSeconds: pulumi.Int(0),
StatementTimeoutInSeconds: pulumi.Int(0),
})
resource "snowflake_warehouseadaptive" "warehouseAdaptiveResource" {
comment = "string"
max_query_performance_level = "string"
name = "string"
query_throughput_multiplier = 0
statement_queued_timeout_in_seconds = 0
statement_timeout_in_seconds = 0
}
var warehouseAdaptiveResource = new WarehouseAdaptive("warehouseAdaptiveResource", WarehouseAdaptiveArgs.builder()
.comment("string")
.maxQueryPerformanceLevel("string")
.name("string")
.queryThroughputMultiplier(0)
.statementQueuedTimeoutInSeconds(0)
.statementTimeoutInSeconds(0)
.build());
warehouse_adaptive_resource = snowflake.WarehouseAdaptive("warehouseAdaptiveResource",
comment="string",
max_query_performance_level="string",
name="string",
query_throughput_multiplier=0,
statement_queued_timeout_in_seconds=0,
statement_timeout_in_seconds=0)
const warehouseAdaptiveResource = new snowflake.WarehouseAdaptive("warehouseAdaptiveResource", {
comment: "string",
maxQueryPerformanceLevel: "string",
name: "string",
queryThroughputMultiplier: 0,
statementQueuedTimeoutInSeconds: 0,
statementTimeoutInSeconds: 0,
});
type: snowflake:WarehouseAdaptive
properties:
comment: string
maxQueryPerformanceLevel: string
name: string
queryThroughputMultiplier: 0
statementQueuedTimeoutInSeconds: 0
statementTimeoutInSeconds: 0
WarehouseAdaptive Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WarehouseAdaptive resource accepts the following input properties:
- Comment string
- Specifies a comment for the adaptive warehouse.
- Max
Query stringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - Name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Query
Throughput intMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - Statement
Queued intTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- Statement
Timeout intIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- Comment string
- Specifies a comment for the adaptive warehouse.
- Max
Query stringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - Name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Query
Throughput intMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - Statement
Queued intTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- Statement
Timeout intIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- comment string
- Specifies a comment for the adaptive warehouse.
- max_
query_ stringperformance_ level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query_
throughput_ numbermultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - statement_
queued_ numbertimeout_ in_ seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement_
timeout_ numberin_ seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- comment String
- Specifies a comment for the adaptive warehouse.
- max
Query StringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name String
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Throughput IntegerMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - statement
Queued IntegerTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement
Timeout IntegerIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- comment string
- Specifies a comment for the adaptive warehouse.
- max
Query stringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Throughput numberMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - statement
Queued numberTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement
Timeout numberIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- comment str
- Specifies a comment for the adaptive warehouse.
- max_
query_ strperformance_ level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name str
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query_
throughput_ intmultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - statement_
queued_ inttimeout_ in_ seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement_
timeout_ intin_ seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- comment String
- Specifies a comment for the adaptive warehouse.
- max
Query StringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name String
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Throughput NumberMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - statement
Queued NumberTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement
Timeout NumberIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
Outputs
All input properties are implicitly available as output properties. Additionally, the WarehouseAdaptive resource produces the following output properties:
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parameters
List<Warehouse
Adaptive Parameter> - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - Show
Outputs List<WarehouseAdaptive Show Output> - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - Warehouse
Type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parameters
[]Warehouse
Adaptive Parameter - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - Show
Outputs []WarehouseAdaptive Show Output - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - Warehouse
Type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- fully_
qualified_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- parameters list(object)
- Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - show_
outputs list(object) - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - warehouse_
type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- parameters
List<Warehouse
Adaptive Parameter> - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - show
Outputs List<WarehouseAdaptive Show Output> - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - warehouse
Type String - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- parameters
Warehouse
Adaptive Parameter[] - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - show
Outputs WarehouseAdaptive Show Output[] - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - warehouse
Type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- id str
- The provider-assigned unique ID for this managed resource.
- parameters
Sequence[Warehouse
Adaptive Parameter] - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - show_
outputs Sequence[WarehouseAdaptive Show Output] - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - warehouse_
type str - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- parameters List<Property Map>
- Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - show
Outputs List<Property Map> - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - warehouse
Type String - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
Look up Existing WarehouseAdaptive Resource
Get an existing WarehouseAdaptive resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WarehouseAdaptiveState, opts?: CustomResourceOptions): WarehouseAdaptive@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
fully_qualified_name: Optional[str] = None,
max_query_performance_level: Optional[str] = None,
name: Optional[str] = None,
parameters: Optional[Sequence[WarehouseAdaptiveParameterArgs]] = None,
query_throughput_multiplier: Optional[int] = None,
show_outputs: Optional[Sequence[WarehouseAdaptiveShowOutputArgs]] = None,
statement_queued_timeout_in_seconds: Optional[int] = None,
statement_timeout_in_seconds: Optional[int] = None,
warehouse_type: Optional[str] = None) -> WarehouseAdaptivefunc GetWarehouseAdaptive(ctx *Context, name string, id IDInput, state *WarehouseAdaptiveState, opts ...ResourceOption) (*WarehouseAdaptive, error)public static WarehouseAdaptive Get(string name, Input<string> id, WarehouseAdaptiveState? state, CustomResourceOptions? opts = null)public static WarehouseAdaptive get(String name, Output<String> id, WarehouseAdaptiveState state, CustomResourceOptions options)resources: _: type: snowflake:WarehouseAdaptive get: id: ${id}import {
to = snowflake_warehouseadaptive.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Comment string
- Specifies a comment for the adaptive warehouse.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Max
Query stringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - Name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Parameters
List<Warehouse
Adaptive Parameter> - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - Query
Throughput intMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - Show
Outputs List<WarehouseAdaptive Show Output> - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - Statement
Queued intTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- Statement
Timeout intIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- Warehouse
Type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- Comment string
- Specifies a comment for the adaptive warehouse.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Max
Query stringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - Name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Parameters
[]Warehouse
Adaptive Parameter Args - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - Query
Throughput intMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - Show
Outputs []WarehouseAdaptive Show Output Args - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - Statement
Queued intTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- Statement
Timeout intIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- Warehouse
Type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- comment string
- Specifies a comment for the adaptive warehouse.
- fully_
qualified_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- max_
query_ stringperformance_ level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters list(object)
- Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - query_
throughput_ numbermultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - show_
outputs list(object) - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - statement_
queued_ numbertimeout_ in_ seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement_
timeout_ numberin_ seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- warehouse_
type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- comment String
- Specifies a comment for the adaptive warehouse.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- max
Query StringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name String
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters
List<Warehouse
Adaptive Parameter> - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - query
Throughput IntegerMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - show
Outputs List<WarehouseAdaptive Show Output> - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - statement
Queued IntegerTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement
Timeout IntegerIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- warehouse
Type String - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- comment string
- Specifies a comment for the adaptive warehouse.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- max
Query stringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name string
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters
Warehouse
Adaptive Parameter[] - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - query
Throughput numberMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - show
Outputs WarehouseAdaptive Show Output[] - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - statement
Queued numberTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement
Timeout numberIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- warehouse
Type string - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- comment str
- Specifies a comment for the adaptive warehouse.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- max_
query_ strperformance_ level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name str
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters
Sequence[Warehouse
Adaptive Parameter Args] - Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - query_
throughput_ intmultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - show_
outputs Sequence[WarehouseAdaptive Show Output Args] - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - statement_
queued_ inttimeout_ in_ seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement_
timeout_ intin_ seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- warehouse_
type str - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
- comment String
- Specifies a comment for the adaptive warehouse.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- max
Query StringPerformance Level - Specifies the maximum query performance level for the adaptive warehouse. Determines the initial compute capacity. Valid values are (case-insensitive):
XSMALL|SMALL|MEDIUM|LARGE|XLARGE|XXLARGE|XXXLARGE|X4LARGE. - name String
- Identifier for the adaptive warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters List<Property Map>
- Outputs the result of
SHOW PARAMETERS IN WAREHOUSEfor the given adaptive warehouse. - query
Throughput NumberMultiplier - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
-1)) Specifies the query throughput multiplier for the adaptive warehouse. - show
Outputs List<Property Map> - Outputs the result of
SHOW WAREHOUSESfor the given adaptive warehouse. - statement
Queued NumberTimeout In Seconds - Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
- statement
Timeout NumberIn Seconds - Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system.
- warehouse
Type String - Specifies the type for the adaptive warehouse. This field is used for checking external changes and recreating the resource if needed.
Supporting Types
WarehouseAdaptiveParameter, WarehouseAdaptiveParameterArgs
WarehouseAdaptiveParameterStatementQueuedTimeoutInSecond, WarehouseAdaptiveParameterStatementQueuedTimeoutInSecondArgs
- 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
WarehouseAdaptiveParameterStatementTimeoutInSecond, WarehouseAdaptiveParameterStatementTimeoutInSecondArgs
- 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
WarehouseAdaptiveShowOutput, WarehouseAdaptiveShowOutputArgs
- Auto
Resume bool - Available double
- Comment string
- Created
On string - Is
Current bool - Is
Default bool - Max
Query stringPerformance Level - Name string
- Other double
- Owner string
- Owner
Role stringType - Provisioning double
- Query
Throughput intMultiplier - Queued int
- Quiescing double
- Resource
Monitor string - Resumed
On string - Running int
- State string
- Type string
- Updated
On string
- Auto
Resume bool - Available float64
- Comment string
- Created
On string - Is
Current bool - Is
Default bool - Max
Query stringPerformance Level - Name string
- Other float64
- Owner string
- Owner
Role stringType - Provisioning float64
- Query
Throughput intMultiplier - Queued int
- Quiescing float64
- Resource
Monitor string - Resumed
On string - Running int
- State string
- Type string
- Updated
On string
- auto_
resume bool - available number
- comment string
- created_
on string - is_
current bool - is_
default bool - max_
query_ stringperformance_ level - name string
- other number
- owner string
- owner_
role_ stringtype - provisioning number
- query_
throughput_ numbermultiplier - queued number
- quiescing number
- resource_
monitor string - resumed_
on string - running number
- state string
- type string
- updated_
on string
- auto
Resume Boolean - available Double
- comment String
- created
On String - is
Current Boolean - is
Default Boolean - max
Query StringPerformance Level - name String
- other Double
- owner String
- owner
Role StringType - provisioning Double
- query
Throughput IntegerMultiplier - queued Integer
- quiescing Double
- resource
Monitor String - resumed
On String - running Integer
- state String
- type String
- updated
On String
- auto
Resume boolean - available number
- comment string
- created
On string - is
Current boolean - is
Default boolean - max
Query stringPerformance Level - name string
- other number
- owner string
- owner
Role stringType - provisioning number
- query
Throughput numberMultiplier - queued number
- quiescing number
- resource
Monitor string - resumed
On string - running number
- state string
- type string
- updated
On string
- auto_
resume bool - available float
- comment str
- created_
on str - is_
current bool - is_
default bool - max_
query_ strperformance_ level - name str
- other float
- owner str
- owner_
role_ strtype - provisioning float
- query_
throughput_ intmultiplier - queued int
- quiescing float
- resource_
monitor str - resumed_
on str - running int
- state str
- type str
- updated_
on str
- auto
Resume Boolean - available Number
- comment String
- created
On String - is
Current Boolean - is
Default Boolean - max
Query StringPerformance Level - name String
- other Number
- owner String
- owner
Role StringType - provisioning Number
- query
Throughput NumberMultiplier - queued Number
- quiescing Number
- resource
Monitor String - resumed
On String - running Number
- state String
- type String
- updated
On String
Import
$ pulumi import snowflake:index/warehouseAdaptive:WarehouseAdaptive example '"<warehouse_name>"'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflakeTerraform Provider.
published on Saturday, May 9, 2026 by Pulumi
