@pulumi/snowflake 2.11.0-alpha.1766126285 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/authenticationPolicy.d.ts +2 -0
- package/authenticationPolicy.js +2 -0
- package/authenticationPolicy.js.map +1 -1
- package/config/vars.d.ts +53 -1
- package/config/vars.js +78 -0
- package/config/vars.js.map +1 -1
- package/currentAccount.d.ts +0 -12
- package/currentAccount.js +0 -2
- package/currentAccount.js.map +1 -1
- package/currentOrganizationAccount.d.ts +0 -12
- package/currentOrganizationAccount.js +0 -2
- package/currentOrganizationAccount.js.map +1 -1
- package/getListings.d.ts +90 -0
- package/getListings.js +44 -0
- package/getListings.js.map +1 -0
- package/index.d.ts +3 -0
- package/index.js +7 -4
- package/index.js.map +1 -1
- package/materializedView.d.ts +6 -6
- package/notebook.d.ts +6 -6
- package/package.json +2 -2
- package/provider.d.ts +87 -1
- package/provider.js +14 -1
- package/provider.js.map +1 -1
- package/resourceMonitor.d.ts +0 -9
- package/resourceMonitor.js.map +1 -1
- package/scimIntegration.d.ts +3 -3
- package/task.d.ts +36 -0
- package/task.js +6 -0
- package/task.js.map +1 -1
- package/types/input.d.ts +59 -0
- package/types/output.d.ts +172 -0
package/provider.d.ts
CHANGED
|
@@ -20,6 +20,10 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
20
20
|
* Specifies the [authentication type](https://pkg.go.dev/github.com/snowflakedb/gosnowflake#AuthType) to use when connecting to Snowflake. Valid options are: `SNOWFLAKE` | `OAUTH` | `EXTERNALBROWSER` | `OKTA` | `SNOWFLAKE_JWT` | `TOKENACCESSOR` | `USERNAMEPASSWORDMFA` | `PROGRAMMATIC_ACCESS_TOKEN` | `OAUTH_CLIENT_CREDENTIALS` | `OAUTH_AUTHORIZATION_CODE` | `WORKLOAD_IDENTITY`. Can also be sourced from the `SNOWFLAKE_AUTHENTICATOR` environment variable.
|
|
21
21
|
*/
|
|
22
22
|
readonly authenticator: pulumi.Output<string | undefined>;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the certificate revocation check mode. Valid options are: `DISABLED` | `ADVISORY` | `ENABLED`. The value is case-insensitive. Can also be sourced from the `SNOWFLAKE_CERT_REVOCATION_CHECK_MODE` environment variable.
|
|
25
|
+
*/
|
|
26
|
+
readonly certRevocationCheckMode: pulumi.Output<string | undefined>;
|
|
23
27
|
/**
|
|
24
28
|
* IP address for network checks. Can also be sourced from the `SNOWFLAKE_CLIENT_IP` environment variable.
|
|
25
29
|
*/
|
|
@@ -32,10 +36,18 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
32
36
|
* When true the ID token is cached in the credential manager. True by default in Windows/OSX. False for Linux. Can also be sourced from the `SNOWFLAKE_CLIENT_STORE_TEMPORARY_CREDENTIAL` environment variable.
|
|
33
37
|
*/
|
|
34
38
|
readonly clientStoreTemporaryCredential: pulumi.Output<string | undefined>;
|
|
39
|
+
/**
|
|
40
|
+
* Allow certificates (not short-lived) without CRL DP included to be treated as correct ones. Can also be sourced from the `SNOWFLAKE_CRL_ALLOW_CERTIFICATES_WITHOUT_CRL_URL` environment variable.
|
|
41
|
+
*/
|
|
42
|
+
readonly crlAllowCertificatesWithoutCrlUrl: pulumi.Output<string | undefined>;
|
|
35
43
|
/**
|
|
36
44
|
* Indicates whether console login should be disabled in the driver. Can also be sourced from the `SNOWFLAKE_DISABLE_CONSOLE_LOGIN` environment variable.
|
|
37
45
|
*/
|
|
38
46
|
readonly disableConsoleLogin: pulumi.Output<string | undefined>;
|
|
47
|
+
/**
|
|
48
|
+
* Indicates whether the SAML URL check should be disabled. Can also be sourced from the `SNOWFLAKE_DISABLE_SAML_URL_CHECK` environment variable.
|
|
49
|
+
*/
|
|
50
|
+
readonly disableSamlUrlCheck: pulumi.Output<string | undefined>;
|
|
39
51
|
/**
|
|
40
52
|
* Specifies the logging level to be used by the driver. Valid options are: `trace` | `debug` | `info` | `print` | `warning` | `error` | `fatal` | `panic`. Can also be sourced from the `SNOWFLAKE_DRIVER_TRACING` environment variable.
|
|
41
53
|
*/
|
|
@@ -48,6 +60,10 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
48
60
|
* Should retried request contain retry reason. Can also be sourced from the `SNOWFLAKE_INCLUDE_RETRY_REASON` environment variable.
|
|
49
61
|
*/
|
|
50
62
|
readonly includeRetryReason: pulumi.Output<string | undefined>;
|
|
63
|
+
/**
|
|
64
|
+
* A comma-separated list of hostnames, domains, and IP addresses to exclude from proxying. Can also be sourced from the `SNOWFLAKE_NO_PROXY` environment variable.
|
|
65
|
+
*/
|
|
66
|
+
readonly noProxy: pulumi.Output<string | undefined>;
|
|
51
67
|
/**
|
|
52
68
|
* Authorization URL of OAuth2 external IdP. See [Snowflake OAuth documentation](https://docs.snowflake.com/en/user-guide/oauth). Can also be sourced from the `SNOWFLAKE_OAUTH_AUTHORIZATION_URL` environment variable.
|
|
53
69
|
*/
|
|
@@ -108,6 +124,22 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
108
124
|
* A protocol used in the connection. Valid options are: `http` | `https`. Can also be sourced from the `SNOWFLAKE_PROTOCOL` environment variable.
|
|
109
125
|
*/
|
|
110
126
|
readonly protocol: pulumi.Output<string | undefined>;
|
|
127
|
+
/**
|
|
128
|
+
* The host of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_HOST` environment variable.
|
|
129
|
+
*/
|
|
130
|
+
readonly proxyHost: pulumi.Output<string | undefined>;
|
|
131
|
+
/**
|
|
132
|
+
* The password of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_PASSWORD` environment variable.
|
|
133
|
+
*/
|
|
134
|
+
readonly proxyPassword: pulumi.Output<string | undefined>;
|
|
135
|
+
/**
|
|
136
|
+
* The protocol of the proxy to use for the connection. Valid options are: `http` | `https`. The value is case-insensitive. Can also be sourced from the `SNOWFLAKE_PROXY_PROTOCOL` environment variable.
|
|
137
|
+
*/
|
|
138
|
+
readonly proxyProtocol: pulumi.Output<string | undefined>;
|
|
139
|
+
/**
|
|
140
|
+
* The user of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_USER` environment variable.
|
|
141
|
+
*/
|
|
142
|
+
readonly proxyUser: pulumi.Output<string | undefined>;
|
|
111
143
|
/**
|
|
112
144
|
* Specifies the role to use by default for accessing Snowflake objects in the client session. Can also be sourced from the `SNOWFLAKE_ROLE` environment variable.
|
|
113
145
|
*/
|
|
@@ -165,6 +197,10 @@ export interface ProviderArgs {
|
|
|
165
197
|
* Specifies the [authentication type](https://pkg.go.dev/github.com/snowflakedb/gosnowflake#AuthType) to use when connecting to Snowflake. Valid options are: `SNOWFLAKE` | `OAUTH` | `EXTERNALBROWSER` | `OKTA` | `SNOWFLAKE_JWT` | `TOKENACCESSOR` | `USERNAMEPASSWORDMFA` | `PROGRAMMATIC_ACCESS_TOKEN` | `OAUTH_CLIENT_CREDENTIALS` | `OAUTH_AUTHORIZATION_CODE` | `WORKLOAD_IDENTITY`. Can also be sourced from the `SNOWFLAKE_AUTHENTICATOR` environment variable.
|
|
166
198
|
*/
|
|
167
199
|
authenticator?: pulumi.Input<string>;
|
|
200
|
+
/**
|
|
201
|
+
* Specifies the certificate revocation check mode. Valid options are: `DISABLED` | `ADVISORY` | `ENABLED`. The value is case-insensitive. Can also be sourced from the `SNOWFLAKE_CERT_REVOCATION_CHECK_MODE` environment variable.
|
|
202
|
+
*/
|
|
203
|
+
certRevocationCheckMode?: pulumi.Input<string>;
|
|
168
204
|
/**
|
|
169
205
|
* IP address for network checks. Can also be sourced from the `SNOWFLAKE_CLIENT_IP` environment variable.
|
|
170
206
|
*/
|
|
@@ -181,14 +217,38 @@ export interface ProviderArgs {
|
|
|
181
217
|
* The timeout in seconds for the client to complete the authentication. Can also be sourced from the `SNOWFLAKE_CLIENT_TIMEOUT` environment variable.
|
|
182
218
|
*/
|
|
183
219
|
clientTimeout?: pulumi.Input<number>;
|
|
220
|
+
/**
|
|
221
|
+
* Allow certificates (not short-lived) without CRL DP included to be treated as correct ones. Can also be sourced from the `SNOWFLAKE_CRL_ALLOW_CERTIFICATES_WITHOUT_CRL_URL` environment variable.
|
|
222
|
+
*/
|
|
223
|
+
crlAllowCertificatesWithoutCrlUrl?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* Timeout in seconds for HTTP client used to download CRL. Can also be sourced from the `SNOWFLAKE_CRL_HTTP_CLIENT_TIMEOUT` environment variable.
|
|
226
|
+
*/
|
|
227
|
+
crlHttpClientTimeout?: pulumi.Input<number>;
|
|
228
|
+
/**
|
|
229
|
+
* False by default. When set to true, the CRL in-memory cache is disabled. Can also be sourced from the `SNOWFLAKE_CRL_IN_MEMORY_CACHE_DISABLED` environment variable.
|
|
230
|
+
*/
|
|
231
|
+
crlInMemoryCacheDisabled?: pulumi.Input<boolean>;
|
|
232
|
+
/**
|
|
233
|
+
* False by default. When set to true, the CRL on-disk cache is disabled. Can also be sourced from the `SNOWFLAKE_CRL_ON_DISK_CACHE_DISABLED` environment variable.
|
|
234
|
+
*/
|
|
235
|
+
crlOnDiskCacheDisabled?: pulumi.Input<boolean>;
|
|
184
236
|
/**
|
|
185
237
|
* Indicates whether console login should be disabled in the driver. Can also be sourced from the `SNOWFLAKE_DISABLE_CONSOLE_LOGIN` environment variable.
|
|
186
238
|
*/
|
|
187
239
|
disableConsoleLogin?: pulumi.Input<string>;
|
|
240
|
+
/**
|
|
241
|
+
* False by default. When set to true, the driver doesn't check certificate revocation status. Can also be sourced from the `SNOWFLAKE_DISABLE_OCSP_CHECKS` environment variable.
|
|
242
|
+
*/
|
|
243
|
+
disableOcspChecks?: pulumi.Input<boolean>;
|
|
188
244
|
/**
|
|
189
245
|
* Disables HTAP query context cache in the driver. Can also be sourced from the `SNOWFLAKE_DISABLE_QUERY_CONTEXT_CACHE` environment variable.
|
|
190
246
|
*/
|
|
191
247
|
disableQueryContextCache?: pulumi.Input<boolean>;
|
|
248
|
+
/**
|
|
249
|
+
* Indicates whether the SAML URL check should be disabled. Can also be sourced from the `SNOWFLAKE_DISABLE_SAML_URL_CHECK` environment variable.
|
|
250
|
+
*/
|
|
251
|
+
disableSamlUrlCheck?: pulumi.Input<string>;
|
|
192
252
|
/**
|
|
193
253
|
* Disables telemetry in the driver. Can also be sourced from the `DISABLE_TELEMETRY` environment variable.
|
|
194
254
|
*/
|
|
@@ -218,7 +278,9 @@ export interface ProviderArgs {
|
|
|
218
278
|
*/
|
|
219
279
|
includeRetryReason?: pulumi.Input<string>;
|
|
220
280
|
/**
|
|
221
|
-
* If true, bypass the Online Certificate Status Protocol (OCSP) certificate revocation check. IMPORTANT: Change the default value for testing or emergency situations only. Can also be sourced from the `SNOWFLAKE_INSECURE_MODE` environment variable.
|
|
281
|
+
* This field is deprecated. Use `disableOcspChecks` instead. If true, bypass the Online Certificate Status Protocol (OCSP) certificate revocation check. IMPORTANT: Change the default value for testing or emergency situations only. Can also be sourced from the `SNOWFLAKE_INSECURE_MODE` environment variable.
|
|
282
|
+
*
|
|
283
|
+
* @deprecated This field is deprecated. Use `disableOcspChecks` instead.
|
|
222
284
|
*/
|
|
223
285
|
insecureMode?: pulumi.Input<boolean>;
|
|
224
286
|
/**
|
|
@@ -249,6 +311,10 @@ export interface ProviderArgs {
|
|
|
249
311
|
* Specifies how many times non-periodic HTTP request can be retried by the driver. Can also be sourced from the `SNOWFLAKE_MAX_RETRY_COUNT` environment variable.
|
|
250
312
|
*/
|
|
251
313
|
maxRetryCount?: pulumi.Input<number>;
|
|
314
|
+
/**
|
|
315
|
+
* A comma-separated list of hostnames, domains, and IP addresses to exclude from proxying. Can also be sourced from the `SNOWFLAKE_NO_PROXY` environment variable.
|
|
316
|
+
*/
|
|
317
|
+
noProxy?: pulumi.Input<string>;
|
|
252
318
|
/**
|
|
253
319
|
* Authorization URL of OAuth2 external IdP. See [Snowflake OAuth documentation](https://docs.snowflake.com/en/user-guide/oauth). Can also be sourced from the `SNOWFLAKE_OAUTH_AUTHORIZATION_URL` environment variable.
|
|
254
320
|
*/
|
|
@@ -324,6 +390,26 @@ export interface ProviderArgs {
|
|
|
324
390
|
* A protocol used in the connection. Valid options are: `http` | `https`. Can also be sourced from the `SNOWFLAKE_PROTOCOL` environment variable.
|
|
325
391
|
*/
|
|
326
392
|
protocol?: pulumi.Input<string>;
|
|
393
|
+
/**
|
|
394
|
+
* The host of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_HOST` environment variable.
|
|
395
|
+
*/
|
|
396
|
+
proxyHost?: pulumi.Input<string>;
|
|
397
|
+
/**
|
|
398
|
+
* The password of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_PASSWORD` environment variable.
|
|
399
|
+
*/
|
|
400
|
+
proxyPassword?: pulumi.Input<string>;
|
|
401
|
+
/**
|
|
402
|
+
* The port of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_PORT` environment variable.
|
|
403
|
+
*/
|
|
404
|
+
proxyPort?: pulumi.Input<number>;
|
|
405
|
+
/**
|
|
406
|
+
* The protocol of the proxy to use for the connection. Valid options are: `http` | `https`. The value is case-insensitive. Can also be sourced from the `SNOWFLAKE_PROXY_PROTOCOL` environment variable.
|
|
407
|
+
*/
|
|
408
|
+
proxyProtocol?: pulumi.Input<string>;
|
|
409
|
+
/**
|
|
410
|
+
* The user of the proxy to use for the connection. Can also be sourced from the `SNOWFLAKE_PROXY_USER` environment variable.
|
|
411
|
+
*/
|
|
412
|
+
proxyUser?: pulumi.Input<string>;
|
|
327
413
|
/**
|
|
328
414
|
* request retry timeout in seconds EXCLUDING network roundtrip and read out http response. Can also be sourced from the `SNOWFLAKE_REQUEST_TIMEOUT` environment variable.
|
|
329
415
|
*/
|
package/provider.js
CHANGED
|
@@ -35,12 +35,19 @@ class Provider extends pulumi.ProviderResource {
|
|
|
35
35
|
{
|
|
36
36
|
resourceInputs["accountName"] = args?.accountName;
|
|
37
37
|
resourceInputs["authenticator"] = args?.authenticator;
|
|
38
|
+
resourceInputs["certRevocationCheckMode"] = args?.certRevocationCheckMode;
|
|
38
39
|
resourceInputs["clientIp"] = args?.clientIp;
|
|
39
40
|
resourceInputs["clientRequestMfaToken"] = args?.clientRequestMfaToken;
|
|
40
41
|
resourceInputs["clientStoreTemporaryCredential"] = args?.clientStoreTemporaryCredential;
|
|
41
42
|
resourceInputs["clientTimeout"] = pulumi.output(args?.clientTimeout).apply(JSON.stringify);
|
|
43
|
+
resourceInputs["crlAllowCertificatesWithoutCrlUrl"] = args?.crlAllowCertificatesWithoutCrlUrl;
|
|
44
|
+
resourceInputs["crlHttpClientTimeout"] = pulumi.output(args?.crlHttpClientTimeout).apply(JSON.stringify);
|
|
45
|
+
resourceInputs["crlInMemoryCacheDisabled"] = pulumi.output(args?.crlInMemoryCacheDisabled).apply(JSON.stringify);
|
|
46
|
+
resourceInputs["crlOnDiskCacheDisabled"] = pulumi.output(args?.crlOnDiskCacheDisabled).apply(JSON.stringify);
|
|
42
47
|
resourceInputs["disableConsoleLogin"] = args?.disableConsoleLogin;
|
|
48
|
+
resourceInputs["disableOcspChecks"] = pulumi.output(args?.disableOcspChecks).apply(JSON.stringify);
|
|
43
49
|
resourceInputs["disableQueryContextCache"] = pulumi.output(args?.disableQueryContextCache).apply(JSON.stringify);
|
|
50
|
+
resourceInputs["disableSamlUrlCheck"] = args?.disableSamlUrlCheck;
|
|
44
51
|
resourceInputs["disableTelemetry"] = pulumi.output(args?.disableTelemetry).apply(JSON.stringify);
|
|
45
52
|
resourceInputs["driverTracing"] = args?.driverTracing;
|
|
46
53
|
resourceInputs["enableSingleUseRefreshTokens"] = pulumi.output(args?.enableSingleUseRefreshTokens).apply(JSON.stringify);
|
|
@@ -56,6 +63,7 @@ class Provider extends pulumi.ProviderResource {
|
|
|
56
63
|
resourceInputs["logQueryText"] = pulumi.output(args?.logQueryText).apply(JSON.stringify);
|
|
57
64
|
resourceInputs["loginTimeout"] = pulumi.output(args?.loginTimeout).apply(JSON.stringify);
|
|
58
65
|
resourceInputs["maxRetryCount"] = pulumi.output(args?.maxRetryCount).apply(JSON.stringify);
|
|
66
|
+
resourceInputs["noProxy"] = args?.noProxy;
|
|
59
67
|
resourceInputs["oauthAuthorizationUrl"] = args?.oauthAuthorizationUrl ? pulumi.secret(args.oauthAuthorizationUrl) : undefined;
|
|
60
68
|
resourceInputs["oauthClientId"] = args?.oauthClientId ? pulumi.secret(args.oauthClientId) : undefined;
|
|
61
69
|
resourceInputs["oauthClientSecret"] = args?.oauthClientSecret ? pulumi.secret(args.oauthClientSecret) : undefined;
|
|
@@ -75,6 +83,11 @@ class Provider extends pulumi.ProviderResource {
|
|
|
75
83
|
resourceInputs["privateKeyPassphrase"] = (args?.privateKeyPassphrase ? pulumi.secret(args.privateKeyPassphrase) : undefined) ?? utilities.getEnv("SNOWFLAKE_PRIVATE_KEY_PASSPHRASE");
|
|
76
84
|
resourceInputs["profile"] = args?.profile;
|
|
77
85
|
resourceInputs["protocol"] = (args?.protocol) ?? utilities.getEnv("SNOWFLAKE_PROTOCOL");
|
|
86
|
+
resourceInputs["proxyHost"] = args?.proxyHost;
|
|
87
|
+
resourceInputs["proxyPassword"] = args?.proxyPassword ? pulumi.secret(args.proxyPassword) : undefined;
|
|
88
|
+
resourceInputs["proxyPort"] = pulumi.output(args?.proxyPort).apply(JSON.stringify);
|
|
89
|
+
resourceInputs["proxyProtocol"] = args?.proxyProtocol;
|
|
90
|
+
resourceInputs["proxyUser"] = args?.proxyUser;
|
|
78
91
|
resourceInputs["requestTimeout"] = pulumi.output(args?.requestTimeout).apply(JSON.stringify);
|
|
79
92
|
resourceInputs["role"] = (args?.role) ?? utilities.getEnv("SNOWFLAKE_ROLE");
|
|
80
93
|
resourceInputs["skipTomlFilePermissionVerification"] = pulumi.output(args?.skipTomlFilePermissionVerification).apply(JSON.stringify);
|
|
@@ -89,7 +102,7 @@ class Provider extends pulumi.ProviderResource {
|
|
|
89
102
|
resourceInputs["workloadIdentityProvider"] = args?.workloadIdentityProvider;
|
|
90
103
|
}
|
|
91
104
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
92
|
-
const secretOpts = { additionalSecretOutputs: ["oauthAuthorizationUrl", "oauthClientId", "oauthClientSecret", "oauthRedirectUri", "oauthTokenRequestUrl", "passcode", "password", "privateKey", "privateKeyPassphrase", "token"] };
|
|
105
|
+
const secretOpts = { additionalSecretOutputs: ["oauthAuthorizationUrl", "oauthClientId", "oauthClientSecret", "oauthRedirectUri", "oauthTokenRequestUrl", "passcode", "password", "privateKey", "privateKeyPassphrase", "proxyPassword", "token"] };
|
|
93
106
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
94
107
|
super(Provider.__pulumiType, name, resourceInputs, opts);
|
|
95
108
|
}
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,mBAAmB,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"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"}
|
package/resourceMonitor.d.ts
CHANGED
|
@@ -56,9 +56,6 @@ export declare class ResourceMonitor extends pulumi.CustomResource {
|
|
|
56
56
|
* Outputs the result of `SHOW RESOURCE MONITORS` for the given resource monitor.
|
|
57
57
|
*/
|
|
58
58
|
readonly showOutputs: pulumi.Output<outputs.ResourceMonitorShowOutput[]>;
|
|
59
|
-
/**
|
|
60
|
-
* The date and time when the resource monitor starts monitoring credit usage for the assigned warehouses. If you set a `startTimestamp` for a resource monitor, you must also set `frequency`. After removing this field from the config, the previously set value will be preserved on the Snowflake side, not the default value. That's due to Snowflake limitation and the lack of unset functionality for this parameter.
|
|
61
|
-
*/
|
|
62
59
|
readonly startTimestamp: pulumi.Output<string | undefined>;
|
|
63
60
|
/**
|
|
64
61
|
* Represents a numeric value specified as a percentage of the credit quota. Values over 100 are supported. After reaching this value, all assigned warehouses immediately cancel any currently running queries or statements. In addition, this action sends a notification to all users who have enabled notifications for themselves.
|
|
@@ -113,9 +110,6 @@ export interface ResourceMonitorState {
|
|
|
113
110
|
* Outputs the result of `SHOW RESOURCE MONITORS` for the given resource monitor.
|
|
114
111
|
*/
|
|
115
112
|
showOutputs?: pulumi.Input<pulumi.Input<inputs.ResourceMonitorShowOutput>[]>;
|
|
116
|
-
/**
|
|
117
|
-
* The date and time when the resource monitor starts monitoring credit usage for the assigned warehouses. If you set a `startTimestamp` for a resource monitor, you must also set `frequency`. After removing this field from the config, the previously set value will be preserved on the Snowflake side, not the default value. That's due to Snowflake limitation and the lack of unset functionality for this parameter.
|
|
118
|
-
*/
|
|
119
113
|
startTimestamp?: pulumi.Input<string>;
|
|
120
114
|
/**
|
|
121
115
|
* Represents a numeric value specified as a percentage of the credit quota. Values over 100 are supported. After reaching this value, all assigned warehouses immediately cancel any currently running queries or statements. In addition, this action sends a notification to all users who have enabled notifications for themselves.
|
|
@@ -154,9 +148,6 @@ export interface ResourceMonitorArgs {
|
|
|
154
148
|
* Specifies the list of users (their identifiers) to receive email notifications on resource monitors. For more information about this resource, see docs.
|
|
155
149
|
*/
|
|
156
150
|
notifyUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
157
|
-
/**
|
|
158
|
-
* The date and time when the resource monitor starts monitoring credit usage for the assigned warehouses. If you set a `startTimestamp` for a resource monitor, you must also set `frequency`. After removing this field from the config, the previously set value will be preserved on the Snowflake side, not the default value. That's due to Snowflake limitation and the lack of unset functionality for this parameter.
|
|
159
|
-
*/
|
|
160
151
|
startTimestamp?: pulumi.Input<string>;
|
|
161
152
|
/**
|
|
162
153
|
* Represents a numeric value specified as a percentage of the credit quota. Values over 100 are supported. After reaching this value, all assigned warehouses immediately cancel any currently running queries or statements. In addition, this action sends a notification to all users who have enabled notifications for themselves.
|
package/resourceMonitor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resourceMonitor.js","sourceRoot":"","sources":["../resourceMonitor.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"resourceMonitor.js","sourceRoot":"","sources":["../resourceMonitor.ts"],"names":[],"mappings":"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"}
|
package/scimIntegration.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class ScimIntegration extends pulumi.CustomResource {
|
|
|
49
49
|
*/
|
|
50
50
|
readonly networkPolicy: pulumi.Output<string | undefined>;
|
|
51
51
|
/**
|
|
52
|
-
* Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided.
|
|
52
|
+
* Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. This field is case-sensitive. The exception is using `genericScimProvisioner`, `oktaProvisioner`, or `aadProvisioner`, which are automatically converted to uppercase for backwards compatibility.
|
|
53
53
|
*/
|
|
54
54
|
readonly runAsRole: pulumi.Output<string>;
|
|
55
55
|
/**
|
|
@@ -102,7 +102,7 @@ export interface ScimIntegrationState {
|
|
|
102
102
|
*/
|
|
103
103
|
networkPolicy?: pulumi.Input<string>;
|
|
104
104
|
/**
|
|
105
|
-
* Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided.
|
|
105
|
+
* Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. This field is case-sensitive. The exception is using `genericScimProvisioner`, `oktaProvisioner`, or `aadProvisioner`, which are automatically converted to uppercase for backwards compatibility.
|
|
106
106
|
*/
|
|
107
107
|
runAsRole?: pulumi.Input<string>;
|
|
108
108
|
/**
|
|
@@ -139,7 +139,7 @@ export interface ScimIntegrationArgs {
|
|
|
139
139
|
*/
|
|
140
140
|
networkPolicy?: pulumi.Input<string>;
|
|
141
141
|
/**
|
|
142
|
-
* Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided.
|
|
142
|
+
* Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. This field is case-sensitive. The exception is using `genericScimProvisioner`, `oktaProvisioner`, or `aadProvisioner`, which are automatically converted to uppercase for backwards compatibility.
|
|
143
143
|
*/
|
|
144
144
|
runAsRole: pulumi.Input<string>;
|
|
145
145
|
/**
|
package/task.d.ts
CHANGED
|
@@ -200,6 +200,14 @@ export declare class Task extends pulumi.CustomResource {
|
|
|
200
200
|
* Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
|
|
201
201
|
*/
|
|
202
202
|
readonly searchPath: pulumi.Output<string>;
|
|
203
|
+
/**
|
|
204
|
+
* Specifies the maximum warehouse size for serverless tasks. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. For more information, check [SERVERLESS*TASK*MAX*STATEMENT*SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#serverless-task-max-statement-size).
|
|
205
|
+
*/
|
|
206
|
+
readonly serverlessTaskMaxStatementSize: pulumi.Output<string>;
|
|
207
|
+
/**
|
|
208
|
+
* Specifies the minimum warehouse size for serverless tasks. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. For more information, check [SERVERLESS*TASK*MIN*STATEMENT*SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#serverless-task-min-statement-size).
|
|
209
|
+
*/
|
|
210
|
+
readonly serverlessTaskMinStatementSize: pulumi.Output<string>;
|
|
203
211
|
/**
|
|
204
212
|
* Outputs the result of `SHOW TASKS` for the given task.
|
|
205
213
|
*/
|
|
@@ -228,6 +236,10 @@ export declare class Task extends pulumi.CustomResource {
|
|
|
228
236
|
* Specifies the number of consecutive failed task runs after which the current task is suspended automatically. The default is 0 (no automatic suspension). For more information, check [SUSPEND*TASK*AFTER*NUM*FAILURES docs](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
229
237
|
*/
|
|
230
238
|
readonly suspendTaskAfterNumFailures: pulumi.Output<number>;
|
|
239
|
+
/**
|
|
240
|
+
* Specifies the target completion interval for tasks. This can be specified in hours, minutes, or seconds. (when set, one of the sub-fields `hours`, `minutes`, or `seconds` should be set)
|
|
241
|
+
*/
|
|
242
|
+
readonly targetCompletionInterval: pulumi.Output<outputs.TaskTargetCompletionInterval | undefined>;
|
|
231
243
|
/**
|
|
232
244
|
* Specifies the number of automatic task graph retry attempts. If any task graphs complete in a FAILED state, Snowflake can automatically retry the task graphs from the last task in the graph that failed. For more information, check [TASK*AUTO*RETRY_ATTEMPTS docs](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
233
245
|
*/
|
|
@@ -513,6 +525,14 @@ export interface TaskState {
|
|
|
513
525
|
* Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
|
|
514
526
|
*/
|
|
515
527
|
searchPath?: pulumi.Input<string>;
|
|
528
|
+
/**
|
|
529
|
+
* Specifies the maximum warehouse size for serverless tasks. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. For more information, check [SERVERLESS*TASK*MAX*STATEMENT*SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#serverless-task-max-statement-size).
|
|
530
|
+
*/
|
|
531
|
+
serverlessTaskMaxStatementSize?: pulumi.Input<string>;
|
|
532
|
+
/**
|
|
533
|
+
* Specifies the minimum warehouse size for serverless tasks. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. For more information, check [SERVERLESS*TASK*MIN*STATEMENT*SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#serverless-task-min-statement-size).
|
|
534
|
+
*/
|
|
535
|
+
serverlessTaskMinStatementSize?: pulumi.Input<string>;
|
|
516
536
|
/**
|
|
517
537
|
* Outputs the result of `SHOW TASKS` for the given task.
|
|
518
538
|
*/
|
|
@@ -541,6 +561,10 @@ export interface TaskState {
|
|
|
541
561
|
* Specifies the number of consecutive failed task runs after which the current task is suspended automatically. The default is 0 (no automatic suspension). For more information, check [SUSPEND*TASK*AFTER*NUM*FAILURES docs](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
542
562
|
*/
|
|
543
563
|
suspendTaskAfterNumFailures?: pulumi.Input<number>;
|
|
564
|
+
/**
|
|
565
|
+
* Specifies the target completion interval for tasks. This can be specified in hours, minutes, or seconds. (when set, one of the sub-fields `hours`, `minutes`, or `seconds` should be set)
|
|
566
|
+
*/
|
|
567
|
+
targetCompletionInterval?: pulumi.Input<inputs.TaskTargetCompletionInterval>;
|
|
544
568
|
/**
|
|
545
569
|
* Specifies the number of automatic task graph retry attempts. If any task graphs complete in a FAILED state, Snowflake can automatically retry the task graphs from the last task in the graph that failed. For more information, check [TASK*AUTO*RETRY_ATTEMPTS docs](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
546
570
|
*/
|
|
@@ -810,6 +834,14 @@ export interface TaskArgs {
|
|
|
810
834
|
* Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
|
|
811
835
|
*/
|
|
812
836
|
searchPath?: pulumi.Input<string>;
|
|
837
|
+
/**
|
|
838
|
+
* Specifies the maximum warehouse size for serverless tasks. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. For more information, check [SERVERLESS*TASK*MAX*STATEMENT*SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#serverless-task-max-statement-size).
|
|
839
|
+
*/
|
|
840
|
+
serverlessTaskMaxStatementSize?: pulumi.Input<string>;
|
|
841
|
+
/**
|
|
842
|
+
* Specifies the minimum warehouse size for serverless tasks. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. For more information, check [SERVERLESS*TASK*MIN*STATEMENT*SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#serverless-task-min-statement-size).
|
|
843
|
+
*/
|
|
844
|
+
serverlessTaskMinStatementSize?: pulumi.Input<string>;
|
|
813
845
|
/**
|
|
814
846
|
* Any single SQL statement, or a call to a stored procedure, executed when the task runs.
|
|
815
847
|
*/
|
|
@@ -834,6 +866,10 @@ export interface TaskArgs {
|
|
|
834
866
|
* Specifies the number of consecutive failed task runs after which the current task is suspended automatically. The default is 0 (no automatic suspension). For more information, check [SUSPEND*TASK*AFTER*NUM*FAILURES docs](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
835
867
|
*/
|
|
836
868
|
suspendTaskAfterNumFailures?: pulumi.Input<number>;
|
|
869
|
+
/**
|
|
870
|
+
* Specifies the target completion interval for tasks. This can be specified in hours, minutes, or seconds. (when set, one of the sub-fields `hours`, `minutes`, or `seconds` should be set)
|
|
871
|
+
*/
|
|
872
|
+
targetCompletionInterval?: pulumi.Input<inputs.TaskTargetCompletionInterval>;
|
|
837
873
|
/**
|
|
838
874
|
* Specifies the number of automatic task graph retry attempts. If any task graphs complete in a FAILED state, Snowflake can automatically retry the task graphs from the last task in the graph that failed. For more information, check [TASK*AUTO*RETRY_ATTEMPTS docs](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
839
875
|
*/
|
package/task.js
CHANGED
|
@@ -84,6 +84,8 @@ class Task extends pulumi.CustomResource {
|
|
|
84
84
|
resourceInputs["schedule"] = state?.schedule;
|
|
85
85
|
resourceInputs["schema"] = state?.schema;
|
|
86
86
|
resourceInputs["searchPath"] = state?.searchPath;
|
|
87
|
+
resourceInputs["serverlessTaskMaxStatementSize"] = state?.serverlessTaskMaxStatementSize;
|
|
88
|
+
resourceInputs["serverlessTaskMinStatementSize"] = state?.serverlessTaskMinStatementSize;
|
|
87
89
|
resourceInputs["showOutputs"] = state?.showOutputs;
|
|
88
90
|
resourceInputs["sqlStatement"] = state?.sqlStatement;
|
|
89
91
|
resourceInputs["started"] = state?.started;
|
|
@@ -91,6 +93,7 @@ class Task extends pulumi.CustomResource {
|
|
|
91
93
|
resourceInputs["statementTimeoutInSeconds"] = state?.statementTimeoutInSeconds;
|
|
92
94
|
resourceInputs["strictJsonOutput"] = state?.strictJsonOutput;
|
|
93
95
|
resourceInputs["suspendTaskAfterNumFailures"] = state?.suspendTaskAfterNumFailures;
|
|
96
|
+
resourceInputs["targetCompletionInterval"] = state?.targetCompletionInterval;
|
|
94
97
|
resourceInputs["taskAutoRetryAttempts"] = state?.taskAutoRetryAttempts;
|
|
95
98
|
resourceInputs["timeInputFormat"] = state?.timeInputFormat;
|
|
96
99
|
resourceInputs["timeOutputFormat"] = state?.timeOutputFormat;
|
|
@@ -172,12 +175,15 @@ class Task extends pulumi.CustomResource {
|
|
|
172
175
|
resourceInputs["schedule"] = args?.schedule;
|
|
173
176
|
resourceInputs["schema"] = args?.schema;
|
|
174
177
|
resourceInputs["searchPath"] = args?.searchPath;
|
|
178
|
+
resourceInputs["serverlessTaskMaxStatementSize"] = args?.serverlessTaskMaxStatementSize;
|
|
179
|
+
resourceInputs["serverlessTaskMinStatementSize"] = args?.serverlessTaskMinStatementSize;
|
|
175
180
|
resourceInputs["sqlStatement"] = args?.sqlStatement;
|
|
176
181
|
resourceInputs["started"] = args?.started;
|
|
177
182
|
resourceInputs["statementQueuedTimeoutInSeconds"] = args?.statementQueuedTimeoutInSeconds;
|
|
178
183
|
resourceInputs["statementTimeoutInSeconds"] = args?.statementTimeoutInSeconds;
|
|
179
184
|
resourceInputs["strictJsonOutput"] = args?.strictJsonOutput;
|
|
180
185
|
resourceInputs["suspendTaskAfterNumFailures"] = args?.suspendTaskAfterNumFailures;
|
|
186
|
+
resourceInputs["targetCompletionInterval"] = args?.targetCompletionInterval;
|
|
181
187
|
resourceInputs["taskAutoRetryAttempts"] = args?.taskAutoRetryAttempts;
|
|
182
188
|
resourceInputs["timeInputFormat"] = args?.timeInputFormat;
|
|
183
189
|
resourceInputs["timeOutputFormat"] = args?.timeOutputFormat;
|
package/task.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task.js","sourceRoot":"","sources":["../task.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"task.js","sourceRoot":"","sources":["../task.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -1651,6 +1651,26 @@ export interface GetImageRepositoriesInArgs {
|
|
|
1651
1651
|
*/
|
|
1652
1652
|
schema?: pulumi.Input<string>;
|
|
1653
1653
|
}
|
|
1654
|
+
export interface GetListingsLimit {
|
|
1655
|
+
/**
|
|
1656
|
+
* Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
|
|
1657
|
+
*/
|
|
1658
|
+
from?: string;
|
|
1659
|
+
/**
|
|
1660
|
+
* The maximum number of rows to return.
|
|
1661
|
+
*/
|
|
1662
|
+
rows: number;
|
|
1663
|
+
}
|
|
1664
|
+
export interface GetListingsLimitArgs {
|
|
1665
|
+
/**
|
|
1666
|
+
* Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
|
|
1667
|
+
*/
|
|
1668
|
+
from?: pulumi.Input<string>;
|
|
1669
|
+
/**
|
|
1670
|
+
* The maximum number of rows to return.
|
|
1671
|
+
*/
|
|
1672
|
+
rows: pulumi.Input<number>;
|
|
1673
|
+
}
|
|
1654
1674
|
export interface GetMaskingPoliciesIn {
|
|
1655
1675
|
/**
|
|
1656
1676
|
* Returns records for the entire account.
|
|
@@ -3151,6 +3171,7 @@ export interface LegacyServiceUserShowOutput {
|
|
|
3151
3171
|
hasMfa?: pulumi.Input<boolean>;
|
|
3152
3172
|
hasPassword?: pulumi.Input<boolean>;
|
|
3153
3173
|
hasRsaPublicKey?: pulumi.Input<boolean>;
|
|
3174
|
+
hasWorkloadIdentity?: pulumi.Input<boolean>;
|
|
3154
3175
|
lastName?: pulumi.Input<string>;
|
|
3155
3176
|
lastSuccessLogin?: pulumi.Input<string>;
|
|
3156
3177
|
lockedUntilTime?: pulumi.Input<string>;
|
|
@@ -5305,6 +5326,7 @@ export interface ServiceUserShowOutput {
|
|
|
5305
5326
|
hasMfa?: pulumi.Input<boolean>;
|
|
5306
5327
|
hasPassword?: pulumi.Input<boolean>;
|
|
5307
5328
|
hasRsaPublicKey?: pulumi.Input<boolean>;
|
|
5329
|
+
hasWorkloadIdentity?: pulumi.Input<boolean>;
|
|
5308
5330
|
lastName?: pulumi.Input<string>;
|
|
5309
5331
|
lastSuccessLogin?: pulumi.Input<string>;
|
|
5310
5332
|
lockedUntilTime?: pulumi.Input<string>;
|
|
@@ -5858,6 +5880,8 @@ export interface TaskParameter {
|
|
|
5858
5880
|
rowsPerResultsets?: pulumi.Input<pulumi.Input<inputs.TaskParameterRowsPerResultset>[]>;
|
|
5859
5881
|
s3StageVpceDnsNames?: pulumi.Input<pulumi.Input<inputs.TaskParameterS3StageVpceDnsName>[]>;
|
|
5860
5882
|
searchPaths?: pulumi.Input<pulumi.Input<inputs.TaskParameterSearchPath>[]>;
|
|
5883
|
+
serverlessTaskMaxStatementSizes?: pulumi.Input<pulumi.Input<inputs.TaskParameterServerlessTaskMaxStatementSize>[]>;
|
|
5884
|
+
serverlessTaskMinStatementSizes?: pulumi.Input<pulumi.Input<inputs.TaskParameterServerlessTaskMinStatementSize>[]>;
|
|
5861
5885
|
statementQueuedTimeoutInSeconds?: pulumi.Input<pulumi.Input<inputs.TaskParameterStatementQueuedTimeoutInSecond>[]>;
|
|
5862
5886
|
statementTimeoutInSeconds?: pulumi.Input<pulumi.Input<inputs.TaskParameterStatementTimeoutInSecond>[]>;
|
|
5863
5887
|
strictJsonOutputs?: pulumi.Input<pulumi.Input<inputs.TaskParameterStrictJsonOutput>[]>;
|
|
@@ -6109,6 +6133,20 @@ export interface TaskParameterSearchPath {
|
|
|
6109
6133
|
level?: pulumi.Input<string>;
|
|
6110
6134
|
value?: pulumi.Input<string>;
|
|
6111
6135
|
}
|
|
6136
|
+
export interface TaskParameterServerlessTaskMaxStatementSize {
|
|
6137
|
+
default?: pulumi.Input<string>;
|
|
6138
|
+
description?: pulumi.Input<string>;
|
|
6139
|
+
key?: pulumi.Input<string>;
|
|
6140
|
+
level?: pulumi.Input<string>;
|
|
6141
|
+
value?: pulumi.Input<string>;
|
|
6142
|
+
}
|
|
6143
|
+
export interface TaskParameterServerlessTaskMinStatementSize {
|
|
6144
|
+
default?: pulumi.Input<string>;
|
|
6145
|
+
description?: pulumi.Input<string>;
|
|
6146
|
+
key?: pulumi.Input<string>;
|
|
6147
|
+
level?: pulumi.Input<string>;
|
|
6148
|
+
value?: pulumi.Input<string>;
|
|
6149
|
+
}
|
|
6112
6150
|
export interface TaskParameterStatementQueuedTimeoutInSecond {
|
|
6113
6151
|
default?: pulumi.Input<string>;
|
|
6114
6152
|
description?: pulumi.Input<string>;
|
|
@@ -6330,14 +6368,34 @@ export interface TaskShowOutput {
|
|
|
6330
6368
|
schedule?: pulumi.Input<string>;
|
|
6331
6369
|
schemaName?: pulumi.Input<string>;
|
|
6332
6370
|
state?: pulumi.Input<string>;
|
|
6371
|
+
targetCompletionIntervals?: pulumi.Input<pulumi.Input<inputs.TaskShowOutputTargetCompletionInterval>[]>;
|
|
6333
6372
|
taskRelations?: pulumi.Input<pulumi.Input<inputs.TaskShowOutputTaskRelation>[]>;
|
|
6334
6373
|
warehouse?: pulumi.Input<string>;
|
|
6335
6374
|
}
|
|
6375
|
+
export interface TaskShowOutputTargetCompletionInterval {
|
|
6376
|
+
hours?: pulumi.Input<number>;
|
|
6377
|
+
minutes?: pulumi.Input<number>;
|
|
6378
|
+
seconds?: pulumi.Input<number>;
|
|
6379
|
+
}
|
|
6336
6380
|
export interface TaskShowOutputTaskRelation {
|
|
6337
6381
|
finalizedRootTask?: pulumi.Input<string>;
|
|
6338
6382
|
finalizer?: pulumi.Input<string>;
|
|
6339
6383
|
predecessors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6340
6384
|
}
|
|
6385
|
+
export interface TaskTargetCompletionInterval {
|
|
6386
|
+
/**
|
|
6387
|
+
* Specifies the target completion interval in hours. (conflicts with `minutes` and `seconds`)
|
|
6388
|
+
*/
|
|
6389
|
+
hours?: pulumi.Input<number>;
|
|
6390
|
+
/**
|
|
6391
|
+
* Specifies the target completion interval in minutes. (conflicts with `hours` and `seconds`)
|
|
6392
|
+
*/
|
|
6393
|
+
minutes?: pulumi.Input<number>;
|
|
6394
|
+
/**
|
|
6395
|
+
* Specifies the target completion interval in seconds. (conflicts with `hours` and `minutes`)
|
|
6396
|
+
*/
|
|
6397
|
+
seconds?: pulumi.Input<number>;
|
|
6398
|
+
}
|
|
6341
6399
|
export interface UserParameter {
|
|
6342
6400
|
abortDetachedQueries?: pulumi.Input<pulumi.Input<inputs.UserParameterAbortDetachedQuery>[]>;
|
|
6343
6401
|
autocommits?: pulumi.Input<pulumi.Input<inputs.UserParameterAutocommit>[]>;
|
|
@@ -6834,6 +6892,7 @@ export interface UserShowOutput {
|
|
|
6834
6892
|
hasMfa?: pulumi.Input<boolean>;
|
|
6835
6893
|
hasPassword?: pulumi.Input<boolean>;
|
|
6836
6894
|
hasRsaPublicKey?: pulumi.Input<boolean>;
|
|
6895
|
+
hasWorkloadIdentity?: pulumi.Input<boolean>;
|
|
6837
6896
|
lastName?: pulumi.Input<string>;
|
|
6838
6897
|
lastSuccessLogin?: pulumi.Input<string>;
|
|
6839
6898
|
lockedUntilTime?: pulumi.Input<string>;
|