pulumi-snowflake 2.3.0a1753339260__py3-none-any.whl → 2.3.0a1753398370__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 (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1753339260.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,19 +21,19 @@ __all__ = ['StreamOnDirectoryTableArgs', 'StreamOnDirectoryTable']
22
21
  @pulumi.input_type
23
22
  class StreamOnDirectoryTableArgs:
24
23
  def __init__(__self__, *,
25
- database: pulumi.Input[builtins.str],
26
- schema: pulumi.Input[builtins.str],
27
- stage: pulumi.Input[builtins.str],
28
- comment: Optional[pulumi.Input[builtins.str]] = None,
29
- copy_grants: Optional[pulumi.Input[builtins.bool]] = None,
30
- name: Optional[pulumi.Input[builtins.str]] = None):
24
+ database: pulumi.Input[_builtins.str],
25
+ schema: pulumi.Input[_builtins.str],
26
+ stage: pulumi.Input[_builtins.str],
27
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
28
+ copy_grants: Optional[pulumi.Input[_builtins.bool]] = None,
29
+ name: Optional[pulumi.Input[_builtins.str]] = None):
31
30
  """
32
31
  The set of arguments for constructing a StreamOnDirectoryTable resource.
33
- :param pulumi.Input[builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
34
- :param pulumi.Input[builtins.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[builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
36
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the stream.
37
- :param pulumi.Input[builtins.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: `|`, `.`, `"`.
32
+ :param pulumi.Input[_builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
33
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
34
+ :param pulumi.Input[_builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
35
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the stream.
36
+ :param pulumi.Input[_builtins.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: `|`, `.`, `"`.
38
37
  """
39
38
  pulumi.set(__self__, "database", database)
40
39
  pulumi.set(__self__, "schema", schema)
@@ -46,101 +45,101 @@ class StreamOnDirectoryTableArgs:
46
45
  if name is not None:
47
46
  pulumi.set(__self__, "name", name)
48
47
 
49
- @property
48
+ @_builtins.property
50
49
  @pulumi.getter
51
- def database(self) -> pulumi.Input[builtins.str]:
50
+ def database(self) -> pulumi.Input[_builtins.str]:
52
51
  """
53
52
  The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
54
53
  """
55
54
  return pulumi.get(self, "database")
56
55
 
57
56
  @database.setter
58
- def database(self, value: pulumi.Input[builtins.str]):
57
+ def database(self, value: pulumi.Input[_builtins.str]):
59
58
  pulumi.set(self, "database", value)
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter
63
- def schema(self) -> pulumi.Input[builtins.str]:
62
+ def schema(self) -> pulumi.Input[_builtins.str]:
64
63
  """
65
64
  The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
66
65
  """
67
66
  return pulumi.get(self, "schema")
68
67
 
69
68
  @schema.setter
70
- def schema(self, value: pulumi.Input[builtins.str]):
69
+ def schema(self, value: pulumi.Input[_builtins.str]):
71
70
  pulumi.set(self, "schema", value)
72
71
 
73
- @property
72
+ @_builtins.property
74
73
  @pulumi.getter
75
- def stage(self) -> pulumi.Input[builtins.str]:
74
+ def stage(self) -> pulumi.Input[_builtins.str]:
76
75
  """
77
76
  Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
78
77
  """
79
78
  return pulumi.get(self, "stage")
80
79
 
81
80
  @stage.setter
82
- def stage(self, value: pulumi.Input[builtins.str]):
81
+ def stage(self, value: pulumi.Input[_builtins.str]):
83
82
  pulumi.set(self, "stage", value)
84
83
 
85
- @property
84
+ @_builtins.property
86
85
  @pulumi.getter
87
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
86
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
88
87
  """
89
88
  Specifies a comment for the stream.
90
89
  """
91
90
  return pulumi.get(self, "comment")
92
91
 
93
92
  @comment.setter
94
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
93
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
95
94
  pulumi.set(self, "comment", value)
96
95
 
97
- @property
96
+ @_builtins.property
98
97
  @pulumi.getter(name="copyGrants")
99
- def copy_grants(self) -> Optional[pulumi.Input[builtins.bool]]:
98
+ def copy_grants(self) -> Optional[pulumi.Input[_builtins.bool]]:
100
99
  return pulumi.get(self, "copy_grants")
101
100
 
102
101
  @copy_grants.setter
