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,28 +21,28 @@ __all__ = ['StreamlitArgs', 'Streamlit']
22
21
  @pulumi.input_type
23
22
  class StreamlitArgs:
24
23
  def __init__(__self__, *,
25
- database: pulumi.Input[builtins.str],
26
- main_file: pulumi.Input[builtins.str],
27
- schema: pulumi.Input[builtins.str],
28
- stage: pulumi.Input[builtins.str],
29
- comment: Optional[pulumi.Input[builtins.str]] = None,
30
- directory_location: Optional[pulumi.Input[builtins.str]] = None,
31
- external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
32
- name: Optional[pulumi.Input[builtins.str]] = None,
33
- query_warehouse: Optional[pulumi.Input[builtins.str]] = None,
34
- title: Optional[pulumi.Input[builtins.str]] = None):
24
+ database: pulumi.Input[_builtins.str],
25
+ main_file: 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
+ directory_location: Optional[pulumi.Input[_builtins.str]] = None,
30
+ external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
31
+ name: Optional[pulumi.Input[_builtins.str]] = None,
32
+ query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
33
+ title: Optional[pulumi.Input[_builtins.str]] = None):
35
34
  """
36
35
  The set of arguments for constructing a Streamlit resource.
37
- :param pulumi.Input[builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
38
- :param pulumi.Input[builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
39
- :param pulumi.Input[builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
40
- :param pulumi.Input[builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
41
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the streamlit.
42
- :param pulumi.Input[builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
43
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
44
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
45
- :param pulumi.Input[builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
46
- :param pulumi.Input[builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
36
+ :param pulumi.Input[_builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
37
+ :param pulumi.Input[_builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
38
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
39
+ :param pulumi.Input[_builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
40
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the streamlit.
41
+ :param pulumi.Input[_builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
42
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
43
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
44
+ :param pulumi.Input[_builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
45
+ :param pulumi.Input[_builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
47
46
  """
48
47
  pulumi.set(__self__, "database", database)
49
48
  pulumi.set(__self__, "main_file", main_file)
@@ -62,158 +61,158 @@ class StreamlitArgs:
62
61
  if title is not None:
63
62
  pulumi.set(__self__, "title", title)
64
63
 
65
- @property
64
+ @_builtins.property
66
65
  @pulumi.getter
67
- def database(self) -> pulumi.Input[builtins.str]:
66
+ def database(self) -> pulumi.Input[_builtins.str]:
68
67
  """
69
68
  The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
70
69
  """
71
70
  return pulumi.get(self, "database")
72
71
 
73
72
  @database.setter
74
- def database(self, value: pulumi.Input[builtins.str]):
73
+ def database(self, value: pulumi.Input[_builtins.str]):
75
74
  pulumi.set(self, "database", value)
76
75
 
77
- @property
76
+ @_builtins.property
78
77
  @pulumi.getter(name="mainFile")
79
- def main_file(self) -> pulumi.Input[builtins.str]:
78
+ def main_file(self) -> pulumi.Input[_builtins.str]:
80
79
  """
81
80
  Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
82
81
  """
83
82
  return pulumi.get(self, "main_file")
84
83
 
85
84
  @main_file.setter
86
- def main_file(self, value: pulumi.Input[builtins.str]):
85
+ def main_file(self, value: pulumi.Input[_builtins.str]):
87
86
  pulumi.set(self, "main_file", value)
88
87
 
89
- @property
88
+ @_builtins.property
90
89
  @pulumi.getter
91
- def schema(self) -> pulumi.Input[builtins.str]:
90
+ def schema(self) -> pulumi.Input[_builtins.str]:
92
91
  """
93
92
  The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
94
93
  """
95
94
  return pulumi.get(self, "schema")
96
95
 
97
96
  @schema.setter
98
- def schema(self, value: pulumi.Input[builtins.str]):
97
+ def schema(self, value: pulumi.Input[_builtins.str]):
99
98
  pulumi.set(self, "schema", value)
100
99
 
101
- @property
100
+ @_builtins.property
102
101
  @pulumi.getter
103
- def stage(self) -> pulumi.Input[builtins.str]:
102
+ def stage(self) -> pulumi.Input[_builtins.str]:
104
103
  """
105
104
  The stage in which streamlit files are located. For more information about this resource, see docs.
106
105
  """
