@pulumi/snowflake 0.57.0-alpha.1722063098 → 0.57.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.
Files changed (66) hide show
  1. package/accountRole.d.ts +70 -0
  2. package/accountRole.js +71 -0
  3. package/accountRole.js.map +1 -0
  4. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.d.ts +2 -0
  5. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js +2 -0
  6. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js.map +1 -1
  7. package/apiAuthenticationIntegrationWithClientCredentials.d.ts +2 -0
  8. package/apiAuthenticationIntegrationWithClientCredentials.js +2 -0
  9. package/apiAuthenticationIntegrationWithClientCredentials.js.map +1 -1
  10. package/apiAuthenticationIntegrationWithJwtBearer.d.ts +2 -0
  11. package/apiAuthenticationIntegrationWithJwtBearer.js +2 -0
  12. package/apiAuthenticationIntegrationWithJwtBearer.js.map +1 -1
  13. package/database.d.ts +27 -27
  14. package/externalOauthIntegration.d.ts +1 -1
  15. package/externalOauthIntegration.js +1 -1
  16. package/getNetworkPolicies.d.ts +61 -0
  17. package/getNetworkPolicies.js +31 -0
  18. package/getNetworkPolicies.js.map +1 -0
  19. package/getRoles.d.ts +23 -27
  20. package/getRoles.js +6 -21
  21. package/getRoles.js.map +1 -1
  22. package/getSchemas.d.ts +74 -31
  23. package/getSchemas.js +9 -21
  24. package/getSchemas.js.map +1 -1
  25. package/getStreamlits.d.ts +86 -0
  26. package/getStreamlits.js +33 -0
  27. package/getStreamlits.js.map +1 -0
  28. package/index.d.ts +12 -0
  29. package/index.js +20 -4
  30. package/index.js.map +1 -1
  31. package/networkPolicy.d.ts +39 -8
  32. package/networkPolicy.js +22 -5
  33. package/networkPolicy.js.map +1 -1
  34. package/oauthIntegrationForCustomClients.d.ts +8 -6
  35. package/oauthIntegrationForCustomClients.js +2 -0
  36. package/oauthIntegrationForCustomClients.js.map +1 -1
  37. package/oauthIntegrationForPartnerApplications.d.ts +8 -6
  38. package/oauthIntegrationForPartnerApplications.js +2 -0
  39. package/oauthIntegrationForPartnerApplications.js.map +1 -1
  40. package/package.json +2 -2
  41. package/role.d.ts +16 -27
  42. package/role.js +14 -15
  43. package/role.js.map +1 -1
  44. package/saml2Integration.d.ts +14 -12
  45. package/saml2Integration.js +2 -0
  46. package/saml2Integration.js.map +1 -1
  47. package/schema.d.ts +229 -45
  48. package/schema.js +43 -21
  49. package/schema.js.map +1 -1
  50. package/scimIntegration.d.ts +11 -9
  51. package/scimIntegration.js +2 -0
  52. package/scimIntegration.js.map +1 -1
  53. package/secondaryDatabase.d.ts +27 -27
  54. package/sharedDatabase.d.ts +27 -27
  55. package/streamlit.d.ts +187 -0
  56. package/streamlit.js +96 -0
  57. package/streamlit.js.map +1 -0
  58. package/table.d.ts +0 -63
  59. package/table.js +0 -63
  60. package/table.js.map +1 -1
  61. package/tableConstraint.d.ts +1 -1
  62. package/tableConstraint.js +1 -1
  63. package/types/input.d.ts +329 -41
  64. package/types/output.d.ts +511 -46
  65. package/unsafeExecute.d.ts +4 -4
  66. package/unsafeExecute.js +4 -4
package/getRoles.d.ts CHANGED
@@ -1,17 +1,9 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
- * ## Example Usage
4
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
5
5
  *
6
- * ```typescript
7
- * import * as pulumi from "@pulumi/pulumi";
8
- * import * as snowflake from "@pulumi/snowflake";
9
- *
10
- * const this = snowflake.getRoles({});
11
- * const ad = snowflake.getRoles({
12
- * pattern: "SYSADMIN",
13
- * });
14
- * ```
6
+ * 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.
15
7
  */
16
8
  export declare function getRoles(args?: GetRolesArgs, opts?: pulumi.InvokeOptions): Promise<GetRolesResult>;
17
9
  /**
@@ -19,9 +11,13 @@ export declare function getRoles(args?: GetRolesArgs, opts?: pulumi.InvokeOption
19
11
  */
20
12
  export interface GetRolesArgs {
21
13
  /**
22
- * Filters the command output by object name.
14
+ * Filters the SHOW GRANTS output by class name.
15
+ */
16
+ inClass?: string;
17
+ /**
18
+ * Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
23
19
  */
24
- pattern?: string;
20
+ like?: string;
25
21
  }
