pulumi-snowflake 0.61.0__py3-none-any.whl → 0.61.0a1729059116__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.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/__init__.py +0 -110
- pulumi_snowflake/_inputs.py +1823 -5168
- pulumi_snowflake/config/__init__.pyi +36 -86
- pulumi_snowflake/config/vars.py +40 -104
- pulumi_snowflake/get_grants.py +0 -4
- pulumi_snowflake/get_streams.py +56 -105
- pulumi_snowflake/grant_account_role.py +2 -2
- pulumi_snowflake/grant_application_role.py +2 -2
- pulumi_snowflake/grant_database_role.py +2 -2
- pulumi_snowflake/grant_ownership.py +14 -14
- pulumi_snowflake/grant_privileges_to_account_role.py +8 -8
- pulumi_snowflake/grant_privileges_to_database_role.py +8 -8
- pulumi_snowflake/grant_privileges_to_share.py +2 -2
- pulumi_snowflake/legacy_service_user.py +0 -4
- pulumi_snowflake/outputs.py +1346 -4401
- pulumi_snowflake/provider.py +146 -433
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/stream_on_external_table.py +2 -50
- pulumi_snowflake/stream_on_table.py +0 -48
- pulumi_snowflake/tag_association.py +7 -7
- pulumi_snowflake/user.py +0 -4
- {pulumi_snowflake-0.61.0.dist-info → pulumi_snowflake-0.61.0a1729059116.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.61.0.dist-info → pulumi_snowflake-0.61.0a1729059116.dist-info}/RECORD +25 -39
- {pulumi_snowflake-0.61.0.dist-info → pulumi_snowflake-0.61.0a1729059116.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_authentication_policy_attachment.py +0 -149
- pulumi_snowflake/authentication_policy.py +0 -622
- pulumi_snowflake/external_volume.py +0 -378
- pulumi_snowflake/get_connections.py +0 -147
- pulumi_snowflake/get_secrets.py +0 -204
- pulumi_snowflake/primary_connection.py +0 -330
- pulumi_snowflake/secondary_connection.py +0 -339
- pulumi_snowflake/secret_with_authorization_code_grant.py +0 -548
- pulumi_snowflake/secret_with_basic_authentication.py +0 -500
- pulumi_snowflake/secret_with_client_credentials.py +0 -511
- pulumi_snowflake/secret_with_generic_string.py +0 -452
- pulumi_snowflake/stream_on_directory_table.py +0 -530
- pulumi_snowflake/stream_on_view.py +0 -679
- pulumi_snowflake/user_authentication_policy_attachment.py +0 -197
- {pulumi_snowflake-0.61.0.dist-info → pulumi_snowflake-0.61.0a1729059116.dist-info}/top_level.txt +0 -0
|
@@ -173,9 +173,7 @@ class _StreamOnExternalTableState:
|
|
|
173
173
|
insert_only: Optional[pulumi.Input[str]] = None,
|
|
174
174
|
name: Optional[pulumi.Input[str]] = None,
|
|
175
175
|
schema: Optional[pulumi.Input[str]] = None,
|
|
176
|
-
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnExternalTableShowOutputArgs']]]] = None
|
|
177
|
-
stale: Optional[pulumi.Input[bool]] = None,
|
|
178
|
-
stream_type: Optional[pulumi.Input[str]] = None):
|
|
176
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnExternalTableShowOutputArgs']]]] = None):
|
|
179
177
|
"""
|
|
180
178
|
Input properties used for looking up and filtering StreamOnExternalTable resources.
|
|
181
179
|
:param pulumi.Input[str] comment: Specifies a comment for the stream.
|
|
@@ -188,7 +186,6 @@ class _StreamOnExternalTableState:
|
|
|
188
186
|
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
189
187
|
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
190
188
|
:param pulumi.Input[Sequence[pulumi.Input['StreamOnExternalTableShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
|
|
191
|
-
:param pulumi.Input[str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
192
189
|
"""
|
|
193
190
|
if at is not None:
|
|
194
191
|
pulumi.set(__self__, "at", at)
|
|
@@ -214,10 +211,6 @@ class _StreamOnExternalTableState:
|
|
|
214
211
|
pulumi.set(__self__, "schema", schema)
|
|
215
212
|
if show_outputs is not None:
|
|
216
213
|
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
217
|
-
if stale is not None:
|
|
218
|
-
pulumi.set(__self__, "stale", stale)
|
|
219
|
-
if stream_type is not None:
|
|
220
|
-
pulumi.set(__self__, "stream_type", stream_type)
|
|
221
214
|
|
|
222
215
|
@property
|
|
223
216
|
@pulumi.getter
|
|
@@ -357,27 +350,6 @@ class _StreamOnExternalTableState:
|
|
|
357
350
|
def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnExternalTableShowOutputArgs']]]]):
|
|
358
351
|
pulumi.set(self, "show_outputs", value)
|
|
359
352
|
|
|
360
|
-
@property
|
|
361
|
-
@pulumi.getter
|
|
362
|
-
def stale(self) -> Optional[pulumi.Input[bool]]:
|
|
363
|
-
return pulumi.get(self, "stale")
|
|
364
|
-
|
|
365
|
-
@stale.setter
|
|
366
|
-
def stale(self, value: Optional[pulumi.Input[bool]]):
|
|
367
|
-
pulumi.set(self, "stale", value)
|
|
368
|
-
|
|
369
|
-
@property
|
|
370
|
-
@pulumi.getter(name="streamType")
|
|
371
|
-
def stream_type(self) -> Optional[pulumi.Input[str]]:
|
|
372
|
-
"""
|
|
373
|
-
Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
374
|
-
"""
|
|
375
|
-
return pulumi.get(self, "stream_type")
|
|
376
|
-
|
|
377
|
-
@stream_type.setter
|
|
378
|
-
def stream_type(self, value: Optional[pulumi.Input[str]]):
|
|
379
|
-
pulumi.set(self, "stream_type", value)
|
|
380
|
-
|
|
381
353
|
|
|
382
354
|
class StreamOnExternalTable(pulumi.CustomResource):
|
|
383
355
|
@overload
|
|
@@ -475,8 +447,6 @@ class StreamOnExternalTable(pulumi.CustomResource):
|
|
|
475
447
|
__props__.__dict__["describe_outputs"] = None
|
|
476
448
|
__props__.__dict__["fully_qualified_name"] = None
|
|
477
449
|
__props__.__dict__["show_outputs"] = None
|
|
478
|
-
__props__.__dict__["stale"] = None
|
|
479
|
-
__props__.__dict__["stream_type"] = None
|
|
480
450
|
super(StreamOnExternalTable, __self__).__init__(
|
|
481
451
|
'snowflake:index/streamOnExternalTable:StreamOnExternalTable',
|
|
482
452
|
resource_name,
|
|
@@ -498,9 +468,7 @@ class StreamOnExternalTable(pulumi.CustomResource):
|
|
|
498
468
|
insert_only: Optional[pulumi.Input[str]] = None,
|
|
499
469
|
name: Optional[pulumi.Input[str]] = None,
|
|
500
470
|
schema: Optional[pulumi.Input[str]] = None,
|
|
501
|
-
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamOnExternalTableShowOutputArgs', 'StreamOnExternalTableShowOutputArgsDict']]]]] = None
|
|
502
|
-
stale: Optional[pulumi.Input[bool]] = None,
|
|
503
|
-
stream_type: Optional[pulumi.Input[str]] = None) -> 'StreamOnExternalTable':
|
|
471
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamOnExternalTableShowOutputArgs', 'StreamOnExternalTableShowOutputArgsDict']]]]] = None) -> 'StreamOnExternalTable':
|
|
504
472
|
"""
|
|
505
473
|
Get an existing StreamOnExternalTable resource's state with the given name, id, and optional extra
|
|
506
474
|
properties used to qualify the lookup.
|
|
@@ -518,7 +486,6 @@ class StreamOnExternalTable(pulumi.CustomResource):
|
|
|
518
486
|
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
519
487
|
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
520
488
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnExternalTableShowOutputArgs', 'StreamOnExternalTableShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
|
|
521
|
-
:param pulumi.Input[str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
522
489
|
"""
|
|
523
490
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
524
491
|
|
|
@@ -536,8 +503,6 @@ class StreamOnExternalTable(pulumi.CustomResource):
|
|
|
536
503
|
__props__.__dict__["name"] = name
|
|
537
504
|
__props__.__dict__["schema"] = schema
|
|
538
505
|
__props__.__dict__["show_outputs"] = show_outputs
|
|
539
|
-
__props__.__dict__["stale"] = stale
|
|
540
|
-
__props__.__dict__["stream_type"] = stream_type
|
|
541
506
|
return StreamOnExternalTable(resource_name, opts=opts, __props__=__props__)
|
|
542
507
|
|
|
543
508
|
@property
|
|
@@ -630,16 +595,3 @@ class StreamOnExternalTable(pulumi.CustomResource):
|
|
|
630
595
|
"""
|
|
631
596
|
return pulumi.get(self, "show_outputs")
|
|
632
597
|
|
|
633
|
-
@property
|
|
634
|
-
@pulumi.getter
|
|
635
|
-
def stale(self) -> pulumi.Output[bool]:
|
|
636
|
-
return pulumi.get(self, "stale")
|
|
637
|
-
|
|
638
|
-
@property
|
|
639
|
-
@pulumi.getter(name="streamType")
|
|
640
|
-
def stream_type(self) -> pulumi.Output[str]:
|
|
641
|
-
"""
|
|
642
|
-
Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
643
|
-
"""
|
|
644
|
-
return pulumi.get(self, "stream_type")
|
|
645
|
-
|
|
@@ -186,8 +186,6 @@ class _StreamOnTableState:
|
|
|
186
186
|
schema: Optional[pulumi.Input[str]] = None,
|
|
187
187
|
show_initial_rows: Optional[pulumi.Input[str]] = None,
|
|
188
188
|
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnTableShowOutputArgs']]]] = None,
|
|
189
|
-
stale: Optional[pulumi.Input[bool]] = None,
|
|
190
|
-
stream_type: Optional[pulumi.Input[str]] = None,
|
|
191
189
|
table: Optional[pulumi.Input[str]] = None):
|
|
192
190
|
"""
|
|
193
191
|
Input properties used for looking up and filtering StreamOnTable resources.
|
|
@@ -200,7 +198,6 @@ class _StreamOnTableState:
|
|
|
200
198
|
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
201
199
|
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
202
200
|
:param pulumi.Input[Sequence[pulumi.Input['StreamOnTableShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
|
|
203
|
-
:param pulumi.Input[str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
204
201
|
:param pulumi.Input[str] table: Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
205
202
|
"""
|
|
206
203
|
if append_only is not None:
|
|
@@ -227,10 +224,6 @@ class _StreamOnTableState:
|
|
|
227
224
|
pulumi.set(__self__, "show_initial_rows", show_initial_rows)
|
|
228
225
|
if show_outputs is not None:
|
|
229
226
|
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
230
|
-
if stale is not None:
|
|
231
|
-
pulumi.set(__self__, "stale", stale)
|
|
232
|
-
if stream_type is not None:
|
|
233
|
-
pulumi.set(__self__, "stream_type", stream_type)
|
|
234
227
|
if table is not None:
|
|
235
228
|
pulumi.set(__self__, "table", table)
|
|
236
229
|
|
|
@@ -369,27 +362,6 @@ class _StreamOnTableState:
|
|
|
369
362
|
def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnTableShowOutputArgs']]]]):
|
|
370
363
|
pulumi.set(self, "show_outputs", value)
|
|
371
364
|
|
|
372
|
-
@property
|
|
373
|
-
@pulumi.getter
|
|
374
|
-
def stale(self) -> Optional[pulumi.Input[bool]]:
|
|
375
|
-
return pulumi.get(self, "stale")
|
|
376
|
-
|
|
377
|
-
@stale.setter
|
|
378
|
-
def stale(self, value: Optional[pulumi.Input[bool]]):
|
|
379
|
-
pulumi.set(self, "stale", value)
|
|
380
|
-
|
|
381
|
-
@property
|
|
382
|
-
@pulumi.getter(name="streamType")
|
|
383
|
-
def stream_type(self) -> Optional[pulumi.Input[str]]:
|
|
384
|
-
"""
|
|
385
|
-
Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
386
|
-
"""
|
|
387
|
-
return pulumi.get(self, "stream_type")
|
|
388
|
-
|
|
389
|
-
@stream_type.setter
|
|
390
|
-
def stream_type(self, value: Optional[pulumi.Input[str]]):
|
|
391
|
-
pulumi.set(self, "stream_type", value)
|
|
392
|
-
|
|
393
365
|
@property
|
|
394
366
|
@pulumi.getter
|
|
395
367
|
def table(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -502,8 +474,6 @@ class StreamOnTable(pulumi.CustomResource):
|
|
|
502
474
|
__props__.__dict__["describe_outputs"] = None
|
|
503
475
|
__props__.__dict__["fully_qualified_name"] = None
|
|
504
476
|
__props__.__dict__["show_outputs"] = None
|
|
505
|
-
__props__.__dict__["stale"] = None
|
|
506
|
-
__props__.__dict__["stream_type"] = None
|
|
507
477
|
super(StreamOnTable, __self__).__init__(
|
|
508
478
|
'snowflake:index/streamOnTable:StreamOnTable',
|
|
509
479
|
resource_name,
|
|
@@ -526,8 +496,6 @@ class StreamOnTable(pulumi.CustomResource):
|
|
|
526
496
|
schema: Optional[pulumi.Input[str]] = None,
|
|
527
497
|
show_initial_rows: Optional[pulumi.Input[str]] = None,
|
|
528
498
|
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamOnTableShowOutputArgs', 'StreamOnTableShowOutputArgsDict']]]]] = None,
|
|
529
|
-
stale: Optional[pulumi.Input[bool]] = None,
|
|
530
|
-
stream_type: Optional[pulumi.Input[str]] = None,
|
|
531
499
|
table: Optional[pulumi.Input[str]] = None) -> 'StreamOnTable':
|
|
532
500
|
"""
|
|
533
501
|
Get an existing StreamOnTable resource's state with the given name, id, and optional extra
|
|
@@ -545,7 +513,6 @@ class StreamOnTable(pulumi.CustomResource):
|
|
|
545
513
|
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
546
514
|
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
547
515
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnTableShowOutputArgs', 'StreamOnTableShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
|
|
548
|
-
:param pulumi.Input[str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
549
516
|
:param pulumi.Input[str] table: Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
550
517
|
"""
|
|
551
518
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -564,8 +531,6 @@ class StreamOnTable(pulumi.CustomResource):
|
|
|
564
531
|
__props__.__dict__["schema"] = schema
|
|
565
532
|
__props__.__dict__["show_initial_rows"] = show_initial_rows
|
|
566
533
|
__props__.__dict__["show_outputs"] = show_outputs
|
|
567
|
-
__props__.__dict__["stale"] = stale
|
|
568
|
-
__props__.__dict__["stream_type"] = stream_type
|
|
569
534
|
__props__.__dict__["table"] = table
|
|
570
535
|
return StreamOnTable(resource_name, opts=opts, __props__=__props__)
|
|
571
536
|
|
|
@@ -656,19 +621,6 @@ class StreamOnTable(pulumi.CustomResource):
|
|
|
656
621
|
"""
|
|
657
622
|
return pulumi.get(self, "show_outputs")
|
|
658
623
|
|
|
659
|
-
@property
|
|
660
|
-
@pulumi.getter
|
|
661
|
-
def stale(self) -> pulumi.Output[bool]:
|
|
662
|
-
return pulumi.get(self, "stale")
|
|
663
|
-
|
|
664
|
-
@property
|
|
665
|
-
@pulumi.getter(name="streamType")
|
|
666
|
-
def stream_type(self) -> pulumi.Output[str]:
|
|
667
|
-
"""
|
|
668
|
-
Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
669
|
-
"""
|
|
670
|
-
return pulumi.get(self, "stream_type")
|
|
671
|
-
|
|
672
624
|
@property
|
|
673
625
|
@pulumi.getter
|
|
674
626
|
def table(self) -> pulumi.Output[str]:
|
|
@@ -30,7 +30,7 @@ class TagAssociationArgs:
|
|
|
30
30
|
"""
|
|
31
31
|
The set of arguments for constructing a TagAssociation resource.
|
|
32
32
|
:param pulumi.Input[Sequence[pulumi.Input['TagAssociationObjectIdentifierArgs']]] object_identifiers: Specifies the object identifier for the tag association.
|
|
33
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
33
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
34
34
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
35
35
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
36
36
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
@@ -64,7 +64,7 @@ class TagAssociationArgs:
|
|
|
64
64
|
@pulumi.getter(name="objectType")
|
|
65
65
|
def object_type(self) -> pulumi.Input[str]:
|
|
66
66
|
"""
|
|
67
|
-
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
67
|
+
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
68
68
|
"""
|
|
69
69
|
return pulumi.get(self, "object_type")
|
|
70
70
|
|
|
@@ -135,7 +135,7 @@ class _TagAssociationState:
|
|
|
135
135
|
Input properties used for looking up and filtering TagAssociation resources.
|
|
136
136
|
:param pulumi.Input[Sequence[pulumi.Input['TagAssociationObjectIdentifierArgs']]] object_identifiers: Specifies the object identifier for the tag association.
|
|
137
137
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
138
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
138
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
139
139
|
:param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
|
|
140
140
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
141
141
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -185,7 +185,7 @@ class _TagAssociationState:
|
|
|
185
185
|
@pulumi.getter(name="objectType")
|
|
186
186
|
def object_type(self) -> Optional[pulumi.Input[str]]:
|
|
187
187
|
"""
|
|
188
|
-
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
188
|
+
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
189
189
|
"""
|
|
190
190
|
return pulumi.get(self, "object_type")
|
|
191
191
|
|
|
@@ -255,7 +255,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
255
255
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
256
256
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TagAssociationObjectIdentifierArgs', 'TagAssociationObjectIdentifierArgsDict']]]] object_identifiers: Specifies the object identifier for the tag association.
|
|
257
257
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
258
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
258
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
259
259
|
:param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
|
|
260
260
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
261
261
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -344,7 +344,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
344
344
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
345
345
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TagAssociationObjectIdentifierArgs', 'TagAssociationObjectIdentifierArgsDict']]]] object_identifiers: Specifies the object identifier for the tag association.
|
|
346
346
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
347
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
347
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
348
348
|
:param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
|
|
349
349
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
350
350
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -382,7 +382,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
382
382
|
@pulumi.getter(name="objectType")
|
|
383
383
|
def object_type(self) -> pulumi.Output[str]:
|
|
384
384
|
"""
|
|
385
|
-
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE
|
|
385
|
+
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
386
386
|
"""
|
|
387
387
|
return pulumi.get(self, "object_type")
|
|
388
388
|
|
pulumi_snowflake/user.py
CHANGED
|
@@ -2678,8 +2678,6 @@ class User(pulumi.CustomResource):
|
|
|
2678
2678
|
$ pulumi import snowflake:index/user:User example '"<user_name>"'
|
|
2679
2679
|
```
|
|
2680
2680
|
|
|
2681
|
-
Note: pulumi preview+apply may be needed after successful import to fill out all the missing fields (like `password`) in state.
|
|
2682
|
-
|
|
2683
2681
|
:param str resource_name: The name of the resource.
|
|
2684
2682
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
2685
2683
|
:param pulumi.Input[bool] abort_detached_query: Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
|
|
@@ -2770,8 +2768,6 @@ class User(pulumi.CustomResource):
|
|
|
2770
2768
|
$ pulumi import snowflake:index/user:User example '"<user_name>"'
|
|
2771
2769
|
```
|
|
2772
2770
|
|
|
2773
|
-
Note: pulumi preview+apply may be needed after successful import to fill out all the missing fields (like `password`) in state.
|
|
2774
|
-
|
|
2775
2771
|
:param str resource_name: The name of the resource.
|
|
2776
2772
|
:param UserArgs args: The arguments to use to populate this resource's properties.
|
|
2777
2773
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
pulumi_snowflake/__init__.py,sha256=
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=
|
|
1
|
+
pulumi_snowflake/__init__.py,sha256=BssjKUXw6hzneB_o4YRSe_CD6z0icvcU2O9Ii2g8UM4,18741
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=JAD46lqjr34fvaD-URxTCTxchMX1a4cgaU58U5Ttfk8,1468282
|
|
3
3
|
pulumi_snowflake/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_snowflake/account.py,sha256=AVDJ--RjWG-Pv4kw2kVQY0lyB8llAvod6jI4VodaYuQ,47160
|
|
5
|
-
pulumi_snowflake/account_authentication_policy_attachment.py,sha256=nz_c1DMOysRj5nW24oAXDRHL5JvEKXhfAXB8uanqr24,7328
|
|
6
5
|
pulumi_snowflake/account_parameter.py,sha256=jyy1gnFKoYVn49irrZZZlNlKeg9X58XY1gzWQWDI8Io,8927
|
|
7
6
|
pulumi_snowflake/account_password_policy_attachment.py,sha256=BsKxVE6d_37Gpxh_fMa6mI5TClxnMQpnfL9J4uAnozY,6944
|
|
8
7
|
pulumi_snowflake/account_role.py,sha256=EcKm8ysaiyheyACfhlPtHqQN7ilVSLLRgMliCaek8V4,11122
|
|
@@ -11,7 +10,6 @@ pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py
|
|
|
11
10
|
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=o3SDwERSWXX2bMYcjFOUG2ZcOPo0slZrzEY1Rj-TMvg,40005
|
|
12
11
|
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=bi0cDCmArj_mi3qNVbJy5lrcj7GiPZCr7h_zkE8g2kk,40741
|
|
13
12
|
pulumi_snowflake/api_integration.py,sha256=l1PvCrilGDnnLDi78fUs3PFmkaX_3LSbhLI88oWkAFY,40529
|
|
14
|
-
pulumi_snowflake/authentication_policy.py,sha256=gjH9lwvd9o71N2GZGPDEl1jjsOZuABxg13ckhGfSa_0,42358
|
|
15
13
|
pulumi_snowflake/cortex_search_service.py,sha256=cQ3JFgokDMlP22Pmaqmb0UZGyItjicFOHERwcae-Zx4,25774
|
|
16
14
|
pulumi_snowflake/database.py,sha256=yqG_HREDo8-UcraPDkStS6mVmNqeDMgz1sih9Ycj1vI,86934
|
|
17
15
|
pulumi_snowflake/database_old.py,sha256=laFuzDtQoWo7iojPgITKEw0dQ01_sMIBJpe0p_9uIEE,27997
|
|
@@ -21,13 +19,11 @@ pulumi_snowflake/email_notification_integration.py,sha256=QnwfXgKmW01TYNbKayN2cv
|
|
|
21
19
|
pulumi_snowflake/external_function.py,sha256=PLM-30_f0LtAN6BYc7KjWih0nFZtn1v-OdVD2ofon7E,49316
|
|
22
20
|
pulumi_snowflake/external_oauth_integration.py,sha256=mG-Zjwamgllnz4VLa0r3a1EBAPg4TTk-QMwwZFwv1d4,66588
|
|
23
21
|
pulumi_snowflake/external_table.py,sha256=a_vd4m-gwKoJI6As6az_wlAYdBCJro_EmP_MdZ-3eSs,41563
|
|
24
|
-
pulumi_snowflake/external_volume.py,sha256=0rglPwqSCTGPYQ3D6Arq9LDAA5Ho6zdoS2xWQ18UeaY,24306
|
|
25
22
|
pulumi_snowflake/failover_group.py,sha256=eKqBhUUIlzocvBDnfUm1KAG0zPUklmcD5Bx_-V6oou0,38482
|
|
26
23
|
pulumi_snowflake/file_format.py,sha256=lHZNvtfWdJ4qUgqj5qSR_K-XUqueG2znQcT-NnHIYq0,93070
|
|
27
24
|
pulumi_snowflake/function.py,sha256=6AlpMLceE2RAhErpK0wmFGliAV5OoomP3BxK6chao6A,42264
|
|
28
25
|
pulumi_snowflake/get_accounts.py,sha256=drV8C9P7oF7hWelJUA0rnEpnBFNYUy6QyACJTjqxJLA,4030
|
|
29
26
|
pulumi_snowflake/get_alerts.py,sha256=_IyVwpVU7mFI3qBAZ7sloe7dwg7VUwMl7ALPu5mqUFk,5719
|
|
30
|
-
pulumi_snowflake/get_connections.py,sha256=rfgiTXeHkiCiSYD1MKuG0BDKDwkDrHU7yHMKaYfSv4w,6288
|
|
31
27
|
pulumi_snowflake/get_cortex_search_services.py,sha256=KgkLUd4IXnBJOSkWTC0fTynKe0RWWLUJIq--y5KwC_A,10227
|
|
32
28
|
pulumi_snowflake/get_current_account.py,sha256=HQXQmEqT1E70rQ_NCXuWjx5ivRGDynh8ocYRN9r7KLk,4479
|
|
33
29
|
pulumi_snowflake/get_current_role.py,sha256=Wn-tEIwECv_ArYNBmElEvDscJuo5NeyvgooecWFWEqQ,3052
|
|
@@ -41,7 +37,7 @@ pulumi_snowflake/get_external_tables.py,sha256=lBwav7CuHKlbsK6U3JRYPwRwplW84gTql
|
|
|
41
37
|
pulumi_snowflake/get_failover_groups.py,sha256=mzl8NbL1vtGw7zGoZYvjvExb03lg0-tnLZtI3cq1CGQ,4180
|
|
42
38
|
pulumi_snowflake/get_file_formats.py,sha256=hv9mVRcHZxFp7J3aIQbOIwMYRqxx8D8KR8OiP0wjFfU,5062
|
|
43
39
|
pulumi_snowflake/get_functions.py,sha256=j1Zn7BhWdt8yAOk94IsWQqy9aR9kGMAVpSclAYwyf6w,4920
|
|
44
|
-
pulumi_snowflake/get_grants.py,sha256=
|
|
40
|
+
pulumi_snowflake/get_grants.py,sha256=ZkGqHXAqROG9rEtBsLStnooYuZYvDb-X8-1RDwumGyE,15045
|
|
45
41
|
pulumi_snowflake/get_masking_policies.py,sha256=RaAkBITXMHzGqz8SUMcjS3NJ8v4zPTLnF4AigbIEYWo,10056
|
|
46
42
|
pulumi_snowflake/get_materialized_views.py,sha256=RTsrQfY0--cdVrEaXZvw48HEH2LY2kjfmOed_A1Pi-Q,5298
|
|
47
43
|
pulumi_snowflake/get_network_policies.py,sha256=qd7QDeOh8ZjnifqCIWIq25kxRFt__CZTaU6eIc4jnKg,7010
|
|
@@ -53,14 +49,13 @@ pulumi_snowflake/get_role.py,sha256=ksfqZO5UDxzTU5O60UIhty55zxaDa9G8RB-4O1AzChs,
|
|
|
53
49
|
pulumi_snowflake/get_roles.py,sha256=E0WKAFf-JI7B2TVIfCymXQtwcViDR3_gAsk8g0hvFQc,5965
|
|
54
50
|
pulumi_snowflake/get_row_access_policies.py,sha256=iRXdT5mwf0SxHUiogLOIk0sDPe2tqBbEmMSQN1AMRcA,10270
|
|
55
51
|
pulumi_snowflake/get_schemas.py,sha256=CkaS9r6fgjCi-HdTuvpTNXLFKRZbdnwHIOVsKP14T_A,11925
|
|
56
|
-
pulumi_snowflake/get_secrets.py,sha256=o3f9CO2qAsLd5Oo-g6qLWL9401toGuSF1awJYXnlFss,9106
|
|
57
52
|
pulumi_snowflake/get_security_integrations.py,sha256=sIAT1CtSZh5YgwbjmSSpk_nrY0qKHTqa5uQffupSSn4,7347
|
|
58
53
|
pulumi_snowflake/get_sequences.py,sha256=t5oVHXgaWcxy1-E8s3Zrfdjsw-RNnC9GArheYXRHXFs,4920
|
|
59
54
|
pulumi_snowflake/get_shares.py,sha256=YOG1xpv4Byx_eKg3AV3NPoCRDUWpjxJOg9-Xn4MdIKw,3962
|
|
60
55
|
pulumi_snowflake/get_stages.py,sha256=mwRm1LPaY05wOaBE4pqBVHvHhBmFOyPtbtWqaBuoxK0,4779
|
|
61
56
|
pulumi_snowflake/get_storage_integrations.py,sha256=d2RrwpmXizsNX8n_JAjOKDUL5wtoTu39RUPnejtPjec,3579
|
|
62
57
|
pulumi_snowflake/get_streamlits.py,sha256=sJxb_6GQKbNn2a2KOcenNuxItBf3DLJ2z6w0uyUGZTw,9637
|
|
63
|
-
pulumi_snowflake/get_streams.py,sha256=
|
|
58
|
+
pulumi_snowflake/get_streams.py,sha256=VQILOESiE26ZlBloltqsfKg_X2uNCozpIOX2X5YiCIE,4826
|
|
64
59
|
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=tQssNNgQf-_3TsAtt-0wRlQh5eaGcKbyKNAkhh47Xwc,4695
|
|
65
60
|
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=h3BdeP44-qeOAHgB6WuSKCqNgR_DRDwGNUiXVFo-nD4,4990
|
|
66
61
|
pulumi_snowflake/get_system_get_private_link_config.py,sha256=HteDPCysQG6n8I7FJcQ13RqS2UV91Agtdcc3BUsYnYk,12331
|
|
@@ -70,14 +65,14 @@ pulumi_snowflake/get_tasks.py,sha256=zl_s1JxCUDnM0OkvGNHV1EC-EMyRcey0BS4KCZrkerA
|
|
|
70
65
|
pulumi_snowflake/get_users.py,sha256=ctrEYtC4oPvVxvMUfm8p1vU46dS9S7EC3IV7-bB_PhU,11468
|
|
71
66
|
pulumi_snowflake/get_views.py,sha256=HUE1N7RqOBi-D9BdAmHVRYbPLPcwS2e9emsKUSmtUxI,10327
|
|
72
67
|
pulumi_snowflake/get_warehouses.py,sha256=uBvZXCkza_sju0yh1e7vVc2TJdWUS9gEobUMNMSaXl0,8204
|
|
73
|
-
pulumi_snowflake/grant_account_role.py,sha256=
|
|
74
|
-
pulumi_snowflake/grant_application_role.py,sha256=
|
|
75
|
-
pulumi_snowflake/grant_database_role.py,sha256=
|
|
76
|
-
pulumi_snowflake/grant_ownership.py,sha256=
|
|
77
|
-
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=
|
|
78
|
-
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=
|
|
79
|
-
pulumi_snowflake/grant_privileges_to_share.py,sha256=
|
|
80
|
-
pulumi_snowflake/legacy_service_user.py,sha256=
|
|
68
|
+
pulumi_snowflake/grant_account_role.py,sha256=eN-Xzy35SmfbcC_bzDTvXyPN7SGgdBuYbV-VFUpqlTg,11362
|
|
69
|
+
pulumi_snowflake/grant_application_role.py,sha256=psmHg7a1zOek2YMjEIO29TQGQbLaKg4gAeva6ACe_Ak,12145
|
|
70
|
+
pulumi_snowflake/grant_database_role.py,sha256=2GA_WTlpX3RkNY0tVz3zyqZf9nGAxBQwVkzuFDQ9b_A,14801
|
|
71
|
+
pulumi_snowflake/grant_ownership.py,sha256=VEPy3cYvn_PiYBVAzU5edn7rrcxbcUfcl5EDDURCkxQ,18278
|
|
72
|
+
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=uQU08kHsLkKjM_iAJNgIi18n_vP1TFHLBUPp329x-H0,31009
|
|
73
|
+
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=XR0KxL1euijwxcriHvWqIcL3ysXgfoHQKQLnPTMo0z4,28034
|
|
74
|
+
pulumi_snowflake/grant_privileges_to_share.py,sha256=c6smCSpNtEAFkTY-6-AdFWThYEcxe5T84KXV4GoyTIY,24925
|
|
75
|
+
pulumi_snowflake/legacy_service_user.py,sha256=Oan29HsnTfSl3NZ_r5a_XX0iz1Kt3Vnsf5iIy0reuzs,326912
|
|
81
76
|
pulumi_snowflake/managed_account.py,sha256=kIqqXm5nYCw-AgaXM1jhEL4wUQVfadzYoc4m3VaEPb4,22352
|
|
82
77
|
pulumi_snowflake/masking_policy.py,sha256=vXs24jH6ffq5mKtJQiKAbpKY0QcBXW_EcXQyQrbwWjA,35639
|
|
83
78
|
pulumi_snowflake/materialized_view.py,sha256=y1TFBXlXVVMBeSIcgileuptX3oX9VgS-hfkCCellnPE,24500
|
|
@@ -89,13 +84,12 @@ pulumi_snowflake/oauth_integration.py,sha256=LvL2jjSYPwF3ilaxpPX8q8J9yU6rxXbRCYY
|
|
|
89
84
|
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=P4XZGOowBPm3g4s8ZVNqp_isUfGhKwE0RLh8po4850g,56015
|
|
90
85
|
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=KG1Fi47z29mRaWZ93MtFOWVDKYWXNWKsTYoeBC9_cj4,36607
|
|
91
86
|
pulumi_snowflake/object_parameter.py,sha256=KiQuEvG6NrH-NFmAg_FnmmX5ZBBD6lVB7v6sCJUrXiA,18715
|
|
92
|
-
pulumi_snowflake/outputs.py,sha256=
|
|
87
|
+
pulumi_snowflake/outputs.py,sha256=3VeK5gCRLipCKwEE_nSgNSQ4KRvUszJjumtfaUnGNUE,1233730
|
|
93
88
|
pulumi_snowflake/password_policy.py,sha256=Vh54yzM_4WtVKMrLQU6uAPznTrcYB58hJk1ug199rXE,53905
|
|
94
89
|
pulumi_snowflake/pipe.py,sha256=TUydVIVUwkIuDeCxpwVziLj5nOCsqcIejZ-JybN94qg,26413
|
|
95
|
-
pulumi_snowflake/primary_connection.py,sha256=WgLVi-69X81I31R8WMZ61zwH5C6W2iYRZiP1lSS5fn4,18843
|
|
96
90
|
pulumi_snowflake/procedure.py,sha256=Dg8cjvxO3iLp6g9ND2lQpkhGI14O42xlZMsGsR4ZMds,45794
|
|
97
|
-
pulumi_snowflake/provider.py,sha256=
|
|
98
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
91
|
+
pulumi_snowflake/provider.py,sha256=SrzQ-XvnUzMgDqFJXOmCKOZ8yAEadiAukMdXUEP4eY0,85454
|
|
92
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=byXrwL4cnOzhGbWD-j0WhqmneIh-weFikSacPc4mHV8,86
|
|
99
93
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
94
|
pulumi_snowflake/resource_monitor.py,sha256=ZAYYFguvUfRV7QC0ReOHOhcE3gHbLcUDPOF2c_4qnjI,42101
|
|
101
95
|
pulumi_snowflake/role.py,sha256=6XbCskGmmGtB7Yr8U9uZNkqFbxCPKtGey3CVCEpSUhQ,10891
|
|
@@ -104,12 +98,7 @@ pulumi_snowflake/saml2_integration.py,sha256=u0mKSWh4VWhgvbN8XG5OsS6owRgHueW6Fmk
|
|
|
104
98
|
pulumi_snowflake/saml_integration.py,sha256=25snUHI4FQzzHnhKVqnbXGvuEC0oOs812tGx7Vud3v0,62645
|
|
105
99
|
pulumi_snowflake/schema.py,sha256=iTC2DamZu-X6Y1W7bg-1r-VdPVrw3-on089U1H0w0Yk,92492
|
|
106
100
|
pulumi_snowflake/scim_integration.py,sha256=nTbLnwIHXicNFXrovxfGwTHPNydkK9kykJGjzbNqa38,28734
|
|
107
|
-
pulumi_snowflake/secondary_connection.py,sha256=licxDQsc4EdXhAhBN6JM5zxu4ZbaGpu1gISpQ6p01XE,17448
|
|
108
101
|
pulumi_snowflake/secondary_database.py,sha256=LvzAa9vYCpELorXG3366ScmRwpfzFuXFMIoh87DElJ8,82584
|
|
109
|
-
pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=3PL8NG4boLBA1jfxu2EL-8g18iwojsGqI_VJiKVttKk,29382
|
|
110
|
-
pulumi_snowflake/secret_with_basic_authentication.py,sha256=oxCgc1XZzsQMmrMP_SIjsWo3qlvbB_-A4mRCAGT5QPI,24500
|
|
111
|
-
pulumi_snowflake/secret_with_client_credentials.py,sha256=3CKeBP4pt9Y6Vtq_jZm-YjT-D9yQRh5GaeJ_y4pXZv0,26854
|
|
112
|
-
pulumi_snowflake/secret_with_generic_string.py,sha256=in5RxXvZ8RkVtHj1OaXLL1XDAzq1msiFR6ChY2o6F0Q,22477
|
|
113
102
|
pulumi_snowflake/sequence.py,sha256=3uch8fN22pyburdAvyvHjktLgiVoFqqw0pXX1sD4q1Q,18290
|
|
114
103
|
pulumi_snowflake/service_user.py,sha256=G-dAHCezsD5vcARCptHw3hQE3RCqdp9xwelbdSVuEdY,321186
|
|
115
104
|
pulumi_snowflake/session_parameter.py,sha256=jmzbbo5i4UtLyijM4aiOJ6KDCt7Qgxznn51UtECrIo4,12933
|
|
@@ -118,30 +107,27 @@ pulumi_snowflake/shared_database.py,sha256=hG7QRWFWDbFdMOyg-6qc-UE_9RKRWDzB-hidY
|
|
|
118
107
|
pulumi_snowflake/stage.py,sha256=vbGPND3vgFK81mOs_C894EmzrPbDj_CtX7w02bpPan4,38015
|
|
119
108
|
pulumi_snowflake/storage_integration.py,sha256=vb1ofhP6LU-J6t2_qBAB7rPqqF6MlpPU7M16fKx2pO0,33141
|
|
120
109
|
pulumi_snowflake/stream.py,sha256=5E1OJaOaiArwfqWH21tcNq_xj5EXWP8YTw5WToOC6zI,26825
|
|
121
|
-
pulumi_snowflake/
|
|
122
|
-
pulumi_snowflake/
|
|
123
|
-
pulumi_snowflake/stream_on_table.py,sha256=t2eNpM-zt-60ZwMimPMMBZ3GZn5Y6YDrkAW15wT19zk,35180
|
|
124
|
-
pulumi_snowflake/stream_on_view.py,sha256=eNHuc7LJSUMNF5czSm79gUy2i3x32r32EAsSAuPJL-0,35073
|
|
110
|
+
pulumi_snowflake/stream_on_external_table.py,sha256=rRGNK6Is8oxukgqaiIf1t65WE4OJwW1CnfkA-bjAM7s,32513
|
|
111
|
+
pulumi_snowflake/stream_on_table.py,sha256=nt7GF6JvA6wSDUU3jgVgq2Lt1-m1j4FNrjezt3i-D9w,33109
|
|
125
112
|
pulumi_snowflake/streamlit.py,sha256=2qCRo345W5x69yGfPogDRNXfsVTj9sKO4AkcvnThjoQ,31013
|
|
126
113
|
pulumi_snowflake/table.py,sha256=ytScReoDsOfI3X2JR1rm2FtLPxnGDAzqj-T9EHAzxsc,33157
|
|
127
114
|
pulumi_snowflake/table_column_masking_policy_application.py,sha256=He2six0YqZ5AHAb3lnHIpDNn3QhdNIPPzl82tK29Dhk,10717
|
|
128
115
|
pulumi_snowflake/table_constraint.py,sha256=clloXd2bSwHxVuSRj3DPl44Yj3B5qaMYV5JcYEuG7H4,31166
|
|
129
116
|
pulumi_snowflake/tag.py,sha256=jE2cNJCXna0ZwpIv7piAM4tnJVDF_J0z-0VTiCbnIJ8,15397
|
|
130
|
-
pulumi_snowflake/tag_association.py,sha256=
|
|
117
|
+
pulumi_snowflake/tag_association.py,sha256=rTCgpQtof9E8SPOLjg_KMgu0G25hRsmuPFLoILPUDmg,22093
|
|
131
118
|
pulumi_snowflake/tag_masking_policy_association.py,sha256=E1LrfN7lLlRUqf8j9JL0tjLYiZXgkI3KviA13N6BM1s,9865
|
|
132
119
|
pulumi_snowflake/task.py,sha256=2wYzEEw6rfhBzqJe87eWxS2dC2E4XxyeLJfzr38rSTw,47908
|
|
133
120
|
pulumi_snowflake/unsafe_execute.py,sha256=6Gp1SrnXsnlri07rkSm9PtE1Ys_5mR2w64wCO5X3pNA,11926
|
|
134
|
-
pulumi_snowflake/user.py,sha256=
|
|
135
|
-
pulumi_snowflake/user_authentication_policy_attachment.py,sha256=oZ-xdgGbkChufZp1OsGfp4tEDN3OWIRezUG-xzjhDQ0,9142
|
|
121
|
+
pulumi_snowflake/user.py,sha256=u-QnGCXlA387TZXixP6HumbWFhUBFFcxOWDvLjVvCj0,334913
|
|
136
122
|
pulumi_snowflake/user_password_policy_attachment.py,sha256=FwvBU8U-_KdpgbplKi3Q3s_Pulh1paOfOvqUvyhB5oQ,8924
|
|
137
123
|
pulumi_snowflake/user_public_keys.py,sha256=hsyt78EP4kHs5SK7rLCPsWIHXI64N0D-KUdGUnO_sxY,11452
|
|
138
124
|
pulumi_snowflake/view.py,sha256=394gynbpC5gPl7vkf7GeoZRuXtze6IsdEKVSW4uzMcY,49148
|
|
139
125
|
pulumi_snowflake/warehouse.py,sha256=se2NXj9yS6klXgp7Acgr0niPUTwPwhioJz21rQgoCfA,58531
|
|
140
126
|
pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
141
|
-
pulumi_snowflake/config/__init__.pyi,sha256=
|
|
127
|
+
pulumi_snowflake/config/__init__.pyi,sha256=aa0VMLLskk9aIMRoknu4efzyLcxw_17GLRHF800qGjI,10042
|
|
142
128
|
pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
|
|
143
|
-
pulumi_snowflake/config/vars.py,sha256=
|
|
144
|
-
pulumi_snowflake-0.61.
|
|
145
|
-
pulumi_snowflake-0.61.
|
|
146
|
-
pulumi_snowflake-0.61.
|
|
147
|
-
pulumi_snowflake-0.61.
|
|
129
|
+
pulumi_snowflake/config/vars.py,sha256=G39jUlPVuNob1qJuIhVliLG8PlRZGx_IFjLPZ2KWHA0,15936
|
|
130
|
+
pulumi_snowflake-0.61.0a1729059116.dist-info/METADATA,sha256=XT-8LLiq8BaPyJ8GbaErTJ3emMBg8R1_3h08NYrgmHw,5049
|
|
131
|
+
pulumi_snowflake-0.61.0a1729059116.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
132
|
+
pulumi_snowflake-0.61.0a1729059116.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
133
|
+
pulumi_snowflake-0.61.0a1729059116.dist-info/RECORD,,
|