107
106
  return pulumi.get(self, "stage")
108
107
 
109
108
  @stage.setter
110
- def stage(self, value: pulumi.Input[builtins.str]):
109
+ def stage(self, value: pulumi.Input[_builtins.str]):
111
110
  pulumi.set(self, "stage", value)
112
111
 
113
- @property
112
+ @_builtins.property
114
113
  @pulumi.getter
115
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
114
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
116
115
  """
117
116
  Specifies a comment for the streamlit.
118
117
  """
119
118
  return pulumi.get(self, "comment")
120
119
 
121
120
  @comment.setter
122
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
121
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
123
122
  pulumi.set(self, "comment", value)
124
123
 
125
- @property
124
+ @_builtins.property
126
125
  @pulumi.getter(name="directoryLocation")
127
- def directory_location(self) -> Optional[pulumi.Input[builtins.str]]:
126
+ def directory_location(self) -> Optional[pulumi.Input[_builtins.str]]:
128
127
  """
129
128
  Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
130
129
  """
131
130
  return pulumi.get(self, "directory_location")
132
131
 
133
132
  @directory_location.setter
134
- def directory_location(self, value: Optional[pulumi.Input[builtins.str]]):
133
+ def directory_location(self, value: Optional[pulumi.Input[_builtins.str]]):
135
134
  pulumi.set(self, "directory_location", value)
136
135
 
137
- @property
136
+ @_builtins.property
138
137
  @pulumi.getter(name="externalAccessIntegrations")
139
- def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
138
+ def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
140
139
  """
141
140
  External access integrations connected to the Streamlit.
142
141
  """
143
142
  return pulumi.get(self, "external_access_integrations")
144
143
 
145
144
  @external_access_integrations.setter
146
- def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
145
+ def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
147
146
  pulumi.set(self, "external_access_integrations", value)
148
147
 
149
- @property
148
+ @_builtins.property
150
149
  @pulumi.getter
151
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
150
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
152
151
  """
153
152
  String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
154
153
  """
155
154
  return pulumi.get(self, "name")
156
155
 
157
156
  @name.setter
158
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
157
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
159
158
  pulumi.set(self, "name", value)
160
159
 
161
- @property
160
+ @_builtins.property
162
161
  @pulumi.getter(name="queryWarehouse")
163
- def query_warehouse(self) -> Optional[pulumi.Input[builtins.str]]:
162
+ def query_warehouse(self) -> Optional[pulumi.Input[_builtins.str]]:
164
163
  """
165
164
  Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
166
165
  """
167
166
  return pulumi.get(self, "query_warehouse")
168
167
 
169
168
  @query_warehouse.setter
170
- def query_warehouse(self, value: Optional[pulumi.Input[builtins.str]]):
169
+ def query_warehouse(self, value: Optional[pulumi.Input[_builtins.str]]):
171
170
  pulumi.set(self, "query_warehouse", value)
172
171
 
173
- @property
172
+ @_builtins.property
174
173
  @pulumi.getter
175
- def title(self) -> Optional[pulumi.Input[builtins.str]]:
174
+ def title(self) -> Optional[pulumi.Input[_builtins.str]]:
176
175
  """
177
176
  Specifies a title for the Streamlit app to display in Snowsight.
178
177
  """
179
178
  return pulumi.get(self, "title")
180
179
 
181
180
  @title.setter
182
- def title(self, value: Optional[pulumi.Input[builtins.str]]):
181
+ def title(self, value: Optional[pulumi.Input[_builtins.str]]):
183
182
  pulumi.set(self, "title", value)
184
183
 
185
184
 
186
185
  @pulumi.input_type
187
186
  class _StreamlitState:
