@pulumi/snowflake 2.1.0-alpha.1750230214 → 2.1.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 (65) hide show
  1. package/account.d.ts +12 -0
  2. package/account.js +2 -0
  3. package/account.js.map +1 -1
  4. package/computePool.d.ts +177 -0
  5. package/computePool.js +87 -0
  6. package/computePool.js.map +1 -0
  7. package/config/vars.d.ts +4 -2
  8. package/config/vars.js.map +1 -1
  9. package/cortexSearchService.d.ts +22 -0
  10. package/cortexSearchService.js +4 -0
  11. package/cortexSearchService.js.map +1 -1
  12. package/currentAccount.d.ts +1512 -0
  13. package/currentAccount.js +302 -0
  14. package/currentAccount.js.map +1 -0
  15. package/database.d.ts +3 -3
  16. package/getComputePools.d.ts +86 -0
  17. package/getComputePools.js +40 -0
  18. package/getComputePools.js.map +1 -0
  19. package/getCortexSearchServices.d.ts +3 -3
  20. package/getDatabaseRoles.d.ts +3 -3
  21. package/getDatabases.d.ts +3 -3
  22. package/getGitRepositories.d.ts +86 -0
  23. package/getGitRepositories.js +40 -0
  24. package/getGitRepositories.js.map +1 -0
  25. package/getImageRepositories.d.ts +62 -0
  26. package/getImageRepositories.js +36 -0
  27. package/getImageRepositories.js.map +1 -0
  28. package/getMaskingPolicies.d.ts +3 -3
  29. package/getRowAccessPolicies.d.ts +3 -3
  30. package/getSchemas.d.ts +3 -3
  31. package/getServices.d.ts +110 -0
  32. package/getServices.js +44 -0
  33. package/getServices.js.map +1 -0
  34. package/getStreamlits.d.ts +3 -3
  35. package/getStreams.d.ts +3 -3
  36. package/getTables.d.ts +56 -43
  37. package/getTables.js +14 -30
  38. package/getTables.js.map +1 -1
  39. package/getTasks.d.ts +3 -3
  40. package/getUsers.d.ts +3 -3
  41. package/getViews.d.ts +3 -3
  42. package/gitRepository.d.ts +153 -0
  43. package/gitRepository.js +86 -0
  44. package/gitRepository.js.map +1 -0
  45. package/imageRepository.d.ts +109 -0
  46. package/imageRepository.js +72 -0
  47. package/imageRepository.js.map +1 -0
  48. package/index.d.ts +30 -0
  49. package/index.js +46 -4
  50. package/index.js.map +1 -1
  51. package/jobService.d.ts +185 -0
  52. package/jobService.js +89 -0
  53. package/jobService.js.map +1 -0
  54. package/package.json +2 -2
  55. package/provider.d.ts +8 -4
  56. package/provider.js.map +1 -1
  57. package/schema.d.ts +3 -3
  58. package/secondaryDatabase.d.ts +3 -3
  59. package/service.d.ts +245 -0
  60. package/service.js +99 -0
  61. package/service.js.map +1 -0
  62. package/sharedDatabase.d.ts +3 -3
  63. package/tagAssociation.d.ts +3 -3
  64. package/types/input.d.ts +540 -2
  65. package/types/output.d.ts +655 -4