103
- def copy_grants(self, value: Optional[pulumi.Input[builtins.bool]]):
102
+ def copy_grants(self, value: Optional[pulumi.Input[_builtins.bool]]):
104
103
  pulumi.set(self, "copy_grants", value)
105
104
 
106
- @property
105
+ @_builtins.property
107
106
  @pulumi.getter
108
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
107
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
109
108
  """
110
109
  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: `|`, `.`, `"`.
111
110
  """
112
111
  return pulumi.get(self, "name")
113
112
 
114
113
  @name.setter
115
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
114
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
116
115
  pulumi.set(self, "name", value)
117
116
 
118
117
 
119
118
  @pulumi.input_type
120
119
  class _StreamOnDirectoryTableState:
121
120
  def __init__(__self__, *,
122
- comment: Optional[pulumi.Input[builtins.str]] = None,
123
- copy_grants: Optional[pulumi.Input[builtins.bool]] = None,
124
- database: Optional[pulumi.Input[builtins.str]] = None,
121
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
122
+ copy_grants: Optional[pulumi.Input[_builtins.bool]] = None,
123
+ database: Optional[pulumi.Input[_builtins.str]] = None,
125
124
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableDescribeOutputArgs']]]] = None,
126
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
127
- name: Optional[pulumi.Input[builtins.str]] = None,
128
- schema: Optional[pulumi.Input[builtins.str]] = None,
125
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
126
+ name: Optional[pulumi.Input[_builtins.str]] = None,
127
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
129
128
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableShowOutputArgs']]]] = None,
130
- stage: Optional[pulumi.Input[builtins.str]] = None,
131
- stale: Optional[pulumi.Input[builtins.bool]] = None,
132
- stream_type: Optional[pulumi.Input[builtins.str]] = None):
129
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
130
+ stale: Optional[pulumi.Input[_builtins.bool]] = None,
131
+ stream_type: Optional[pulumi.Input[_builtins.str]] = None):
133
132
  """
134
133
  Input properties used for looking up and filtering StreamOnDirectoryTable resources.
135
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the stream.
136
- :param pulumi.Input[builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
134
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the stream.
135
+ :param pulumi.Input[_builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
137
136
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
138
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
139
- :param pulumi.Input[builtins.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: `|`, `.`, `"`.
140
- :param pulumi.Input[builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
137
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
138
+ :param pulumi.Input[_builtins.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: `|`, `.`, `"`.
139
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
141
140
  :param pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
142
- :param pulumi.Input[builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
143
- :param pulumi.Input[builtins.str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
141
+ :param pulumi.Input[_builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
142
+ :param pulumi.Input[_builtins.str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
144
143
  """
145
144
  if comment is not None:
146
145
  pulumi.set(__self__, "comment", comment)
@@ -165,40 +164,40 @@ class _StreamOnDirectoryTableState:
165
164
  if stream_type is not None:
166
165
  pulumi.set(__self__, "stream_type", stream_type)
167
166
 
168
- @property
167
+ @_builtins.property
169
168
  @pulumi.getter
170
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
169
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
171
170
  """
172
171
  Specifies a comment for the stream.
173
172
  """
174
173
  return pulumi.get(self, "comment")
175
174
 
176
175
  @comment.setter
177
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
176
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
178
177
  pulumi.set(self, "comment", value)
179
178
 
180
- @property
179
+ @_builtins.property
181
180
  @pulumi.getter(name="copyGrants")
182
- def copy_grants(self) -> Optional[pulumi.Input[builtins.bool]]:
181
+ def copy_grants(self) -> Optional[pulumi.Input[_builtins.bool]]:
183
182
  return pulumi.get(self, "copy_grants")
184
183
 
185
184
  @copy_grants.setter
186
- def copy_grants(self, value: Optional[pulumi.Input[builtins.bool]]):
185
+ def copy_grants(self, value: Optional[pulumi.Input[_builtins.bool]]):
187
186
  pulumi.set(self, "copy_grants", value)
188
187
 
189
- @property
188
+ @_builtins.property
190
189
  @pulumi.getter
191
- def database(self) -> Optional[pulumi.Input[builtins.str]]:
190
+ def database(self) -> Optional[pulumi.Input[_builtins.str]]:
192
191
  """
193
192
  The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
194
193
  """
195
194
  return pulumi.get(self, "database")
196
195
 
197
196
  @database.setter
198
- def database(self, value: Optional[pulumi.Input[builtins.str]]):
197
+ def database(self, value: Optional[pulumi.Input[_builtins.str]]):
199
198
  pulumi.set(self, "database", value)
