pulumi-snowflake 0.63.0a1734416430__py3-none-any.whl → 1.0.0__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.

Files changed (127) hide show
  1. pulumi_snowflake/__init__.py +82 -74
  2. pulumi_snowflake/_inputs.py +12705 -4876
  3. pulumi_snowflake/account.py +156 -163
  4. pulumi_snowflake/account_parameter.py +16 -16
  5. pulumi_snowflake/account_role.py +9 -9
  6. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +9 -22
  7. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +9 -22
  8. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +9 -22
  9. pulumi_snowflake/authentication_policy.py +21 -21
  10. pulumi_snowflake/config/__init__.pyi +8 -86
  11. pulumi_snowflake/config/vars.py +10 -110
  12. pulumi_snowflake/database.py +9 -9
  13. pulumi_snowflake/database_role.py +14 -14
  14. pulumi_snowflake/{unsafe_execute.py → execute.py} +35 -25
  15. pulumi_snowflake/external_oauth_integration.py +27 -27
  16. pulumi_snowflake/external_volume.py +11 -7
  17. pulumi_snowflake/function_java.py +1211 -0
  18. pulumi_snowflake/function_javascript.py +882 -0
  19. pulumi_snowflake/function_python.py +1212 -0
  20. pulumi_snowflake/function_scala.py +1212 -0
  21. pulumi_snowflake/function_sql.py +835 -0
  22. pulumi_snowflake/get_account_roles.py +129 -0
  23. pulumi_snowflake/get_accounts.py +41 -19
  24. pulumi_snowflake/get_alerts.py +4 -0
  25. pulumi_snowflake/get_connections.py +2 -40
  26. pulumi_snowflake/get_cortex_search_services.py +4 -0
  27. pulumi_snowflake/get_current_account.py +4 -0
  28. pulumi_snowflake/get_current_role.py +2 -2
  29. pulumi_snowflake/get_database.py +4 -0
  30. pulumi_snowflake/get_database_role.py +4 -0
  31. pulumi_snowflake/get_database_roles.py +2 -6
  32. pulumi_snowflake/get_databases.py +2 -6
  33. pulumi_snowflake/get_dynamic_tables.py +4 -2
  34. pulumi_snowflake/get_external_functions.py +4 -0
  35. pulumi_snowflake/get_external_tables.py +4 -0
  36. pulumi_snowflake/get_failover_groups.py +4 -2
  37. pulumi_snowflake/get_file_formats.py +4 -0
  38. pulumi_snowflake/get_functions.py +4 -0
  39. pulumi_snowflake/get_grants.py +0 -4
  40. pulumi_snowflake/get_masking_policies.py +2 -6
  41. pulumi_snowflake/get_materialized_views.py +4 -0
  42. pulumi_snowflake/get_network_policies.py +2 -6
  43. pulumi_snowflake/get_parameters.py +4 -0
  44. pulumi_snowflake/get_pipes.py +4 -0
  45. pulumi_snowflake/get_procedures.py +4 -0
  46. pulumi_snowflake/get_resource_monitors.py +2 -6
  47. pulumi_snowflake/get_row_access_policies.py +2 -6
  48. pulumi_snowflake/get_schemas.py +6 -4
  49. pulumi_snowflake/get_secrets.py +2 -6
  50. pulumi_snowflake/get_security_integrations.py +2 -6
  51. pulumi_snowflake/get_sequences.py +4 -0
  52. pulumi_snowflake/get_shares.py +4 -0
  53. pulumi_snowflake/get_stages.py +4 -0
  54. pulumi_snowflake/get_storage_integrations.py +4 -0
  55. pulumi_snowflake/get_streamlits.py +2 -6
  56. pulumi_snowflake/get_streams.py +2 -6
  57. pulumi_snowflake/get_system_generate_scim_access_token.py +4 -0
  58. pulumi_snowflake/get_system_get_private_link_config.py +4 -0
  59. pulumi_snowflake/get_system_get_snowflake_platform_info.py +2 -2
  60. pulumi_snowflake/get_tables.py +4 -0
  61. pulumi_snowflake/get_tags.py +2 -6
  62. pulumi_snowflake/get_tasks.py +0 -4
  63. pulumi_snowflake/get_users.py +2 -6
  64. pulumi_snowflake/get_views.py +2 -6
  65. pulumi_snowflake/get_warehouses.py +2 -6
  66. pulumi_snowflake/grant_account_role.py +21 -21
  67. pulumi_snowflake/grant_application_role.py +7 -7
  68. pulumi_snowflake/grant_database_role.py +28 -28
  69. pulumi_snowflake/grant_ownership.py +14 -14
  70. pulumi_snowflake/grant_privileges_to_account_role.py +14 -14
  71. pulumi_snowflake/grant_privileges_to_database_role.py +14 -14
  72. pulumi_snowflake/grant_privileges_to_share.py +42 -42
  73. pulumi_snowflake/legacy_service_user.py +21 -21
  74. pulumi_snowflake/masking_policy.py +21 -21
  75. pulumi_snowflake/network_policy.py +23 -23
  76. pulumi_snowflake/oauth_integration_for_custom_clients.py +73 -46
  77. pulumi_snowflake/oauth_integration_for_partner_applications.py +57 -30
  78. pulumi_snowflake/outputs.py +10029 -4056
  79. pulumi_snowflake/password_policy.py +12 -2
  80. pulumi_snowflake/primary_connection.py +16 -16
  81. pulumi_snowflake/procedure_java.py +1273 -0
  82. pulumi_snowflake/procedure_javascript.py +895 -0
  83. pulumi_snowflake/procedure_python.py +1226 -0
  84. pulumi_snowflake/procedure_scala.py +1273 -0
  85. pulumi_snowflake/procedure_sql.py +895 -0
  86. pulumi_snowflake/provider.py +40 -527
  87. pulumi_snowflake/pulumi-plugin.json +1 -1
  88. pulumi_snowflake/resource_monitor.py +16 -20
  89. pulumi_snowflake/row_access_policy.py +21 -21
  90. pulumi_snowflake/saml2_integration.py +9 -9
  91. pulumi_snowflake/schema.py +14 -18
  92. pulumi_snowflake/scim_integration.py +16 -16
  93. pulumi_snowflake/secondary_connection.py +16 -16
  94. pulumi_snowflake/secondary_database.py +16 -16
  95. pulumi_snowflake/secret_with_authorization_code_grant.py +28 -28
  96. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  97. pulumi_snowflake/secret_with_client_credentials.py +28 -28
  98. pulumi_snowflake/secret_with_generic_string.py +21 -21
  99. pulumi_snowflake/service_user.py +21 -21
  100. pulumi_snowflake/shared_database.py +16 -16
  101. pulumi_snowflake/stream_on_directory_table.py +28 -41
  102. pulumi_snowflake/stream_on_external_table.py +28 -41
  103. pulumi_snowflake/stream_on_table.py +28 -41
  104. pulumi_snowflake/stream_on_view.py +28 -41
  105. pulumi_snowflake/streamlit.py +42 -46
  106. pulumi_snowflake/tag.py +28 -28
  107. pulumi_snowflake/tag_association.py +28 -86
  108. pulumi_snowflake/task.py +58 -62
  109. pulumi_snowflake/user.py +21 -21
  110. pulumi_snowflake/view.py +28 -41
  111. pulumi_snowflake/warehouse.py +16 -16
  112. {pulumi_snowflake-0.63.0a1734416430.dist-info → pulumi_snowflake-1.0.0.dist-info}/METADATA +1 -1
  113. pulumi_snowflake-1.0.0.dist-info/RECORD +148 -0
  114. pulumi_snowflake/database_old.py +0 -489
  115. pulumi_snowflake/function.py +0 -901
  116. pulumi_snowflake/get_role.py +0 -126
  117. pulumi_snowflake/get_roles.py +0 -133
  118. pulumi_snowflake/oauth_integration.py +0 -610
  119. pulumi_snowflake/procedure.py +0 -910
  120. pulumi_snowflake/role.py +0 -250
  121. pulumi_snowflake/saml_integration.py +0 -916
  122. pulumi_snowflake/session_parameter.py +0 -301
  123. pulumi_snowflake/stream.py +0 -643
  124. pulumi_snowflake/tag_masking_policy_association.py +0 -211
  125. pulumi_snowflake-0.63.0a1734416430.dist-info/RECORD +0 -148
  126. {pulumi_snowflake-0.63.0a1734416430.dist-info → pulumi_snowflake-1.0.0.dist-info}/WHEEL +0 -0
  127. {pulumi_snowflake-0.63.0a1734416430.dist-info → pulumi_snowflake-1.0.0.dist-info}/top_level.txt +0 -0
