pulumi-snowflake 0.62.0a1732688512__py3-none-any.whl → 0.63.0a1732774995__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 (49) hide show
  1. pulumi_snowflake/__init__.py +1 -0
  2. pulumi_snowflake/_inputs.py +6620 -588
  3. pulumi_snowflake/account_role.py +7 -7
  4. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +7 -7
  5. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +7 -7
  6. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +7 -7
  7. pulumi_snowflake/authentication_policy.py +21 -21
  8. pulumi_snowflake/database.py +7 -7
  9. pulumi_snowflake/database_role.py +14 -14
  10. pulumi_snowflake/external_oauth_integration.py +7 -7
  11. pulumi_snowflake/external_volume.py +7 -7
  12. pulumi_snowflake/get_tags.py +134 -0
  13. pulumi_snowflake/get_tasks.py +125 -56
  14. pulumi_snowflake/legacy_service_user.py +7 -7
  15. pulumi_snowflake/masking_policy.py +21 -21
  16. pulumi_snowflake/network_policy.py +7 -7
  17. pulumi_snowflake/oauth_integration_for_custom_clients.py +7 -7
  18. pulumi_snowflake/oauth_integration_for_partner_applications.py +7 -7
  19. pulumi_snowflake/outputs.py +12197 -5310
  20. pulumi_snowflake/password_policy.py +2 -4
  21. pulumi_snowflake/primary_connection.py +7 -7
  22. pulumi_snowflake/pulumi-plugin.json +1 -1
  23. pulumi_snowflake/resource_monitor.py +7 -7
  24. pulumi_snowflake/role.py +7 -7
  25. pulumi_snowflake/row_access_policy.py +21 -21
  26. pulumi_snowflake/saml2_integration.py +7 -7
  27. pulumi_snowflake/scim_integration.py +7 -7
  28. pulumi_snowflake/secondary_connection.py +7 -7
  29. pulumi_snowflake/secondary_database.py +7 -7
  30. pulumi_snowflake/secret_with_authorization_code_grant.py +21 -21
  31. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  32. pulumi_snowflake/secret_with_client_credentials.py +21 -21
  33. pulumi_snowflake/secret_with_generic_string.py +21 -21
  34. pulumi_snowflake/service_user.py +7 -7
  35. pulumi_snowflake/shared_database.py +7 -7
  36. pulumi_snowflake/storage_integration.py +13 -0
  37. pulumi_snowflake/stream_on_directory_table.py +28 -28
  38. pulumi_snowflake/stream_on_external_table.py +28 -28
  39. pulumi_snowflake/stream_on_table.py +28 -28
  40. pulumi_snowflake/stream_on_view.py +28 -28
  41. pulumi_snowflake/tag.py +109 -36
  42. pulumi_snowflake/task.py +3008 -317
  43. pulumi_snowflake/user.py +7 -7
  44. pulumi_snowflake/view.py +21 -21
  45. pulumi_snowflake/warehouse.py +7 -7
  46. {pulumi_snowflake-0.62.0a1732688512.dist-info → pulumi_snowflake-0.63.0a1732774995.dist-info}/METADATA +1 -1
  47. {pulumi_snowflake-0.62.0a1732688512.dist-info → pulumi_snowflake-0.63.0a1732774995.dist-info}/RECORD +49 -48
  48. {pulumi_snowflake-0.62.0a1732688512.dist-info → pulumi_snowflake-0.63.0a1732774995.dist-info}/WHEEL +0 -0
  49. {pulumi_snowflake-0.62.0a1732688512.dist-info → pulumi_snowflake-0.63.0a1732774995.dist-info}/top_level.txt +0 -0
@@ -32,13 +32,13 @@ class StreamOnExternalTableArgs:
32
32
  name: Optional[pulumi.Input[str]] = None):
33
33
  """
34
34
  The set of arguments for constructing a StreamOnExternalTable resource.
35
- :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: `|`, `.`, `(`, `)`, `"`
36
- :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. 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: `|`, `.`, `(`, `)`, `"`
35
+ :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: `|`, `.`, `"`
36
+ :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. 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
38
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
39
39
  :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.
40
40
  :param pulumi.Input[str] insert_only: Specifies whether this is an insert-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.
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
42
42
  """