200
199
 
201
- @property
200
+ @_builtins.property
202
201
  @pulumi.getter(name="describeOutputs")
203
202
  def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableDescribeOutputArgs']]]]:
204
203
  """
@@ -210,43 +209,43 @@ class _StreamOnDirectoryTableState:
210
209
  def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableDescribeOutputArgs']]]]):
211
210
  pulumi.set(self, "describe_outputs", value)
212
211
 
213
- @property
212
+ @_builtins.property
214
213
  @pulumi.getter(name="fullyQualifiedName")
215
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
214
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
216
215
  """
217
216
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
218
217
  """
219
218
  return pulumi.get(self, "fully_qualified_name")
220
219
 
221
220
  @fully_qualified_name.setter
222
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
221
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
223
222
  pulumi.set(self, "fully_qualified_name", value)
224
223
 
225
- @property
224
+ @_builtins.property
226
225
  @pulumi.getter
227
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
226
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
228
227
  """
229
228
  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: `|`, `.`, `"`.
230
229
  """
231
230
  return pulumi.get(self, "name")
232
231
 
233
232
  @name.setter
234
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
233
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
235
234
  pulumi.set(self, "name", value)
236
235
 
237
- @property
236
+ @_builtins.property
238
237
  @pulumi.getter
239
- def schema(self) -> Optional[pulumi.Input[builtins.str]]:
238
+ def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
240
239
  """
241
240
  The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
242
241
  """
243
242
  return pulumi.get(self, "schema")
244
243
 
245
244
  @schema.setter
246
- def schema(self, value: Optional[pulumi.Input[builtins.str]]):
245
+ def schema(self, value: Optional[pulumi.Input[_builtins.str]]):
247
246
  pulumi.set(self, "schema", value)
248
247
 
249
- @property
248
+ @_builtins.property
250
249
  @pulumi.getter(name="showOutputs")
251
250
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableShowOutputArgs']]]]:
252
251
  """
@@ -258,37 +257,37 @@ class _StreamOnDirectoryTableState:
258
257
  def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableShowOutputArgs']]]]):
259
258
  pulumi.set(self, "show_outputs", value)
260
259
 
261
- @property
260
+ @_builtins.property
262
261
  @pulumi.getter
263
- def stage(self) -> Optional[pulumi.Input[builtins.str]]:
262
+ def stage(self) -> Optional[pulumi.Input[_builtins.str]]:
264
263
  """
265
264
  Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
266
265
  """
267
266
  return pulumi.get(self, "stage")
268
267
 
269
268
  @stage.setter
270
- def stage(self, value: Optional[pulumi.Input[builtins.str]]):
269
+ def stage(self, value: Optional[pulumi.Input[_builtins.str]]):
271
270
  pulumi.set(self, "stage", value)
272
271
 
273
- @property
272
+ @_builtins.property
274
273
  @pulumi.getter
275
- def stale(self) -> Optional[pulumi.Input[builtins.bool]]:
274
+ def stale(self) -> Optional[pulumi.Input[_builtins.bool]]:
276
275
  return pulumi.get(self, "stale")
277
276
 
278
277
  @stale.setter
279
- def stale(self, value: Optional[pulumi.Input[builtins.bool]]):
278
+ def stale(self, value: Optional[pulumi.Input[_builtins.bool]]):
280
279
  pulumi.set(self, "stale", value)
281
280
 
282
- @property
281
+ @_builtins.property
283
282
  @pulumi.getter(name="streamType")
284
- def stream_type(self) -> Optional[pulumi.Input[builtins.str]]:
283
+ def stream_type(self) -> Optional[pulumi.Input[_builtins.str]]:
285
284
  """
286
285
  Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
287
286
  """
288
287
  return pulumi.get(self, "stream_type")
289
288
 
290
289
  @stream_type.setter
291
- def stream_type(self, value: Optional[pulumi.Input[builtins.str]]):
290
+ def stream_type(self, value: Optional[pulumi.Input[_builtins.str]]):
292
291
  pulumi.set(self, "stream_type", value)
293
292
 
294
293
 