@@ -33,13 +33,12 @@ class StreamOnViewArgs:
33
33
  show_initial_rows: Optional[pulumi.Input[str]] = None):
34
34
  """
35
35
  The set of arguments for constructing a StreamOnView resource.
36
- :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
37
- :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: `|`, `.`, `"`
38
- :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
36
+ :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
37
+ :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: `|`, `.`, `"`.
38
+ :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
39
39
  :param pulumi.Input[str] append_only: Specifies whether this is an append-only stream. 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.
40
40
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
41
- :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
42
- :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: `|`, `.`, `"`
41
+ :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: `|`, `.`, `"`.
43
42
  """
44
43
  pulumi.set(__self__, "database", database)
45
44
  pulumi.set(__self__, "schema", schema)
@@ -63,7 +62,7 @@ class StreamOnViewArgs:
63
62
  @pulumi.getter
64
63
  def database(self) -> pulumi.Input[str]:
65
64
  """
66
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
65
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
67
66
  """
68
67
  return pulumi.get(self, "database")
69
68
 
@@ -75,7 +74,7 @@ class StreamOnViewArgs:
75
74
  @pulumi.getter
76
75
  def schema(self) -> pulumi.Input[str]:
77
76
  """
78
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
77
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
79
78
  """
80
79
  return pulumi.get(self, "schema")