43
43
  pulumi.set(__self__, "database", database)
44
44
  pulumi.set(__self__, "external_table", external_table)
@@ -60,7 +60,7 @@ class StreamOnExternalTableArgs:
60
60
  @pulumi.getter
61
61
  def database(self) -> pulumi.Input[str]:
62
62
  """
63
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
63
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
64
64
  """
65
65
  return pulumi.get(self, "database")
66
66
 
@@ -72,7 +72,7 @@ class StreamOnExternalTableArgs:
72
72
  @pulumi.getter(name="externalTable")
73
73
  def external_table(self) -> pulumi.Input[str]:
74
74
  """
75
- Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
75
+ Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
76
76
  """
77
77
  return pulumi.get(self, "external_table")
78
78
 
@@ -84,7 +84,7 @@ class StreamOnExternalTableArgs:
84
84
  @pulumi.getter
85
85
  def schema(self) -> pulumi.Input[str]:
86
86
  """
87
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
87
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
88
88
  """
89
89
  return pulumi.get(self, "schema")
90
90
 
@@ -150,7 +150,7 @@ class StreamOnExternalTableArgs:
150
150
  @pulumi.getter
151
151
  def name(self) -> Optional[pulumi.Input[str]]:
152
152
  """
153
- 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: `|`, `.`, `(`, `)`, `"`
153
+ 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: `|`, `.`, `"`
154
154
  """
155
155
  return pulumi.get(self, "name")
156
156
 
@@ -180,13 +180,13 @@ class _StreamOnExternalTableState:
180
180
  Input properties used for looking up and filtering StreamOnExternalTable resources.
181
181
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
182
182
  :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.
183
- :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: `|`, `.`, `(`, `)`, `"`
183
+ :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: `|`, `.`, `"`
184
184
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnExternalTableDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
185
- :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
185
+ :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
186
186
  :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).
187
187
  :param pulumi.Input[str] insert_only: Specifies whether this is an insert-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.
188
- :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
- :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: `|`, `.`, `(`, `)`, `"`
188
+ :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
+ :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
190
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnExternalTableShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
191
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
192
  """
@@ -265,7 +265,7 @@ class _StreamOnExternalTableState:
265
265
  @pulumi.getter
266
266
  def database(self) -> Optional[pulumi.Input[str]]:
267
267
  """
268
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
268
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
269
269
  """
270
270
  return pulumi.get(self, "database")
271
271
 
@@ -289,7 +289,7 @@ class _StreamOnExternalTableState:
289
289
  @pulumi.getter(name="externalTable")
290
290
  def external_table(self) -> Optional[pulumi.Input[str]]:
291
291
  """
292
- Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
292
+ Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
293
293
  """
294
294
  return pulumi.get(self, "external_table")
295
295
 
@@ -325,7 +325,7 @@ class _StreamOnExternalTableState:
325
325
  @pulumi.getter
326
326
  def name(self) -> Optional[pulumi.Input[str]]:
327
327
  """
328
- 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: `|`, `.`, `(`, `)`, `"`
328
+ 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: `|`, `.`, `"`
329
329
  """
330
330
  return pulumi.get(self, "name")
331
331
 
@@ -337,7 +337,7 @@ class _StreamOnExternalTableState:
337
337
  @pulumi.getter
338
338
  def schema(self) -> Optional[pulumi.Input[str]]:
339
339
  """
340
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
340
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
341
341
  """
342
342
  return pulumi.get(self, "schema")
343
343
 
@@ -405,11 +405,11 @@ class StreamOnExternalTable(pulumi.CustomResource):
405
405
  :param pulumi.ResourceOptions opts: Options for the resource.
406
406
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
407
407
  :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.
408
- :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: `|`, `.`, `(`, `)`, `"`
409
- :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
408
+ :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: `|`, `.`, `"`
409
+ :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
410
410
  :param pulumi.Input[str] insert_only: Specifies whether this is an insert-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.
411
- :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: `|`, `.`, `(`, `)`, `"`
412
- :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: `|`, `.`, `(`, `)`, `"`
411
+ :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: `|`, `.`, `"`
412
+ :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: `|`, `.`, `"`
413
413
  """