@@ -298,12 +297,12 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
298
297
  def __init__(__self__,
299
298
  resource_name: str,
300
299
  opts: Optional[pulumi.ResourceOptions] = None,
301
- comment: Optional[pulumi.Input[builtins.str]] = None,
302
- copy_grants: Optional[pulumi.Input[builtins.bool]] = None,
303
- database: Optional[pulumi.Input[builtins.str]] = None,
304
- name: Optional[pulumi.Input[builtins.str]] = None,
305
- schema: Optional[pulumi.Input[builtins.str]] = None,
306
- stage: Optional[pulumi.Input[builtins.str]] = None,
300
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
301
+ copy_grants: Optional[pulumi.Input[_builtins.bool]] = None,
302
+ database: Optional[pulumi.Input[_builtins.str]] = None,
303
+ name: Optional[pulumi.Input[_builtins.str]] = None,
304
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
305
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
307
306
  __props__=None):
308
307
  """
309
308
  ## Import
@@ -314,11 +313,11 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
314
313
 
315
314
  :param str resource_name: The name of the resource.
316
315
  :param pulumi.ResourceOptions opts: Options for the resource.
317
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the stream.
318
- :param pulumi.Input[builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
319
- :param pulumi.Input[builtins.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: `|`, `.`, `"`.
320
- :param pulumi.Input[builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
321
- :param pulumi.Input[builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
316
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the stream.
317
+ :param pulumi.Input[_builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
318
+ :param pulumi.Input[_builtins.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: `|`, `.`, `"`.
319
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
320
+ :param pulumi.Input[_builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
322
321
  """
323
322
  ...
324
323
  @overload
@@ -348,12 +347,12 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
348
347
  def _internal_init(__self__,
349
348
  resource_name: str,
350
349
  opts: Optional[pulumi.ResourceOptions] = None,
351
- comment: Optional[pulumi.Input[builtins.str]] = None,
352
- copy_grants: Optional[pulumi.Input[builtins.bool]] = None,
353
- database: Optional[pulumi.Input[builtins.str]] = None,
354
- name: Optional[pulumi.Input[builtins.str]] = None,
355
- schema: Optional[pulumi.Input[builtins.str]] = None,
356
- stage: Optional[pulumi.Input[builtins.str]] = None,
350
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
351
+ copy_grants: Optional[pulumi.Input[_builtins.bool]] = None,
352
+ database: Optional[pulumi.Input[_builtins.str]] = None,
353
+ name: Optional[pulumi.Input[_builtins.str]] = None,
354
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
355
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
357
356
  __props__=None):
358
357
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
359
358
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -390,17 +389,17 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
390
389
  def get(resource_name: str,
391
390
  id: pulumi.Input[str],
392
391
  opts: Optional[pulumi.ResourceOptions] = None,
393
- comment: Optional[pulumi.Input[builtins.str]] = None,
394
- copy_grants: Optional[pulumi.Input[builtins.bool]] = None,
395
- database: Optional[pulumi.Input[builtins.str]] = None,
392
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
393
+ copy_grants: Optional[pulumi.Input[_builtins.bool]] = None,
394
+ database: Optional[pulumi.Input[_builtins.str]] = None,
396
395
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamOnDirectoryTableDescribeOutputArgs', 'StreamOnDirectoryTableDescribeOutputArgsDict']]]]] = None,
397
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
398
- name: Optional[pulumi.Input[builtins.str]] = None,
399
- schema: Optional[pulumi.Input[builtins.str]] = None,
396
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
397
+ name: Optional[pulumi.Input[_builtins.str]] = None,
398
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
400
399
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamOnDirectoryTableShowOutputArgs', 'StreamOnDirectoryTableShowOutputArgsDict']]]]] = None,
401
- stage: Optional[pulumi.Input[builtins.str]] = None,
402
- stale: Optional[pulumi.Input[builtins.bool]] = None,
403
- stream_type: Optional[pulumi.Input[builtins.str]] = None) -> 'StreamOnDirectoryTable':
400
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
401
+ stale: Optional[pulumi.Input[_builtins.bool]] = None,
402
+ stream_type: Optional[pulumi.Input[_builtins.str]] = None) -> 'StreamOnDirectoryTable':
404
403
  """
405
404
  Get an existing StreamOnDirectoryTable resource's state with the given name, id, and optional extra
406
405
  properties used to qualify the lookup.
@@ -408,15 +407,15 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
408
407
  :param str resource_name: The unique name of the resulting resource.
409
408
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
410
409
  :param pulumi.ResourceOptions opts: Options for the resource.
411
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the stream.
412
- :param pulumi.Input[builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
410
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the stream.
411
+ :param pulumi.Input[_builtins.str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
413
412
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnDirectoryTableDescribeOutputArgs', 'StreamOnDirectoryTableDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
414
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
415
- :param pulumi.Input[builtins.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: `|`, `.`, `"`.
416
- :param pulumi.Input[builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
413
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
414
+ :param pulumi.Input[_builtins.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: `|`, `.`, `"`.
415
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
417
416
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnDirectoryTableShowOutputArgs', 'StreamOnDirectoryTableShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
418
- :param pulumi.Input[builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
419
- :param pulumi.Input[builtins.str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
417
+ :param pulumi.Input[_builtins.str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
418
+ :param pulumi.Input[_builtins.str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
420
419
  """