81
80
 
@@ -87,7 +86,7 @@ class StreamOnViewArgs:
87
86
  @pulumi.getter
88
87
  def view(self) -> pulumi.Input[str]:
89
88
  """
90
- Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
89
+ Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
91
90
  """
92
91
  return pulumi.get(self, "view")
93
92
 
@@ -140,9 +139,6 @@ class StreamOnViewArgs:
140
139
  @property
141
140
  @pulumi.getter(name="copyGrants")
142
141
  def copy_grants(self) -> Optional[pulumi.Input[bool]]:
143
- """
144
- Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
145
- """
146
142
  return pulumi.get(self, "copy_grants")
147
143
 
148
144
  @copy_grants.setter
@@ -153,7 +149,7 @@ class StreamOnViewArgs:
153
149
  @pulumi.getter
154
150
  def name(self) -> Optional[pulumi.Input[str]]:
155
151
  """
156
- 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: `|`, `.`, `"`
152
+ 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: `|`, `.`, `"`.
157
153
  """
158
154
  return pulumi.get(self, "name")
159
155
 
@@ -193,15 +189,14 @@ class _StreamOnViewState:
193
189
  Input properties used for looking up and filtering StreamOnView resources.
194
190
  :param pulumi.Input[str] append_only: Specifies whether this is an append-only stream. 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.
195
191
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
196
- :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
197
- :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
192
+ :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
198
193
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnViewDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
199
194
  :param pulumi.Input[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).
200
- :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
- :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: `|`, `.`, `"`
195
+ :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: `|`, `.`, `"`.
196
+ :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
197
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnViewShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
203
198
  :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
- :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
199
+ :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
205
200
  """
206
201
  if append_only is not None:
207
202
  pulumi.set(__self__, "append_only", append_only)
@@ -279,9 +274,6 @@ class _StreamOnViewState:
279
274
  @property
280
275
  @pulumi.getter(name="copyGrants")
281
276
  def copy_grants(self) -> Optional[pulumi.Input[bool]]:
282
- """
283
- Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
284
- """
285
277
  return pulumi.get(self, "copy_grants")
286
278
 
287
279
  @copy_grants.setter
@@ -292,7 +284,7 @@ class _StreamOnViewState:
292
284
  @pulumi.getter
293
285
  def database(self) -> Optional[pulumi.Input[str]]:
294
286
  """
