@pulumi/snowflake 2.6.0-alpha.1758005717 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/types/input.d.ts +3 -1
- package/types/output.d.ts +5 -1
- package/warehouse.d.ts +24 -0
- package/warehouse.js +4 -0
- package/warehouse.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/snowflake",
|
|
3
|
-
"version": "2.6.0
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing snowflake cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "snowflake",
|
|
26
|
-
"version": "2.6.0
|
|
26
|
+
"version": "2.6.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -2241,7 +2241,7 @@ export interface GrantPrivilegesToAccountRoleOnAccountObject {
|
|
|
2241
2241
|
*/
|
|
2242
2242
|
objectName: pulumi.Input<string>;
|
|
2243
2243
|
/**
|
|
2244
|
-
* The object type of the account object on which privileges will be granted. Valid values are: USER | RESOURCE MONITOR | WAREHOUSE | COMPUTE POOL | DATABASE | INTEGRATION | FAILOVER GROUP | REPLICATION GROUP | EXTERNAL VOLUME
|
|
2244
|
+
* The object type of the account object on which privileges will be granted. Valid values are: `USER` | `RESOURCE MONITOR` | `WAREHOUSE` | `COMPUTE POOL` | `DATABASE` | `INTEGRATION` | `FAILOVER GROUP` | `REPLICATION GROUP` | `EXTERNAL VOLUME`
|
|
2245
2245
|
*/
|
|
2246
2246
|
objectType: pulumi.Input<string>;
|
|
2247
2247
|
}
|
|
@@ -6551,6 +6551,7 @@ export interface WarehouseShowOutput {
|
|
|
6551
6551
|
comment?: pulumi.Input<string>;
|
|
6552
6552
|
createdOn?: pulumi.Input<string>;
|
|
6553
6553
|
enableQueryAcceleration?: pulumi.Input<boolean>;
|
|
6554
|
+
generation?: pulumi.Input<string>;
|
|
6554
6555
|
isCurrent?: pulumi.Input<boolean>;
|
|
6555
6556
|
isDefault?: pulumi.Input<boolean>;
|
|
6556
6557
|
maxClusterCount?: pulumi.Input<number>;
|
|
@@ -6563,6 +6564,7 @@ export interface WarehouseShowOutput {
|
|
|
6563
6564
|
queryAccelerationMaxScaleFactor?: pulumi.Input<number>;
|
|
6564
6565
|
queued?: pulumi.Input<number>;
|
|
6565
6566
|
quiescing?: pulumi.Input<number>;
|
|
6567
|
+
resourceConstraint?: pulumi.Input<string>;
|
|
6566
6568
|
resourceMonitor?: pulumi.Input<string>;
|
|
6567
6569
|
resumedOn?: pulumi.Input<string>;
|
|
6568
6570
|
running?: pulumi.Input<number>;
|
package/types/output.d.ts
CHANGED
|
@@ -4424,6 +4424,7 @@ export interface GetWarehousesWarehouseShowOutput {
|
|
|
4424
4424
|
comment: string;
|
|
4425
4425
|
createdOn: string;
|
|
4426
4426
|
enableQueryAcceleration: boolean;
|
|
4427
|
+
generation: string;
|
|
4427
4428
|
isCurrent: boolean;
|
|
4428
4429
|
isDefault: boolean;
|
|
4429
4430
|
maxClusterCount: number;
|
|
@@ -4436,6 +4437,7 @@ export interface GetWarehousesWarehouseShowOutput {
|
|
|
4436
4437
|
queryAccelerationMaxScaleFactor: number;
|
|
4437
4438
|
queued: number;
|
|
4438
4439
|
quiescing: number;
|
|
4440
|
+
resourceConstraint: string;
|
|
4439
4441
|
resourceMonitor: string;
|
|
4440
4442
|
resumedOn: string;
|
|
4441
4443
|
running: number;
|
|
@@ -4524,7 +4526,7 @@ export interface GrantPrivilegesToAccountRoleOnAccountObject {
|
|
|
4524
4526
|
*/
|
|
4525
4527
|
objectName: string;
|
|
4526
4528
|
/**
|
|
4527
|
-
* The object type of the account object on which privileges will be granted. Valid values are: USER | RESOURCE MONITOR | WAREHOUSE | COMPUTE POOL | DATABASE | INTEGRATION | FAILOVER GROUP | REPLICATION GROUP | EXTERNAL VOLUME
|
|
4529
|
+
* The object type of the account object on which privileges will be granted. Valid values are: `USER` | `RESOURCE MONITOR` | `WAREHOUSE` | `COMPUTE POOL` | `DATABASE` | `INTEGRATION` | `FAILOVER GROUP` | `REPLICATION GROUP` | `EXTERNAL VOLUME`
|
|
4528
4530
|
*/
|
|
4529
4531
|
objectType: string;
|
|
4530
4532
|
}
|
|
@@ -8812,6 +8814,7 @@ export interface WarehouseShowOutput {
|
|
|
8812
8814
|
comment: string;
|
|
8813
8815
|
createdOn: string;
|
|
8814
8816
|
enableQueryAcceleration: boolean;
|
|
8817
|
+
generation: string;
|
|
8815
8818
|
isCurrent: boolean;
|
|
8816
8819
|
isDefault: boolean;
|
|
8817
8820
|
maxClusterCount: number;
|
|
@@ -8824,6 +8827,7 @@ export interface WarehouseShowOutput {
|
|
|
8824
8827
|
queryAccelerationMaxScaleFactor: number;
|
|
8825
8828
|
queued: number;
|
|
8826
8829
|
quiescing: number;
|
|
8830
|
+
resourceConstraint: string;
|
|
8827
8831
|
resourceMonitor: string;
|
|
8828
8832
|
resumedOn: string;
|
|
8829
8833
|
running: number;
|
package/warehouse.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ export declare class Warehouse extends pulumi.CustomResource {
|
|
|
44
44
|
* Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
45
45
|
*/
|
|
46
46
|
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies the generation for the warehouse. Only available for standard warehouses. Valid values are (case-insensitive): `1` | `2`.
|
|
49
|
+
*/
|
|
50
|
+
readonly generation: pulumi.Output<string | undefined>;
|
|
47
51
|
/**
|
|
48
52
|
* Specifies whether the warehouse is created initially in the ‘Suspended’ state.
|
|
49
53
|
*/
|
|
@@ -72,6 +76,10 @@ export declare class Warehouse extends pulumi.CustomResource {
|
|
|
72
76
|
* (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
|
|
73
77
|
*/
|
|
74
78
|
readonly queryAccelerationMaxScaleFactor: pulumi.Output<number | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* Specifies the resource constraint for the warehouse. Only available for snowpark-optimized warehouses. For setting generation please use the `generation` field. Please check [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/create-warehouse#optional-properties-objectproperties) for required warehouse sizes for each resource constraint. Valid values are (case-insensitive): `MEMORY_1X` | `MEMORY_1X_x86` | `MEMORY_16X` | `MEMORY_16X_x86` | `MEMORY_64X` | `MEMORY_64X_x86`.
|
|
81
|
+
*/
|
|
82
|
+
readonly resourceConstraint: pulumi.Output<string | undefined>;
|
|
75
83
|
/**
|
|
76
84
|
* Specifies the name of a resource monitor that is explicitly assigned to the warehouse. For more information about this resource, see docs.
|
|
77
85
|
*/
|
|
@@ -133,6 +141,10 @@ export interface WarehouseState {
|
|
|
133
141
|
* Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
134
142
|
*/
|
|
135
143
|
fullyQualifiedName?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Specifies the generation for the warehouse. Only available for standard warehouses. Valid values are (case-insensitive): `1` | `2`.
|
|
146
|
+
*/
|
|
147
|
+
generation?: pulumi.Input<string>;
|
|
136
148
|
/**
|
|
137
149
|
* Specifies whether the warehouse is created initially in the ‘Suspended’ state.
|
|
138
150
|
*/
|
|
@@ -161,6 +173,10 @@ export interface WarehouseState {
|
|
|
161
173
|
* (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
|
|
162
174
|
*/
|
|
163
175
|
queryAccelerationMaxScaleFactor?: pulumi.Input<number>;
|
|
176
|
+
/**
|
|
177
|
+
* Specifies the resource constraint for the warehouse. Only available for snowpark-optimized warehouses. For setting generation please use the `generation` field. Please check [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/create-warehouse#optional-properties-objectproperties) for required warehouse sizes for each resource constraint. Valid values are (case-insensitive): `MEMORY_1X` | `MEMORY_1X_x86` | `MEMORY_16X` | `MEMORY_16X_x86` | `MEMORY_64X` | `MEMORY_64X_x86`.
|
|
178
|
+
*/
|
|
179
|
+
resourceConstraint?: pulumi.Input<string>;
|
|
164
180
|
/**
|
|
165
181
|
* Specifies the name of a resource monitor that is explicitly assigned to the warehouse. For more information about this resource, see docs.
|
|
166
182
|
*/
|
|
@@ -210,6 +226,10 @@ export interface WarehouseArgs {
|
|
|
210
226
|
* (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to enable the query acceleration service for queries that rely on this warehouse for compute resources. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
211
227
|
*/
|
|
212
228
|
enableQueryAcceleration?: pulumi.Input<string>;
|
|
229
|
+
/**
|
|
230
|
+
* Specifies the generation for the warehouse. Only available for standard warehouses. Valid values are (case-insensitive): `1` | `2`.
|
|
231
|
+
*/
|
|
232
|
+
generation?: pulumi.Input<string>;
|
|
213
233
|
/**
|
|
214
234
|
* Specifies whether the warehouse is created initially in the ‘Suspended’ state.
|
|
215
235
|
*/
|
|
@@ -234,6 +254,10 @@ export interface WarehouseArgs {
|
|
|
234
254
|
* (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
|
|
235
255
|
*/
|
|
236
256
|
queryAccelerationMaxScaleFactor?: pulumi.Input<number>;
|
|
257
|
+
/**
|
|
258
|
+
* Specifies the resource constraint for the warehouse. Only available for snowpark-optimized warehouses. For setting generation please use the `generation` field. Please check [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/create-warehouse#optional-properties-objectproperties) for required warehouse sizes for each resource constraint. Valid values are (case-insensitive): `MEMORY_1X` | `MEMORY_1X_x86` | `MEMORY_16X` | `MEMORY_16X_x86` | `MEMORY_64X` | `MEMORY_64X_x86`.
|
|
259
|
+
*/
|
|
260
|
+
resourceConstraint?: pulumi.Input<string>;
|
|
237
261
|
/**
|
|
238
262
|
* Specifies the name of a resource monitor that is explicitly assigned to the warehouse. For more information about this resource, see docs.
|
|
239
263
|
*/
|
package/warehouse.js
CHANGED
|
@@ -45,6 +45,7 @@ class Warehouse extends pulumi.CustomResource {
|
|
|
45
45
|
resourceInputs["comment"] = state?.comment;
|
|
46
46
|
resourceInputs["enableQueryAcceleration"] = state?.enableQueryAcceleration;
|
|
47
47
|
resourceInputs["fullyQualifiedName"] = state?.fullyQualifiedName;
|
|
48
|
+
resourceInputs["generation"] = state?.generation;
|
|
48
49
|
resourceInputs["initiallySuspended"] = state?.initiallySuspended;
|
|
49
50
|
resourceInputs["maxClusterCount"] = state?.maxClusterCount;
|
|
50
51
|
resourceInputs["maxConcurrencyLevel"] = state?.maxConcurrencyLevel;
|
|
@@ -52,6 +53,7 @@ class Warehouse extends pulumi.CustomResource {
|
|
|
52
53
|
resourceInputs["name"] = state?.name;
|
|
53
54
|
resourceInputs["parameters"] = state?.parameters;
|
|
54
55
|
resourceInputs["queryAccelerationMaxScaleFactor"] = state?.queryAccelerationMaxScaleFactor;
|
|
56
|
+
resourceInputs["resourceConstraint"] = state?.resourceConstraint;
|
|
55
57
|
resourceInputs["resourceMonitor"] = state?.resourceMonitor;
|
|
56
58
|
resourceInputs["scalingPolicy"] = state?.scalingPolicy;
|
|
57
59
|
resourceInputs["showOutputs"] = state?.showOutputs;
|
|
@@ -66,12 +68,14 @@ class Warehouse extends pulumi.CustomResource {
|
|
|
66
68
|
resourceInputs["autoSuspend"] = args?.autoSuspend;
|
|
67
69
|
resourceInputs["comment"] = args?.comment;
|
|
68
70
|
resourceInputs["enableQueryAcceleration"] = args?.enableQueryAcceleration;
|
|
71
|
+
resourceInputs["generation"] = args?.generation;
|
|
69
72
|
resourceInputs["initiallySuspended"] = args?.initiallySuspended;
|
|
70
73
|
resourceInputs["maxClusterCount"] = args?.maxClusterCount;
|
|
71
74
|
resourceInputs["maxConcurrencyLevel"] = args?.maxConcurrencyLevel;
|
|
72
75
|
resourceInputs["minClusterCount"] = args?.minClusterCount;
|
|
73
76
|
resourceInputs["name"] = args?.name;
|
|
74
77
|
resourceInputs["queryAccelerationMaxScaleFactor"] = args?.queryAccelerationMaxScaleFactor;
|
|
78
|
+
resourceInputs["resourceConstraint"] = args?.resourceConstraint;
|
|
75
79
|
resourceInputs["resourceMonitor"] = args?.resourceMonitor;
|
|
76
80
|
resourceInputs["scalingPolicy"] = args?.scalingPolicy;
|
|
77
81
|
resourceInputs["statementQueuedTimeoutInSeconds"] = args?.statementQueuedTimeoutInSeconds;
|
package/warehouse.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"warehouse.js","sourceRoot":"","sources":["../warehouse.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"warehouse.js","sourceRoot":"","sources":["../warehouse.ts"],"names":[],"mappings":"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"}
|