@pulumi/snowflake 0.59.0-alpha.1726726272 → 0.59.0-alpha.1726831379
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/getAccounts.js +5 -1
- package/getAccounts.js.map +1 -1
- package/getAlerts.js +7 -1
- package/getAlerts.js.map +1 -1
- package/getCortexSearchServices.js +8 -1
- package/getCortexSearchServices.js.map +1 -1
- package/getCurrentAccount.js +2 -1
- package/getCurrentAccount.js.map +1 -1
- package/getCurrentRole.js +2 -1
- package/getCurrentRole.js.map +1 -1
- package/getDatabase.js +4 -1
- package/getDatabase.js.map +1 -1
- package/getDatabaseRole.js +5 -1
- package/getDatabaseRole.js.map +1 -1
- package/getDatabaseRoles.d.ts +4 -0
- package/getDatabaseRoles.js +10 -1
- package/getDatabaseRoles.js.map +1 -1
- package/getDatabases.js +9 -1
- package/getDatabases.js.map +1 -1
- package/getDynamicTables.js +8 -1
- package/getDynamicTables.js.map +1 -1
- package/getExternalFunctions.js +6 -1
- package/getExternalFunctions.js.map +1 -1
- package/getExternalTables.js +5 -1
- package/getExternalTables.js.map +1 -1
- package/getFailoverGroups.js +5 -1
- package/getFailoverGroups.js.map +1 -1
- package/getFileFormats.js +5 -1
- package/getFileFormats.js.map +1 -1
- package/getFunctions.js +5 -1
- package/getFunctions.js.map +1 -1
- package/getGrants.js +9 -1
- package/getGrants.js.map +1 -1
- package/getMaskingPolicies.d.ts +46 -37
- package/getMaskingPolicies.js +17 -23
- package/getMaskingPolicies.js.map +1 -1
- package/getMaterializedViews.js +5 -1
- package/getMaterializedViews.js.map +1 -1
- package/getNetworkPolicies.js +6 -1
- package/getNetworkPolicies.js.map +1 -1
- package/getParameters.js +9 -1
- package/getParameters.js.map +1 -1
- package/getPipes.js +5 -1
- package/getPipes.js.map +1 -1
- package/getProcedures.js +5 -1
- package/getProcedures.js.map +1 -1
- package/getResourceMonitors.d.ts +29 -17
- package/getResourceMonitors.js +15 -18
- package/getResourceMonitors.js.map +1 -1
- package/getRole.js +4 -1
- package/getRole.js.map +1 -1
- package/getRoles.js +6 -1
- package/getRoles.js.map +1 -1
- package/getRowAccessPolicies.d.ts +46 -37
- package/getRowAccessPolicies.js +17 -23
- package/getRowAccessPolicies.js.map +1 -1
- package/getSchemas.js +10 -1
- package/getSchemas.js.map +1 -1
- package/getSecurityIntegrations.js +6 -1
- package/getSecurityIntegrations.js.map +1 -1
- package/getSequences.js +5 -1
- package/getSequences.js.map +1 -1
- package/getShares.js +5 -1
- package/getShares.js.map +1 -1
- package/getStages.js +5 -1
- package/getStages.js.map +1 -1
- package/getStorageIntegrations.js +2 -1
- package/getStorageIntegrations.js.map +1 -1
- package/getStreamlits.js +8 -1
- package/getStreamlits.js.map +1 -1
- package/getStreams.js +5 -1
- package/getStreams.js.map +1 -1
- package/getSystemGenerateScimAccessToken.js +4 -1
- package/getSystemGenerateScimAccessToken.js.map +1 -1
- package/getSystemGetAwsSnsIamPolicy.js +4 -1
- package/getSystemGetAwsSnsIamPolicy.js.map +1 -1
- package/getSystemGetPrivateLinkConfig.js +2 -1
- package/getSystemGetPrivateLinkConfig.js.map +1 -1
- package/getSystemGetSnowflakePlatformInfo.js +2 -1
- package/getSystemGetSnowflakePlatformInfo.js.map +1 -1
- package/getTables.js +5 -1
- package/getTables.js.map +1 -1
- package/getTasks.js +5 -1
- package/getTasks.js.map +1 -1
- package/getUsers.js +9 -1
- package/getUsers.js.map +1 -1
- package/getViews.d.ts +4 -0
- package/getViews.js +13 -1
- package/getViews.js.map +1 -1
- package/getWarehouses.js +7 -1
- package/getWarehouses.js.map +1 -1
- package/index.d.ts +1 -1
- package/maskingPolicy.d.ts +54 -64
- package/maskingPolicy.js +15 -17
- package/maskingPolicy.js.map +1 -1
- package/package.json +2 -2
- package/resourceMonitor.d.ts +33 -83
- package/resourceMonitor.js +2 -8
- package/resourceMonitor.js.map +1 -1
- package/rowAccessPolicy.d.ts +48 -38
- package/rowAccessPolicy.js +15 -13
- package/rowAccessPolicy.js.map +1 -1
- package/types/input.d.ts +198 -6
- package/types/output.d.ts +203 -11
- package/view.d.ts +3 -3
- package/warehouse.d.ts +2 -2
package/getMaterializedViews.js
CHANGED
|
@@ -40,7 +40,11 @@ exports.getMaterializedViews = getMaterializedViews;
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
function getMaterializedViewsOutput(args, opts) {
|
|
43
|
-
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
44
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getMaterializedViews:getMaterializedViews", {
|
|
45
|
+
"database": args.database,
|
|
46
|
+
"schema": args.schema,
|
|
47
|
+
}, opts);
|
|
44
48
|
}
|
|
45
49
|
exports.getMaterializedViewsOutput = getMaterializedViewsOutput;
|
|
46
50
|
//# sourceMappingURL=getMaterializedViews.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMaterializedViews.js","sourceRoot":"","sources":["../getMaterializedViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getMaterializedViews.js","sourceRoot":"","sources":["../getMaterializedViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2DAA2D,EAAE;QAC5F,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gEAMC"}
|
package/getNetworkPolicies.js
CHANGED
|
@@ -25,7 +25,12 @@ exports.getNetworkPolicies = getNetworkPolicies;
|
|
|
25
25
|
* Datasource used to get details of filtered network policies. Filtering is aligned with the current possibilities for [SHOW NETWORK POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-network-policies) query (`like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection.
|
|
26
26
|
*/
|
|
27
27
|
function getNetworkPoliciesOutput(args, opts) {
|
|
28
|
-
|
|
28
|
+
args = args || {};
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getNetworkPolicies:getNetworkPolicies", {
|
|
31
|
+
"like": args.like,
|
|
32
|
+
"withDescribe": args.withDescribe,
|
|
33
|
+
}, opts);
|
|
29
34
|
}
|
|
30
35
|
exports.getNetworkPoliciesOutput = getNetworkPoliciesOutput;
|
|
31
36
|
//# sourceMappingURL=getNetworkPolicies.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNetworkPolicies.js","sourceRoot":"","sources":["../getNetworkPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getNetworkPolicies.js","sourceRoot":"","sources":["../getNetworkPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uDAAuD,EAAE;QAClF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AAqCD;;;;GAIG;AACH,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAA2B;IACrG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uDAAuD,EAAE;QACxF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4DAOC"}
|
package/getParameters.js
CHANGED
|
@@ -72,7 +72,15 @@ exports.getParameters = getParameters;
|
|
|
72
72
|
* ```
|
|
73
73
|
*/
|
|
74
74
|
function getParametersOutput(args, opts) {
|
|
75
|
-
|
|
75
|
+
args = args || {};
|
|
76
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
77
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getParameters:getParameters", {
|
|
78
|
+
"objectName": args.objectName,
|
|
79
|
+
"objectType": args.objectType,
|
|
80
|
+
"parameterType": args.parameterType,
|
|
81
|
+
"pattern": args.pattern,
|
|
82
|
+
"user": args.user,
|
|
83
|
+
}, opts);
|
|
76
84
|
}
|
|
77
85
|
exports.getParametersOutput = getParametersOutput;
|
|
78
86
|
//# sourceMappingURL=getParameters.js.map
|
package/getParameters.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getParameters.js","sourceRoot":"","sources":["../getParameters.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getParameters.js","sourceRoot":"","sources":["../getParameters.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,sCAUC;AA6DD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,6CAA6C,EAAE;QAC9E,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kDAUC"}
|
package/getPipes.js
CHANGED
|
@@ -40,7 +40,11 @@ exports.getPipes = getPipes;
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
function getPipesOutput(args, opts) {
|
|
43
|
-
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
44
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getPipes:getPipes", {
|
|
45
|
+
"database": args.database,
|
|
46
|
+
"schema": args.schema,
|
|
47
|
+
}, opts);
|
|
44
48
|
}
|
|
45
49
|
exports.getPipesOutput = getPipesOutput;
|
|
46
50
|
//# sourceMappingURL=getPipes.js.map
|
package/getPipes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPipes.js","sourceRoot":"","sources":["../getPipes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getPipes.js","sourceRoot":"","sources":["../getPipes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mCAAmC,EAAE;QACpE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC"}
|
package/getProcedures.js
CHANGED
|
@@ -40,7 +40,11 @@ exports.getProcedures = getProcedures;
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
function getProceduresOutput(args, opts) {
|
|
43
|
-
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
44
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getProcedures:getProcedures", {
|
|
45
|
+
"database": args.database,
|
|
46
|
+
"schema": args.schema,
|
|
47
|
+
}, opts);
|
|
44
48
|
}
|
|
45
49
|
exports.getProceduresOutput = getProceduresOutput;
|
|
46
50
|
//# sourceMappingURL=getProcedures.js.map
|
package/getProcedures.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProcedures.js","sourceRoot":"","sources":["../getProcedures.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getProcedures.js","sourceRoot":"","sources":["../getProcedures.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,6CAA6C,EAAE;QAC9E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
|
package/getResourceMonitors.d.ts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* !> **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.
|
|
5
5
|
*
|
|
6
|
-
*
|
|
7
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
9
|
-
*
|
|
10
|
-
* const current = snowflake.getResourceMonitors({});
|
|
11
|
-
* ```
|
|
6
|
+
* Datasource used to get details of filtered resource monitors. Filtering is aligned with the current possibilities for [SHOW RESOURCE MONITORS](https://docs.snowflake.com/en/sql-reference/sql/show-resource-monitors) query (`like` is supported). The results of SHOW is encapsulated in showOutput collection.
|
|
12
7
|
*/
|
|
13
|
-
export declare function getResourceMonitors(opts?: pulumi.InvokeOptions): Promise<GetResourceMonitorsResult>;
|
|
8
|
+
export declare function getResourceMonitors(args?: GetResourceMonitorsArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceMonitorsResult>;
|
|
9
|
+
/**
|
|
10
|
+
* A collection of arguments for invoking getResourceMonitors.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetResourceMonitorsArgs {
|
|
13
|
+
/**
|
|
14
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
15
|
+
*/
|
|
16
|
+
like?: string;
|
|
17
|
+
}
|
|
14
18
|
/**
|
|
15
19
|
* A collection of values returned by getResourceMonitors.
|
|
16
20
|
*/
|
|
@@ -20,18 +24,26 @@ export interface GetResourceMonitorsResult {
|
|
|
20
24
|
*/
|
|
21
25
|
readonly id: string;
|
|
22
26
|
/**
|
|
23
|
-
*
|
|
27
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
28
|
+
*/
|
|
29
|
+
readonly like?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Holds the aggregated output of all resource monitor details queries.
|
|
24
32
|
*/
|
|
25
33
|
readonly resourceMonitors: outputs.GetResourceMonitorsResourceMonitor[];
|
|
26
34
|
}
|
|
27
35
|
/**
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* ```typescript
|
|
31
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
32
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
36
|
+
* !> **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.
|
|
33
37
|
*
|
|
34
|
-
*
|
|
35
|
-
|
|
38
|
+
* Datasource used to get details of filtered resource monitors. Filtering is aligned with the current possibilities for [SHOW RESOURCE MONITORS](https://docs.snowflake.com/en/sql-reference/sql/show-resource-monitors) query (`like` is supported). The results of SHOW is encapsulated in showOutput collection.
|
|
39
|
+
*/
|
|
40
|
+
export declare function getResourceMonitorsOutput(args?: GetResourceMonitorsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetResourceMonitorsResult>;
|
|
41
|
+
/**
|
|
42
|
+
* A collection of arguments for invoking getResourceMonitors.
|
|
36
43
|
*/
|
|
37
|
-
export
|
|
44
|
+
export interface GetResourceMonitorsOutputArgs {
|
|
45
|
+
/**
|
|
46
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
47
|
+
*/
|
|
48
|
+
like?: pulumi.Input<string>;
|
|
49
|
+
}
|
package/getResourceMonitors.js
CHANGED
|
@@ -6,32 +6,29 @@ exports.getResourceMonitorsOutput = exports.getResourceMonitors = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* !> **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.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
14
|
-
*
|
|
15
|
-
* const current = snowflake.getResourceMonitors({});
|
|
16
|
-
* ```
|
|
11
|
+
* Datasource used to get details of filtered resource monitors. Filtering is aligned with the current possibilities for [SHOW RESOURCE MONITORS](https://docs.snowflake.com/en/sql-reference/sql/show-resource-monitors) query (`like` is supported). The results of SHOW is encapsulated in showOutput collection.
|
|
17
12
|
*/
|
|
18
|
-
function getResourceMonitors(opts) {
|
|
13
|
+
function getResourceMonitors(args, opts) {
|
|
14
|
+
args = args || {};
|
|
19
15
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
20
|
-
return pulumi.runtime.invoke("snowflake:index/getResourceMonitors:getResourceMonitors", {
|
|
16
|
+
return pulumi.runtime.invoke("snowflake:index/getResourceMonitors:getResourceMonitors", {
|
|
17
|
+
"like": args.like,
|
|
18
|
+
}, opts);
|
|
21
19
|
}
|
|
22
20
|
exports.getResourceMonitors = getResourceMonitors;
|
|
23
21
|
/**
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* ```typescript
|
|
27
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
28
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
22
|
+
* !> **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.
|
|
29
23
|
*
|
|
30
|
-
*
|
|
31
|
-
* ```
|
|
24
|
+
* Datasource used to get details of filtered resource monitors. Filtering is aligned with the current possibilities for [SHOW RESOURCE MONITORS](https://docs.snowflake.com/en/sql-reference/sql/show-resource-monitors) query (`like` is supported). The results of SHOW is encapsulated in showOutput collection.
|
|
32
25
|
*/
|
|
33
|
-
function getResourceMonitorsOutput(opts) {
|
|
34
|
-
|
|
26
|
+
function getResourceMonitorsOutput(args, opts) {
|
|
27
|
+
args = args || {};
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getResourceMonitors:getResourceMonitors", {
|
|
30
|
+
"like": args.like,
|
|
31
|
+
}, opts);
|
|
35
32
|
}
|
|
36
33
|
exports.getResourceMonitorsOutput = getResourceMonitorsOutput;
|
|
37
34
|
//# sourceMappingURL=getResourceMonitors.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getResourceMonitors.js","sourceRoot":"","sources":["../getResourceMonitors.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getResourceMonitors.js","sourceRoot":"","sources":["../getResourceMonitors.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yDAAyD,EAAE;QACpF,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC;AA6BD;;;;GAIG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yDAAyD,EAAE;QAC1F,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8DAMC"}
|
package/getRole.js
CHANGED
|
@@ -41,7 +41,10 @@ exports.getRole = getRole;
|
|
|
41
41
|
* ```
|
|
42
42
|
*/
|
|
43
43
|
function getRoleOutput(args, opts) {
|
|
44
|
-
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getRole:getRole", {
|
|
46
|
+
"name": args.name,
|
|
47
|
+
}, opts);
|
|
45
48
|
}
|
|
46
49
|
exports.getRoleOutput = getRoleOutput;
|
|
47
50
|
//# sourceMappingURL=getRole.js.map
|
package/getRole.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0BAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iCAAiC,EAAE;QAClE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC"}
|
package/getRoles.js
CHANGED
|
@@ -25,7 +25,12 @@ exports.getRoles = getRoles;
|
|
|
25
25
|
* Datasource used to get details of filtered roles. Filtering is aligned with the current possibilities for [SHOW ROLES](https://docs.snowflake.com/en/sql-reference/sql/show-roles) query (`like` and `inClass` are all supported). The results of SHOW are encapsulated in one output collection.
|
|
26
26
|
*/
|
|
27
27
|
function getRolesOutput(args, opts) {
|
|
28
|
-
|
|
28
|
+
args = args || {};
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getRoles:getRoles", {
|
|
31
|
+
"inClass": args.inClass,
|
|
32
|
+
"like": args.like,
|
|
33
|
+
}, opts);
|
|
29
34
|
}
|
|
30
35
|
exports.getRolesOutput = getRolesOutput;
|
|
31
36
|
//# sourceMappingURL=getRoles.js.map
|
package/getRoles.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRoles.js","sourceRoot":"","sources":["../getRoles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getRoles.js","sourceRoot":"","sources":["../getRoles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AAqCD;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mCAAmC,EAAE;QACpE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC"}
|
|
@@ -1,77 +1,86 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
2
3
|
import * as outputs from "./types/output";
|
|
3
4
|
/**
|
|
4
|
-
*
|
|
5
|
+
* !> **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.
|
|
5
6
|
*
|
|
6
|
-
*
|
|
7
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
9
|
-
*
|
|
10
|
-
* const current = snowflake.getRowAccessPolicies({
|
|
11
|
-
* database: "MYDB",
|
|
12
|
-
* schema: "MYSCHEMA",
|
|
13
|
-
* });
|
|
14
|
-
* ```
|
|
7
|
+
* Datasource used to get details of filtered row access policies. Filtering is aligned with the current possibilities for [SHOW ROW ACCESS POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-row-access-policies) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `rowAccessPolicies`.
|
|
15
8
|
*/
|
|
16
|
-
export declare function getRowAccessPolicies(args
|
|
9
|
+
export declare function getRowAccessPolicies(args?: GetRowAccessPoliciesArgs, opts?: pulumi.InvokeOptions): Promise<GetRowAccessPoliciesResult>;
|
|
17
10
|
/**
|
|
18
11
|
* A collection of arguments for invoking getRowAccessPolicies.
|
|
19
12
|
*/
|
|
20
13
|
export interface GetRowAccessPoliciesArgs {
|
|
21
14
|
/**
|
|
22
|
-
*
|
|
15
|
+
* IN clause to filter the list of row access policies
|
|
16
|
+
*/
|
|
17
|
+
in?: inputs.GetRowAccessPoliciesIn;
|
|
18
|
+
/**
|
|
19
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
20
|
+
*/
|
|
21
|
+
like?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 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 `startsWith` or `like`.
|
|
23
24
|
*/
|
|
24
|
-
|
|
25
|
+
limit?: inputs.GetRowAccessPoliciesLimit;
|
|
25
26
|
/**
|
|
26
|
-
*
|
|
27
|
+
* Runs DESC ROW ACCESS POLICY for each row access policy returned by SHOW ROW ACCESS POLICIES. The output of describe is saved to the description field. By default this value is set to true.
|
|
27
28
|
*/
|
|
28
|
-
|
|
29
|
+
withDescribe?: boolean;
|
|
29
30
|
}
|
|
30
31
|
/**
|
|
31
32
|
* A collection of values returned by getRowAccessPolicies.
|
|
32
33
|
*/
|
|
33
34
|
export interface GetRowAccessPoliciesResult {
|
|
34
|
-
/**
|
|
35
|
-
* The database from which to return the schemas from.
|
|
36
|
-
*/
|
|
37
|
-
readonly database: string;
|
|
38
35
|
/**
|
|
39
36
|
* The provider-assigned unique ID for this managed resource.
|
|
40
37
|
*/
|
|
41
38
|
readonly id: string;
|
|
42
39
|
/**
|
|
43
|
-
*
|
|
40
|
+
* IN clause to filter the list of row access policies
|
|
41
|
+
*/
|
|
42
|
+
readonly in?: outputs.GetRowAccessPoliciesIn;
|
|
43
|
+
/**
|
|
44
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
45
|
+
*/
|
|
46
|
+
readonly like?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 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 `startsWith` or `like`.
|
|
49
|
+
*/
|
|
50
|
+
readonly limit?: outputs.GetRowAccessPoliciesLimit;
|
|
51
|
+
/**
|
|
52
|
+
* Holds the aggregated output of all views details queries.
|
|
44
53
|
*/
|
|
45
54
|
readonly rowAccessPolicies: outputs.GetRowAccessPoliciesRowAccessPolicy[];
|
|
46
55
|
/**
|
|
47
|
-
*
|
|
56
|
+
* Runs DESC ROW ACCESS POLICY for each row access policy returned by SHOW ROW ACCESS POLICIES. The output of describe is saved to the description field. By default this value is set to true.
|
|
48
57
|
*/
|
|
49
|
-
readonly
|
|
58
|
+
readonly withDescribe?: boolean;
|
|
50
59
|
}
|
|
51
60
|
/**
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* ```typescript
|
|
55
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
56
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
61
|
+
* !> **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.
|
|
57
62
|
*
|
|
58
|
-
*
|
|
59
|
-
* database: "MYDB",
|
|
60
|
-
* schema: "MYSCHEMA",
|
|
61
|
-
* });
|
|
62
|
-
* ```
|
|
63
|
+
* Datasource used to get details of filtered row access policies. Filtering is aligned with the current possibilities for [SHOW ROW ACCESS POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-row-access-policies) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `rowAccessPolicies`.
|
|
63
64
|
*/
|
|
64
|
-
export declare function getRowAccessPoliciesOutput(args
|
|
65
|
+
export declare function getRowAccessPoliciesOutput(args?: GetRowAccessPoliciesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRowAccessPoliciesResult>;
|
|
65
66
|
/**
|
|
66
67
|
* A collection of arguments for invoking getRowAccessPolicies.
|
|
67
68
|
*/
|
|
68
69
|
export interface GetRowAccessPoliciesOutputArgs {
|
|
69
70
|
/**
|
|
70
|
-
*
|
|
71
|
+
* IN clause to filter the list of row access policies
|
|
72
|
+
*/
|
|
73
|
+
in?: pulumi.Input<inputs.GetRowAccessPoliciesInArgs>;
|
|
74
|
+
/**
|
|
75
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
76
|
+
*/
|
|
77
|
+
like?: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* 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 `startsWith` or `like`.
|
|
71
80
|
*/
|
|
72
|
-
|
|
81
|
+
limit?: pulumi.Input<inputs.GetRowAccessPoliciesLimitArgs>;
|
|
73
82
|
/**
|
|
74
|
-
*
|
|
83
|
+
* Runs DESC ROW ACCESS POLICY for each row access policy returned by SHOW ROW ACCESS POLICIES. The output of describe is saved to the description field. By default this value is set to true.
|
|
75
84
|
*/
|
|
76
|
-
|
|
85
|
+
withDescribe?: pulumi.Input<boolean>;
|
|
77
86
|
}
|
package/getRowAccessPolicies.js
CHANGED
|
@@ -6,41 +6,35 @@ exports.getRowAccessPoliciesOutput = exports.getRowAccessPolicies = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* !> **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.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
14
|
-
*
|
|
15
|
-
* const current = snowflake.getRowAccessPolicies({
|
|
16
|
-
* database: "MYDB",
|
|
17
|
-
* schema: "MYSCHEMA",
|
|
18
|
-
* });
|
|
19
|
-
* ```
|
|
11
|
+
* Datasource used to get details of filtered row access policies. Filtering is aligned with the current possibilities for [SHOW ROW ACCESS POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-row-access-policies) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `rowAccessPolicies`.
|
|
20
12
|
*/
|
|
21
13
|
function getRowAccessPolicies(args, opts) {
|
|
14
|
+
args = args || {};
|
|
22
15
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
16
|
return pulumi.runtime.invoke("snowflake:index/getRowAccessPolicies:getRowAccessPolicies", {
|
|
24
|
-
"
|
|
25
|
-
"
|
|
17
|
+
"in": args.in,
|
|
18
|
+
"like": args.like,
|
|
19
|
+
"limit": args.limit,
|
|
20
|
+
"withDescribe": args.withDescribe,
|
|
26
21
|
}, opts);
|
|
27
22
|
}
|
|
28
23
|
exports.getRowAccessPolicies = getRowAccessPolicies;
|
|
29
24
|
/**
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
* ```typescript
|
|
33
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
25
|
+
* !> **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.
|
|
35
26
|
*
|
|
36
|
-
*
|
|
37
|
-
* database: "MYDB",
|
|
38
|
-
* schema: "MYSCHEMA",
|
|
39
|
-
* });
|
|
40
|
-
* ```
|
|
27
|
+
* Datasource used to get details of filtered row access policies. Filtering is aligned with the current possibilities for [SHOW ROW ACCESS POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-row-access-policies) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `rowAccessPolicies`.
|
|
41
28
|
*/
|
|
42
29
|
function getRowAccessPoliciesOutput(args, opts) {
|
|
43
|
-
|
|
30
|
+
args = args || {};
|
|
31
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
32
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getRowAccessPolicies:getRowAccessPolicies", {
|
|
33
|
+
"in": args.in,
|
|
34
|
+
"like": args.like,
|
|
35
|
+
"limit": args.limit,
|
|
36
|
+
"withDescribe": args.withDescribe,
|
|
37
|
+
}, opts);
|
|
44
38
|
}
|
|
45
39
|
exports.getRowAccessPoliciesOutput = getRowAccessPoliciesOutput;
|
|
46
40
|
//# sourceMappingURL=getRowAccessPolicies.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRowAccessPolicies.js","sourceRoot":"","sources":["../getRowAccessPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getRowAccessPolicies.js","sourceRoot":"","sources":["../getRowAccessPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oDASC;AAqDD;;;;GAIG;AACH,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAA2B;IACzG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2DAA2D,EAAE;QAC5F,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gEASC"}
|
package/getSchemas.js
CHANGED
|
@@ -29,7 +29,16 @@ exports.getSchemas = getSchemas;
|
|
|
29
29
|
* Datasource used to get details of filtered schemas. Filtering is aligned with the current possibilities for [SHOW SCHEMAS](https://docs.snowflake.com/en/sql-reference/sql/show-schemas) query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
30
30
|
*/
|
|
31
31
|
function getSchemasOutput(args, opts) {
|
|
32
|
-
|
|
32
|
+
args = args || {};
|
|
33
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
34
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getSchemas:getSchemas", {
|
|
35
|
+
"in": args.in,
|
|
36
|
+
"like": args.like,
|
|
37
|
+
"limit": args.limit,
|
|
38
|
+
"startsWith": args.startsWith,
|
|
39
|
+
"withDescribe": args.withDescribe,
|
|
40
|
+
"withParameters": args.withParameters,
|
|
41
|
+
}, opts);
|
|
33
42
|
}
|
|
34
43
|
exports.getSchemasOutput = getSchemasOutput;
|
|
35
44
|
//# sourceMappingURL=getSchemas.js.map
|
package/getSchemas.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchemas.js","sourceRoot":"","sources":["../getSchemas.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getSchemas.js","sourceRoot":"","sources":["../getSchemas.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gCAWC;AAqED;;;;GAIG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uCAAuC,EAAE;QACxE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,4CAWC"}
|
|
@@ -25,7 +25,12 @@ exports.getSecurityIntegrations = getSecurityIntegrations;
|
|
|
25
25
|
* Datasource used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `securityIntegrations`.
|
|
26
26
|
*/
|
|
27
27
|
function getSecurityIntegrationsOutput(args, opts) {
|
|
28
|
-
|
|
28
|
+
args = args || {};
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getSecurityIntegrations:getSecurityIntegrations", {
|
|
31
|
+
"like": args.like,
|
|
32
|
+
"withDescribe": args.withDescribe,
|
|
33
|
+
}, opts);
|
|
29
34
|
}
|
|
30
35
|
exports.getSecurityIntegrationsOutput = getSecurityIntegrationsOutput;
|
|
31
36
|
//# sourceMappingURL=getSecurityIntegrations.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSecurityIntegrations.js","sourceRoot":"","sources":["../getSecurityIntegrations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getSecurityIntegrations.js","sourceRoot":"","sources":["../getSecurityIntegrations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0DAOC;AAqCD;;;;GAIG;AACH,SAAgB,6BAA6B,CAAC,IAAwC,EAAE,IAA2B;IAC/G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iEAAiE,EAAE;QAClG,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sEAOC"}
|
package/getSequences.js
CHANGED
|
@@ -40,7 +40,11 @@ exports.getSequences = getSequences;
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
function getSequencesOutput(args, opts) {
|
|
43
|
-
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
44
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getSequences:getSequences", {
|
|
45
|
+
"database": args.database,
|
|
46
|
+
"schema": args.schema,
|
|
47
|
+
}, opts);
|
|
44
48
|
}
|
|
45
49
|
exports.getSequencesOutput = getSequencesOutput;
|
|
46
50
|
//# sourceMappingURL=getSequences.js.map
|
package/getSequences.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSequences.js","sourceRoot":"","sources":["../getSequences.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getSequences.js","sourceRoot":"","sources":["../getSequences.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
|
package/getShares.js
CHANGED
|
@@ -40,7 +40,11 @@ exports.getShares = getShares;
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
function getSharesOutput(args, opts) {
|
|
43
|
-
|
|
43
|
+
args = args || {};
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getShares:getShares", {
|
|
46
|
+
"pattern": args.pattern,
|
|
47
|
+
}, opts);
|
|
44
48
|
}
|
|
45
49
|
exports.getSharesOutput = getSharesOutput;
|
|
46
50
|
//# sourceMappingURL=getShares.js.map
|
package/getShares.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getShares.js","sourceRoot":"","sources":["../getShares.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getShares.js","sourceRoot":"","sources":["../getShares.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;AA6BD;;;;;;;;;;;;GAYG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qCAAqC,EAAE;QACtE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC"}
|
package/getStages.js
CHANGED
|
@@ -40,7 +40,11 @@ exports.getStages = getStages;
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
function getStagesOutput(args, opts) {
|
|
43
|
-
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
44
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getStages:getStages", {
|
|
45
|
+
"database": args.database,
|
|
46
|
+
"schema": args.schema,
|
|
47
|
+
}, opts);
|
|
44
48
|
}
|
|
45
49
|
exports.getStagesOutput = getStagesOutput;
|
|
46
50
|
//# sourceMappingURL=getStages.js.map
|
package/getStages.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStages.js","sourceRoot":"","sources":["../getStages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getStages.js","sourceRoot":"","sources":["../getStages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qCAAqC,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC"}
|
|
@@ -31,7 +31,8 @@ exports.getStorageIntegrations = getStorageIntegrations;
|
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
function getStorageIntegrationsOutput(opts) {
|
|
34
|
-
|
|
34
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
35
|
+
return pulumi.runtime.invokeOutput("snowflake:index/getStorageIntegrations:getStorageIntegrations", {}, opts);
|
|
35
36
|
}
|
|
36
37
|
exports.getStorageIntegrationsOutput = getStorageIntegrationsOutput;
|
|
37
38
|
//# sourceMappingURL=getStorageIntegrations.js.map
|