295
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
287
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
296
288
  """
297
289
  return pulumi.get(self, "database")
298
290
 
@@ -328,7 +320,7 @@ class _StreamOnViewState:
328
320
  @pulumi.getter
329
321
  def name(self) -> Optional[pulumi.Input[str]]:
330
322
  """
331
- 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: `|`, `.`, `"`
323
+ 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: `|`, `.`, `"`.
332
324
  """
333
325
  return pulumi.get(self, "name")
334
326
 
@@ -340,7 +332,7 @@ class _StreamOnViewState:
340
332
  @pulumi.getter
341
333
  def schema(self) -> Optional[pulumi.Input[str]]:
342
334
  """
343
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
335
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
344
336
  """
345
337
  return pulumi.get(self, "schema")
346
338
 
@@ -394,7 +386,7 @@ class _StreamOnViewState:
394
386
  @pulumi.getter
395
387
  def view(self) -> Optional[pulumi.Input[str]]:
396
388
  """
397
- Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
389
+ Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
398
390
  """
399
391
  return pulumi.get(self, "view")
400
392
 
@@ -430,11 +422,10 @@ class StreamOnView(pulumi.CustomResource):
430
422
  :param pulumi.ResourceOptions opts: Options for the resource.
431
423
  :param pulumi.Input[str] append_only: Specifies whether this is an append-only stream. 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.
432
424
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
433
- :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
434
- :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
435
- :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: `|`, `.`, `"`
436
- :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: `|`, `.`, `"`
437
- :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
425
+ :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
426
+ :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: `|`, `.`, `"`.
427
+ :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: `|`, `.`, `"`.
428
+ :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
438
429
  """
439
430
  ...
440
431
  @overload
@@ -538,15 +529,14 @@ class StreamOnView(pulumi.CustomResource):
538
529
  :param pulumi.ResourceOptions opts: Options for the resource.
539
530
  :param pulumi.Input[str] append_only: Specifies whether this is an append-only stream. 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.
540
531
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
541
- :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
542
- :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
532
+ :param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
543
533
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnViewDescribeOutputArgs', 'StreamOnViewDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
544
534
  :param pulumi.Input[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).
545
- :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
- :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: `|`, `.`, `"`
535
+ :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: `|`, `.`, `"`.
536
+ :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
537
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnViewShowOutputArgs', 'StreamOnViewShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
548
538
  :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
- :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
539
+ :param pulumi.Input[str] view: Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
550
540
  """
551
541
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
552
542
 
@@ -598,16 +588,13 @@ class StreamOnView(pulumi.CustomResource):
598
588
  @property
599
589
  @pulumi.getter(name="copyGrants")
600
590
  def copy_grants(self) -> pulumi.Output[Optional[bool]]:
601
- """
602
- Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
603
- """
604
591
  return pulumi.get(self, "copy_grants")
605
592
 
606
593
  @property
607
594
  @pulumi.getter
608
595
  def database(self) -> pulumi.Output[str]:
609
596
  """
610
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
597
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
611
598
  """
612
599
  return pulumi.get(self, "database")
613
600
 
@@ -631,7 +618,7 @@ class StreamOnView(pulumi.CustomResource):
631
618
  @pulumi.getter
632
619
  def name(self) -> pulumi.Output[str]:
633
620
  """
634
- 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: `|`, `.`, `"`
621
+ 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: `|`, `.`, `"`.
635
622
  """
636
623
  return pulumi.get(self, "name")
637
624
 
@@ -639,7 +626,7 @@ class StreamOnView(pulumi.CustomResource):
639
626
  @pulumi.getter
640
627
  def schema(self) -> pulumi.Output[str]:
641
628
  """
642
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
629
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
643
630
  """
644
631
  return pulumi.get(self, "schema")
645
632
 
@@ -673,7 +660,7 @@ class StreamOnView(pulumi.CustomResource):
673
660
  @pulumi.getter
674
661
  def view(self) -> pulumi.Output[str]:
675
662
  """