414
414
  ...
415
415
  @overload
@@ -510,13 +510,13 @@ class StreamOnExternalTable(pulumi.CustomResource):
510
510
  :param pulumi.ResourceOptions opts: Options for the resource.
511
511
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
512
512
  :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.
513
- :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: `|`, `.`, `(`, `)`, `"`
513
+ :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: `|`, `.`, `"`
514
514
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnExternalTableDescribeOutputArgs', 'StreamOnExternalTableDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
515
- :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
515
+ :param pulumi.Input[str] external_table: Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
516
516
  :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).
517
517
  :param pulumi.Input[str] insert_only: Specifies whether this is an insert-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.
518
- :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
- :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: `|`, `.`, `(`, `)`, `"`
518
+ :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
+ :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
520
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnExternalTableShowOutputArgs', 'StreamOnExternalTableShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
521
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
522
  """
@@ -570,7 +570,7 @@ class StreamOnExternalTable(pulumi.CustomResource):
570
570
  @pulumi.getter
571
571
  def database(self) -> pulumi.Output[str]:
572
572
  """
573
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
573
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
574
574
  """
575
575
  return pulumi.get(self, "database")
576
576
 
@@ -586,7 +586,7 @@ class StreamOnExternalTable(pulumi.CustomResource):
586
586
  @pulumi.getter(name="externalTable")
587
587
  def external_table(self) -> pulumi.Output[str]:
588
588
  """
589
- Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
589
+ Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
590
590
  """
591
591
  return pulumi.get(self, "external_table")
592
592
 
@@ -610,7 +610,7 @@ class StreamOnExternalTable(pulumi.CustomResource):
610
610
  @pulumi.getter
611
611
  def name(self) -> pulumi.Output[str]:
612
612
  """
613
- 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: `|`, `.`, `(`, `)`, `"`
613
+ 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: `|`, `.`, `"`
614
614
  """
615
615
  return pulumi.get(self, "name")
616
616
 
@@ -618,7 +618,7 @@ class StreamOnExternalTable(pulumi.CustomResource):
618
618
  @pulumi.getter
619
619
  def schema(self) -> pulumi.Output[str]:
620
620
  """
621
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
621
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
622
622
  """
623
623
  return pulumi.get(self, "schema")
624
624
 
@@ -33,13 +33,13 @@ class StreamOnTableArgs:
33
33
  show_initial_rows: Optional[pulumi.Input[str]] = None):
34
34
  """
35
35
  The set of arguments for constructing a StreamOnTable 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] table: Specifies an identifier for the table 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] table: Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
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
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
43
43
  """
44
44
  pulumi.set(__self__, "database", database)
45
45
  pulumi.set(__self__, "schema", schema)
@@ -63,7 +63,7 @@ class StreamOnTableArgs:
63
63
  @pulumi.getter
64
64
  def database(self) -> pulumi.Input[str]:
65
65
  """
66
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
66
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
67
67
  """
68
68
  return pulumi.get(self, "database")
69
69
 
@@ -75,7 +75,7 @@ class StreamOnTableArgs:
75
75
  @pulumi.getter
76
76
  def schema(self) -> pulumi.Input[str]:
77
77
  """
78
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
78
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
79
79
  """
80
80
  return pulumi.get(self, "schema")
81
81
 
@@ -87,7 +87,7 @@ class StreamOnTableArgs:
87
87
  @pulumi.getter
88
88
  def table(self) -> pulumi.Input[str]:
89
89
  """
90
- Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
90
+ Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
91
91
  """
92
92
  return pulumi.get(self, "table")
93
93
 
@@ -153,7 +153,7 @@ class StreamOnTableArgs:
153
153
  @pulumi.getter
154
154
  def name(self) -> Optional[pulumi.Input[str]]:
155
155
  """
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
157
157
  """
158
158
  return pulumi.get(self, "name")
159
159
 
@@ -194,14 +194,14 @@ class _StreamOnTableState:
194
194
  :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
195
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
196
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
198
198
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnTableDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
199
199
  :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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
202
202
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnTableShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
203
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
- :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: `|`, `.`, `(`, `)`, `"`
204
+ :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
205
  """
