pulumi-snowflake 2.7.0a1759215867__py3-none-any.whl → 2.11.0a1766126285__py3-none-any.whl
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.
- pulumi_snowflake/__init__.py +21 -0
- pulumi_snowflake/_inputs.py +2556 -296
- pulumi_snowflake/authentication_policy.py +181 -31
- pulumi_snowflake/compute_pool.py +7 -7
- pulumi_snowflake/config/__init__.pyi +64 -1
- pulumi_snowflake/config/vars.py +88 -1
- pulumi_snowflake/get_authentication_policies.py +214 -0
- pulumi_snowflake/get_compute_pools.py +0 -4
- pulumi_snowflake/get_git_repositories.py +0 -4
- pulumi_snowflake/get_image_repositories.py +0 -4
- pulumi_snowflake/get_notebooks.py +174 -0
- pulumi_snowflake/get_semantic_views.py +178 -0
- pulumi_snowflake/get_services.py +0 -4
- pulumi_snowflake/get_user_programmatic_access_tokens.py +0 -4
- pulumi_snowflake/get_warehouses.py +4 -0
- pulumi_snowflake/notebook.py +623 -0
- pulumi_snowflake/outputs.py +2463 -150
- pulumi_snowflake/provider.py +315 -6
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/semantic_view.py +535 -0
- pulumi_snowflake/storage_integration.py +98 -38
- pulumi_snowflake/task.py +7 -7
- {pulumi_snowflake-2.7.0a1759215867.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.7.0a1759215867.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/RECORD +26 -21
- {pulumi_snowflake-2.7.0a1759215867.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.7.0a1759215867.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/top_level.txt +0 -0
|
@@ -31,19 +31,22 @@ class StorageIntegrationArgs:
|
|
|
31
31
|
storage_aws_object_acl: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
32
|
storage_aws_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33
33
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
34
|
-
type: Optional[pulumi.Input[_builtins.str]] = None
|
|
34
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35
|
+
use_privatelink_endpoint: Optional[pulumi.Input[_builtins.str]] = None):
|
|
35
36
|
"""
|
|
36
37
|
The set of arguments for constructing a StorageIntegration resource.
|
|
37
38
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
38
39
|
:param pulumi.Input[_builtins.str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
39
|
-
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
40
|
-
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
40
|
+
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
41
|
+
:param pulumi.Input[_builtins.str] comment: (Default: ``) Specifies a comment for the storage integration.
|
|
41
42
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
42
|
-
:param pulumi.Input[_builtins.str]
|
|
43
|
+
:param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
44
|
+
:param pulumi.Input[_builtins.str] storage_aws_external_id: Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
43
45
|
:param pulumi.Input[_builtins.str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
44
|
-
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``)
|
|
46
|
+
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
45
47
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
46
|
-
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`)
|
|
48
|
+
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
49
|
+
:param pulumi.Input[_builtins.str] use_privatelink_endpoint: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
47
50
|
"""
|
|
48
51
|
pulumi.set(__self__, "storage_allowed_locations", storage_allowed_locations)
|
|
49
52
|
pulumi.set(__self__, "storage_provider", storage_provider)
|
|
@@ -65,6 +68,8 @@ class StorageIntegrationArgs:
|
|
|
65
68
|
pulumi.set(__self__, "storage_blocked_locations", storage_blocked_locations)
|
|
66
69
|
if type is not None:
|
|
67
70
|
pulumi.set(__self__, "type", type)
|
|
71
|
+
if use_privatelink_endpoint is not None:
|
|
72
|
+
pulumi.set(__self__, "use_privatelink_endpoint", use_privatelink_endpoint)
|
|
68
73
|
|
|
69
74
|
@_builtins.property
|
|
70
75
|
@pulumi.getter(name="storageAllowedLocations")
|
|
@@ -94,7 +99,7 @@ class StorageIntegrationArgs:
|
|
|
94
99
|
@pulumi.getter(name="azureTenantId")
|
|
95
100
|
def azure_tenant_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
96
101
|
"""
|
|
97
|
-
(Default: ``)
|
|
102
|
+
(Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
98
103
|
"""
|
|
99
104
|
return pulumi.get(self, "azure_tenant_id")
|
|
100
105
|
|
|
@@ -106,7 +111,7 @@ class StorageIntegrationArgs:
|
|
|
106
111
|
@pulumi.getter
|
|
107
112
|
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
108
113
|
"""
|
|
109
|
-
(Default: ``)
|
|
114
|
+
(Default: ``) Specifies a comment for the storage integration.
|
|
110
115
|
"""
|
|
111
116
|
return pulumi.get(self, "comment")
|
|
112
117
|
|
|
@@ -129,6 +134,9 @@ class StorageIntegrationArgs:
|
|
|
129
134
|
@_builtins.property
|
|
130
135
|
@pulumi.getter
|
|
131
136
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137
|
+
"""
|
|
138
|
+
String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
139
|
+
"""
|
|
132
140
|
return pulumi.get(self, "name")
|
|
133
141
|
|
|
134
142
|
@name.setter
|
|
@@ -139,7 +147,7 @@ class StorageIntegrationArgs:
|
|
|
139
147
|
@pulumi.getter(name="storageAwsExternalId")
|
|
140
148
|
def storage_aws_external_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
141
149
|
"""
|
|
142
|
-
|
|
150
|
+
Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
143
151
|
"""
|
|
144
152
|
return pulumi.get(self, "storage_aws_external_id")
|
|
145
153
|
|
|
@@ -163,7 +171,7 @@ class StorageIntegrationArgs:
|
|
|
163
171
|
@pulumi.getter(name="storageAwsRoleArn")
|
|
164
172
|
def storage_aws_role_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
165
173
|
"""
|
|
166
|
-
(Default: ``)
|
|
174
|
+
(Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
167
175
|
"""
|
|
168
176
|
return pulumi.get(self, "storage_aws_role_arn")
|
|
169
177
|
|
|
@@ -187,7 +195,7 @@ class StorageIntegrationArgs:
|
|
|
187
195
|
@pulumi.getter
|
|
188
196
|
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
189
197
|
"""
|
|
190
|
-
(Default: `EXTERNAL_STAGE`)
|
|
198
|
+
(Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
191
199
|
"""
|
|
192
200
|
return pulumi.get(self, "type")
|
|
193
201
|
|
|
@@ -195,6 +203,18 @@ class StorageIntegrationArgs:
|
|
|
195
203
|
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
196
204
|
pulumi.set(self, "type", value)
|
|
197
205
|
|
|
206
|
+
@_builtins.property
|
|
207
|
+
@pulumi.getter(name="usePrivatelinkEndpoint")
|
|
208
|
+
def use_privatelink_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
209
|
+
"""
|
|
210
|
+
(Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "use_privatelink_endpoint")
|
|
213
|
+
|
|
214
|
+
@use_privatelink_endpoint.setter
|
|
215
|
+
def use_privatelink_endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
216
|
+
pulumi.set(self, "use_privatelink_endpoint", value)
|
|
217
|
+
|
|
198
218
|
|
|
199
219
|
@pulumi.input_type
|
|
200
220
|
class _StorageIntegrationState:
|
|
@@ -216,26 +236,29 @@ class _StorageIntegrationState:
|
|
|
216
236
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
217
237
|
storage_gcp_service_account: Optional[pulumi.Input[_builtins.str]] = None,
|
|
218
238
|
storage_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
219
|
-
type: Optional[pulumi.Input[_builtins.str]] = None
|
|
239
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
240
|
+
use_privatelink_endpoint: Optional[pulumi.Input[_builtins.str]] = None):
|
|
220
241
|
"""
|
|
221
242
|
Input properties used for looking up and filtering StorageIntegration resources.
|
|
222
243
|
:param pulumi.Input[_builtins.str] azure_consent_url: The consent URL that is used to create an Azure Snowflake service principle inside your tenant.
|
|
223
244
|
:param pulumi.Input[_builtins.str] azure_multi_tenant_app_name: This is the name of the Snowflake client application created for your account.
|
|
224
|
-
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
225
|
-
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
245
|
+
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
246
|
+
:param pulumi.Input[_builtins.str] comment: (Default: ``) Specifies a comment for the storage integration.
|
|
226
247
|
:param pulumi.Input[_builtins.str] created_on: Date and time when the storage integration was created.
|
|
227
248
|
:param pulumi.Input[Sequence[pulumi.Input['StorageIntegrationDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STORAGE INTEGRATION` for the given storage integration.
|
|
228
249
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
229
250
|
:param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
251
|
+
:param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
230
252
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
231
|
-
:param pulumi.Input[_builtins.str] storage_aws_external_id:
|
|
253
|
+
:param pulumi.Input[_builtins.str] storage_aws_external_id: Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
232
254
|
:param pulumi.Input[_builtins.str] storage_aws_iam_user_arn: The Snowflake user that will attempt to assume the AWS role.
|
|
233
255
|
:param pulumi.Input[_builtins.str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
234
|
-
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``)
|
|
256
|
+
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
235
257
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
236
258
|
:param pulumi.Input[_builtins.str] storage_gcp_service_account: This is the name of the Snowflake Google Service Account created for your account.
|
|
237
259
|
:param pulumi.Input[_builtins.str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
238
|
-
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`)
|
|
260
|
+
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
261
|
+
:param pulumi.Input[_builtins.str] use_privatelink_endpoint: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
239
262
|
"""
|
|
240
263
|
if azure_consent_url is not None:
|
|
241
264
|
pulumi.set(__self__, "azure_consent_url", azure_consent_url)
|
|
@@ -273,6 +296,8 @@ class _StorageIntegrationState:
|
|
|
273
296
|
pulumi.set(__self__, "storage_provider", storage_provider)
|
|
274
297
|
if type is not None:
|
|
275
298
|
pulumi.set(__self__, "type", type)
|
|
299
|
+
if use_privatelink_endpoint is not None:
|
|
300
|
+
pulumi.set(__self__, "use_privatelink_endpoint", use_privatelink_endpoint)
|
|
276
301
|
|
|
277
302
|
@_builtins.property
|
|
278
303
|
@pulumi.getter(name="azureConsentUrl")
|
|
@@ -302,7 +327,7 @@ class _StorageIntegrationState:
|
|
|
302
327
|
@pulumi.getter(name="azureTenantId")
|
|
303
328
|
def azure_tenant_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
304
329
|
"""
|
|
305
|
-
(Default: ``)
|
|
330
|
+
(Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
306
331
|
"""
|
|
307
332
|
return pulumi.get(self, "azure_tenant_id")
|
|
308
333
|
|
|
@@ -314,7 +339,7 @@ class _StorageIntegrationState:
|
|
|
314
339
|
@pulumi.getter
|
|
315
340
|
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
316
341
|
"""
|
|
317
|
-
(Default: ``)
|
|
342
|
+
(Default: ``) Specifies a comment for the storage integration.
|
|
318
343
|
"""
|
|
319
344
|
return pulumi.get(self, "comment")
|
|
320
345
|
|
|
@@ -373,6 +398,9 @@ class _StorageIntegrationState:
|
|
|
373
398
|
@_builtins.property
|
|
374
399
|
@pulumi.getter
|
|
375
400
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
401
|
+
"""
|
|
402
|
+
String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
403
|
+
"""
|
|
376
404
|
return pulumi.get(self, "name")
|
|
377
405
|
|
|
378
406
|
@name.setter
|
|
@@ -395,7 +423,7 @@ class _StorageIntegrationState:
|
|
|
395
423
|
@pulumi.getter(name="storageAwsExternalId")
|
|
396
424
|
def storage_aws_external_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
397
425
|
"""
|
|
398
|
-
|
|
426
|
+
Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
399
427
|
"""
|
|
400
428
|
return pulumi.get(self, "storage_aws_external_id")
|
|
401
429
|
|
|
@@ -431,7 +459,7 @@ class _StorageIntegrationState:
|
|
|
431
459
|
@pulumi.getter(name="storageAwsRoleArn")
|
|
432
460
|
def storage_aws_role_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
433
461
|
"""
|
|
434
|
-
(Default: ``)
|
|
462
|
+
(Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
435
463
|
"""
|
|
436
464
|
return pulumi.get(self, "storage_aws_role_arn")
|
|
437
465
|
|
|
@@ -479,7 +507,7 @@ class _StorageIntegrationState:
|
|
|
479
507
|
@pulumi.getter
|
|
480
508
|
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
481
509
|
"""
|
|
482
|
-
(Default: `EXTERNAL_STAGE`)
|
|
510
|
+
(Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
483
511
|
"""
|
|
484
512
|
return pulumi.get(self, "type")
|
|
485
513
|
|
|
@@ -487,6 +515,18 @@ class _StorageIntegrationState:
|
|
|
487
515
|
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
488
516
|
pulumi.set(self, "type", value)
|
|
489
517
|
|
|
518
|
+
@_builtins.property
|
|
519
|
+
@pulumi.getter(name="usePrivatelinkEndpoint")
|
|
520
|
+
def use_privatelink_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
521
|
+
"""
|
|
522
|
+
(Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
523
|
+
"""
|
|
524
|
+
return pulumi.get(self, "use_privatelink_endpoint")
|
|
525
|
+
|
|
526
|
+
@use_privatelink_endpoint.setter
|
|
527
|
+
def use_privatelink_endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
528
|
+
pulumi.set(self, "use_privatelink_endpoint", value)
|
|
529
|
+
|
|
490
530
|
|
|
491
531
|
@pulumi.type_token("snowflake:index/storageIntegration:StorageIntegration")
|
|
492
532
|
class StorageIntegration(pulumi.CustomResource):
|
|
@@ -505,6 +545,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
505
545
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
506
546
|
storage_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
507
547
|
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
548
|
+
use_privatelink_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
508
549
|
__props__=None):
|
|
509
550
|
"""
|
|
510
551
|
## Import
|
|
@@ -515,16 +556,18 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
515
556
|
|
|
516
557
|
:param str resource_name: The name of the resource.
|
|
517
558
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
518
|
-
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
519
|
-
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
559
|
+
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
560
|
+
:param pulumi.Input[_builtins.str] comment: (Default: ``) Specifies a comment for the storage integration.
|
|
520
561
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
562
|
+
:param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
521
563
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
522
|
-
:param pulumi.Input[_builtins.str] storage_aws_external_id:
|
|
564
|
+
:param pulumi.Input[_builtins.str] storage_aws_external_id: Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
523
565
|
:param pulumi.Input[_builtins.str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
524
|
-
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``)
|
|
566
|
+
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
525
567
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
526
568
|
:param pulumi.Input[_builtins.str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
527
|
-
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`)
|
|
569
|
+
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
570
|
+
:param pulumi.Input[_builtins.str] use_privatelink_endpoint: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
528
571
|
"""
|
|
529
572
|
...
|
|
530
573
|
@overload
|
|
@@ -565,6 +608,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
565
608
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
566
609
|
storage_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
567
610
|
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
611
|
+
use_privatelink_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
568
612
|
__props__=None):
|
|
569
613
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
570
614
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -589,6 +633,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
589
633
|
raise TypeError("Missing required property 'storage_provider'")
|
|
590
634
|
__props__.__dict__["storage_provider"] = storage_provider
|
|
591
635
|
__props__.__dict__["type"] = type
|
|
636
|
+
__props__.__dict__["use_privatelink_endpoint"] = use_privatelink_endpoint
|
|
592
637
|
__props__.__dict__["azure_consent_url"] = None
|
|
593
638
|
__props__.__dict__["azure_multi_tenant_app_name"] = None
|
|
594
639
|
__props__.__dict__["created_on"] = None
|
|
@@ -625,7 +670,8 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
625
670
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
626
671
|
storage_gcp_service_account: Optional[pulumi.Input[_builtins.str]] = None,
|
|
627
672
|
storage_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
628
|
-
type: Optional[pulumi.Input[_builtins.str]] = None
|
|
673
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
674
|
+
use_privatelink_endpoint: Optional[pulumi.Input[_builtins.str]] = None) -> 'StorageIntegration':
|
|
629
675
|
"""
|
|
630
676
|
Get an existing StorageIntegration resource's state with the given name, id, and optional extra
|
|
631
677
|
properties used to qualify the lookup.
|
|
@@ -635,21 +681,23 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
635
681
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
636
682
|
:param pulumi.Input[_builtins.str] azure_consent_url: The consent URL that is used to create an Azure Snowflake service principle inside your tenant.
|
|
637
683
|
:param pulumi.Input[_builtins.str] azure_multi_tenant_app_name: This is the name of the Snowflake client application created for your account.
|
|
638
|
-
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
639
|
-
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
684
|
+
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
685
|
+
:param pulumi.Input[_builtins.str] comment: (Default: ``) Specifies a comment for the storage integration.
|
|
640
686
|
:param pulumi.Input[_builtins.str] created_on: Date and time when the storage integration was created.
|
|
641
687
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StorageIntegrationDescribeOutputArgs', 'StorageIntegrationDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STORAGE INTEGRATION` for the given storage integration.
|
|
642
688
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
643
689
|
:param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
690
|
+
:param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
644
691
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
645
|
-
:param pulumi.Input[_builtins.str] storage_aws_external_id:
|
|
692
|
+
:param pulumi.Input[_builtins.str] storage_aws_external_id: Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
646
693
|
:param pulumi.Input[_builtins.str] storage_aws_iam_user_arn: The Snowflake user that will attempt to assume the AWS role.
|
|
647
694
|
:param pulumi.Input[_builtins.str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
648
|
-
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``)
|
|
695
|
+
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
649
696
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
650
697
|
:param pulumi.Input[_builtins.str] storage_gcp_service_account: This is the name of the Snowflake Google Service Account created for your account.
|
|
651
698
|
:param pulumi.Input[_builtins.str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
652
|
-
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`)
|
|
699
|
+
:param pulumi.Input[_builtins.str] type: (Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
700
|
+
:param pulumi.Input[_builtins.str] use_privatelink_endpoint: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
653
701
|
"""
|
|
654
702
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
655
703
|
|
|
@@ -673,6 +721,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
673
721
|
__props__.__dict__["storage_gcp_service_account"] = storage_gcp_service_account
|
|
674
722
|
__props__.__dict__["storage_provider"] = storage_provider
|
|
675
723
|
__props__.__dict__["type"] = type
|
|
724
|
+
__props__.__dict__["use_privatelink_endpoint"] = use_privatelink_endpoint
|
|
676
725
|
return StorageIntegration(resource_name, opts=opts, __props__=__props__)
|
|
677
726
|
|
|
678
727
|
@_builtins.property
|
|
@@ -695,7 +744,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
695
744
|
@pulumi.getter(name="azureTenantId")
|
|
696
745
|
def azure_tenant_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
697
746
|
"""
|
|
698
|
-
(Default: ``)
|
|
747
|
+
(Default: ``) Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
|
|
699
748
|
"""
|
|
700
749
|
return pulumi.get(self, "azure_tenant_id")
|
|
701
750
|
|
|
@@ -703,7 +752,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
703
752
|
@pulumi.getter
|
|
704
753
|
def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
705
754
|
"""
|
|
706
|
-
(Default: ``)
|
|
755
|
+
(Default: ``) Specifies a comment for the storage integration.
|
|
707
756
|
"""
|
|
708
757
|
return pulumi.get(self, "comment")
|
|
709
758
|
|
|
@@ -742,6 +791,9 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
742
791
|
@_builtins.property
|
|
743
792
|
@pulumi.getter
|
|
744
793
|
def name(self) -> pulumi.Output[_builtins.str]:
|
|
794
|
+
"""
|
|
795
|
+
String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
796
|
+
"""
|
|
745
797
|
return pulumi.get(self, "name")
|
|
746
798
|
|
|
747
799
|
@_builtins.property
|
|
@@ -756,7 +808,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
756
808
|
@pulumi.getter(name="storageAwsExternalId")
|
|
757
809
|
def storage_aws_external_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
758
810
|
"""
|
|
759
|
-
|
|
811
|
+
Optionally specifies an external ID that Snowflake uses to establish a trust relationship with AWS.
|
|
760
812
|
"""
|
|
761
813
|
return pulumi.get(self, "storage_aws_external_id")
|
|
762
814
|
|
|
@@ -780,7 +832,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
780
832
|
@pulumi.getter(name="storageAwsRoleArn")
|
|
781
833
|
def storage_aws_role_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
782
834
|
"""
|
|
783
|
-
(Default: ``)
|
|
835
|
+
(Default: ``) Specifies the Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
|
|
784
836
|
"""
|
|
785
837
|
return pulumi.get(self, "storage_aws_role_arn")
|
|
786
838
|
|
|
@@ -812,7 +864,15 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
812
864
|
@pulumi.getter
|
|
813
865
|
def type(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
814
866
|
"""
|
|
815
|
-
(Default: `EXTERNAL_STAGE`)
|
|
867
|
+
(Default: `EXTERNAL_STAGE`) Specifies the type of the storage integration.
|
|
816
868
|
"""
|
|
817
869
|
return pulumi.get(self, "type")
|
|
818
870
|
|
|
871
|
+
@_builtins.property
|
|
872
|
+
@pulumi.getter(name="usePrivatelinkEndpoint")
|
|
873
|
+
def use_privatelink_endpoint(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
874
|
+
"""
|
|
875
|
+
(Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether to use outbound private connectivity to harden the security posture. Supported for AWS S3 and Azure storage providers. 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.
|
|
876
|
+
"""
|
|
877
|
+
return pulumi.get(self, "use_privatelink_endpoint")
|
|
878
|
+
|
pulumi_snowflake/task.py
CHANGED
|
@@ -137,7 +137,7 @@ class TaskArgs:
|
|
|
137
137
|
:param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
138
138
|
:param pulumi.Input[_builtins.int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
|
|
139
139
|
:param pulumi.Input[_builtins.str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
|
|
140
|
-
:param pulumi.Input['TaskScheduleArgs'] schedule: The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
140
|
+
:param pulumi.Input['TaskScheduleArgs'] schedule: The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
141
141
|
:param pulumi.Input[_builtins.str] search_path: 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).
|
|
142
142
|
:param pulumi.Input[_builtins.int] statement_queued_timeout_in_seconds: Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
|
|
143
143
|
:param pulumi.Input[_builtins.int] statement_timeout_in_seconds: Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
|
|
@@ -817,7 +817,7 @@ class TaskArgs:
|
|
|
817
817
|
@pulumi.getter
|
|
818
818
|
def schedule(self) -> Optional[pulumi.Input['TaskScheduleArgs']]:
|
|
819
819
|
"""
|
|
820
|
-
The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
820
|
+
The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
821
821
|
"""
|
|
822
822
|
return pulumi.get(self, "schedule")
|
|
823
823
|
|
|
@@ -1295,7 +1295,7 @@ class _TaskState:
|
|
|
1295
1295
|
:param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
1296
1296
|
:param pulumi.Input[_builtins.int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
|
|
1297
1297
|
:param pulumi.Input[_builtins.str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
|
|
1298
|
-
:param pulumi.Input['TaskScheduleArgs'] schedule: The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
1298
|
+
:param pulumi.Input['TaskScheduleArgs'] schedule: The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
1299
1299
|
:param pulumi.Input[_builtins.str] schema: The schema in which to create the task. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
1300
1300
|
:param pulumi.Input[_builtins.str] search_path: 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).
|
|
1301
1301
|
:param pulumi.Input[Sequence[pulumi.Input['TaskShowOutputArgs']]] show_outputs: Outputs the result of `SHOW TASKS` for the given task.
|
|
@@ -1977,7 +1977,7 @@ class _TaskState:
|
|
|
1977
1977
|
@pulumi.getter
|
|
1978
1978
|
def schedule(self) -> Optional[pulumi.Input['TaskScheduleArgs']]:
|
|
1979
1979
|
"""
|
|
1980
|
-
The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
1980
|
+
The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
1981
1981
|
"""
|
|
1982
1982
|
return pulumi.get(self, "schedule")
|
|
1983
1983
|
|
|
@@ -2509,7 +2509,7 @@ class Task(pulumi.CustomResource):
|
|
|
2509
2509
|
:param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
2510
2510
|
:param pulumi.Input[_builtins.int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
|
|
2511
2511
|
:param pulumi.Input[_builtins.str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
|
|
2512
|
-
:param pulumi.Input[Union['TaskScheduleArgs', 'TaskScheduleArgsDict']] schedule: The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
2512
|
+
:param pulumi.Input[Union['TaskScheduleArgs', 'TaskScheduleArgsDict']] schedule: The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
2513
2513
|
:param pulumi.Input[_builtins.str] schema: The schema in which to create the task. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
2514
2514
|
:param pulumi.Input[_builtins.str] search_path: 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).
|
|
2515
2515
|
:param pulumi.Input[_builtins.str] sql_statement: Any single SQL statement, or a call to a stored procedure, executed when the task runs.
|
|
@@ -2868,7 +2868,7 @@ class Task(pulumi.CustomResource):
|
|
|
2868
2868
|
:param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
2869
2869
|
:param pulumi.Input[_builtins.int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
|
|
2870
2870
|
:param pulumi.Input[_builtins.str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
|
|
2871
|
-
:param pulumi.Input[Union['TaskScheduleArgs', 'TaskScheduleArgsDict']] schedule: The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
2871
|
+
:param pulumi.Input[Union['TaskScheduleArgs', 'TaskScheduleArgsDict']] schedule: The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
2872
2872
|
:param pulumi.Input[_builtins.str] schema: The schema in which to create the task. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
2873
2873
|
:param pulumi.Input[_builtins.str] search_path: 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).
|
|
2874
2874
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TaskShowOutputArgs', 'TaskShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW TASKS` for the given task.
|
|
@@ -3316,7 +3316,7 @@ class Task(pulumi.CustomResource):
|
|
|
3316
3316
|
@pulumi.getter
|
|
3317
3317
|
def schedule(self) -> pulumi.Output[Optional['outputs.TaskSchedule']]:
|
|
3318
3318
|
"""
|
|
3319
|
-
The schedule for periodically running the task. This can be a cron or interval in minutes. (Conflicts with finalize and after; when set, one of the sub-fields `minutes` or `using_cron` should be set)
|
|
3319
|
+
The schedule for periodically running the task. This can be a cron or interval in seconds, minutes, or hours. (Conflicts with finalize and after; when set, one of the sub-fields `seconds`, `minutes`, `hours`, or `using_cron` should be set) For [Triggered tasks](https://docs.snowflake.com/en/user-guide/tasks-triggered), a schedule is not required. For other tasks, a schedule must be defined for a standalone task or the root task in a [task graph](https://docs.snowflake.com/en/user-guide/tasks-graphs#label-task-dag); otherwise, the task only runs if manually executed using [EXECUTE TASK](https://docs.snowflake.com/en/sql-reference/sql/execute-task) in, for example, the Execute resource. A schedule cannot be specified for child tasks in a task graph. For more information on schedule restrictions, consult the [official documentation for Task object](https://docs.snowflake.com/en/user-guide/tasks-intro).
|
|
3320
3320
|
"""
|
|
3321
3321
|
return pulumi.get(self, "schedule")
|
|
3322
3322
|
|