676
- Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
663
+ Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
677
664
  """
678
665
  return pulumi.get(self, "view")
679
666
 
@@ -33,15 +33,15 @@ class StreamlitArgs:
33
33
  title: Optional[pulumi.Input[str]] = None):
34
34
  """
35
35
  The set of arguments for constructing a Streamlit resource.
36
- :param pulumi.Input[str] database: The database in which to create the streamlit
37
- :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
38
- :param pulumi.Input[str] schema: The schema in which to create the streamlit.
39
- :param pulumi.Input[str] stage: The stage in which streamlit files are located.
36
+ :param pulumi.Input[str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
37
+ :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
38
+ :param pulumi.Input[str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
39
+ :param pulumi.Input[str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
40
40
  :param pulumi.Input[str] comment: Specifies a comment for the streamlit.
41
41
  :param pulumi.Input[str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
42
42
  :param pulumi.Input[Sequence[pulumi.Input[str]]] external_access_integrations: External access integrations connected to the Streamlit.
43
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
44
- :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run.
43
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
44
+ :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
45
45
  :param pulumi.Input[str] title: Specifies a title for the Streamlit app to display in Snowsight.
46
46
  """
47
47
  pulumi.set(__self__, "database", database)
@@ -65,7 +65,7 @@ class StreamlitArgs:
65
65
  @pulumi.getter
66
66
  def database(self) -> pulumi.Input[str]:
67
67
  """
68
- The database in which to create the streamlit
68
+ The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
69
69
  """
70
70
  return pulumi.get(self, "database")
71
71
 
@@ -77,7 +77,7 @@ class StreamlitArgs:
77
77
  @pulumi.getter(name="mainFile")
78
78
  def main_file(self) -> pulumi.Input[str]:
79
79
  """
80
- Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
80
+ Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
81
81
  """
82
82
  return pulumi.get(self, "main_file")
83
83
 
@@ -89,7 +89,7 @@ class StreamlitArgs:
89
89
  @pulumi.getter
90
90
  def schema(self) -> pulumi.Input[str]:
91
91
  """
92
- The schema in which to create the streamlit.
92
+ The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
93
93
  """
94
94
  return pulumi.get(self, "schema")
95
95
 
@@ -101,7 +101,7 @@ class StreamlitArgs:
101
101
  @pulumi.getter
102
102
  def stage(self) -> pulumi.Input[str]:
103
103
  """
104
- The stage in which streamlit files are located.
104
+ The stage in which streamlit files are located. For more information about this resource, see docs.
105
105
  """
106
106
  return pulumi.get(self, "stage")
107
107
 
@@ -149,7 +149,7 @@ class StreamlitArgs:
149
149
  @pulumi.getter
150
150
  def name(self) -> Optional[pulumi.Input[str]]:
151
151
  """
152
- String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
152
+ String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
153
153
  """
154
154
  return pulumi.get(self, "name")
155
155
 
@@ -161,7 +161,7 @@ class StreamlitArgs:
161
161
  @pulumi.getter(name="queryWarehouse")
162
162
  def query_warehouse(self) -> Optional[pulumi.Input[str]]:
163
163
  """
164
- Specifies the warehouse where SQL queries issued by the Streamlit application are run.
164
+ Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
165
165
  """
166
166
  return pulumi.get(self, "query_warehouse")
167
167
 
@@ -201,17 +201,17 @@ class _StreamlitState:
201
201
  """
202
202
  Input properties used for looking up and filtering Streamlit resources.
203
203
  :param pulumi.Input[str] comment: Specifies a comment for the streamlit.
204
- :param pulumi.Input[str] database: The database in which to create the streamlit
204
+ :param pulumi.Input[str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
205
205
  :param pulumi.Input[Sequence[pulumi.Input['StreamlitDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAMLIT` for the given streamlit.
206
206
  :param pulumi.Input[str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
207
207
  :param pulumi.Input[Sequence[pulumi.Input[str]]] external_access_integrations: External access integrations connected to the Streamlit.
208
208
  :param pulumi.Input[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).
209
- :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
210
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
211
- :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run.
212
- :param pulumi.Input[str] schema: The schema in which to create the streamlit.
209
+ :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
210
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
211
+ :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
212
+ :param pulumi.Input[str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
213
213
  :param pulumi.Input[Sequence[pulumi.Input['StreamlitShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMLIT` for the given streamlit.
214
- :param pulumi.Input[str] stage: The stage in which streamlit files are located.
214
+ :param pulumi.Input[str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
215
215
  :param pulumi.Input[str] title: Specifies a title for the Streamlit app to display in Snowsight.
216
216
  """
217
217
  if comment is not None:
@@ -257,7 +257,7 @@ class _StreamlitState:
257
257
  @pulumi.getter
258
258
  def database(self) -> Optional[pulumi.Input[str]]:
259
259
  """
260
- The database in which to create the streamlit
260
+ The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
261
261
  """
262
262
  return pulumi.get(self, "database")
263
263
 
@@ -317,7 +317,7 @@ class _StreamlitState:
317
317
  @pulumi.getter(name="mainFile")
318
318
  def main_file(self) -> Optional[pulumi.Input[str]]:
319
319
  """
320
- Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
320
+ Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
321
321
  """
322
322
  return pulumi.get(self, "main_file")
323
323
 
@@ -329,7 +329,7 @@ class _StreamlitState:
329
329
  @pulumi.getter
330
330
  def name(self) -> Optional[pulumi.Input[str]]:
331
331
  """
332
- String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
332
+ String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
333
333
  """
334
334
  return pulumi.get(self, "name")
335
335
 
@@ -341,7 +341,7 @@ class _StreamlitState:
341
341
  @pulumi.getter(name="queryWarehouse")
342
342
  def query_warehouse(self) -> Optional[pulumi.Input[str]]:
343
343
  """
344
- Specifies the warehouse where SQL queries issued by the Streamlit application are run.
344
+ Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
345
345
  """
346
346
  return pulumi.get(self, "query_warehouse")
347
347
 
@@ -353,7 +353,7 @@ class _StreamlitState:
353
353
  @pulumi.getter
354
354
  def schema(self) -> Optional[pulumi.Input[str]]:
355
355
  """
356
- The schema in which to create the streamlit.
356
+ The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
357
357
  """
358
358
  return pulumi.get(self, "schema")
359
359
 
@@ -377,7 +377,7 @@ class _StreamlitState:
377
377
  @pulumi.getter
378
378
  def stage(self) -> Optional[pulumi.Input[str]]:
379
379
  """
380
- The stage in which streamlit files are located.
380
+ The stage in which streamlit files are located. For more information about this resource, see docs.
381
381
  """
382
382
  return pulumi.get(self, "stage")
383
383
 
@@ -417,8 +417,6 @@ class Streamlit(pulumi.CustomResource):
417
417
  """
418
418
  ## Import
419
419
 
420
- format is <database_name>.<schema_name>.<streamlit_name>
421
-
422
420
  ```sh
423
421
  $ pulumi import snowflake:index/streamlit:Streamlit example '"<database_name>"."<schema_name>"."<streamlit_name>"'
424
422
  ```
@@ -426,14 +424,14 @@ class Streamlit(pulumi.CustomResource):
426
424
  :param str resource_name: The name of the resource.
427
425
  :param pulumi.ResourceOptions opts: Options for the resource.
428
426
  :param pulumi.Input[str] comment: Specifies a comment for the streamlit.
429
- :param pulumi.Input[str] database: The database in which to create the streamlit
427
+ :param pulumi.Input[str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
430
428
  :param pulumi.Input[str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
431
429
  :param pulumi.Input[Sequence[pulumi.Input[str]]] external_access_integrations: External access integrations connected to the Streamlit.
432
- :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
433
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
434
- :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run.
435
- :param pulumi.Input[str] schema: The schema in which to create the streamlit.
436
- :param pulumi.Input[str] stage: The stage in which streamlit files are located.
430
+ :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
431
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
432
+ :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
433
+ :param pulumi.Input[str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
434
+ :param pulumi.Input[str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
437
435
  :param pulumi.Input[str] title: Specifies a title for the Streamlit app to display in Snowsight.
438
436
  """
439
437
  ...
@@ -445,8 +443,6 @@ class Streamlit(pulumi.CustomResource):
445
443
  """
446
444
  ## Import
447
445
 
448
- format is <database_name>.<schema_name>.<streamlit_name>
449
-
450
446
  ```sh
451
447
  $ pulumi import snowflake:index/streamlit:Streamlit example '"<database_name>"."<schema_name>"."<streamlit_name>"'
452
448
  ```
@@ -537,17 +533,17 @@ class Streamlit(pulumi.CustomResource):
537
533
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
538
534
  :param pulumi.ResourceOptions opts: Options for the resource.
539
535
  :param pulumi.Input[str] comment: Specifies a comment for the streamlit.
540
- :param pulumi.Input[str] database: The database in which to create the streamlit
536
+ :param pulumi.Input[str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
541
537
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamlitDescribeOutputArgs', 'StreamlitDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAMLIT` for the given streamlit.
542
538
  :param pulumi.Input[str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
543
539
  :param pulumi.Input[Sequence[pulumi.Input[str]]] external_access_integrations: External access integrations connected to the Streamlit.
544
540
  :param pulumi.Input[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).
545
- :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
546
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
547
- :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run.
548
- :param pulumi.Input[str] schema: The schema in which to create the streamlit.
541
+ :param pulumi.Input[str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
542
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
543
+ :param pulumi.Input[str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
544
+ :param pulumi.Input[str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
549
545
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamlitShowOutputArgs', 'StreamlitShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMLIT` for the given streamlit.
550
- :param pulumi.Input[str] stage: The stage in which streamlit files are located.
546
+ :param pulumi.Input[str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
551
547
  :param pulumi.Input[str] title: Specifies a title for the Streamlit app to display in Snowsight.
552
548
  """
553
549
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -581,7 +577,7 @@ class Streamlit(pulumi.CustomResource):
581
577
  @pulumi.getter
582
578
  def database(self) -> pulumi.Output[str]:
583
579
  """
584
- The database in which to create the streamlit
580
+ The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
585
581
  """
586
582
  return pulumi.get(self, "database")
587
583
 
@@ -621,7 +617,7 @@ class Streamlit(pulumi.CustomResource):
621
617
  @pulumi.getter(name="mainFile")
622
618
  def main_file(self) -> pulumi.Output[str]:
623
619
  """
624
- Specifies the filename of the Streamlit Python application. This filename is relative to the value of `root_location`
620
+ Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
625
621
  """
626
622
  return pulumi.get(self, "main_file")
627
623
 
@@ -629,7 +625,7 @@ class Streamlit(pulumi.CustomResource):
629
625
  @pulumi.getter
630
626
  def name(self) -> pulumi.Output[str]:
631
627
  """
632
- String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account.
628
+ String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
633
629
  """
634
630
  return pulumi.get(self, "name")
635
631
 
@@ -637,7 +633,7 @@ class Streamlit(pulumi.CustomResource):
637
633
  @pulumi.getter(name="queryWarehouse")
638
634
  def query_warehouse(self) -> pulumi.Output[Optional[str]]:
639
635
  """
640
- Specifies the warehouse where SQL queries issued by the Streamlit application are run.
636
+ Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
641
637
  """
642
638
  return pulumi.get(self, "query_warehouse")
643
639
 
@@ -645,7 +641,7 @@ class Streamlit(pulumi.CustomResource):
645
641
  @pulumi.getter
646
642
  def schema(self) -> pulumi.Output[str]:
647
643
  """
648
- The schema in which to create the streamlit.
644
+ The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
649
645
  """
650
646
  return pulumi.get(self, "schema")
651
647
 
@@ -661,7 +657,7 @@ class Streamlit(pulumi.CustomResource):
661
657
  @pulumi.getter
662
658
  def stage(self) -> pulumi.Output[str]:
663
659
  """
664
- The stage in which streamlit files are located.
660
+ The stage in which streamlit files are located. For more information about this resource, see docs.
665
661
  """
666
662
  return pulumi.get(self, "stage")
667
663