26
22
  /**
27
23
  * A collection of values returned by getRoles.
@@ -32,26 +28,22 @@ export interface GetRolesResult {
32
28
  */
33
29
  readonly id: string;
34
30
  /**
35
- * Filters the command output by object name.
31
+ * Filters the SHOW GRANTS output by class name.
32
+ */
33
+ readonly inClass?: string;
34
+ /**
35
+ * Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
36
36
  */
37
- readonly pattern?: string;
37
+ readonly like?: string;
38
38
  /**
39
- * List of all the roles which you can view across your entire account, including the system-defined roles and any custom roles that exist.
39
+ * Holds the aggregated output of all role details queries.
40
40
  */
41
41
  readonly roles: outputs.GetRolesRole[];
42
42
  }
43
43
  /**
44
- * ## Example Usage
45
- *
46
- * ```typescript
47
- * import * as pulumi from "@pulumi/pulumi";
48
- * import * as snowflake from "@pulumi/snowflake";
44
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
49
45
  *
50
- * const this = snowflake.getRoles({});
51
- * const ad = snowflake.getRoles({
52
- * pattern: "SYSADMIN",
53
- * });
54
- * ```
46
+ * 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.
55
47
  */
56
48
  export declare function getRolesOutput(args?: GetRolesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRolesResult>;
57
49
  /**
@@ -59,7 +51,11 @@ export declare function getRolesOutput(args?: GetRolesOutputArgs, opts?: pulumi.
59
51
  */
60
52
  export interface GetRolesOutputArgs {
61
53
  /**
62
- * Filters the command output by object name.
54
+ * Filters the SHOW GRANTS output by class name.
55
+ */
56
+ inClass?: pulumi.Input<string>;
57
+ /**
58
+ * Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
63
59
  */
64
- pattern?: pulumi.Input<string>;
60
+ like?: pulumi.Input<string>;
65
61
  }
package/getRoles.js CHANGED
@@ -6,38 +6,23 @@ exports.getRolesOutput = exports.getRoles = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * ## Example Usage
9
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
10
10
  *
11
- * ```typescript
12
- * import * as pulumi from "@pulumi/pulumi";
13
- * import * as snowflake from "@pulumi/snowflake";
14
- *
15
- * const this = snowflake.getRoles({});
16
- * const ad = snowflake.getRoles({
17
- * pattern: "SYSADMIN",
18
- * });
19
- * ```
11
+ * 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.
20
12
  */
21
13
  function getRoles(args, opts) {
22
14
  args = args || {};
23
15
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
16
  return pulumi.runtime.invoke("snowflake:index/getRoles:getRoles", {
25
- "pattern": args.pattern,
17
+ "inClass": args.inClass,
18
+ "like": args.like,
26
19
  }, opts);
27
20
  }
28
21
  exports.getRoles = getRoles;
29
22
  /**
30
- * ## Example Usage
31
- *
32
- * ```typescript
33
- * import * as pulumi from "@pulumi/pulumi";
34
- * import * as snowflake from "@pulumi/snowflake";
23
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
35
24
  *
36
- * const this = snowflake.getRoles({});
37
- * const ad = snowflake.getRoles({
38
- * pattern: "SYSADMIN",
39
- * });
40
- * ```
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.
41
26
  */
42
27
  function getRolesOutput(args, opts) {
43
28
  return pulumi.output(args).apply((a) => getRoles(a, opts));
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;;;;;;;;;;;;GAYG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,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;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AA6BD;;;;;;;;;;;;GAYG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
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;IAElB,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;AARD,4BAQC;AAqCD;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
package/getSchemas.d.ts CHANGED
@@ -1,63 +1,106 @@
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
- * ## Example Usage
5
- *
6
- * ```typescript
7
- * import * as pulumi from "@pulumi/pulumi";
8
- * import * as snowflake from "@pulumi/snowflake";
9
- *
10
- * const current = snowflake.getSchemas({
11
- * database: "MYDB",
12
- * });
13
- * ```
5
+ * 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.
14
6
  */
15
- export declare function getSchemas(args: GetSchemasArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemasResult>;
7
+ export declare function getSchemas(args?: GetSchemasArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemasResult>;
16
8
  /**
17
9
  * A collection of arguments for invoking getSchemas.
18
10
  */
19
11
  export interface GetSchemasArgs {
20
12
  /**
21
- * The database from which to return the schemas from.
13
+ * IN clause to filter the list of streamlits
22
14
  */
23
- database: string;
15
+ in?: inputs.GetSchemasIn;
16
+ /**
17
+ * Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
18
+ */
19
+ like?: string;
20
+ /**
21
+ * 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`.
22
+ */
23
+ limit?: inputs.GetSchemasLimit;
24
+ /**
25
+ * Filters the output with **case-sensitive** characters indicating the beginning of the object name.
26
+ */
27
+ startsWith?: string;
28
+ /**
29
+ * Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
30
+ */
31
+ withDescribe?: boolean;
32
+ /**
33
+ * Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
34
+ */
35
+ withParameters?: boolean;
24
36
  }
25
37
  /**
26
38
  * A collection of values returned by getSchemas.
27
39
  */
28
40
  export interface GetSchemasResult {
29
- /**
30
- * The database from which to return the schemas from.
31
- */
32
- readonly database: string;
33
41
  /**
34
42
  * The provider-assigned unique ID for this managed resource.
35
43
  */
36
44
  readonly id: string;
37
45
  /**
38
- * The schemas in the database
46
+ * IN clause to filter the list of streamlits
47
+ */
48
+ readonly in?: outputs.GetSchemasIn;
49
+ /**
50
+ * Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
51
+ */
52
+ readonly like?: string;
53
+ /**
54
+ * 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`.
55
+ */
56
+ readonly limit?: outputs.GetSchemasLimit;
57
+ /**
58
+ * Holds the aggregated output of all SCHEMA details queries.
39
59
  */
40
60
  readonly schemas: outputs.GetSchemasSchema[];
61
+ /**
62
+ * Filters the output with **case-sensitive** characters indicating the beginning of the object name.
63
+ */
64
+ readonly startsWith?: string;
65
+ /**
66
+ * Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
67
+ */
68
+ readonly withDescribe?: boolean;
69
+ /**
70
+ * Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
71
+ */
72
+ readonly withParameters?: boolean;
41
73
  }
42
74
  /**
43
- * ## Example Usage
44
- *
45
- * ```typescript
46
- * import * as pulumi from "@pulumi/pulumi";
47
- * import * as snowflake from "@pulumi/snowflake";
48
- *
49
- * const current = snowflake.getSchemas({
50
- * database: "MYDB",
51
- * });
52
- * ```
75
+ * 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.
53
76
  */
54
- export declare function getSchemasOutput(args: GetSchemasOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSchemasResult>;
77
+ export declare function getSchemasOutput(args?: GetSchemasOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSchemasResult>;
55
78
  /**
56
79
  * A collection of arguments for invoking getSchemas.
57
80
  */
58
81
  export interface GetSchemasOutputArgs {
59
82
  /**
60
- * The database from which to return the schemas from.
83
+ * IN clause to filter the list of streamlits
84
+ */
85
+ in?: pulumi.Input<inputs.GetSchemasInArgs>;
86
+ /**
87
+ * Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
88
+ */
89
+ like?: pulumi.Input<string>;
90
+ /**
91
+ * 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`.
92
+ */
93
+ limit?: pulumi.Input<inputs.GetSchemasLimitArgs>;
94
+ /**
95
+ * Filters the output with **case-sensitive** characters indicating the beginning of the object name.
96
+ */
97
+ startsWith?: pulumi.Input<string>;
98
+ /**
99
+ * Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
100
+ */
101
+ withDescribe?: pulumi.Input<boolean>;
102
+ /**
103
+ * Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
61
104
  */
62
- database: pulumi.Input<string>;
105
+ withParameters?: pulumi.Input<boolean>;
63
106
  }
package/getSchemas.js CHANGED
@@ -6,35 +6,23 @@ exports.getSchemasOutput = exports.getSchemas = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * ## Example Usage
10
- *
11
- * ```typescript
12
- * import * as pulumi from "@pulumi/pulumi";
13
- * import * as snowflake from "@pulumi/snowflake";
14
- *
15
- * const current = snowflake.getSchemas({
16
- * database: "MYDB",
17
- * });
18
- * ```
9
+ * 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.
19
10
  */
20
11
  function getSchemas(args, opts) {
12
+ args = args || {};
21
13
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
22
14
  return pulumi.runtime.invoke("snowflake:index/getSchemas:getSchemas", {
23
- "database": args.database,
15
+ "in": args.in,
16
+ "like": args.like,
17
+ "limit": args.limit,
18
+ "startsWith": args.startsWith,
19
+ "withDescribe": args.withDescribe,
20
+ "withParameters": args.withParameters,
24
21
  }, opts);
25
22
  }
26
23
  exports.getSchemas = getSchemas;
27
24
  /**
28
- * ## Example Usage
29
- *
30
- * ```typescript
31
- * import * as pulumi from "@pulumi/pulumi";
32
- * import * as snowflake from "@pulumi/snowflake";
33
- *
34
- * const current = snowflake.getSchemas({
35
- * database: "MYDB",
36
- * });
37
- * ```
25
+ * 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.
38
26
  */
39
27
  function getSchemasOutput(args, opts) {
40
28
  return pulumi.output(args).apply((a) => getSchemas(a, opts));
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;;;;;;;;;;;GAWG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,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,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AA6BD;;;;;;;;;;;GAWG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
1
+ {"version":3,"file":"getSchemas.js","sourceRoot":"","sources":["../getSchemas.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,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;AAZD,gCAYC;AAqED;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
@@ -0,0 +1,86 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
6
+ *
7
+ * Datasource used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
8
+ */
9
+ export declare function getStreamlits(args?: GetStreamlitsArgs, opts?: pulumi.InvokeOptions): Promise<GetStreamlitsResult>;
10
+ /**
11
+ * A collection of arguments for invoking getStreamlits.
12
+ */
13
+ export interface GetStreamlitsArgs {
14
+ /**
15
+ * IN clause to filter the list of streamlits
16
+ */
17
+ in?: inputs.GetStreamlitsIn;
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`.
24
+ */
25
+ limit?: inputs.GetStreamlitsLimit;
26
+ /**
27
+ * Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
28
+ */
29
+ withDescribe?: boolean;
30
+ }
31
+ /**
32
+ * A collection of values returned by getStreamlits.
33
+ */
34
+ export interface GetStreamlitsResult {
35
+ /**
36
+ * The provider-assigned unique ID for this managed resource.
37
+ */
38
+ readonly id: string;
39
+ /**
40
+ * IN clause to filter the list of streamlits
41
+ */
42
+ readonly in?: outputs.GetStreamlitsIn;
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.GetStreamlitsLimit;
51
+ /**
52
+ * Holds the aggregated output of all streamlits details queries.
53
+ */
54
+ readonly streamlits: outputs.GetStreamlitsStreamlit[];
55
+ /**
56
+ * Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
57
+ */
58
+ readonly withDescribe?: boolean;
59
+ }
60
+ /**
61
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
62
+ *
63
+ * Datasource used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
64
+ */
65
+ export declare function getStreamlitsOutput(args?: GetStreamlitsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetStreamlitsResult>;
66
+ /**
67
+ * A collection of arguments for invoking getStreamlits.
68
+ */
69
+ export interface GetStreamlitsOutputArgs {
70
+ /**
71
+ * IN clause to filter the list of streamlits
72
+ */
73
+ in?: pulumi.Input<inputs.GetStreamlitsInArgs>;
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`.
80
+ */
81
+ limit?: pulumi.Input<inputs.GetStreamlitsLimitArgs>;
82
+ /**
83
+ * Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
84
+ */
85
+ withDescribe?: pulumi.Input<boolean>;
86
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getStreamlitsOutput = exports.getStreamlits = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
10
+ *
11
+ * Datasource used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
12
+ */
13
+ function getStreamlits(args, opts) {
14
+ args = args || {};
15
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
16
+ return pulumi.runtime.invoke("snowflake:index/getStreamlits:getStreamlits", {
17
+ "in": args.in,
18
+ "like": args.like,
19
+ "limit": args.limit,
20
+ "withDescribe": args.withDescribe,
21
+ }, opts);
22
+ }
23
+ exports.getStreamlits = getStreamlits;
24
+ /**
25
+ * !> **V1 release candidate** This resource 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 resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
26
+ *
27
+ * Datasource used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
28
+ */
29
+ function getStreamlitsOutput(args, opts) {
30
+ return pulumi.output(args).apply((a) => getStreamlits(a, opts));
31
+ }
32
+ exports.getStreamlitsOutput = getStreamlitsOutput;
33
+ //# sourceMappingURL=getStreamlits.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getStreamlits.js","sourceRoot":"","sources":["../getStreamlits.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,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,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;AAVD,sCAUC;AAqDD;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
package/index.d.ts CHANGED
@@ -7,6 +7,9 @@ export declare const AccountParameter: typeof import("./accountParameter").Accou
7
7
  export { AccountPasswordPolicyAttachmentArgs, AccountPasswordPolicyAttachmentState } from "./accountPasswordPolicyAttachment";
8
8
  export type AccountPasswordPolicyAttachment = import("./accountPasswordPolicyAttachment").AccountPasswordPolicyAttachment;
9
9
  export declare const AccountPasswordPolicyAttachment: typeof import("./accountPasswordPolicyAttachment").AccountPasswordPolicyAttachment;
10
+ export { AccountRoleArgs, AccountRoleState } from "./accountRole";
11
+ export type AccountRole = import("./accountRole").AccountRole;
12
+ export declare const AccountRole: typeof import("./accountRole").AccountRole;
10
13
  export { AlertArgs, AlertState } from "./alert";
11
14
  export type Alert = import("./alert").Alert;
12
15
  export declare const Alert: typeof import("./alert").Alert;
@@ -112,6 +115,9 @@ export declare const getMaskingPoliciesOutput: typeof import("./getMaskingPolici
112
115
  export { GetMaterializedViewsArgs, GetMaterializedViewsResult, GetMaterializedViewsOutputArgs } from "./getMaterializedViews";
113
116
  export declare const getMaterializedViews: typeof import("./getMaterializedViews").getMaterializedViews;
114
117
  export declare const getMaterializedViewsOutput: typeof import("./getMaterializedViews").getMaterializedViewsOutput;
118
+ export { GetNetworkPoliciesArgs, GetNetworkPoliciesResult, GetNetworkPoliciesOutputArgs } from "./getNetworkPolicies";
119
+ export declare const getNetworkPolicies: typeof import("./getNetworkPolicies").getNetworkPolicies;
120
+ export declare const getNetworkPoliciesOutput: typeof import("./getNetworkPolicies").getNetworkPoliciesOutput;
115
121
  export { GetParametersArgs, GetParametersResult, GetParametersOutputArgs } from "./getParameters";
116
122
  export declare const getParameters: typeof import("./getParameters").getParameters;
117
123
  export declare const getParametersOutput: typeof import("./getParameters").getParametersOutput;
@@ -151,6 +157,9 @@ export declare const getStagesOutput: typeof import("./getStages").getStagesOutp
151
157
  export { GetStorageIntegrationsResult } from "./getStorageIntegrations";
152
158
  export declare const getStorageIntegrations: typeof import("./getStorageIntegrations").getStorageIntegrations;
153
159
  export declare const getStorageIntegrationsOutput: typeof import("./getStorageIntegrations").getStorageIntegrationsOutput;
160
+ export { GetStreamlitsArgs, GetStreamlitsResult, GetStreamlitsOutputArgs } from "./getStreamlits";
161
+ export declare const getStreamlits: typeof import("./getStreamlits").getStreamlits;
162
+ export declare const getStreamlitsOutput: typeof import("./getStreamlits").getStreamlitsOutput;
154
163
  export { GetStreamsArgs, GetStreamsResult, GetStreamsOutputArgs } from "./getStreams";
155
164
  export declare const getStreams: typeof import("./getStreams").getStreams;
156
165
  export declare const getStreamsOutput: typeof import("./getStreams").getStreamsOutput;
@@ -292,6 +301,9 @@ export declare const StorageIntegration: typeof import("./storageIntegration").S
292
301
  export { StreamArgs, StreamState } from "./stream";
293
302
  export type Stream = import("./stream").Stream;
294
303
  export declare const Stream: typeof import("./stream").Stream;
304
+ export { StreamlitArgs, StreamlitState } from "./streamlit";
305
+ export type Streamlit = import("./streamlit").Streamlit;
306
+ export declare const Streamlit: typeof import("./streamlit").Streamlit;
295
307
  export { TableArgs, TableState } from "./table";
296
308
  export type Table = import("./table").Table;
297
309
  export declare const Table: typeof import("./table").Table;
package/index.js CHANGED
@@ -2,10 +2,10 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.getFunctionsOutput = exports.getFunctions = exports.getFileFormatsOutput = exports.getFileFormats = exports.getFailoverGroupsOutput = exports.getFailoverGroups = exports.getExternalTablesOutput = exports.getExternalTables = exports.getExternalFunctionsOutput = exports.getExternalFunctions = exports.getDynamicTablesOutput = exports.getDynamicTables = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseRolesOutput = exports.getDatabaseRoles = exports.getDatabaseRoleOutput = exports.getDatabaseRole = exports.getDatabaseOutput = exports.getDatabase = exports.getCurrentRoleOutput = exports.getCurrentRole = exports.getCurrentAccountOutput = exports.getCurrentAccount = exports.getCortexSearchServicesOutput = exports.getCortexSearchServices = exports.getAlertsOutput = exports.getAlerts = exports.getAccountsOutput = exports.getAccounts = exports.Function = exports.FileFormat = exports.FailoverGroup = exports.ExternalTable = exports.ExternalOauthIntegration = exports.ExternalFunction = exports.EmailNotificationIntegration = exports.DynamicTable = exports.DatabaseRole = exports.DatabaseOld = exports.Database = exports.CortexSearchService = exports.ApiIntegration = exports.ApiAuthenticationIntegrationWithJwtBearer = exports.ApiAuthenticationIntegrationWithClientCredentials = exports.ApiAuthenticationIntegrationWithAuthorizationCodeGrant = exports.Alert = exports.AccountPasswordPolicyAttachment = exports.AccountParameter = exports.Account = void 0;
6
- exports.getViewsOutput = exports.getViews = exports.getUsersOutput = exports.getUsers = exports.getTasksOutput = exports.getTasks = exports.getTablesOutput = exports.getTables = exports.getSystemGetSnowflakePlatformInfoOutput = exports.getSystemGetSnowflakePlatformInfo = exports.getSystemGetPrivateLinkConfigOutput = exports.getSystemGetPrivateLinkConfig = exports.getSystemGetAwsSnsIamPolicyOutput = exports.getSystemGetAwsSnsIamPolicy = exports.getSystemGenerateScimAccessTokenOutput = exports.getSystemGenerateScimAccessToken = exports.getStreamsOutput = exports.getStreams = exports.getStorageIntegrationsOutput = exports.getStorageIntegrations = exports.getStagesOutput = exports.getStages = exports.getSharesOutput = exports.getShares = exports.getSequencesOutput = exports.getSequences = exports.getSecurityIntegrationsOutput = exports.getSecurityIntegrations = exports.getSchemasOutput = exports.getSchemas = exports.getRowAccessPoliciesOutput = exports.getRowAccessPolicies = exports.getRolesOutput = exports.getRoles = exports.getRoleOutput = exports.getRole = exports.getResourceMonitorsOutput = exports.getResourceMonitors = exports.getProceduresOutput = exports.getProcedures = exports.getPipesOutput = exports.getPipes = exports.getParametersOutput = exports.getParameters = exports.getMaterializedViewsOutput = exports.getMaterializedViews = exports.getMaskingPoliciesOutput = exports.getMaskingPolicies = exports.getGrantsOutput = exports.getGrants = void 0;
7
- exports.UserPublicKeys = exports.UserPasswordPolicyAttachment = exports.User = exports.UnsafeExecute = exports.Task = exports.TagMaskingPolicyAssociation = exports.TagAssociation = exports.Tag = exports.TableConstraint = exports.TableColumnMaskingPolicyApplication = exports.Table = exports.Stream = exports.StorageIntegration = exports.Stage = exports.SharedDatabase = exports.Share = exports.SessionParameter = exports.Sequence = exports.SecondaryDatabase = exports.ScimIntegration = exports.Schema = exports.SamlIntegration = exports.Saml2Integration = exports.RowAccessPolicy = exports.Role = exports.ResourceMonitor = exports.Provider = exports.Procedure = exports.Pipe = exports.PasswordPolicy = exports.ObjectParameter = exports.OauthIntegrationForPartnerApplications = exports.OauthIntegrationForCustomClients = exports.OauthIntegration = exports.NotificationIntegration = exports.NetworkRule = exports.NetworkPolicyAttachment = exports.NetworkPolicy = exports.MaterializedView = exports.MaskingPolicy = exports.ManagedAccount = exports.GrantPrivilegesToShare = exports.GrantPrivilegesToDatabaseRole = exports.GrantPrivilegesToAccountRole = exports.GrantOwnership = exports.GrantDatabaseRole = exports.GrantApplicationRole = exports.GrantAccountRole = exports.getWarehousesOutput = exports.getWarehouses = void 0;
8
- exports.types = exports.config = exports.Warehouse = exports.View = void 0;
5
+ exports.getFunctions = exports.getFileFormatsOutput = exports.getFileFormats = exports.getFailoverGroupsOutput = exports.getFailoverGroups = exports.getExternalTablesOutput = exports.getExternalTables = exports.getExternalFunctionsOutput = exports.getExternalFunctions = exports.getDynamicTablesOutput = exports.getDynamicTables = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseRolesOutput = exports.getDatabaseRoles = exports.getDatabaseRoleOutput = exports.getDatabaseRole = exports.getDatabaseOutput = exports.getDatabase = exports.getCurrentRoleOutput = exports.getCurrentRole = exports.getCurrentAccountOutput = exports.getCurrentAccount = exports.getCortexSearchServicesOutput = exports.getCortexSearchServices = exports.getAlertsOutput = exports.getAlerts = exports.getAccountsOutput = exports.getAccounts = exports.Function = exports.FileFormat = exports.FailoverGroup = exports.ExternalTable = exports.ExternalOauthIntegration = exports.ExternalFunction = exports.EmailNotificationIntegration = exports.DynamicTable = exports.DatabaseRole = exports.DatabaseOld = exports.Database = exports.CortexSearchService = exports.ApiIntegration = exports.ApiAuthenticationIntegrationWithJwtBearer = exports.ApiAuthenticationIntegrationWithClientCredentials = exports.ApiAuthenticationIntegrationWithAuthorizationCodeGrant = exports.Alert = exports.AccountRole = exports.AccountPasswordPolicyAttachment = exports.AccountParameter = exports.Account = void 0;
6
+ exports.getTasks = exports.getTablesOutput = exports.getTables = exports.getSystemGetSnowflakePlatformInfoOutput = exports.getSystemGetSnowflakePlatformInfo = exports.getSystemGetPrivateLinkConfigOutput = exports.getSystemGetPrivateLinkConfig = exports.getSystemGetAwsSnsIamPolicyOutput = exports.getSystemGetAwsSnsIamPolicy = exports.getSystemGenerateScimAccessTokenOutput = exports.getSystemGenerateScimAccessToken = exports.getStreamsOutput = exports.getStreams = exports.getStreamlitsOutput = exports.getStreamlits = exports.getStorageIntegrationsOutput = exports.getStorageIntegrations = exports.getStagesOutput = exports.getStages = exports.getSharesOutput = exports.getShares = exports.getSequencesOutput = exports.getSequences = exports.getSecurityIntegrationsOutput = exports.getSecurityIntegrations = exports.getSchemasOutput = exports.getSchemas = exports.getRowAccessPoliciesOutput = exports.getRowAccessPolicies = exports.getRolesOutput = exports.getRoles = exports.getRoleOutput = exports.getRole = exports.getResourceMonitorsOutput = exports.getResourceMonitors = exports.getProceduresOutput = exports.getProcedures = exports.getPipesOutput = exports.getPipes = exports.getParametersOutput = exports.getParameters = exports.getNetworkPoliciesOutput = exports.getNetworkPolicies = exports.getMaterializedViewsOutput = exports.getMaterializedViews = exports.getMaskingPoliciesOutput = exports.getMaskingPolicies = exports.getGrantsOutput = exports.getGrants = exports.getFunctionsOutput = void 0;
7
+ exports.TagAssociation = exports.Tag = exports.TableConstraint = exports.TableColumnMaskingPolicyApplication = exports.Table = exports.Streamlit = exports.Stream = exports.StorageIntegration = exports.Stage = exports.SharedDatabase = exports.Share = exports.SessionParameter = exports.Sequence = exports.SecondaryDatabase = exports.ScimIntegration = exports.Schema = exports.SamlIntegration = exports.Saml2Integration = exports.RowAccessPolicy = exports.Role = exports.ResourceMonitor = exports.Provider = exports.Procedure = exports.Pipe = exports.PasswordPolicy = exports.ObjectParameter = exports.OauthIntegrationForPartnerApplications = exports.OauthIntegrationForCustomClients = exports.OauthIntegration = exports.NotificationIntegration = exports.NetworkRule = exports.NetworkPolicyAttachment = exports.NetworkPolicy = exports.MaterializedView = exports.MaskingPolicy = exports.ManagedAccount = exports.GrantPrivilegesToShare = exports.GrantPrivilegesToDatabaseRole = exports.GrantPrivilegesToAccountRole = exports.GrantOwnership = exports.GrantDatabaseRole = exports.GrantApplicationRole = exports.GrantAccountRole = exports.getWarehousesOutput = exports.getWarehouses = exports.getViewsOutput = exports.getViews = exports.getUsersOutput = exports.getUsers = exports.getTasksOutput = void 0;
8
+ exports.types = exports.config = exports.Warehouse = exports.View = exports.UserPublicKeys = exports.UserPasswordPolicyAttachment = exports.User = exports.UnsafeExecute = exports.Task = exports.TagMaskingPolicyAssociation = void 0;
9
9
  const pulumi = require("@pulumi/pulumi");
10
10
  const utilities = require("./utilities");
11
11
  exports.Account = null;
@@ -14,6 +14,8 @@ exports.AccountParameter = null;
14
14
  utilities.lazyLoad(exports, ["AccountParameter"], () => require("./accountParameter"));
15
15
  exports.AccountPasswordPolicyAttachment = null;
16
16
  utilities.lazyLoad(exports, ["AccountPasswordPolicyAttachment"], () => require("./accountPasswordPolicyAttachment"));
17
+ exports.AccountRole = null;
18
+ utilities.lazyLoad(exports, ["AccountRole"], () => require("./accountRole"));
17
19
  exports.Alert = null;
18
20
  utilities.lazyLoad(exports, ["Alert"], () => require("./alert"));
19
21
  exports.ApiAuthenticationIntegrationWithAuthorizationCodeGrant = null;
@@ -102,6 +104,9 @@ utilities.lazyLoad(exports, ["getMaskingPolicies", "getMaskingPoliciesOutput"],
102
104
  exports.getMaterializedViews = null;
103
105
  exports.getMaterializedViewsOutput = null;
104
106
  utilities.lazyLoad(exports, ["getMaterializedViews", "getMaterializedViewsOutput"], () => require("./getMaterializedViews"));
107
+ exports.getNetworkPolicies = null;
108
+ exports.getNetworkPoliciesOutput = null;
109
+ utilities.lazyLoad(exports, ["getNetworkPolicies", "getNetworkPoliciesOutput"], () => require("./getNetworkPolicies"));
105
110
  exports.getParameters = null;
106
111
  exports.getParametersOutput = null;
107
112
  utilities.lazyLoad(exports, ["getParameters", "getParametersOutput"], () => require("./getParameters"));
@@ -141,6 +146,9 @@ utilities.lazyLoad(exports, ["getStages", "getStagesOutput"], () => require("./g
141
146
  exports.getStorageIntegrations = null;
142
147
  exports.getStorageIntegrationsOutput = null;
143
148
  utilities.lazyLoad(exports, ["getStorageIntegrations", "getStorageIntegrationsOutput"], () => require("./getStorageIntegrations"));
149
+ exports.getStreamlits = null;
150
+ exports.getStreamlitsOutput = null;
151
+ utilities.lazyLoad(exports, ["getStreamlits", "getStreamlitsOutput"], () => require("./getStreamlits"));
144
152
  exports.getStreams = null;
145
153
  exports.getStreamsOutput = null;
146
154
  utilities.lazyLoad(exports, ["getStreams", "getStreamsOutput"], () => require("./getStreams"));
@@ -245,6 +253,8 @@ exports.StorageIntegration = null;
245
253
  utilities.lazyLoad(exports, ["StorageIntegration"], () => require("./storageIntegration"));
246
254
  exports.Stream = null;
247
255
  utilities.lazyLoad(exports, ["Stream"], () => require("./stream"));
256
+ exports.Streamlit = null;
257
+ utilities.lazyLoad(exports, ["Streamlit"], () => require("./streamlit"));
248
258
  exports.Table = null;
249
259
  utilities.lazyLoad(exports, ["Table"], () => require("./table"));
250
260
  exports.TableColumnMaskingPolicyApplication = null;
@@ -286,6 +296,8 @@ const _module = {
286
296
  return new exports.AccountParameter(name, undefined, { urn });
287
297
  case "snowflake:index/accountPasswordPolicyAttachment:AccountPasswordPolicyAttachment":
288
298
  return new exports.AccountPasswordPolicyAttachment(name, undefined, { urn });
299
+ case "snowflake:index/accountRole:AccountRole":
300
+ return new exports.AccountRole(name, undefined, { urn });
289
301
  case "snowflake:index/alert:Alert":
290
302
  return new exports.Alert(name, undefined, { urn });
291
303
  case "snowflake:index/apiAuthenticationIntegrationWithAuthorizationCodeGrant:ApiAuthenticationIntegrationWithAuthorizationCodeGrant":
@@ -392,6 +404,8 @@ const _module = {
392
404
  return new exports.StorageIntegration(name, undefined, { urn });
393
405
  case "snowflake:index/stream:Stream":
394
406
  return new exports.Stream(name, undefined, { urn });
407
+ case "snowflake:index/streamlit:Streamlit":
408
+ return new exports.Streamlit(name, undefined, { urn });
395
409
  case "snowflake:index/table:Table":
396
410
  return new exports.Table(name, undefined, { urn });
397
411
  case "snowflake:index/tableColumnMaskingPolicyApplication:TableColumnMaskingPolicyApplication":
@@ -426,6 +440,7 @@ const _module = {
426
440
  pulumi.runtime.registerResourceModule("snowflake", "index/account", _module);
427
441
  pulumi.runtime.registerResourceModule("snowflake", "index/accountParameter", _module);
428
442
  pulumi.runtime.registerResourceModule("snowflake", "index/accountPasswordPolicyAttachment", _module);
443
+ pulumi.runtime.registerResourceModule("snowflake", "index/accountRole", _module);
429
444
  pulumi.runtime.registerResourceModule("snowflake", "index/alert", _module);
430
445
  pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationIntegrationWithAuthorizationCodeGrant", _module);
431
446
  pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationIntegrationWithClientCredentials", _module);
@@ -479,6 +494,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/sharedDatabase", _modu
479
494
  pulumi.runtime.registerResourceModule("snowflake", "index/stage", _module);
480
495
  pulumi.runtime.registerResourceModule("snowflake", "index/storageIntegration", _module);
481
496
  pulumi.runtime.registerResourceModule("snowflake", "index/stream", _module);
497
+ pulumi.runtime.registerResourceModule("snowflake", "index/streamlit", _module);
482
498
  pulumi.runtime.registerResourceModule("snowflake", "index/table", _module);
483
499
  pulumi.runtime.registerResourceModule("snowflake", "index/tableColumnMaskingPolicyApplication", _module);
484
500
  pulumi.runtime.registerResourceModule("snowflake", "index/tableConstraint", _module);