206
206
  if append_only is not None:
207
207
  pulumi.set(__self__, "append_only", append_only)
@@ -292,7 +292,7 @@ class _StreamOnTableState:
292
292
  @pulumi.getter
293
293
  def database(self) -> Optional[pulumi.Input[str]]:
294
294
  """
295
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
295
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
296
296
  """
297
297
  return pulumi.get(self, "database")
298
298
 
@@ -328,7 +328,7 @@ class _StreamOnTableState:
328
328
  @pulumi.getter
329
329
  def name(self) -> Optional[pulumi.Input[str]]:
330
330
  """
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
332
332
  """
333
333
  return pulumi.get(self, "name")
334
334
 
@@ -340,7 +340,7 @@ class _StreamOnTableState:
340
340
  @pulumi.getter
341
341
  def schema(self) -> Optional[pulumi.Input[str]]:
342
342
  """
343
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
343
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
344
344
  """
345
345
  return pulumi.get(self, "schema")
346
346
 
@@ -394,7 +394,7 @@ class _StreamOnTableState:
394
394
  @pulumi.getter
395
395
  def table(self) -> Optional[pulumi.Input[str]]:
396
396
  """
397
- Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
397
+ Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
398
398
  """
399
399
  return pulumi.get(self, "table")
400
400
 
@@ -431,10 +431,10 @@ class StreamOnTable(pulumi.CustomResource):
431
431
  :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
432
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
433
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] table: Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
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] table: Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
438
438
  """
439
439
  ...
440
440
  @overload
@@ -539,14 +539,14 @@ class StreamOnTable(pulumi.CustomResource):
539
539
  :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
540
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
541
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
543
543
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnTableDescribeOutputArgs', 'StreamOnTableDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
544
544
  :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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
547
547
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnTableShowOutputArgs', 'StreamOnTableShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
548
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
- :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: `|`, `.`, `(`, `)`, `"`
549
+ :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
550
  """
551
551
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
552
552
 
@@ -607,7 +607,7 @@ class StreamOnTable(pulumi.CustomResource):
607
607
  @pulumi.getter
608
608
  def database(self) -> pulumi.Output[str]:
609
609
  """
610
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
610
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
611
611
  """
612
612
  return pulumi.get(self, "database")
613
613
 
@@ -631,7 +631,7 @@ class StreamOnTable(pulumi.CustomResource):
631
631
  @pulumi.getter
632
632
  def name(self) -> pulumi.Output[str]:
633
633
  """
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
635
635
  """
636
636
  return pulumi.get(self, "name")
637
637
 
@@ -639,7 +639,7 @@ class StreamOnTable(pulumi.CustomResource):
639
639
  @pulumi.getter
640
640
  def schema(self) -> pulumi.Output[str]:
641
641
  """
642
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
642
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
643
643
  """
644
644
  return pulumi.get(self, "schema")
645
645
 
@@ -673,7 +673,7 @@ class StreamOnTable(pulumi.CustomResource):
673
673
  @pulumi.getter
674
674
  def table(self) -> pulumi.Output[str]:
675
675
  """
676
- Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
676
+ Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
677
677
  """
678
678
  return pulumi.get(self, "table")
679
679
 
@@ -33,13 +33,13 @@ 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: `|`, `.`, `"`
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
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
43
43
  """
44
44
  pulumi.set(__self__, "database", database)
45
45
  pulumi.set(__self__, "schema", schema)
@@ -63,7 +63,7 @@ class StreamOnViewArgs:
63
63
  @pulumi.getter
64
64
  def database(self) -> pulumi.Input[str]:
65
65
  """
66
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
66
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
67
67
  """
68
68
  return pulumi.get(self, "database")
69
69
 
@@ -75,7 +75,7 @@ class StreamOnViewArgs:
75
75
  @pulumi.getter
76
76
  def schema(self) -> pulumi.Input[str]:
77
77
  """