188
187
  def __init__(__self__, *,
189
- comment: Optional[pulumi.Input[builtins.str]] = None,
190
- database: Optional[pulumi.Input[builtins.str]] = None,
188
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
189
+ database: Optional[pulumi.Input[_builtins.str]] = None,
191
190
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamlitDescribeOutputArgs']]]] = None,
192
- directory_location: Optional[pulumi.Input[builtins.str]] = None,
193
- external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
194
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
195
- main_file: Optional[pulumi.Input[builtins.str]] = None,
196
- name: Optional[pulumi.Input[builtins.str]] = None,
197
- query_warehouse: Optional[pulumi.Input[builtins.str]] = None,
198
- schema: Optional[pulumi.Input[builtins.str]] = None,
191
+ directory_location: Optional[pulumi.Input[_builtins.str]] = None,
192
+ external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
193
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
194
+ main_file: Optional[pulumi.Input[_builtins.str]] = None,
195
+ name: Optional[pulumi.Input[_builtins.str]] = None,
196
+ query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
197
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
199
198
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StreamlitShowOutputArgs']]]] = None,
200
- stage: Optional[pulumi.Input[builtins.str]] = None,
201
- title: Optional[pulumi.Input[builtins.str]] = None):
199
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
200
+ title: Optional[pulumi.Input[_builtins.str]] = None):
202
201
  """
203
202
  Input properties used for looking up and filtering Streamlit resources.
204
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the streamlit.
205
- :param pulumi.Input[builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
203
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the streamlit.
204
+ :param pulumi.Input[_builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
206
205
  :param pulumi.Input[Sequence[pulumi.Input['StreamlitDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAMLIT` for the given streamlit.
207
- :param pulumi.Input[builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
208
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
209
- :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).
210
- :param pulumi.Input[builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
211
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
212
- :param pulumi.Input[builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
213
- :param pulumi.Input[builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
206
+ :param pulumi.Input[_builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
207
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
208
+ :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).
209
+ :param pulumi.Input[_builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
210
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
211
+ :param pulumi.Input[_builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
212
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
214
213
  :param pulumi.Input[Sequence[pulumi.Input['StreamlitShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMLIT` for the given streamlit.
215
- :param pulumi.Input[builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
216
- :param pulumi.Input[builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
214
+ :param pulumi.Input[_builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
215
+ :param pulumi.Input[_builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
217
216
  """
218
217
  if comment is not None:
219
218
  pulumi.set(__self__, "comment", comment)
@@ -242,31 +241,31 @@ class _StreamlitState:
242
241
  if title is not None:
243
242
  pulumi.set(__self__, "title", title)
244
243
 
245
- @property
244
+ @_builtins.property
246
245
  @pulumi.getter
247
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
246
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
248
247
  """
249
248
  Specifies a comment for the streamlit.
250
249
  """
251
250
  return pulumi.get(self, "comment")
252
251
 
253
252
  @comment.setter
254
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
253
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
255
254
  pulumi.set(self, "comment", value)
256
255
 
257
- @property
256
+ @_builtins.property
258
257
  @pulumi.getter
259
- def database(self) -> Optional[pulumi.Input[builtins.str]]:
258
+ def database(self) -> Optional[pulumi.Input[_builtins.str]]:
260
259
  """
261
260
  The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
262
261
  """
263
262
  return pulumi.get(self, "database")
264
263
 
265
264
  @database.setter
266
- def database(self, value: Optional[pulumi.Input[builtins.str]]):
265
+ def database(self, value: Optional[pulumi.Input[_builtins.str]]):
267
266
  pulumi.set(self, "database", value)
268
267
 
269
- @property
268
+ @_builtins.property
270
269
  @pulumi.getter(name="describeOutputs")
271
270
  def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StreamlitDescribeOutputArgs']]]]:
272
271
  """
@@ -278,91 +277,91 @@ class _StreamlitState:
278
277
  def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamlitDescribeOutputArgs']]]]):
279
278
  pulumi.set(self, "describe_outputs", value)
280
279
 
281
- @property
280
+ @_builtins.property
282
281
  @pulumi.getter(name="directoryLocation")
283
- def directory_location(self) -> Optional[pulumi.Input[builtins.str]]:
282
+ def directory_location(self) -> Optional[pulumi.Input[_builtins.str]]:
284
283
  """
285
284
  Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
286
285
  """
287
286
  return pulumi.get(self, "directory_location")
288
287
 
289
288
  @directory_location.setter
290
- def directory_location(self, value: Optional[pulumi.Input[builtins.str]]):
289
+ def directory_location(self, value: Optional[pulumi.Input[_builtins.str]]):
291
290
  pulumi.set(self, "directory_location", value)
292
291
 
293
- @property
292
+ @_builtins.property
294
293
  @pulumi.getter(name="externalAccessIntegrations")
295
- def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
294
+ def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
296
295
  """
