@pulumi/snowflake 2.10.0-alpha.1763622300 → 2.10.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/config/vars.d.ts +8 -0
- package/config/vars.js +12 -0
- package/config/vars.js.map +1 -1
- package/getNotebooks.d.ts +86 -0
- package/getNotebooks.js +40 -0
- package/getNotebooks.js.map +1 -0
- package/getSemanticViews.d.ts +90 -0
- package/getSemanticViews.js +44 -0
- package/getSemanticViews.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +20 -4
- package/index.js.map +1 -1
- package/notebook.d.ts +177 -0
- package/notebook.js +84 -0
- package/notebook.js.map +1 -0
- package/package.json +2 -2
- package/provider.d.ts +8 -0
- package/provider.js +2 -0
- package/provider.js.map +1 -1
- package/semanticView.d.ts +126 -0
- package/semanticView.js +87 -0
- package/semanticView.js.map +1 -0
- package/task.d.ts +3 -3
- package/types/input.d.ts +317 -12
- package/types/output.d.ts +352 -12
package/types/input.d.ts
CHANGED
|
@@ -1715,6 +1715,26 @@ export interface GetMaskingPoliciesLimitArgs {
|
|
|
1715
1715
|
*/
|
|
1716
1716
|
rows: pulumi.Input<number>;
|
|
1717
1717
|
}
|
|
1718
|
+
export interface GetNotebooksLimit {
|
|
1719
|
+
/**
|
|
1720
|
+
* 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.
|
|
1721
|
+
*/
|
|
1722
|
+
from?: string;
|
|
1723
|
+
/**
|
|
1724
|
+
* The maximum number of rows to return.
|
|
1725
|
+
*/
|
|
1726
|
+
rows: number;
|
|
1727
|
+
}
|
|
1728
|
+
export interface GetNotebooksLimitArgs {
|
|
1729
|
+
/**
|
|
1730
|
+
* 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.
|
|
1731
|
+
*/
|
|
1732
|
+
from?: pulumi.Input<string>;
|
|
1733
|
+
/**
|
|
1734
|
+
* The maximum number of rows to return.
|
|
1735
|
+
*/
|
|
1736
|
+
rows: pulumi.Input<number>;
|
|
1737
|
+
}
|
|
1718
1738
|
export interface GetRowAccessPoliciesIn {
|
|
1719
1739
|
/**
|
|
1720
1740
|
* Returns records for the entire account.
|
|
@@ -1879,6 +1899,54 @@ export interface GetSecretsInArgs {
|
|
|
1879
1899
|
*/
|
|
1880
1900
|
schema?: pulumi.Input<string>;
|
|
1881
1901
|
}
|
|
1902
|
+
export interface GetSemanticViewsIn {
|
|
1903
|
+
/**
|
|
1904
|
+
* Returns records for the entire account.
|
|
1905
|
+
*/
|
|
1906
|
+
account?: boolean;
|
|
1907
|
+
/**
|
|
1908
|
+
* Returns records for the current database in use or for a specified database.
|
|
1909
|
+
*/
|
|
1910
|
+
database?: string;
|
|
1911
|
+
/**
|
|
1912
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
1913
|
+
*/
|
|
1914
|
+
schema?: string;
|
|
1915
|
+
}
|
|
1916
|
+
export interface GetSemanticViewsInArgs {
|
|
1917
|
+
/**
|
|
1918
|
+
* Returns records for the entire account.
|
|
1919
|
+
*/
|
|
1920
|
+
account?: pulumi.Input<boolean>;
|
|
1921
|
+
/**
|
|
1922
|
+
* Returns records for the current database in use or for a specified database.
|
|
1923
|
+
*/
|
|
1924
|
+
database?: pulumi.Input<string>;
|
|
1925
|
+
/**
|
|
1926
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
1927
|
+
*/
|
|
1928
|
+
schema?: pulumi.Input<string>;
|
|
1929
|
+
}
|
|
1930
|
+
export interface GetSemanticViewsLimit {
|
|
1931
|
+
/**
|
|
1932
|
+
* 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.
|
|
1933
|
+
*/
|
|
1934
|
+
from?: string;
|
|
1935
|
+
/**
|
|
1936
|
+
* The maximum number of rows to return.
|
|
1937
|
+
*/
|
|
1938
|
+
rows: number;
|
|
1939
|
+
}
|
|
1940
|
+
export interface GetSemanticViewsLimitArgs {
|
|
1941
|
+
/**
|
|
1942
|
+
* 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.
|
|
1943
|
+
*/
|
|
1944
|
+
from?: pulumi.Input<string>;
|
|
1945
|
+
/**
|
|
1946
|
+
* The maximum number of rows to return.
|
|
1947
|
+
*/
|
|
1948
|
+
rows: pulumi.Input<number>;
|
|
1949
|
+
}
|
|
1882
1950
|
export interface GetServicesIn {
|
|
1883
1951
|
/**
|
|
1884
1952
|
* Returns records for the entire account.
|
|
@@ -2327,7 +2395,7 @@ export interface GrantOwnershipOn {
|
|
|
2327
2395
|
*/
|
|
2328
2396
|
objectName?: pulumi.Input<string>;
|
|
2329
2397
|
/**
|
|
2330
|
-
* Specifies the type of object on which you are transferring ownership. Available values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | COMPUTE POOL | DATA METRIC FUNCTION | DATABASE | DATABASE ROLE | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | EXTERNAL VOLUME | FAILOVER GROUP | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | ICEBERG TABLE | IMAGE REPOSITORY | INTEGRATION | MATERIALIZED VIEW | NETWORK POLICY | NETWORK RULE | PACKAGES POLICY | PIPE | PROCEDURE | MASKING POLICY | PASSWORD POLICY | PROJECTION POLICY | REPLICATION GROUP | RESOURCE MONITOR | ROLE | ROW ACCESS POLICY | SCHEMA | SESSION POLICY | SECRET | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | USER | VIEW | WAREHOUSE
|
|
2398
|
+
* Specifies the type of object on which you are transferring ownership. Available values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | COMPUTE POOL | DATA METRIC FUNCTION | DATABASE | DATABASE ROLE | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | EXTERNAL VOLUME | FAILOVER GROUP | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | ICEBERG TABLE | IMAGE REPOSITORY | INTEGRATION | MATERIALIZED VIEW | NETWORK POLICY | NETWORK RULE | PACKAGES POLICY | PIPE | PROCEDURE | MASKING POLICY | PASSWORD POLICY | PROJECTION POLICY | REPLICATION GROUP | RESOURCE MONITOR | ROLE | ROW ACCESS POLICY | SCHEMA | SESSION POLICY | SECRET | SEMANTIC VIEW | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | USER | VIEW | WAREHOUSE
|
|
2331
2399
|
*/
|
|
2332
2400
|
objectType?: pulumi.Input<string>;
|
|
2333
2401
|
}
|
|
@@ -2341,7 +2409,7 @@ export interface GrantOwnershipOnAll {
|
|
|
2341
2409
|
*/
|
|
2342
2410
|
inSchema?: pulumi.Input<string>;
|
|
2343
2411
|
/**
|
|
2344
|
-
* Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES |
|
|
2412
|
+
* Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | EXTERNAL VOLUMES | FAILOVER GROUPS | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | IMAGE REPOSITORIES | INTEGRATIONS | MATERIALIZED VIEWS | NETWORK POLICIES | NETWORK RULES | PACKAGES POLICIES | PIPES | PROCEDURES | MASKING POLICIES | PASSWORD POLICIES | PROJECTION POLICIES | REPLICATION GROUPS | RESOURCE MONITORS | ROLES | ROW ACCESS POLICIES | SCHEMAS | SESSION POLICIES | SECRETS | SEMANTIC VIEWS | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | USERS | VIEWS | WAREHOUSES. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#required-parameters).
|
|
2345
2413
|
*/
|
|
2346
2414
|
objectTypePlural: pulumi.Input<string>;
|
|
2347
2415
|
}
|
|
@@ -2355,7 +2423,7 @@ export interface GrantOwnershipOnFuture {
|
|
|
2355
2423
|
*/
|
|
2356
2424
|
inSchema?: pulumi.Input<string>;
|
|
2357
2425
|
/**
|
|
2358
|
-
* Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES |
|
|
2426
|
+
* Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | EXTERNAL VOLUMES | FAILOVER GROUPS | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | IMAGE REPOSITORIES | INTEGRATIONS | MATERIALIZED VIEWS | NETWORK POLICIES | NETWORK RULES | PACKAGES POLICIES | PIPES | PROCEDURES | MASKING POLICIES | PASSWORD POLICIES | PROJECTION POLICIES | REPLICATION GROUPS | RESOURCE MONITORS | ROLES | ROW ACCESS POLICIES | SCHEMAS | SESSION POLICIES | SECRETS | SEMANTIC VIEWS | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | USERS | VIEWS | WAREHOUSES. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#required-parameters).
|
|
2359
2427
|
*/
|
|
2360
2428
|
objectTypePlural: pulumi.Input<string>;
|
|
2361
2429
|
}
|
|
@@ -2365,7 +2433,7 @@ export interface GrantPrivilegesToAccountRoleOnAccountObject {
|
|
|
2365
2433
|
*/
|
|
2366
2434
|
objectName: pulumi.Input<string>;
|
|
2367
2435
|
/**
|
|
2368
|
-
* 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`
|
|
2436
|
+
* The object type of the account object on which privileges will be granted. Valid values are: `USER` | `RESOURCE MONITOR` | `WAREHOUSE` | `COMPUTE POOL` | `DATABASE` | `INTEGRATION` | `CONNECTION` | `FAILOVER GROUP` | `REPLICATION GROUP` | `EXTERNAL VOLUME`
|
|
2369
2437
|
*/
|
|
2370
2438
|
objectType: pulumi.Input<string>;
|
|
2371
2439
|
}
|
|
@@ -2397,7 +2465,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObject {
|
|
|
2397
2465
|
*/
|
|
2398
2466
|
objectName?: pulumi.Input<string>;
|
|
2399
2467
|
/**
|
|
2400
|
-
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | TABLE | TAG | TASK | VIEW
|
|
2468
|
+
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | STORAGE LIFECYCLE POLICY | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | ONLINE FEATURE TABLE | TABLE | TAG | TASK | VIEW | WORKSPACE
|
|
2401
2469
|
*/
|
|
2402
2470
|
objectType?: pulumi.Input<string>;
|
|
2403
2471
|
}
|
|
@@ -2405,7 +2473,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectAll {
|
|
|
2405
2473
|
inDatabase?: pulumi.Input<string>;
|
|
2406
2474
|
inSchema?: pulumi.Input<string>;
|
|
2407
2475
|
/**
|
|
2408
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | TABLES | TAGS | TASKS | VIEWS.
|
|
2476
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TAGS | TASKS | VIEWS.
|
|
2409
2477
|
*/
|
|
2410
2478
|
objectTypePlural: pulumi.Input<string>;
|
|
2411
2479
|
}
|
|
@@ -2413,7 +2481,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectFuture {
|
|
|
2413
2481
|
inDatabase?: pulumi.Input<string>;
|
|
2414
2482
|
inSchema?: pulumi.Input<string>;
|
|
2415
2483
|
/**
|
|
2416
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | TABLES | TASKS | VIEWS.
|
|
2484
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TASKS | VIEWS.
|
|
2417
2485
|
*/
|
|
2418
2486
|
objectTypePlural: pulumi.Input<string>;
|
|
2419
2487
|
}
|
|
@@ -2445,7 +2513,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObject {
|
|
|
2445
2513
|
*/
|
|
2446
2514
|
objectName?: pulumi.Input<string>;
|
|
2447
2515
|
/**
|
|
2448
|
-
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | TABLE | TAG | TASK | VIEW
|
|
2516
|
+
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | STORAGE LIFECYCLE POLICY | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | ONLINE FEATURE TABLE | TABLE | TAG | TASK | VIEW | WORKSPACE
|
|
2449
2517
|
*/
|
|
2450
2518
|
objectType?: pulumi.Input<string>;
|
|
2451
2519
|
}
|
|
@@ -2459,7 +2527,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectAll {
|
|
|
2459
2527
|
*/
|
|
2460
2528
|
inSchema?: pulumi.Input<string>;
|
|
2461
2529
|
/**
|
|
2462
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | TABLES | TAGS | TASKS | VIEWS.
|
|
2530
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TAGS | TASKS | VIEWS.
|
|
2463
2531
|
*/
|
|
2464
2532
|
objectTypePlural: pulumi.Input<string>;
|
|
2465
2533
|
}
|
|
@@ -2473,7 +2541,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture {
|
|
|
2473
2541
|
*/
|
|
2474
2542
|
inSchema?: pulumi.Input<string>;
|
|
2475
2543
|
/**
|
|
2476
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | TABLES | TASKS | VIEWS.
|
|
2544
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TASKS | VIEWS.
|
|
2477
2545
|
*/
|
|
2478
2546
|
objectTypePlural: pulumi.Input<string>;
|
|
2479
2547
|
}
|
|
@@ -3215,6 +3283,59 @@ export interface NetworkPolicyShowOutput {
|
|
|
3215
3283
|
entriesInBlockedNetworkRules?: pulumi.Input<number>;
|
|
3216
3284
|
name?: pulumi.Input<string>;
|
|
3217
3285
|
}
|
|
3286
|
+
export interface NotebookDescribeOutput {
|
|
3287
|
+
codeWarehouse?: pulumi.Input<string>;
|
|
3288
|
+
comment?: pulumi.Input<string>;
|
|
3289
|
+
computePool?: pulumi.Input<string>;
|
|
3290
|
+
defaultPackages?: pulumi.Input<string>;
|
|
3291
|
+
defaultVersion?: pulumi.Input<string>;
|
|
3292
|
+
defaultVersionAlias?: pulumi.Input<string>;
|
|
3293
|
+
defaultVersionGitCommitHash?: pulumi.Input<string>;
|
|
3294
|
+
defaultVersionLocationUri?: pulumi.Input<string>;
|
|
3295
|
+
defaultVersionName?: pulumi.Input<string>;
|
|
3296
|
+
defaultVersionSourceLocationUri?: pulumi.Input<string>;
|
|
3297
|
+
externalAccessIntegrations?: pulumi.Input<string>;
|
|
3298
|
+
externalAccessSecrets?: pulumi.Input<string>;
|
|
3299
|
+
idleAutoShutdownTimeSeconds?: pulumi.Input<number>;
|
|
3300
|
+
importUrls?: pulumi.Input<string>;
|
|
3301
|
+
lastVersionAlias?: pulumi.Input<string>;
|
|
3302
|
+
lastVersionGitCommitHash?: pulumi.Input<string>;
|
|
3303
|
+
lastVersionLocationUri?: pulumi.Input<string>;
|
|
3304
|
+
lastVersionName?: pulumi.Input<string>;
|
|
3305
|
+
lastVersionSourceLocationUri?: pulumi.Input<string>;
|
|
3306
|
+
liveVersionLocationUri?: pulumi.Input<string>;
|
|
3307
|
+
mainFile?: pulumi.Input<string>;
|
|
3308
|
+
name?: pulumi.Input<string>;
|
|
3309
|
+
owner?: pulumi.Input<string>;
|
|
3310
|
+
queryWarehouse?: pulumi.Input<string>;
|
|
3311
|
+
runtimeEnvironmentVersion?: pulumi.Input<string>;
|
|
3312
|
+
runtimeName?: pulumi.Input<string>;
|
|
3313
|
+
title?: pulumi.Input<string>;
|
|
3314
|
+
urlId?: pulumi.Input<string>;
|
|
3315
|
+
userPackages?: pulumi.Input<string>;
|
|
3316
|
+
}
|
|
3317
|
+
export interface NotebookFrom {
|
|
3318
|
+
/**
|
|
3319
|
+
* Location of the .ipynb file in the stage.
|
|
3320
|
+
*/
|
|
3321
|
+
path?: pulumi.Input<string>;
|
|
3322
|
+
/**
|
|
3323
|
+
* Identifier of the stage where the .ipynb file is located.
|
|
3324
|
+
*/
|
|
3325
|
+
stage: pulumi.Input<string>;
|
|
3326
|
+
}
|
|
3327
|
+
export interface NotebookShowOutput {
|
|
3328
|
+
codeWarehouse?: pulumi.Input<string>;
|
|
3329
|
+
comment?: pulumi.Input<string>;
|
|
3330
|
+
createdOn?: pulumi.Input<string>;
|
|
3331
|
+
databaseName?: pulumi.Input<string>;
|
|
3332
|
+
name?: pulumi.Input<string>;
|
|
3333
|
+
owner?: pulumi.Input<string>;
|
|
3334
|
+
ownerRoleType?: pulumi.Input<string>;
|
|
3335
|
+
queryWarehouse?: pulumi.Input<string>;
|
|
3336
|
+
schemaName?: pulumi.Input<string>;
|
|
3337
|
+
urlId?: pulumi.Input<string>;
|
|
3338
|
+
}
|
|
3218
3339
|
export interface OauthIntegrationForCustomClientsDescribeOutput {
|
|
3219
3340
|
blockedRolesLists?: pulumi.Input<pulumi.Input<inputs.OauthIntegrationForCustomClientsDescribeOutputBlockedRolesList>[]>;
|
|
3220
3341
|
comments?: pulumi.Input<pulumi.Input<inputs.OauthIntegrationForCustomClientsDescribeOutputComment>[]>;
|
|
@@ -4413,6 +4534,182 @@ export interface SecretWithGenericStringShowOutput {
|
|
|
4413
4534
|
schemaName?: pulumi.Input<string>;
|
|
4414
4535
|
secretType?: pulumi.Input<string>;
|
|
4415
4536
|
}
|
|
4537
|
+
export interface SemanticViewDimension {
|
|
4538
|
+
/**
|
|
4539
|
+
* Specifies a comment for the dimension.
|
|
4540
|
+
*/
|
|
4541
|
+
comment?: pulumi.Input<string>;
|
|
4542
|
+
/**
|
|
4543
|
+
* Specifies a qualified name for the dimension, including the table name and a unique identifier for the dimension: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\"<table_alias>\".\"<semantic_expression_name>\""`.
|
|
4544
|
+
*/
|
|
4545
|
+
qualifiedExpressionName: pulumi.Input<string>;
|
|
4546
|
+
/**
|
|
4547
|
+
* The SQL expression used to compute the dimension.
|
|
4548
|
+
*/
|
|
4549
|
+
sqlExpression: pulumi.Input<string>;
|
|
4550
|
+
/**
|
|
4551
|
+
* List of synonyms for the dimension.
|
|
4552
|
+
*/
|
|
4553
|
+
synonyms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4554
|
+
}
|
|
4555
|
+
export interface SemanticViewFact {
|
|
4556
|
+
/**
|
|
4557
|
+
* Specifies a comment for the fact.
|
|
4558
|
+
*/
|
|
4559
|
+
comment?: pulumi.Input<string>;
|
|
4560
|
+
/**
|
|
4561
|
+
* Specifies a qualified name for the fact, including the table name and a unique identifier for the fact: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\"<table_alias>\".\"<semantic_expression_name>\""`.
|
|
4562
|
+
*/
|
|
4563
|
+
qualifiedExpressionName: pulumi.Input<string>;
|
|
4564
|
+
/**
|
|
4565
|
+
* The SQL expression used to compute the fact.
|
|
4566
|
+
*/
|
|
4567
|
+
sqlExpression: pulumi.Input<string>;
|
|
4568
|
+
/**
|
|
4569
|
+
* List of synonyms for the fact.
|
|
4570
|
+
*/
|
|
4571
|
+
synonyms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4572
|
+
}
|
|
4573
|
+
export interface SemanticViewMetric {
|
|
4574
|
+
/**
|
|
4575
|
+
* Specifies a semantic expression for a metric definition. Cannot be used in combination with a window function.
|
|
4576
|
+
*/
|
|
4577
|
+
semanticExpression?: pulumi.Input<inputs.SemanticViewMetricSemanticExpression>;
|
|
4578
|
+
/**
|
|
4579
|
+
* Specifies a window function for a metric definition. Cannot be used in combination with a semantic expression.
|
|
4580
|
+
*/
|
|
4581
|
+
windowFunction?: pulumi.Input<inputs.SemanticViewMetricWindowFunction>;
|
|
4582
|
+
}
|
|
4583
|
+
export interface SemanticViewMetricSemanticExpression {
|
|
4584
|
+
/**
|
|
4585
|
+
* Specifies a comment for the semantic expression.
|
|
4586
|
+
*/
|
|
4587
|
+
comment?: pulumi.Input<string>;
|
|
4588
|
+
/**
|
|
4589
|
+
* Specifies a qualified name for the metric: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\"<table_alias>\".\"<semantic_expression_name>\""`. For the [derived metric](https://docs.snowflake.com/en/user-guide/views-semantic/sql#label-semantic-views-create-derived-metrics) omit the `<table_alias>.` part but still wrap in double quotes, e.g. `"\"<semantic_expression_name>\""`.
|
|
4590
|
+
*/
|
|
4591
|
+
qualifiedExpressionName: pulumi.Input<string>;
|
|
4592
|
+
/**
|
|
4593
|
+
* The SQL expression used to compute the metric.
|
|
4594
|
+
*/
|
|
4595
|
+
sqlExpression: pulumi.Input<string>;
|
|
4596
|
+
/**
|
|
4597
|
+
* List of synonyms for this semantic expression.
|
|
4598
|
+
*/
|
|
4599
|
+
synonyms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4600
|
+
}
|
|
4601
|
+
export interface SemanticViewMetricWindowFunction {
|
|
4602
|
+
/**
|
|
4603
|
+
* Specify the partition by, order by or frame over which the window function is to be computed.
|
|
4604
|
+
*/
|
|
4605
|
+
overClause: pulumi.Input<inputs.SemanticViewMetricWindowFunctionOverClause>;
|
|
4606
|
+
/**
|
|
4607
|
+
* Specifies a qualified name for the metric: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\"<table_alias>\".\"<semantic_expression_name>\""`. For the [derived metric](https://docs.snowflake.com/en/user-guide/views-semantic/sql#label-semantic-views-create-derived-metrics) omit the `<table_alias>.` part but still wrap in double quotes, e.g. `"\"<semantic_expression_name>\""`.
|
|
4608
|
+
*/
|
|
4609
|
+
qualifiedExpressionName: pulumi.Input<string>;
|
|
4610
|
+
/**
|
|
4611
|
+
* The SQL expression used to compute the metric following the `<window_function>(<metric>)` format.
|
|
4612
|
+
*/
|
|
4613
|
+
sqlExpression: pulumi.Input<string>;
|
|
4614
|
+
}
|
|
4615
|
+
export interface SemanticViewMetricWindowFunctionOverClause {
|
|
4616
|
+
/**
|
|
4617
|
+
* Specifies an order by clause. It must be a complete SQL expression, including any `[ ASC | DESC ] [ NULLS { FIRST | LAST } ]` modifiers.
|
|
4618
|
+
*/
|
|
4619
|
+
orderBy?: pulumi.Input<string>;
|
|
4620
|
+
/**
|
|
4621
|
+
* Specifies a partition by clause.
|
|
4622
|
+
*/
|
|
4623
|
+
partitionBy?: pulumi.Input<string>;
|
|
4624
|
+
/**
|
|
4625
|
+
* Specifies a window frame clause.
|
|
4626
|
+
*/
|
|
4627
|
+
windowFrameClause?: pulumi.Input<string>;
|
|
4628
|
+
}
|
|
4629
|
+
export interface SemanticViewRelationship {
|
|
4630
|
+
/**
|
|
4631
|
+
* Specifies one or more columns in the second logical table that are referred to by the first logical table. Column names in this list are case-sensitive - the provider uses double quotes to wrap each of them when sending the SQL to Snowflake.
|
|
4632
|
+
*/
|
|
4633
|
+
referencedRelationshipColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4634
|
+
/**
|
|
4635
|
+
* Specifies the other logical table and one or more of its columns that are referred to by the first logical table. Each referenced table can have either a `tableName` or a `tableAlias`, not both.
|
|
4636
|
+
*/
|
|
4637
|
+
referencedTableNameOrAlias: pulumi.Input<inputs.SemanticViewRelationshipReferencedTableNameOrAlias>;
|
|
4638
|
+
/**
|
|
4639
|
+
* Specifies one or more columns in the first logical table that refers to columns in another logical table. Column names in this list are case-sensitive - the provider uses double quotes to wrap each of them when sending the SQL to Snowflake.
|
|
4640
|
+
*/
|
|
4641
|
+
relationshipColumns: pulumi.Input<pulumi.Input<string>[]>;
|
|
4642
|
+
/**
|
|
4643
|
+
* Specifies an optional identifier for the relationship. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4644
|
+
*/
|
|
4645
|
+
relationshipIdentifier?: pulumi.Input<string>;
|
|
4646
|
+
/**
|
|
4647
|
+
* Specifies one of the logical tables that refers to columns in another logical table. Each table can have either a `tableName` or a `tableAlias`, not both.
|
|
4648
|
+
*/
|
|
4649
|
+
tableNameOrAlias: pulumi.Input<inputs.SemanticViewRelationshipTableNameOrAlias>;
|
|
4650
|
+
}
|
|
4651
|
+
export interface SemanticViewRelationshipReferencedTableNameOrAlias {
|
|
4652
|
+
/**
|
|
4653
|
+
* The alias used for the logical table, cannot be used in combination with the `tableName`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4654
|
+
*/
|
|
4655
|
+
tableAlias?: pulumi.Input<string>;
|
|
4656
|
+
/**
|
|
4657
|
+
* The name of the logical table, cannot be used in combination with the `tableAlias`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4658
|
+
*/
|
|
4659
|
+
tableName?: pulumi.Input<string>;
|
|
4660
|
+
}
|
|
4661
|
+
export interface SemanticViewRelationshipTableNameOrAlias {
|
|
4662
|
+
/**
|
|
4663
|
+
* The alias used for the logical table, cannot be used in combination with the `tableName`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4664
|
+
*/
|
|
4665
|
+
tableAlias?: pulumi.Input<string>;
|
|
4666
|
+
/**
|
|
4667
|
+
* The name of the logical table, cannot be used in combination with the `tableAlias`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4668
|
+
*/
|
|
4669
|
+
tableName?: pulumi.Input<string>;
|
|
4670
|
+
}
|
|
4671
|
+
export interface SemanticViewShowOutput {
|
|
4672
|
+
comment?: pulumi.Input<string>;
|
|
4673
|
+
createdOn?: pulumi.Input<string>;
|
|
4674
|
+
databaseName?: pulumi.Input<string>;
|
|
4675
|
+
extension?: pulumi.Input<string>;
|
|
4676
|
+
name?: pulumi.Input<string>;
|
|
4677
|
+
owner?: pulumi.Input<string>;
|
|
4678
|
+
ownerRoleType?: pulumi.Input<string>;
|
|
4679
|
+
schemaName?: pulumi.Input<string>;
|
|
4680
|
+
}
|
|
4681
|
+
export interface SemanticViewTable {
|
|
4682
|
+
/**
|
|
4683
|
+
* Specifies a comment for the logical table.
|
|
4684
|
+
*/
|
|
4685
|
+
comment?: pulumi.Input<string>;
|
|
4686
|
+
/**
|
|
4687
|
+
* Definitions of primary keys in the logical table. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4688
|
+
*/
|
|
4689
|
+
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4690
|
+
/**
|
|
4691
|
+
* List of synonyms for the logical table.
|
|
4692
|
+
*/
|
|
4693
|
+
synonyms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4694
|
+
/**
|
|
4695
|
+
* Specifies an alias for a logical table in the semantic view. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4696
|
+
*/
|
|
4697
|
+
tableAlias: pulumi.Input<string>;
|
|
4698
|
+
/**
|
|
4699
|
+
* Specifies an identifier for the logical table. Example: `"\"<db_name>\".\"<schema_name>\".\"<table_name>\""`. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
4700
|
+
*/
|
|
4701
|
+
tableName: pulumi.Input<string>;
|
|
4702
|
+
/**
|
|
4703
|
+
* Definitions of unique key combinations in the logical table. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
4704
|
+
*/
|
|
4705
|
+
uniques?: pulumi.Input<pulumi.Input<inputs.SemanticViewTableUnique>[]>;
|
|
4706
|
+
}
|
|
4707
|
+
export interface SemanticViewTableUnique {
|
|
4708
|
+
/**
|
|
4709
|
+
* Unique key combinations in the logical table.
|
|
4710
|
+
*/
|
|
4711
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
4712
|
+
}
|
|
4416
4713
|
export interface ServiceDescribeOutput {
|
|
4417
4714
|
autoResume?: pulumi.Input<boolean>;
|
|
4418
4715
|
autoSuspendSecs?: pulumi.Input<number>;
|
|
@@ -5996,11 +6293,19 @@ export interface TaskParameterWeekStart {
|
|
|
5996
6293
|
}
|
|
5997
6294
|
export interface TaskSchedule {
|
|
5998
6295
|
/**
|
|
5999
|
-
* Specifies an interval (in
|
|
6296
|
+
* Specifies an interval (in hours) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `seconds`, `minutes`, and `usingCron`)
|
|
6297
|
+
*/
|
|
6298
|
+
hours?: pulumi.Input<number>;
|
|
6299
|
+
/**
|
|
6300
|
+
* Specifies an interval (in minutes) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `seconds`, `hours`, and `usingCron`)
|
|
6000
6301
|
*/
|
|
6001
6302
|
minutes?: pulumi.Input<number>;
|
|
6002
6303
|
/**
|
|
6003
|
-
* Specifies
|
|
6304
|
+
* Specifies an interval (in seconds) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `minutes`, `hours`, and `usingCron`)
|
|
6305
|
+
*/
|
|
6306
|
+
seconds?: pulumi.Input<number>;
|
|
6307
|
+
/**
|
|
6308
|
+
* Specifies a cron expression and time zone for periodically running the task. Supports a subset of standard cron utility syntax. (conflicts with `seconds`, `minutes`, and `hours`)
|
|
6004
6309
|
*/
|
|
6005
6310
|
usingCron?: pulumi.Input<string>;
|
|
6006
6311
|
}
|