78
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
78
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
79
79
  """
80
80
  return pulumi.get(self, "schema")
81
81
 
@@ -87,7 +87,7 @@ class StreamOnViewArgs:
87
87
  @pulumi.getter
88
88
  def view(self) -> pulumi.Input[str]:
89
89
  """
90
- Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
90
+ Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
91
91
  """
92
92
  return pulumi.get(self, "view")
93
93
 
@@ -153,7 +153,7 @@ class StreamOnViewArgs:
153
153
  @pulumi.getter
154
154
  def name(self) -> Optional[pulumi.Input[str]]:
155
155
  """
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
157
157
  """
158
158
  return pulumi.get(self, "name")
159
159
 
@@ -194,14 +194,14 @@ class _StreamOnViewState:
194
194
  :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
195
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
196
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
198
198
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnViewDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
199
199
  :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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
202
202
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnViewShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
203
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
- :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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
205
205
  """
206
206
  if append_only is not None:
207
207
  pulumi.set(__self__, "append_only", append_only)
@@ -292,7 +292,7 @@ class _StreamOnViewState:
292
292
  @pulumi.getter
293
293
  def database(self) -> Optional[pulumi.Input[str]]:
294
294
  """
295
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
295
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
296
296
  """
297
297
  return pulumi.get(self, "database")
298
298
 
@@ -328,7 +328,7 @@ class _StreamOnViewState:
328
328
  @pulumi.getter
329
329
  def name(self) -> Optional[pulumi.Input[str]]:
330
330
  """
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
332
332
  """
333
333
  return pulumi.get(self, "name")
334
334
 
@@ -340,7 +340,7 @@ class _StreamOnViewState:
340
340
  @pulumi.getter
341
341
  def schema(self) -> Optional[pulumi.Input[str]]:
342
342
  """
343
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
343
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
344
344
  """
345
345
  return pulumi.get(self, "schema")
346
346
 
@@ -394,7 +394,7 @@ class _StreamOnViewState:
394
394
  @pulumi.getter
395
395
  def view(self) -> Optional[pulumi.Input[str]]:
396
396
  """
397
- Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
397
+ Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
398
398
  """
399
399
  return pulumi.get(self, "view")
400
400
 
@@ -431,10 +431,10 @@ class StreamOnView(pulumi.CustomResource):
431
431
  :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
432
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
433
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
438
438
  """
439
439
  ...
440
440
  @overload
@@ -539,14 +539,14 @@ class StreamOnView(pulumi.CustomResource):
539
539
  :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
540
  :param pulumi.Input[str] comment: Specifies a comment for the stream.
541
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
543
543
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnViewDescribeOutputArgs', 'StreamOnViewDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
544
544
  :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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
547
547
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnViewShowOutputArgs', 'StreamOnViewShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
548
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
- :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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
550
550
  """
551
551
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
552
552
 
@@ -607,7 +607,7 @@ class StreamOnView(pulumi.CustomResource):
607
607
  @pulumi.getter
608
608
  def database(self) -> pulumi.Output[str]:
609
609
  """
610
- The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
610
+ The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
611
611
  """
612
612
  return pulumi.get(self, "database")
613
613
 
@@ -631,7 +631,7 @@ class StreamOnView(pulumi.CustomResource):
631
631
  @pulumi.getter
632
632
  def name(self) -> pulumi.Output[str]:
633
633
  """
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: `|`, `.`, `(`, `)`, `"`
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: `|`, `.`, `"`
635
635
  """
636
636
  return pulumi.get(self, "name")
637
637
 
@@ -639,7 +639,7 @@ class StreamOnView(pulumi.CustomResource):
639
639
  @pulumi.getter
640
640
  def schema(self) -> pulumi.Output[str]:
641
641
  """
642
- The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
642
+ The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
643
643
  """
644
644
  return pulumi.get(self, "schema")
645
645
 
@@ -673,7 +673,7 @@ class StreamOnView(pulumi.CustomResource):
673
673
  @pulumi.getter
674
674
  def view(self) -> pulumi.Output[str]:
675
675
  """
676
- Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
676
+ Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
677
677
  """
678
678
  return pulumi.get(self, "view")
679
679