297
296
  External access integrations connected to the Streamlit.
298
297
  """
299
298
  return pulumi.get(self, "external_access_integrations")
300
299
 
301
300
  @external_access_integrations.setter
302
- def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
301
+ def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
303
302
  pulumi.set(self, "external_access_integrations", value)
304
303
 
305
- @property
304
+ @_builtins.property
306
305
  @pulumi.getter(name="fullyQualifiedName")
307
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
306
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
308
307
  """
309
308
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
310
309
  """
311
310
  return pulumi.get(self, "fully_qualified_name")
312
311
 
313
312
  @fully_qualified_name.setter
314
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
313
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
315
314
  pulumi.set(self, "fully_qualified_name", value)
316
315
 
317
- @property
316
+ @_builtins.property
318
317
  @pulumi.getter(name="mainFile")
319
- def main_file(self) -> Optional[pulumi.Input[builtins.str]]:
318
+ def main_file(self) -> Optional[pulumi.Input[_builtins.str]]:
320
319
  """
321
320
  Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
322
321
  """
323
322
  return pulumi.get(self, "main_file")
324
323
 
325
324
  @main_file.setter
326
- def main_file(self, value: Optional[pulumi.Input[builtins.str]]):
325
+ def main_file(self, value: Optional[pulumi.Input[_builtins.str]]):
327
326
  pulumi.set(self, "main_file", value)
328
327
 
329
- @property
328
+ @_builtins.property
330
329
  @pulumi.getter
331
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
330
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
332
331
  """
333
332
  String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
334
333
  """
335
334
  return pulumi.get(self, "name")
336
335
 
337
336
  @name.setter
338
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
337
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
339
338
  pulumi.set(self, "name", value)
340
339
 
341
- @property
340
+ @_builtins.property
342
341
  @pulumi.getter(name="queryWarehouse")
343
- def query_warehouse(self) -> Optional[pulumi.Input[builtins.str]]:
342
+ def query_warehouse(self) -> Optional[pulumi.Input[_builtins.str]]:
344
343
  """
345
344
  Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
346
345
  """
347
346
  return pulumi.get(self, "query_warehouse")
348
347
 
349
348
  @query_warehouse.setter
350
- def query_warehouse(self, value: Optional[pulumi.Input[builtins.str]]):
349
+ def query_warehouse(self, value: Optional[pulumi.Input[_builtins.str]]):
351
350
  pulumi.set(self, "query_warehouse", value)
352
351
 
353
- @property
352
+ @_builtins.property
354
353
  @pulumi.getter
355
- def schema(self) -> Optional[pulumi.Input[builtins.str]]:
354
+ def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
356
355
  """
357
356
  The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
358
357
  """
359
358
  return pulumi.get(self, "schema")
360
359
 
361
360
  @schema.setter
362
- def schema(self, value: Optional[pulumi.Input[builtins.str]]):
361
+ def schema(self, value: Optional[pulumi.Input[_builtins.str]]):
363
362
  pulumi.set(self, "schema", value)
364
363
 
365
- @property
364
+ @_builtins.property
366
365
  @pulumi.getter(name="showOutputs")
367
366
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StreamlitShowOutputArgs']]]]:
368
367
  """
@@ -374,28 +373,28 @@ class _StreamlitState:
374
373
  def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamlitShowOutputArgs']]]]):
375
374
  pulumi.set(self, "show_outputs", value)
376
375
 
377
- @property
376
+ @_builtins.property
378
377
  @pulumi.getter
379
- def stage(self) -> Optional[pulumi.Input[builtins.str]]:
378
+ def stage(self) -> Optional[pulumi.Input[_builtins.str]]:
380
379
  """
381
380
  The stage in which streamlit files are located. For more information about this resource, see docs.
382
381
  """
383
382
  return pulumi.get(self, "stage")
384
383
 
385
384
  @stage.setter
386
- def stage(self, value: Optional[pulumi.Input[builtins.str]]):
385
+ def stage(self, value: Optional[pulumi.Input[_builtins.str]]):
387
386
  pulumi.set(self, "stage", value)
388
387
 
389
- @property
388
+ @_builtins.property
390
389
  @pulumi.getter