package/service.d.ts ADDED
@@ -0,0 +1,245 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * ## Import
6
+ *
7
+ * ```sh
8
+ * $ pulumi import snowflake:index/service:Service example '"<database_name>"."<schema_name>"."<service_name>"'
9
+ * ```
10
+ */
11
+ export declare class Service extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing Service resource's state with the given name, ID, and optional extra
14
+ * properties used to qualify the lookup.
15
+ *
16
+ * @param name The _unique_ name of the resulting resource.
17
+ * @param id The _unique_ provider ID of the resource to lookup.
18
+ * @param state Any extra arguments used during the lookup.
19
+ * @param opts Optional settings to control the behavior of the CustomResource.
20
+ */
21
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceState, opts?: pulumi.CustomResourceOptions): Service;
22
+ /**
23
+ * Returns true if the given object is an instance of Service. This is designed to work even
24
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
25
+ */
26
+ static isInstance(obj: any): obj is Service;
27
+ /**
28
+ * (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
29
+ */
30
+ readonly autoResume: pulumi.Output<string | undefined>;
31
+ /**
32
+ * (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
33
+ */
34
+ readonly autoSuspendSecs: pulumi.Output<number | undefined>;
35
+ /**
36
+ * Specifies a comment for the service.
37
+ */
38
+ readonly comment: pulumi.Output<string | undefined>;
39
+ /**
40
+ * Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
41
+ */
42
+ readonly computePool: pulumi.Output<string>;
43
+ /**
44
+ * The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
45
+ */
46
+ readonly database: pulumi.Output<string>;
47
+ /**
48
+ * Outputs the result of `DESCRIBE SERVICE` for the given service.
49
+ */
50
+ readonly describeOutputs: pulumi.Output<outputs.ServiceDescribeOutput[]>;
51
+ /**
52
+ * Specifies the names of the external access integrations that allow your service to access external sites.
53
+ */
54
+ readonly externalAccessIntegrations: pulumi.Output<string[] | undefined>;
55
+ /**
56
+ * Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
57
+ */
58
+ readonly fromSpecification: pulumi.Output<outputs.ServiceFromSpecification | undefined>;
59
+ /**
60
+ * Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
61
+ */
62
+ readonly fromSpecificationTemplate: pulumi.Output<outputs.ServiceFromSpecificationTemplate | undefined>;
63
+ /**
64
+ * Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
65
+ */
66
+ readonly fullyQualifiedName: pulumi.Output<string>;
67
+ /**
68
+ * Specifies the maximum number of service instances to run.
69
+ */
70
+ readonly maxInstances: pulumi.Output<number | undefined>;
71
+ /**
72
+ * Specifies the minimum number of service instances to run.
73
+ */
74
+ readonly minInstances: pulumi.Output<number | undefined>;
75
+ /**
76
+ * Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
77
+ */
78
+ readonly minReadyInstances: pulumi.Output<number | undefined>;
79
+ /**
80
+ * Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
81
+ */
82
+ readonly name: pulumi.Output<string>;
83
+ /**
84
+ * Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
85
+ */
86
+ readonly queryWarehouse: pulumi.Output<string | undefined>;
87
+ /**
88
+ * The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
89
+ */
90
+ readonly schema: pulumi.Output<string>;
91
+ /**
92
+ * Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
93
+ */
94
+ readonly serviceType: pulumi.Output<string>;
95
+ /**
96
+ * Outputs the result of `SHOW SERVICES` for the given service.
97
+ */
98
+ readonly showOutputs: pulumi.Output<outputs.ServiceShowOutput[]>;
99
+ /**
100
+ * Create a Service resource with the given unique name, arguments, and options.
101
+ *
102
+ * @param name The _unique_ name of the resource.
103
+ * @param args The arguments to use to populate this resource's properties.
104
+ * @param opts A bag of options that control this resource's behavior.
105
+ */
106
+ constructor(name: string, args: ServiceArgs, opts?: pulumi.CustomResourceOptions);
107
+ }
108
+ /**
109
+ * Input properties used for looking up and filtering Service resources.
110
+ */
111
+ export interface ServiceState {
112
+ /**
113
+ * (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
114
+ */
115
+ autoResume?: pulumi.Input<string>;
116
+ /**
117
+ * (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
118
+ */
119
+ autoSuspendSecs?: pulumi.Input<number>;
120
+ /**
121
+ * Specifies a comment for the service.
122
+ */
123
+ comment?: pulumi.Input<string>;
124
+ /**
125
+ * Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
126
+ */
127
+ computePool?: pulumi.Input<string>;
128
+ /**
129
+ * The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
130
+ */
131
+ database?: pulumi.Input<string>;
132
+ /**
133
+ * Outputs the result of `DESCRIBE SERVICE` for the given service.
134
+ */
135
+ describeOutputs?: pulumi.Input<pulumi.Input<inputs.ServiceDescribeOutput>[]>;
136
+ /**
137
+ * Specifies the names of the external access integrations that allow your service to access external sites.
138
+ */
139
+ externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
140
+ /**
141
+ * Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
142
+ */
143
+ fromSpecification?: pulumi.Input<inputs.ServiceFromSpecification>;
144
+ /**
145
+ * Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
146
+ */
147
+ fromSpecificationTemplate?: pulumi.Input<inputs.ServiceFromSpecificationTemplate>;
148
+ /**
149
+ * Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
150
+ */
151
+ fullyQualifiedName?: pulumi.Input<string>;
152
+ /**
153
+ * Specifies the maximum number of service instances to run.
154
+ */
155
+ maxInstances?: pulumi.Input<number>;
156
+ /**
157
+ * Specifies the minimum number of service instances to run.
158
+ */
159
+ minInstances?: pulumi.Input<number>;
160
+ /**
161
+ * Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
162
+ */
163
+ minReadyInstances?: pulumi.Input<number>;
164
+ /**
165
+ * Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
166
+ */
167
+ name?: pulumi.Input<string>;
168
+ /**
169
+ * Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
170
+ */
171
+ queryWarehouse?: pulumi.Input<string>;
172
+ /**
173
+ * The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
174
+ */
175
+ schema?: pulumi.Input<string>;
176
+ /**
177
+ * Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
178
+ */
179
+ serviceType?: pulumi.Input<string>;
180
+ /**
181
+ * Outputs the result of `SHOW SERVICES` for the given service.
182
+ */
183
+ showOutputs?: pulumi.Input<pulumi.Input<inputs.ServiceShowOutput>[]>;
184
+ }
185
+ /**
186
+ * The set of arguments for constructing a Service resource.
187
+ */
188
+ export interface ServiceArgs {
189
+ /**
190
+ * (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
191
+ */
192
+ autoResume?: pulumi.Input<string>;
193
+ /**
194
+ * (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
195
+ */
196
+ autoSuspendSecs?: pulumi.Input<number>;
197
+ /**
198
+ * Specifies a comment for the service.
199
+ */
200
+ comment?: pulumi.Input<string>;
201
+ /**
202
+ * Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
203
+ */
204
+ computePool: pulumi.Input<string>;
205
+ /**
206
+ * The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
207
+ */
208
+ database: pulumi.Input<string>;
209
+ /**
210
+ * Specifies the names of the external access integrations that allow your service to access external sites.
211
+ */
212
+ externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
213
+ /**
214
+ * Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
215
+ */
216
+ fromSpecification?: pulumi.Input<inputs.ServiceFromSpecification>;
217
+ /**
218
+ * Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
219
+ */
220
+ fromSpecificationTemplate?: pulumi.Input<inputs.ServiceFromSpecificationTemplate>;
221
+ /**
222
+ * Specifies the maximum number of service instances to run.
223
+ */
224
+ maxInstances?: pulumi.Input<number>;
225
+ /**
226
+ * Specifies the minimum number of service instances to run.
227
+ */
228
+ minInstances?: pulumi.Input<number>;
229
+ /**
230
+ * Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
231
+ */
232
+ minReadyInstances?: pulumi.Input<number>;
233
+ /**
234
+ * Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
235
+ */
236
+ name?: pulumi.Input<string>;
237
+ /**
238
+ * Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
239
+ */
240
+ queryWarehouse?: pulumi.Input<string>;
241
+ /**
242
+ * The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
243
+ */
244
+ schema: pulumi.Input<string>;
245
+ }
package/service.js ADDED
@@ -0,0 +1,99 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.Service = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * ## Import
10
+ *
11
+ * ```sh
12
+ * $ pulumi import snowflake:index/service:Service example '"<database_name>"."<schema_name>"."<service_name>"'
13
+ * ```
14
+ */
15
+ class Service extends pulumi.CustomResource {
16
+ /**
17
+ * Get an existing Service resource's state with the given name, ID, and optional extra
18
+ * properties used to qualify the lookup.
19
+ *
20
+ * @param name The _unique_ name of the resulting resource.
21
+ * @param id The _unique_ provider ID of the resource to lookup.
22
+ * @param state Any extra arguments used during the lookup.
23
+ * @param opts Optional settings to control the behavior of the CustomResource.
24
+ */
25
+ static get(name, id, state, opts) {
26
+ return new Service(name, state, Object.assign(Object.assign({}, opts), { id: id }));
27
+ }
28
+ /**
29
+ * Returns true if the given object is an instance of Service. This is designed to work even
30
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
31
+ */
32
+ static isInstance(obj) {
33
+ if (obj === undefined || obj === null) {
34
+ return false;
35
+ }
36
+ return obj['__pulumiType'] === Service.__pulumiType;
37
+ }
38
+ constructor(name, argsOrState, opts) {
39
+ let resourceInputs = {};
40
+ opts = opts || {};
41
+ if (opts.id) {
42
+ const state = argsOrState;
43
+ resourceInputs["autoResume"] = state ? state.autoResume : undefined;
44
+ resourceInputs["autoSuspendSecs"] = state ? state.autoSuspendSecs : undefined;
45
+ resourceInputs["comment"] = state ? state.comment : undefined;
46
+ resourceInputs["computePool"] = state ? state.computePool : undefined;
47
+ resourceInputs["database"] = state ? state.database : undefined;
48
+ resourceInputs["describeOutputs"] = state ? state.describeOutputs : undefined;
49
+ resourceInputs["externalAccessIntegrations"] = state ? state.externalAccessIntegrations : undefined;
50
+ resourceInputs["fromSpecification"] = state ? state.fromSpecification : undefined;
51
+ resourceInputs["fromSpecificationTemplate"] = state ? state.fromSpecificationTemplate : undefined;
52
+ resourceInputs["fullyQualifiedName"] = state ? state.fullyQualifiedName : undefined;
53
+ resourceInputs["maxInstances"] = state ? state.maxInstances : undefined;
54
+ resourceInputs["minInstances"] = state ? state.minInstances : undefined;
55
+ resourceInputs["minReadyInstances"] = state ? state.minReadyInstances : undefined;
56
+ resourceInputs["name"] = state ? state.name : undefined;
57
+ resourceInputs["queryWarehouse"] = state ? state.queryWarehouse : undefined;
58
+ resourceInputs["schema"] = state ? state.schema : undefined;
59
+ resourceInputs["serviceType"] = state ? state.serviceType : undefined;
60
+ resourceInputs["showOutputs"] = state ? state.showOutputs : undefined;
61
+ }
62
+ else {
63
+ const args = argsOrState;
64
+ if ((!args || args.computePool === undefined) && !opts.urn) {
65
+ throw new Error("Missing required property 'computePool'");
66
+ }
67
+ if ((!args || args.database === undefined) && !opts.urn) {
68
+ throw new Error("Missing required property 'database'");
69
+ }
70
+ if ((!args || args.schema === undefined) && !opts.urn) {
71
+ throw new Error("Missing required property 'schema'");
72
+ }
73
+ resourceInputs["autoResume"] = args ? args.autoResume : undefined;
74
+ resourceInputs["autoSuspendSecs"] = args ? args.autoSuspendSecs : undefined;
75
+ resourceInputs["comment"] = args ? args.comment : undefined;
76
+ resourceInputs["computePool"] = args ? args.computePool : undefined;
77
+ resourceInputs["database"] = args ? args.database : undefined;
78
+ resourceInputs["externalAccessIntegrations"] = args ? args.externalAccessIntegrations : undefined;
79
+ resourceInputs["fromSpecification"] = args ? args.fromSpecification : undefined;
80
+ resourceInputs["fromSpecificationTemplate"] = args ? args.fromSpecificationTemplate : undefined;
81
+ resourceInputs["maxInstances"] = args ? args.maxInstances : undefined;
82
+ resourceInputs["minInstances"] = args ? args.minInstances : undefined;
83
+ resourceInputs["minReadyInstances"] = args ? args.minReadyInstances : undefined;
84
+ resourceInputs["name"] = args ? args.name : undefined;
85
+ resourceInputs["queryWarehouse"] = args ? args.queryWarehouse : undefined;
86
+ resourceInputs["schema"] = args ? args.schema : undefined;
87
+ resourceInputs["describeOutputs"] = undefined /*out*/;
88
+ resourceInputs["fullyQualifiedName"] = undefined /*out*/;
89
+ resourceInputs["serviceType"] = undefined /*out*/;
90
+ resourceInputs["showOutputs"] = undefined /*out*/;
91
+ }
92
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
93
+ super(Service.__pulumiType, name, resourceInputs, opts);
94
+ }
95
+ }
96
+ exports.Service = Service;
97
+ /** @internal */
98
+ Service.__pulumiType = 'snowflake:index/service:Service';
99
+ //# sourceMappingURL=service.js.map
package/service.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.js","sourceRoot":"","sources":["../service.ts"],"names":[],"mappings":"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"}
@@ -79,7 +79,7 @@ export declare class SharedDatabase extends pulumi.CustomResource {
79
79
  */
80
80
  readonly taskAutoRetryAttempts: pulumi.Output<number>;
81
81
  /**
82
- * Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
82
+ * Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
83
83
  */
84
84
  readonly traceLevel: pulumi.Output<string>;
85
85
  /**
@@ -164,7 +164,7 @@ export interface SharedDatabaseState {
164
164
  */
165
165
  taskAutoRetryAttempts?: pulumi.Input<number>;
166
166
  /**
167
- * Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
167
+ * Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
168
168
  */
169
169
  traceLevel?: pulumi.Input<string>;
170
170
  /**
@@ -237,7 +237,7 @@ export interface SharedDatabaseArgs {
237
237
  */
238
238
  taskAutoRetryAttempts?: pulumi.Input<number>;
239
239
  /**
240
- * Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
240
+ * Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
241
241
  */
242
242
  traceLevel?: pulumi.Input<string>;
243
243
  /**
@@ -29,7 +29,7 @@ export declare class TagAssociation extends pulumi.CustomResource {
29
29
  */
30
30
  readonly objectIdentifiers: pulumi.Output<string[]>;
31
31
  /**
32
- * Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
32
+ * Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
33
33
  */
34
34
  readonly objectType: pulumi.Output<string>;
35
35
  /**
@@ -62,7 +62,7 @@ export interface TagAssociationState {
62
62
  */
63
63
  objectIdentifiers?: pulumi.Input<pulumi.Input<string>[]>;
64
64
  /**
65
- * Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
65
+ * Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
66
66
  */
67
67
  objectType?: pulumi.Input<string>;
68
68
  /**
@@ -87,7 +87,7 @@ export interface TagAssociationArgs {
87
87
  */
88
88
  objectIdentifiers: pulumi.Input<pulumi.Input<string>[]>;
89
89
  /**
90
- * Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
90
+ * Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
91
91
  */
92
92
  objectType: pulumi.Input<string>;
93
93
  /**