421
420
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
422
421
 
@@ -435,28 +434,28 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
435
434
  __props__.__dict__["stream_type"] = stream_type
436
435
  return StreamOnDirectoryTable(resource_name, opts=opts, __props__=__props__)
437
436
 
438
- @property
437
+ @_builtins.property
439
438
  @pulumi.getter
440
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
439
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
441
440
  """
442
441
  Specifies a comment for the stream.
443
442
  """
444
443
  return pulumi.get(self, "comment")
445
444
 
446
- @property
445
+ @_builtins.property
447
446
  @pulumi.getter(name="copyGrants")
448
- def copy_grants(self) -> pulumi.Output[Optional[builtins.bool]]:
447
+ def copy_grants(self) -> pulumi.Output[Optional[_builtins.bool]]:
449
448
  return pulumi.get(self, "copy_grants")
450
449
 
451
- @property
450
+ @_builtins.property
452
451
  @pulumi.getter
453
- def database(self) -> pulumi.Output[builtins.str]:
452
+ def database(self) -> pulumi.Output[_builtins.str]:
454
453
  """
455
454
  The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
456
455
  """
457
456
  return pulumi.get(self, "database")
458
457
 
459
- @property
458
+ @_builtins.property
460
459
  @pulumi.getter(name="describeOutputs")
461
460
  def describe_outputs(self) -> pulumi.Output[Sequence['outputs.StreamOnDirectoryTableDescribeOutput']]:
462
461
  """
@@ -464,31 +463,31 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
464
463
  """
465
464
  return pulumi.get(self, "describe_outputs")
466
465
 
467
- @property
466
+ @_builtins.property
468
467
  @pulumi.getter(name="fullyQualifiedName")
469
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
468
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
470
469
  """
471
470
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
472
471
  """
473
472
  return pulumi.get(self, "fully_qualified_name")
474
473
 
475
- @property
474
+ @_builtins.property
476
475
  @pulumi.getter
477
- def name(self) -> pulumi.Output[builtins.str]:
476
+ def name(self) -> pulumi.Output[_builtins.str]:
478
477
  """
479
478
  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: `|`, `.`, `"`.
480
479
  """
481
480
  return pulumi.get(self, "name")
482
481
 
483
- @property
482
+ @_builtins.property
484
483
  @pulumi.getter
485
- def schema(self) -> pulumi.Output[builtins.str]:
484
+ def schema(self) -> pulumi.Output[_builtins.str]:
486
485
  """
487
486
  The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
488
487
  """
489
488
  return pulumi.get(self, "schema")
490
489
 
491
- @property
490
+ @_builtins.property
492
491
  @pulumi.getter(name="showOutputs")
493
492
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.StreamOnDirectoryTableShowOutput']]:
494
493
  """
@@ -496,22 +495,22 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
496
495
  """
497
496
  return pulumi.get(self, "show_outputs")
498
497
 
499
- @property
498
+ @_builtins.property
500
499
  @pulumi.getter
501
- def stage(self) -> pulumi.Output[builtins.str]:
500
+ def stage(self) -> pulumi.Output[_builtins.str]:
502
501
  """
503
502
  Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`. For more information about this resource, see docs.
504
503
  """
505
504
  return pulumi.get(self, "stage")
506
505
 
507
- @property
506
+ @_builtins.property
508
507
  @pulumi.getter
509
- def stale(self) -> pulumi.Output[builtins.bool]:
508
+ def stale(self) -> pulumi.Output[_builtins.bool]:
510
509
  return pulumi.get(self, "stale")
511
510
 
512
- @property
511
+ @_builtins.property
513
512
  @pulumi.getter(name="streamType")
514
- def stream_type(self) -> pulumi.Output[builtins.str]:
513
+ def stream_type(self) -> pulumi.Output[_builtins.str]:
515
514
  """
516
515
  Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
517
516
  """