391
- def title(self) -> Optional[pulumi.Input[builtins.str]]:
390
+ def title(self) -> Optional[pulumi.Input[_builtins.str]]:
392
391
  """
393
392
  Specifies a title for the Streamlit app to display in Snowsight.
394
393
  """
395
394
  return pulumi.get(self, "title")
396
395
 
397
396
  @title.setter
398
- def title(self, value: Optional[pulumi.Input[builtins.str]]):
397
+ def title(self, value: Optional[pulumi.Input[_builtins.str]]):
399
398
  pulumi.set(self, "title", value)
400
399
 
401
400
 
@@ -405,16 +404,16 @@ class Streamlit(pulumi.CustomResource):
405
404
  def __init__(__self__,
406
405
  resource_name: str,
407
406
  opts: Optional[pulumi.ResourceOptions] = None,
408
- comment: Optional[pulumi.Input[builtins.str]] = None,
409
- database: Optional[pulumi.Input[builtins.str]] = None,
410
- directory_location: Optional[pulumi.Input[builtins.str]] = None,
411
- external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
412
- main_file: Optional[pulumi.Input[builtins.str]] = None,
413
- name: Optional[pulumi.Input[builtins.str]] = None,
414
- query_warehouse: Optional[pulumi.Input[builtins.str]] = None,
415
- schema: Optional[pulumi.Input[builtins.str]] = None,
416
- stage: Optional[pulumi.Input[builtins.str]] = None,
417
- title: Optional[pulumi.Input[builtins.str]] = None,
407
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
408
+ database: Optional[pulumi.Input[_builtins.str]] = None,
409
+ directory_location: Optional[pulumi.Input[_builtins.str]] = None,
410
+ external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
411
+ main_file: Optional[pulumi.Input[_builtins.str]] = None,
412
+ name: Optional[pulumi.Input[_builtins.str]] = None,
413
+ query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
414
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
415
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
416
+ title: Optional[pulumi.Input[_builtins.str]] = None,
418
417
  __props__=None):
419
418
  """
420
419
  ## Import
@@ -425,16 +424,16 @@ class Streamlit(pulumi.CustomResource):
425
424
 
426
425
  :param str resource_name: The name of the resource.
427
426
  :param pulumi.ResourceOptions opts: Options for the resource.
428
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the streamlit.
429
- :param pulumi.Input[builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
430
- :param pulumi.Input[builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
431
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
432
- :param pulumi.Input[builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
433
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
434
- :param pulumi.Input[builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
435
- :param pulumi.Input[builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
436
- :param pulumi.Input[builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
437
- :param pulumi.Input[builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
427
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the streamlit.
428
+ :param pulumi.Input[_builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
429
+ :param pulumi.Input[_builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
430
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
431
+ :param pulumi.Input[_builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
432
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
433
+ :param pulumi.Input[_builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
434
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
435
+ :param pulumi.Input[_builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
436
+ :param pulumi.Input[_builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
438
437
  """
439
438
  ...
440
439
  @overload
@@ -464,16 +463,16 @@ class Streamlit(pulumi.CustomResource):
464
463
  def _internal_init(__self__,
465
464
  resource_name: str,
466
465
  opts: Optional[pulumi.ResourceOptions] = None,
467
- comment: Optional[pulumi.Input[builtins.str]] = None,
468
- database: Optional[pulumi.Input[builtins.str]] = None,
469
- directory_location: Optional[pulumi.Input[builtins.str]] = None,
470
- external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
471
- main_file: Optional[pulumi.Input[builtins.str]] = None,
472
- name: Optional[pulumi.Input[builtins.str]] = None,
473
- query_warehouse: Optional[pulumi.Input[builtins.str]] = None,
474
- schema: Optional[pulumi.Input[builtins.str]] = None,
475
- stage: Optional[pulumi.Input[builtins.str]] = None,
476
- title: Optional[pulumi.Input[builtins.str]] = None,
466
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
467
+ database: Optional[pulumi.Input[_builtins.str]] = None,
468
+ directory_location: Optional[pulumi.Input[_builtins.str]] = None,
469
+ external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
470
+ main_file: Optional[pulumi.Input[_builtins.str]] = None,
471
+ name: Optional[pulumi.Input[_builtins.str]] = None,
472
+ query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
473
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
474
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
475
+ title: Optional[pulumi.Input[_builtins.str]] = None,
477
476
  __props__=None):
478
477
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
479
478
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -514,19 +513,19 @@ class Streamlit(pulumi.CustomResource):
514
513
  def get(resource_name: str,
515
514
  id: pulumi.Input[str],
516
515
  opts: Optional[pulumi.ResourceOptions] = None,
517
- comment: Optional[pulumi.Input[builtins.str]] = None,
518
- database: Optional[pulumi.Input[builtins.str]] = None,
516
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
517
+ database: Optional[pulumi.Input[_builtins.str]] = None,
519
518
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamlitDescribeOutputArgs', 'StreamlitDescribeOutputArgsDict']]]]] = None,
520
- directory_location: Optional[pulumi.Input[builtins.str]] = None,
521
- external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
522
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
523
- main_file: Optional[pulumi.Input[builtins.str]] = None,
524
- name: Optional[pulumi.Input[builtins.str]] = None,
525
- query_warehouse: Optional[pulumi.Input[builtins.str]] = None,
526
- schema: Optional[pulumi.Input[builtins.str]] = None,
519
+ directory_location: Optional[pulumi.Input[_builtins.str]] = None,
520
+ external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
521
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
522
+ main_file: Optional[pulumi.Input[_builtins.str]] = None,
523
+ name: Optional[pulumi.Input[_builtins.str]] = None,
524
+ query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
525
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
527
526
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StreamlitShowOutputArgs', 'StreamlitShowOutputArgsDict']]]]] = None,
528
- stage: Optional[pulumi.Input[builtins.str]] = None,
529
- title: Optional[pulumi.Input[builtins.str]] = None) -> 'Streamlit':
527
+ stage: Optional[pulumi.Input[_builtins.str]] = None,
528
+ title: Optional[pulumi.Input[_builtins.str]] = None) -> 'Streamlit':
530
529
  """
531
530
  Get an existing Streamlit resource's state with the given name, id, and optional extra
532
531
  properties used to qualify the lookup.
@@ -534,19 +533,19 @@ class Streamlit(pulumi.CustomResource):
534
533
  :param str resource_name: The unique name of the resulting resource.
535
534
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
536
535
  :param pulumi.ResourceOptions opts: Options for the resource.
537
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the streamlit.
538
- :param pulumi.Input[builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
536
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the streamlit.
537
+ :param pulumi.Input[_builtins.str] database: The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
539
538
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamlitDescribeOutputArgs', 'StreamlitDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAMLIT` for the given streamlit.
540
- :param pulumi.Input[builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
541
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
542
- :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).
543
- :param pulumi.Input[builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
544
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
545
- :param pulumi.Input[builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
546
- :param pulumi.Input[builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
539
+ :param pulumi.Input[_builtins.str] directory_location: Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
540
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: External access integrations connected to the Streamlit.
541
+ :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).
542
+ :param pulumi.Input[_builtins.str] main_file: Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
543
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
544
+ :param pulumi.Input[_builtins.str] query_warehouse: Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
545
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
547
546
  :param pulumi.Input[Sequence[pulumi.Input[Union['StreamlitShowOutputArgs', 'StreamlitShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMLIT` for the given streamlit.
548
- :param pulumi.Input[builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
549
- :param pulumi.Input[builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
547
+ :param pulumi.Input[_builtins.str] stage: The stage in which streamlit files are located. For more information about this resource, see docs.
548
+ :param pulumi.Input[_builtins.str] title: Specifies a title for the Streamlit app to display in Snowsight.
550
549
  """
551
550
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
552
551
 
@@ -567,23 +566,23 @@ class Streamlit(pulumi.CustomResource):
567
566
  __props__.__dict__["title"] = title
568
567
  return Streamlit(resource_name, opts=opts, __props__=__props__)
569
568
 
570
- @property
569
+ @_builtins.property
571
570
  @pulumi.getter
572
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
571
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
573
572
  """
574
573
  Specifies a comment for the streamlit.
575
574
  """
576
575
  return pulumi.get(self, "comment")
577
576
 
578
- @property
577
+ @_builtins.property
579
578
  @pulumi.getter
580
- def database(self) -> pulumi.Output[builtins.str]:
579
+ def database(self) -> pulumi.Output[_builtins.str]:
581
580
  """
582
581
  The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
583
582
  """
584
583
  return pulumi.get(self, "database")
585
584
 
586
- @property
585
+ @_builtins.property
587
586
  @pulumi.getter(name="describeOutputs")
588
587
  def describe_outputs(self) -> pulumi.Output[Sequence['outputs.StreamlitDescribeOutput']]:
589
588
  """
@@ -591,63 +590,63 @@ class Streamlit(pulumi.CustomResource):
591
590
  """
592
591
  return pulumi.get(self, "describe_outputs")
593
592
 
594
- @property
593
+ @_builtins.property
595
594
  @pulumi.getter(name="directoryLocation")
596
- def directory_location(self) -> pulumi.Output[Optional[builtins.str]]:
595
+ def directory_location(self) -> pulumi.Output[Optional[_builtins.str]]:
597
596
  """
598
597
  Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
599
598
  """
600
599
  return pulumi.get(self, "directory_location")
601
600
 
602
- @property
601
+ @_builtins.property
603
602
  @pulumi.getter(name="externalAccessIntegrations")
604
- def external_access_integrations(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
603
+ def external_access_integrations(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
605
604
  """
606
605
  External access integrations connected to the Streamlit.
607
606
  """
608
607
  return pulumi.get(self, "external_access_integrations")
609
608
 
610
- @property
609
+ @_builtins.property
611
610
  @pulumi.getter(name="fullyQualifiedName")
612
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
611
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
613
612
  """
614
613
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
615
614
  """
616
615
  return pulumi.get(self, "fully_qualified_name")
617
616
 
618
- @property
617
+ @_builtins.property
619
618
  @pulumi.getter(name="mainFile")
620
- def main_file(self) -> pulumi.Output[builtins.str]:
619
+ def main_file(self) -> pulumi.Output[_builtins.str]:
621
620
  """
622
621
  Specifies the filename of the Streamlit Python application. This filename is relative to the value of `directory_location`
623
622
  """
624
623
  return pulumi.get(self, "main_file")
625
624
 
626
- @property
625
+ @_builtins.property
627
626
  @pulumi.getter
628
- def name(self) -> pulumi.Output[builtins.str]:
627
+ def name(self) -> pulumi.Output[_builtins.str]:
629
628
  """
630
629
  String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
631
630
  """
632
631
  return pulumi.get(self, "name")
633
632
 
634
- @property
633
+ @_builtins.property
635
634
  @pulumi.getter(name="queryWarehouse")
636
- def query_warehouse(self) -> pulumi.Output[Optional[builtins.str]]:
635
+ def query_warehouse(self) -> pulumi.Output[Optional[_builtins.str]]:
637
636
  """
638
637
  Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
639
638
  """
640
639
  return pulumi.get(self, "query_warehouse")
641
640
 
642
- @property
641
+ @_builtins.property
643
642
  @pulumi.getter
644
- def schema(self) -> pulumi.Output[builtins.str]:
643
+ def schema(self) -> pulumi.Output[_builtins.str]:
645
644
  """
646
645
  The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
647
646
  """
648
647
  return pulumi.get(self, "schema")
649
648
 
650
- @property
649
+ @_builtins.property
651
650
  @pulumi.getter(name="showOutputs")
652
651
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.StreamlitShowOutput']]:
653
652
  """
@@ -655,17 +654,17 @@ class Streamlit(pulumi.CustomResource):
655
654
  """
656
655
  return pulumi.get(self, "show_outputs")
657
656
 
658
- @property
657
+ @_builtins.property
659
658
  @pulumi.getter
660
- def stage(self) -> pulumi.Output[builtins.str]:
659
+ def stage(self) -> pulumi.Output[_builtins.str]:
661
660
  """
662
661
  The stage in which streamlit files are located. For more information about this resource, see docs.
663
662
  """
664
663
  return pulumi.get(self, "stage")
665
664
 
666
- @property
665
+ @_builtins.property
667
666
  @pulumi.getter
668
- def title(self) -> pulumi.Output[Optional[builtins.str]]:
667
+ def title(self) -> pulumi.Output[Optional[_builtins.str]]:
669
668
  """
670
669
  Specifies a title for the Streamlit app to display in Snowsight.
671
670
  """