pulumi-snowflake 0.50.3a1710160126__py3-none-any.whl → 1.2.0a1736835738__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 (182) hide show
  1. pulumi_snowflake/__init__.py +224 -172
  2. pulumi_snowflake/_inputs.py +52857 -1665
  3. pulumi_snowflake/_utilities.py +41 -5
  4. pulumi_snowflake/account.py +188 -218
  5. pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
  6. pulumi_snowflake/account_parameter.py +21 -48
  7. pulumi_snowflake/account_password_policy_attachment.py +7 -32
  8. pulumi_snowflake/account_role.py +250 -0
  9. pulumi_snowflake/alert.py +38 -47
  10. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
  11. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
  12. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
  13. pulumi_snowflake/api_integration.py +33 -52
  14. pulumi_snowflake/authentication_policy.py +622 -0
  15. pulumi_snowflake/config/__init__.pyi +76 -99
  16. pulumi_snowflake/config/outputs.py +5 -0
  17. pulumi_snowflake/config/vars.py +93 -124
  18. pulumi_snowflake/cortex_search_service.py +596 -0
  19. pulumi_snowflake/database.py +819 -213
  20. pulumi_snowflake/database_role.py +81 -44
  21. pulumi_snowflake/dynamic_table.py +42 -49
  22. pulumi_snowflake/email_notification_integration.py +33 -28
  23. pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -39
  24. pulumi_snowflake/external_function.py +54 -75
  25. pulumi_snowflake/external_oauth_integration.py +593 -542
  26. pulumi_snowflake/external_table.py +67 -90
  27. pulumi_snowflake/external_volume.py +382 -0
  28. pulumi_snowflake/failover_group.py +57 -98
  29. pulumi_snowflake/file_format.py +33 -28
  30. pulumi_snowflake/function_java.py +1211 -0
  31. pulumi_snowflake/function_javascript.py +882 -0
  32. pulumi_snowflake/function_python.py +1212 -0
  33. pulumi_snowflake/function_scala.py +1212 -0
  34. pulumi_snowflake/function_sql.py +835 -0
  35. pulumi_snowflake/get_account_roles.py +129 -0
  36. pulumi_snowflake/get_accounts.py +53 -22
  37. pulumi_snowflake/get_alerts.py +22 -9
  38. pulumi_snowflake/get_connections.py +109 -0
  39. pulumi_snowflake/get_cortex_search_services.py +216 -0
  40. pulumi_snowflake/get_current_account.py +24 -13
  41. pulumi_snowflake/get_current_role.py +14 -7
  42. pulumi_snowflake/get_database.py +25 -9
  43. pulumi_snowflake/get_database_role.py +162 -0
  44. pulumi_snowflake/get_database_roles.py +79 -47
  45. pulumi_snowflake/get_databases.py +91 -73
  46. pulumi_snowflake/get_dynamic_tables.py +36 -19
  47. pulumi_snowflake/get_external_functions.py +28 -9
  48. pulumi_snowflake/get_external_tables.py +28 -9
  49. pulumi_snowflake/get_failover_groups.py +18 -7
  50. pulumi_snowflake/get_file_formats.py +28 -9
  51. pulumi_snowflake/get_functions.py +28 -9
  52. pulumi_snowflake/get_grants.py +207 -84
  53. pulumi_snowflake/get_masking_policies.py +91 -51
  54. pulumi_snowflake/get_materialized_views.py +28 -9
  55. pulumi_snowflake/get_network_policies.py +129 -0
  56. pulumi_snowflake/get_parameters.py +38 -15
  57. pulumi_snowflake/get_pipes.py +28 -9
  58. pulumi_snowflake/get_procedures.py +28 -9
  59. pulumi_snowflake/get_resource_monitors.py +37 -24
  60. pulumi_snowflake/get_row_access_policies.py +91 -51
  61. pulumi_snowflake/get_schemas.py +145 -41
  62. pulumi_snowflake/get_secrets.py +200 -0
  63. pulumi_snowflake/get_security_integrations.py +129 -0
  64. pulumi_snowflake/get_sequences.py +28 -9
  65. pulumi_snowflake/get_shares.py +18 -9
  66. pulumi_snowflake/get_stages.py +28 -9
  67. pulumi_snowflake/get_storage_integrations.py +16 -9
  68. pulumi_snowflake/get_streamlits.py +170 -0
  69. pulumi_snowflake/get_streams.py +114 -54
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +18 -9
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +120 -5
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
  74. pulumi_snowflake/get_tables.py +28 -9
  75. pulumi_snowflake/get_tags.py +130 -0
  76. pulumi_snowflake/get_tasks.py +134 -54
  77. pulumi_snowflake/get_users.py +116 -44
  78. pulumi_snowflake/get_views.py +114 -54
  79. pulumi_snowflake/get_warehouses.py +79 -26
  80. pulumi_snowflake/grant_account_role.py +28 -75
  81. pulumi_snowflake/grant_application_role.py +257 -0
  82. pulumi_snowflake/grant_database_role.py +35 -94
  83. pulumi_snowflake/grant_ownership.py +382 -0
  84. pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
  85. pulumi_snowflake/grant_privileges_to_database_role.py +37 -383
  86. pulumi_snowflake/grant_privileges_to_share.py +96 -44
  87. pulumi_snowflake/legacy_service_user.py +3670 -0
  88. pulumi_snowflake/managed_account.py +40 -11
  89. pulumi_snowflake/masking_policy.py +213 -310
  90. pulumi_snowflake/materialized_view.py +62 -71
  91. pulumi_snowflake/network_policy.py +217 -61
  92. pulumi_snowflake/network_policy_attachment.py +5 -34
  93. pulumi_snowflake/network_rule.py +473 -0
  94. pulumi_snowflake/notification_integration.py +49 -84
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
  96. pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -192
  97. pulumi_snowflake/object_parameter.py +10 -101
  98. pulumi_snowflake/outputs.py +49200 -2928
  99. pulumi_snowflake/password_policy.py +41 -28
  100. pulumi_snowflake/pipe.py +33 -4
  101. pulumi_snowflake/primary_connection.py +330 -0
  102. pulumi_snowflake/procedure_java.py +1273 -0
  103. pulumi_snowflake/procedure_javascript.py +895 -0
  104. pulumi_snowflake/procedure_python.py +1226 -0
  105. pulumi_snowflake/procedure_scala.py +1273 -0
  106. pulumi_snowflake/procedure_sql.py +895 -0
  107. pulumi_snowflake/provider.py +378 -613
  108. pulumi_snowflake/pulumi-plugin.json +2 -1
  109. pulumi_snowflake/resource_monitor.py +118 -327
  110. pulumi_snowflake/row_access_policy.py +200 -149
  111. pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -299
  112. pulumi_snowflake/schema.py +949 -178
  113. pulumi_snowflake/scim_integration.py +286 -109
  114. pulumi_snowflake/secondary_connection.py +339 -0
  115. pulumi_snowflake/secondary_database.py +1080 -0
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
  117. pulumi_snowflake/secret_with_basic_authentication.py +500 -0
  118. pulumi_snowflake/secret_with_client_credentials.py +511 -0
  119. pulumi_snowflake/secret_with_generic_string.py +452 -0
  120. pulumi_snowflake/sequence.py +9 -34
  121. pulumi_snowflake/service_user.py +3585 -0
  122. pulumi_snowflake/share.py +33 -28
  123. pulumi_snowflake/shared_database.py +939 -0
  124. pulumi_snowflake/stage.py +95 -84
  125. pulumi_snowflake/storage_integration.py +46 -4
  126. pulumi_snowflake/stream_on_directory_table.py +517 -0
  127. pulumi_snowflake/stream_on_external_table.py +632 -0
  128. pulumi_snowflake/stream_on_table.py +666 -0
  129. pulumi_snowflake/stream_on_view.py +666 -0
  130. pulumi_snowflake/streamlit.py +671 -0
  131. pulumi_snowflake/table.py +86 -97
  132. pulumi_snowflake/table_column_masking_policy_application.py +7 -14
  133. pulumi_snowflake/table_constraint.py +29 -172
  134. pulumi_snowflake/tag.py +142 -74
  135. pulumi_snowflake/tag_association.py +40 -215
  136. pulumi_snowflake/task.py +3048 -418
  137. pulumi_snowflake/user.py +3351 -384
  138. pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
  139. pulumi_snowflake/user_password_policy_attachment.py +5 -4
  140. pulumi_snowflake/user_public_keys.py +5 -0
  141. pulumi_snowflake/view.py +466 -215
  142. pulumi_snowflake/warehouse.py +184 -168
  143. {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/METADATA +7 -6
  144. pulumi_snowflake-1.2.0a1736835738.dist-info/RECORD +148 -0
  145. {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/WHEEL +1 -1
  146. pulumi_snowflake/account_grant.py +0 -343
  147. pulumi_snowflake/database_grant.py +0 -495
  148. pulumi_snowflake/external_table_grant.py +0 -690
  149. pulumi_snowflake/failover_group_grant.py +0 -388
  150. pulumi_snowflake/file_format_grant.py +0 -635
  151. pulumi_snowflake/function.py +0 -872
  152. pulumi_snowflake/function_grant.py +0 -745
  153. pulumi_snowflake/get_role.py +0 -121
  154. pulumi_snowflake/get_roles.py +0 -120
  155. pulumi_snowflake/grant_privileges_to_role.py +0 -825
  156. pulumi_snowflake/integration_grant.py +0 -440
  157. pulumi_snowflake/masking_policy_grant.py +0 -542
  158. pulumi_snowflake/materialized_view_grant.py +0 -689
  159. pulumi_snowflake/pipe_grant.py +0 -587
  160. pulumi_snowflake/procedure.py +0 -887
  161. pulumi_snowflake/procedure_grant.py +0 -745
  162. pulumi_snowflake/resource_monitor_grant.py +0 -387
  163. pulumi_snowflake/role.py +0 -273
  164. pulumi_snowflake/role_grants.py +0 -352
  165. pulumi_snowflake/role_ownership_grant.py +0 -338
  166. pulumi_snowflake/row_access_policy_grant.py +0 -540
  167. pulumi_snowflake/schema_grant.py +0 -647
  168. pulumi_snowflake/sequence_grant.py +0 -635
  169. pulumi_snowflake/session_parameter.py +0 -332
  170. pulumi_snowflake/stage_grant.py +0 -635
  171. pulumi_snowflake/stream.py +0 -614
  172. pulumi_snowflake/stream_grant.py +0 -635
  173. pulumi_snowflake/table_grant.py +0 -677
  174. pulumi_snowflake/tag_grant.py +0 -532
  175. pulumi_snowflake/tag_masking_policy_association.py +0 -210
  176. pulumi_snowflake/task_grant.py +0 -635
  177. pulumi_snowflake/user_grant.py +0 -394
  178. pulumi_snowflake/user_ownership_grant.py +0 -286
  179. pulumi_snowflake/view_grant.py +0 -705
  180. pulumi_snowflake/warehouse_grant.py +0 -440
  181. pulumi_snowflake-0.50.3a1710160126.dist-info/RECORD +0 -136
  182. {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3670 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['LegacyServiceUserArgs', 'LegacyServiceUser']
20
+
21
+ @pulumi.input_type
22
+ class LegacyServiceUserArgs:
23
+ def __init__(__self__, *,
24
+ abort_detached_query: Optional[pulumi.Input[bool]] = None,
25
+ autocommit: Optional[pulumi.Input[bool]] = None,
26
+ binary_input_format: Optional[pulumi.Input[str]] = None,
27
+ binary_output_format: Optional[pulumi.Input[str]] = None,
28
+ client_memory_limit: Optional[pulumi.Input[int]] = None,
29
+ client_metadata_request_use_connection_ctx: Optional[pulumi.Input[bool]] = None,
30
+ client_prefetch_threads: Optional[pulumi.Input[int]] = None,
31
+ client_result_chunk_size: Optional[pulumi.Input[int]] = None,
32
+ client_result_column_case_insensitive: Optional[pulumi.Input[bool]] = None,
33
+ client_session_keep_alive: Optional[pulumi.Input[bool]] = None,
34
+ client_session_keep_alive_heartbeat_frequency: Optional[pulumi.Input[int]] = None,
35
+ client_timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
36
+ comment: Optional[pulumi.Input[str]] = None,
37
+ date_input_format: Optional[pulumi.Input[str]] = None,
38
+ date_output_format: Optional[pulumi.Input[str]] = None,
39
+ days_to_expiry: Optional[pulumi.Input[int]] = None,
40
+ default_namespace: Optional[pulumi.Input[str]] = None,
41
+ default_role: Optional[pulumi.Input[str]] = None,
42
+ default_secondary_roles_option: Optional[pulumi.Input[str]] = None,
43
+ default_warehouse: Optional[pulumi.Input[str]] = None,
44
+ disabled: Optional[pulumi.Input[str]] = None,
45
+ display_name: Optional[pulumi.Input[str]] = None,
46
+ email: Optional[pulumi.Input[str]] = None,
47
+ enable_unload_physical_type_optimization: Optional[pulumi.Input[bool]] = None,
48
+ enable_unredacted_query_syntax_error: Optional[pulumi.Input[bool]] = None,
49
+ error_on_nondeterministic_merge: Optional[pulumi.Input[bool]] = None,
50
+ error_on_nondeterministic_update: Optional[pulumi.Input[bool]] = None,
51
+ geography_output_format: Optional[pulumi.Input[str]] = None,
52
+ geometry_output_format: Optional[pulumi.Input[str]] = None,
53
+ jdbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
54
+ jdbc_treat_timestamp_ntz_as_utc: Optional[pulumi.Input[bool]] = None,
55
+ jdbc_use_session_timezone: Optional[pulumi.Input[bool]] = None,
56
+ json_indent: Optional[pulumi.Input[int]] = None,
57
+ lock_timeout: Optional[pulumi.Input[int]] = None,
58
+ log_level: Optional[pulumi.Input[str]] = None,
59
+ login_name: Optional[pulumi.Input[str]] = None,
60
+ mins_to_unlock: Optional[pulumi.Input[int]] = None,
61
+ multi_statement_count: Optional[pulumi.Input[int]] = None,
62
+ must_change_password: Optional[pulumi.Input[str]] = None,
63
+ name: Optional[pulumi.Input[str]] = None,
64
+ network_policy: Optional[pulumi.Input[str]] = None,
65
+ noorder_sequence_as_default: Optional[pulumi.Input[bool]] = None,
66
+ odbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
67
+ password: Optional[pulumi.Input[str]] = None,
68
+ prevent_unload_to_internal_stages: Optional[pulumi.Input[bool]] = None,
69
+ query_tag: Optional[pulumi.Input[str]] = None,
70
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[bool]] = None,
71
+ rows_per_resultset: Optional[pulumi.Input[int]] = None,
72
+ rsa_public_key: Optional[pulumi.Input[str]] = None,
73
+ rsa_public_key2: Optional[pulumi.Input[str]] = None,
74
+ s3_stage_vpce_dns_name: Optional[pulumi.Input[str]] = None,
75
+ search_path: Optional[pulumi.Input[str]] = None,
76
+ simulated_data_sharing_consumer: Optional[pulumi.Input[str]] = None,
77
+ statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
78
+ statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
79
+ strict_json_output: Optional[pulumi.Input[bool]] = None,
80
+ time_input_format: Optional[pulumi.Input[str]] = None,
81
+ time_output_format: Optional[pulumi.Input[str]] = None,
82
+ timestamp_day_is_always24h: Optional[pulumi.Input[bool]] = None,
83
+ timestamp_input_format: Optional[pulumi.Input[str]] = None,
84
+ timestamp_ltz_output_format: Optional[pulumi.Input[str]] = None,
85
+ timestamp_ntz_output_format: Optional[pulumi.Input[str]] = None,
86
+ timestamp_output_format: Optional[pulumi.Input[str]] = None,
87
+ timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
88
+ timestamp_tz_output_format: Optional[pulumi.Input[str]] = None,
89
+ timezone: Optional[pulumi.Input[str]] = None,
90
+ trace_level: Optional[pulumi.Input[str]] = None,
91
+ transaction_abort_on_error: Optional[pulumi.Input[bool]] = None,
92
+ transaction_default_isolation_level: Optional[pulumi.Input[str]] = None,
93
+ two_digit_century_start: Optional[pulumi.Input[int]] = None,
94
+ unsupported_ddl_action: Optional[pulumi.Input[str]] = None,
95
+ use_cached_result: Optional[pulumi.Input[bool]] = None,
96
+ week_of_year_policy: Optional[pulumi.Input[int]] = None,
97
+ week_start: Optional[pulumi.Input[int]] = None):
98
+ """
99
+ The set of arguments for constructing a LegacyServiceUser resource.
100
+ :param pulumi.Input[bool] abort_detached_query: Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
101
+ :param pulumi.Input[bool] autocommit: Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
102
+ :param pulumi.Input[str] binary_input_format: The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
103
+ :param pulumi.Input[str] binary_output_format: The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
104
+ :param pulumi.Input[int] client_memory_limit: Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
105
+ :param pulumi.Input[bool] client_metadata_request_use_connection_ctx: For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
106
+ :param pulumi.Input[int] client_prefetch_threads: Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
107
+ :param pulumi.Input[int] client_result_chunk_size: Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
108
+ :param pulumi.Input[bool] client_result_column_case_insensitive: Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
109
+ :param pulumi.Input[bool] client_session_keep_alive: Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
110
+ :param pulumi.Input[int] client_session_keep_alive_heartbeat_frequency: Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
111
+ :param pulumi.Input[str] client_timestamp_type_mapping: Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
112
+ :param pulumi.Input[str] comment: Specifies a comment for the user.
113
+ :param pulumi.Input[str] date_input_format: Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
114
+ :param pulumi.Input[str] date_output_format: Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
115
+ :param pulumi.Input[str] default_namespace: Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
116
+ :param pulumi.Input[str] default_role: Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
117
+ :param pulumi.Input[str] default_secondary_roles_option: Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
118
+ :param pulumi.Input[str] default_warehouse: Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
119
+ :param pulumi.Input[str] disabled: Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
120
+ :param pulumi.Input[str] display_name: Name displayed for the user in the Snowflake web interface.
121
+ :param pulumi.Input[str] email: Email address for the user.
122
+ :param pulumi.Input[bool] enable_unload_physical_type_optimization: Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
123
+ :param pulumi.Input[bool] enable_unredacted_query_syntax_error: Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
124
+ :param pulumi.Input[bool] error_on_nondeterministic_merge: Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
125
+ :param pulumi.Input[bool] error_on_nondeterministic_update: Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
126
+ :param pulumi.Input[str] geography_output_format: Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
127
+ :param pulumi.Input[str] geometry_output_format: Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
128
+ :param pulumi.Input[bool] jdbc_treat_decimal_as_int: Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
129
+ :param pulumi.Input[bool] jdbc_treat_timestamp_ntz_as_utc: Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
130
+ :param pulumi.Input[bool] jdbc_use_session_timezone: Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
131
+ :param pulumi.Input[int] json_indent: Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
132
+ :param pulumi.Input[int] lock_timeout: Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
133
+ :param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
134
+ :param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
135
+ :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
136
+ :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
137
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
138
+ :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
139
+ :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
140
+ :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
141
+ :param pulumi.Input[bool] prevent_unload_to_internal_stages: Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
142
+ :param pulumi.Input[str] query_tag: Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
143
+ :param pulumi.Input[bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
144
+ :param pulumi.Input[int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
145
+ :param pulumi.Input[str] rsa_public_key: Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
146
+ :param pulumi.Input[str] rsa_public_key2: Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
147
+ :param pulumi.Input[str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
148
+ :param pulumi.Input[str] search_path: Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
149
+ :param pulumi.Input[str] simulated_data_sharing_consumer: Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
150
+ :param pulumi.Input[int] statement_queued_timeout_in_seconds: Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
151
+ :param pulumi.Input[int] statement_timeout_in_seconds: Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
152
+ :param pulumi.Input[bool] strict_json_output: This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
153
+ :param pulumi.Input[str] time_input_format: Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
154
+ :param pulumi.Input[str] time_output_format: Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
155
+ :param pulumi.Input[bool] timestamp_day_is_always24h: Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
156
+ :param pulumi.Input[str] timestamp_input_format: Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
157
+ :param pulumi.Input[str] timestamp_ltz_output_format: Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
158
+ :param pulumi.Input[str] timestamp_ntz_output_format: Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
159
+ :param pulumi.Input[str] timestamp_output_format: Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
160
+ :param pulumi.Input[str] timestamp_type_mapping: Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
161
+ :param pulumi.Input[str] timestamp_tz_output_format: Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
162
+ :param pulumi.Input[str] timezone: Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
163
+ :param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
164
+ :param pulumi.Input[bool] transaction_abort_on_error: Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
165
+ :param pulumi.Input[str] transaction_default_isolation_level: Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
166
+ :param pulumi.Input[int] two_digit_century_start: Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
167
+ :param pulumi.Input[str] unsupported_ddl_action: Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
168
+ :param pulumi.Input[bool] use_cached_result: Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
169
+ :param pulumi.Input[int] week_of_year_policy: Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
170
+ :param pulumi.Input[int] week_start: Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
171
+ """
172
+ if abort_detached_query is not None:
173
+ pulumi.set(__self__, "abort_detached_query", abort_detached_query)
174
+ if autocommit is not None:
175
+ pulumi.set(__self__, "autocommit", autocommit)
176
+ if binary_input_format is not None:
177
+ pulumi.set(__self__, "binary_input_format", binary_input_format)
178
+ if binary_output_format is not None:
179
+ pulumi.set(__self__, "binary_output_format", binary_output_format)
180
+ if client_memory_limit is not None:
181
+ pulumi.set(__self__, "client_memory_limit", client_memory_limit)
182
+ if client_metadata_request_use_connection_ctx is not None:
183
+ pulumi.set(__self__, "client_metadata_request_use_connection_ctx", client_metadata_request_use_connection_ctx)
184
+ if client_prefetch_threads is not None:
185
+ pulumi.set(__self__, "client_prefetch_threads", client_prefetch_threads)
186
+ if client_result_chunk_size is not None:
187
+ pulumi.set(__self__, "client_result_chunk_size", client_result_chunk_size)
188
+ if client_result_column_case_insensitive is not None:
189
+ pulumi.set(__self__, "client_result_column_case_insensitive", client_result_column_case_insensitive)
190
+ if client_session_keep_alive is not None:
191
+ pulumi.set(__self__, "client_session_keep_alive", client_session_keep_alive)
192
+ if client_session_keep_alive_heartbeat_frequency is not None:
193
+ pulumi.set(__self__, "client_session_keep_alive_heartbeat_frequency", client_session_keep_alive_heartbeat_frequency)
194
+ if client_timestamp_type_mapping is not None:
195
+ pulumi.set(__self__, "client_timestamp_type_mapping", client_timestamp_type_mapping)
196
+ if comment is not None:
197
+ pulumi.set(__self__, "comment", comment)
198
+ if date_input_format is not None:
199
+ pulumi.set(__self__, "date_input_format", date_input_format)
200
+ if date_output_format is not None:
201
+ pulumi.set(__self__, "date_output_format", date_output_format)
202
+ if days_to_expiry is not None:
203
+ pulumi.set(__self__, "days_to_expiry", days_to_expiry)
204
+ if default_namespace is not None:
205
+ pulumi.set(__self__, "default_namespace", default_namespace)
206
+ if default_role is not None:
207
+ pulumi.set(__self__, "default_role", default_role)
208
+ if default_secondary_roles_option is not None:
209
+ pulumi.set(__self__, "default_secondary_roles_option", default_secondary_roles_option)
210
+ if default_warehouse is not None:
211
+ pulumi.set(__self__, "default_warehouse", default_warehouse)
212
+ if disabled is not None:
213
+ pulumi.set(__self__, "disabled", disabled)
214
+ if display_name is not None:
215
+ pulumi.set(__self__, "display_name", display_name)
216
+ if email is not None:
217
+ pulumi.set(__self__, "email", email)
218
+ if enable_unload_physical_type_optimization is not None:
219
+ pulumi.set(__self__, "enable_unload_physical_type_optimization", enable_unload_physical_type_optimization)
220
+ if enable_unredacted_query_syntax_error is not None:
221
+ pulumi.set(__self__, "enable_unredacted_query_syntax_error", enable_unredacted_query_syntax_error)
222
+ if error_on_nondeterministic_merge is not None:
223
+ pulumi.set(__self__, "error_on_nondeterministic_merge", error_on_nondeterministic_merge)
224
+ if error_on_nondeterministic_update is not None:
225
+ pulumi.set(__self__, "error_on_nondeterministic_update", error_on_nondeterministic_update)
226
+ if geography_output_format is not None:
227
+ pulumi.set(__self__, "geography_output_format", geography_output_format)
228
+ if geometry_output_format is not None:
229
+ pulumi.set(__self__, "geometry_output_format", geometry_output_format)
230
+ if jdbc_treat_decimal_as_int is not None:
231
+ pulumi.set(__self__, "jdbc_treat_decimal_as_int", jdbc_treat_decimal_as_int)
232
+ if jdbc_treat_timestamp_ntz_as_utc is not None:
233
+ pulumi.set(__self__, "jdbc_treat_timestamp_ntz_as_utc", jdbc_treat_timestamp_ntz_as_utc)
234
+ if jdbc_use_session_timezone is not None:
235
+ pulumi.set(__self__, "jdbc_use_session_timezone", jdbc_use_session_timezone)
236
+ if json_indent is not None:
237
+ pulumi.set(__self__, "json_indent", json_indent)
238
+ if lock_timeout is not None:
239
+ pulumi.set(__self__, "lock_timeout", lock_timeout)
240
+ if log_level is not None:
241
+ pulumi.set(__self__, "log_level", log_level)
242
+ if login_name is not None:
243
+ pulumi.set(__self__, "login_name", login_name)
244
+ if mins_to_unlock is not None:
245
+ pulumi.set(__self__, "mins_to_unlock", mins_to_unlock)
246
+ if multi_statement_count is not None:
247
+ pulumi.set(__self__, "multi_statement_count", multi_statement_count)
248
+ if must_change_password is not None:
249
+ pulumi.set(__self__, "must_change_password", must_change_password)
250
+ if name is not None:
251
+ pulumi.set(__self__, "name", name)
252
+ if network_policy is not None:
253
+ pulumi.set(__self__, "network_policy", network_policy)
254
+ if noorder_sequence_as_default is not None:
255
+ pulumi.set(__self__, "noorder_sequence_as_default", noorder_sequence_as_default)
256
+ if odbc_treat_decimal_as_int is not None:
257
+ pulumi.set(__self__, "odbc_treat_decimal_as_int", odbc_treat_decimal_as_int)
258
+ if password is not None:
259
+ pulumi.set(__self__, "password", password)
260
+ if prevent_unload_to_internal_stages is not None:
261
+ pulumi.set(__self__, "prevent_unload_to_internal_stages", prevent_unload_to_internal_stages)
262
+ if query_tag is not None:
263
+ pulumi.set(__self__, "query_tag", query_tag)
264
+ if quoted_identifiers_ignore_case is not None:
265
+ pulumi.set(__self__, "quoted_identifiers_ignore_case", quoted_identifiers_ignore_case)
266
+ if rows_per_resultset is not None:
267
+ pulumi.set(__self__, "rows_per_resultset", rows_per_resultset)
268
+ if rsa_public_key is not None:
269
+ pulumi.set(__self__, "rsa_public_key", rsa_public_key)
270
+ if rsa_public_key2 is not None:
271
+ pulumi.set(__self__, "rsa_public_key2", rsa_public_key2)
272
+ if s3_stage_vpce_dns_name is not None:
273
+ pulumi.set(__self__, "s3_stage_vpce_dns_name", s3_stage_vpce_dns_name)
274
+ if search_path is not None:
275
+ pulumi.set(__self__, "search_path", search_path)
276
+ if simulated_data_sharing_consumer is not None:
277
+ pulumi.set(__self__, "simulated_data_sharing_consumer", simulated_data_sharing_consumer)
278
+ if statement_queued_timeout_in_seconds is not None:
279
+ pulumi.set(__self__, "statement_queued_timeout_in_seconds", statement_queued_timeout_in_seconds)
280
+ if statement_timeout_in_seconds is not None:
281
+ pulumi.set(__self__, "statement_timeout_in_seconds", statement_timeout_in_seconds)
282
+ if strict_json_output is not None:
283
+ pulumi.set(__self__, "strict_json_output", strict_json_output)
284
+ if time_input_format is not None:
285
+ pulumi.set(__self__, "time_input_format", time_input_format)
286
+ if time_output_format is not None:
287
+ pulumi.set(__self__, "time_output_format", time_output_format)
288
+ if timestamp_day_is_always24h is not None:
289
+ pulumi.set(__self__, "timestamp_day_is_always24h", timestamp_day_is_always24h)
290
+ if timestamp_input_format is not None:
291
+ pulumi.set(__self__, "timestamp_input_format", timestamp_input_format)
292
+ if timestamp_ltz_output_format is not None:
293
+ pulumi.set(__self__, "timestamp_ltz_output_format", timestamp_ltz_output_format)
294
+ if timestamp_ntz_output_format is not None:
295
+ pulumi.set(__self__, "timestamp_ntz_output_format", timestamp_ntz_output_format)
296
+ if timestamp_output_format is not None:
297
+ pulumi.set(__self__, "timestamp_output_format", timestamp_output_format)
298
+ if timestamp_type_mapping is not None:
299
+ pulumi.set(__self__, "timestamp_type_mapping", timestamp_type_mapping)
300
+ if timestamp_tz_output_format is not None:
301
+ pulumi.set(__self__, "timestamp_tz_output_format", timestamp_tz_output_format)
302
+ if timezone is not None:
303
+ pulumi.set(__self__, "timezone", timezone)
304
+ if trace_level is not None:
305
+ pulumi.set(__self__, "trace_level", trace_level)
306
+ if transaction_abort_on_error is not None:
307
+ pulumi.set(__self__, "transaction_abort_on_error", transaction_abort_on_error)
308
+ if transaction_default_isolation_level is not None:
309
+ pulumi.set(__self__, "transaction_default_isolation_level", transaction_default_isolation_level)
310
+ if two_digit_century_start is not None:
311
+ pulumi.set(__self__, "two_digit_century_start", two_digit_century_start)
312
+ if unsupported_ddl_action is not None:
313
+ pulumi.set(__self__, "unsupported_ddl_action", unsupported_ddl_action)
314
+ if use_cached_result is not None:
315
+ pulumi.set(__self__, "use_cached_result", use_cached_result)
316
+ if week_of_year_policy is not None:
317
+ pulumi.set(__self__, "week_of_year_policy", week_of_year_policy)
318
+ if week_start is not None:
319
+ pulumi.set(__self__, "week_start", week_start)
320
+
321
+ @property
322
+ @pulumi.getter(name="abortDetachedQuery")
323
+ def abort_detached_query(self) -> Optional[pulumi.Input[bool]]:
324
+ """
325
+ Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
326
+ """
327
+ return pulumi.get(self, "abort_detached_query")
328
+
329
+ @abort_detached_query.setter
330
+ def abort_detached_query(self, value: Optional[pulumi.Input[bool]]):
331
+ pulumi.set(self, "abort_detached_query", value)
332
+
333
+ @property
334
+ @pulumi.getter
335
+ def autocommit(self) -> Optional[pulumi.Input[bool]]:
336
+ """
337
+ Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
338
+ """
339
+ return pulumi.get(self, "autocommit")
340
+
341
+ @autocommit.setter
342
+ def autocommit(self, value: Optional[pulumi.Input[bool]]):
343
+ pulumi.set(self, "autocommit", value)
344
+
345
+ @property
346
+ @pulumi.getter(name="binaryInputFormat")
347
+ def binary_input_format(self) -> Optional[pulumi.Input[str]]:
348
+ """
349
+ The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
350
+ """
351
+ return pulumi.get(self, "binary_input_format")
352
+
353
+ @binary_input_format.setter
354
+ def binary_input_format(self, value: Optional[pulumi.Input[str]]):
355
+ pulumi.set(self, "binary_input_format", value)
356
+
357
+ @property
358
+ @pulumi.getter(name="binaryOutputFormat")
359
+ def binary_output_format(self) -> Optional[pulumi.Input[str]]:
360
+ """
361
+ The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
362
+ """
363
+ return pulumi.get(self, "binary_output_format")
364
+
365
+ @binary_output_format.setter
366
+ def binary_output_format(self, value: Optional[pulumi.Input[str]]):
367
+ pulumi.set(self, "binary_output_format", value)
368
+
369
+ @property
370
+ @pulumi.getter(name="clientMemoryLimit")
371
+ def client_memory_limit(self) -> Optional[pulumi.Input[int]]:
372
+ """
373
+ Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
374
+ """
375
+ return pulumi.get(self, "client_memory_limit")
376
+
377
+ @client_memory_limit.setter
378
+ def client_memory_limit(self, value: Optional[pulumi.Input[int]]):
379
+ pulumi.set(self, "client_memory_limit", value)
380
+
381
+ @property
382
+ @pulumi.getter(name="clientMetadataRequestUseConnectionCtx")
383
+ def client_metadata_request_use_connection_ctx(self) -> Optional[pulumi.Input[bool]]:
384
+ """
385
+ For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
386
+ """
387
+ return pulumi.get(self, "client_metadata_request_use_connection_ctx")
388
+
389
+ @client_metadata_request_use_connection_ctx.setter
390
+ def client_metadata_request_use_connection_ctx(self, value: Optional[pulumi.Input[bool]]):
391
+ pulumi.set(self, "client_metadata_request_use_connection_ctx", value)
392
+
393
+ @property
394
+ @pulumi.getter(name="clientPrefetchThreads")
395
+ def client_prefetch_threads(self) -> Optional[pulumi.Input[int]]:
396
+ """
397
+ Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
398
+ """
399
+ return pulumi.get(self, "client_prefetch_threads")
400
+
401
+ @client_prefetch_threads.setter
402
+ def client_prefetch_threads(self, value: Optional[pulumi.Input[int]]):
403
+ pulumi.set(self, "client_prefetch_threads", value)
404
+
405
+ @property
406
+ @pulumi.getter(name="clientResultChunkSize")
407
+ def client_result_chunk_size(self) -> Optional[pulumi.Input[int]]:
408
+ """
409
+ Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
410
+ """
411
+ return pulumi.get(self, "client_result_chunk_size")
412
+
413
+ @client_result_chunk_size.setter
414
+ def client_result_chunk_size(self, value: Optional[pulumi.Input[int]]):
415
+ pulumi.set(self, "client_result_chunk_size", value)
416
+
417
+ @property
418
+ @pulumi.getter(name="clientResultColumnCaseInsensitive")
419
+ def client_result_column_case_insensitive(self) -> Optional[pulumi.Input[bool]]:
420
+ """
421
+ Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
422
+ """
423
+ return pulumi.get(self, "client_result_column_case_insensitive")
424
+
425
+ @client_result_column_case_insensitive.setter
426
+ def client_result_column_case_insensitive(self, value: Optional[pulumi.Input[bool]]):
427
+ pulumi.set(self, "client_result_column_case_insensitive", value)
428
+
429
+ @property
430
+ @pulumi.getter(name="clientSessionKeepAlive")
431
+ def client_session_keep_alive(self) -> Optional[pulumi.Input[bool]]:
432
+ """
433
+ Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
434
+ """
435
+ return pulumi.get(self, "client_session_keep_alive")
436
+
437
+ @client_session_keep_alive.setter
438
+ def client_session_keep_alive(self, value: Optional[pulumi.Input[bool]]):
439
+ pulumi.set(self, "client_session_keep_alive", value)
440
+
441
+ @property
442
+ @pulumi.getter(name="clientSessionKeepAliveHeartbeatFrequency")
443
+ def client_session_keep_alive_heartbeat_frequency(self) -> Optional[pulumi.Input[int]]:
444
+ """
445
+ Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
446
+ """
447
+ return pulumi.get(self, "client_session_keep_alive_heartbeat_frequency")
448
+
449
+ @client_session_keep_alive_heartbeat_frequency.setter
450
+ def client_session_keep_alive_heartbeat_frequency(self, value: Optional[pulumi.Input[int]]):
451
+ pulumi.set(self, "client_session_keep_alive_heartbeat_frequency", value)
452
+
453
+ @property
454
+ @pulumi.getter(name="clientTimestampTypeMapping")
455
+ def client_timestamp_type_mapping(self) -> Optional[pulumi.Input[str]]:
456
+ """
457
+ Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
458
+ """
459
+ return pulumi.get(self, "client_timestamp_type_mapping")
460
+
461
+ @client_timestamp_type_mapping.setter
462
+ def client_timestamp_type_mapping(self, value: Optional[pulumi.Input[str]]):
463
+ pulumi.set(self, "client_timestamp_type_mapping", value)
464
+
465
+ @property
466
+ @pulumi.getter
467
+ def comment(self) -> Optional[pulumi.Input[str]]:
468
+ """
469
+ Specifies a comment for the user.
470
+ """
471
+ return pulumi.get(self, "comment")
472
+
473
+ @comment.setter
474
+ def comment(self, value: Optional[pulumi.Input[str]]):
475
+ pulumi.set(self, "comment", value)
476
+
477
+ @property
478
+ @pulumi.getter(name="dateInputFormat")
479
+ def date_input_format(self) -> Optional[pulumi.Input[str]]:
480
+ """
481
+ Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
482
+ """
483
+ return pulumi.get(self, "date_input_format")
484
+
485
+ @date_input_format.setter
486
+ def date_input_format(self, value: Optional[pulumi.Input[str]]):
487
+ pulumi.set(self, "date_input_format", value)
488
+
489
+ @property
490
+ @pulumi.getter(name="dateOutputFormat")
491
+ def date_output_format(self) -> Optional[pulumi.Input[str]]:
492
+ """
493
+ Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
494
+ """
495
+ return pulumi.get(self, "date_output_format")
496
+
497
+ @date_output_format.setter
498
+ def date_output_format(self, value: Optional[pulumi.Input[str]]):
499
+ pulumi.set(self, "date_output_format", value)
500
+
501
+ @property
502
+ @pulumi.getter(name="daysToExpiry")
503
+ def days_to_expiry(self) -> Optional[pulumi.Input[int]]:
504
+ return pulumi.get(self, "days_to_expiry")
505
+
506
+ @days_to_expiry.setter
507
+ def days_to_expiry(self, value: Optional[pulumi.Input[int]]):
508
+ pulumi.set(self, "days_to_expiry", value)
509
+
510
+ @property
511
+ @pulumi.getter(name="defaultNamespace")
512
+ def default_namespace(self) -> Optional[pulumi.Input[str]]:
513
+ """
514
+ Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
515
+ """
516
+ return pulumi.get(self, "default_namespace")
517
+
518
+ @default_namespace.setter
519
+ def default_namespace(self, value: Optional[pulumi.Input[str]]):
520
+ pulumi.set(self, "default_namespace", value)
521
+
522
+ @property
523
+ @pulumi.getter(name="defaultRole")
524
+ def default_role(self) -> Optional[pulumi.Input[str]]:
525
+ """
526
+ Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
527
+ """
528
+ return pulumi.get(self, "default_role")
529
+
530
+ @default_role.setter
531
+ def default_role(self, value: Optional[pulumi.Input[str]]):
532
+ pulumi.set(self, "default_role", value)
533
+
534
+ @property
535
+ @pulumi.getter(name="defaultSecondaryRolesOption")
536
+ def default_secondary_roles_option(self) -> Optional[pulumi.Input[str]]:
537
+ """
538
+ Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
539
+ """
540
+ return pulumi.get(self, "default_secondary_roles_option")
541
+
542
+ @default_secondary_roles_option.setter
543
+ def default_secondary_roles_option(self, value: Optional[pulumi.Input[str]]):
544
+ pulumi.set(self, "default_secondary_roles_option", value)
545
+
546
+ @property
547
+ @pulumi.getter(name="defaultWarehouse")
548
+ def default_warehouse(self) -> Optional[pulumi.Input[str]]:
549
+ """
550
+ Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
551
+ """
552
+ return pulumi.get(self, "default_warehouse")
553
+
554
+ @default_warehouse.setter
555
+ def default_warehouse(self, value: Optional[pulumi.Input[str]]):
556
+ pulumi.set(self, "default_warehouse", value)
557
+
558
+ @property
559
+ @pulumi.getter
560
+ def disabled(self) -> Optional[pulumi.Input[str]]:
561
+ """
562
+ Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
563
+ """
564
+ return pulumi.get(self, "disabled")
565
+
566
+ @disabled.setter
567
+ def disabled(self, value: Optional[pulumi.Input[str]]):
568
+ pulumi.set(self, "disabled", value)
569
+
570
+ @property
571
+ @pulumi.getter(name="displayName")
572
+ def display_name(self) -> Optional[pulumi.Input[str]]:
573
+ """
574
+ Name displayed for the user in the Snowflake web interface.
575
+ """
576
+ return pulumi.get(self, "display_name")
577
+
578
+ @display_name.setter
579
+ def display_name(self, value: Optional[pulumi.Input[str]]):
580
+ pulumi.set(self, "display_name", value)
581
+
582
+ @property
583
+ @pulumi.getter
584
+ def email(self) -> Optional[pulumi.Input[str]]:
585
+ """
586
+ Email address for the user.
587
+ """
588
+ return pulumi.get(self, "email")
589
+
590
+ @email.setter
591
+ def email(self, value: Optional[pulumi.Input[str]]):
592
+ pulumi.set(self, "email", value)
593
+
594
+ @property
595
+ @pulumi.getter(name="enableUnloadPhysicalTypeOptimization")
596
+ def enable_unload_physical_type_optimization(self) -> Optional[pulumi.Input[bool]]:
597
+ """
598
+ Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
599
+ """
600
+ return pulumi.get(self, "enable_unload_physical_type_optimization")
601
+
602
+ @enable_unload_physical_type_optimization.setter
603
+ def enable_unload_physical_type_optimization(self, value: Optional[pulumi.Input[bool]]):
604
+ pulumi.set(self, "enable_unload_physical_type_optimization", value)
605
+
606
+ @property
607
+ @pulumi.getter(name="enableUnredactedQuerySyntaxError")
608
+ def enable_unredacted_query_syntax_error(self) -> Optional[pulumi.Input[bool]]:
609
+ """
610
+ Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
611
+ """
612
+ return pulumi.get(self, "enable_unredacted_query_syntax_error")
613
+
614
+ @enable_unredacted_query_syntax_error.setter
615
+ def enable_unredacted_query_syntax_error(self, value: Optional[pulumi.Input[bool]]):
616
+ pulumi.set(self, "enable_unredacted_query_syntax_error", value)
617
+
618
+ @property
619
+ @pulumi.getter(name="errorOnNondeterministicMerge")
620
+ def error_on_nondeterministic_merge(self) -> Optional[pulumi.Input[bool]]:
621
+ """
622
+ Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
623
+ """
624
+ return pulumi.get(self, "error_on_nondeterministic_merge")
625
+
626
+ @error_on_nondeterministic_merge.setter
627
+ def error_on_nondeterministic_merge(self, value: Optional[pulumi.Input[bool]]):
628
+ pulumi.set(self, "error_on_nondeterministic_merge", value)
629
+
630
+ @property
631
+ @pulumi.getter(name="errorOnNondeterministicUpdate")
632
+ def error_on_nondeterministic_update(self) -> Optional[pulumi.Input[bool]]:
633
+ """
634
+ Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
635
+ """
636
+ return pulumi.get(self, "error_on_nondeterministic_update")
637
+
638
+ @error_on_nondeterministic_update.setter
639
+ def error_on_nondeterministic_update(self, value: Optional[pulumi.Input[bool]]):
640
+ pulumi.set(self, "error_on_nondeterministic_update", value)
641
+
642
+ @property
643
+ @pulumi.getter(name="geographyOutputFormat")
644
+ def geography_output_format(self) -> Optional[pulumi.Input[str]]:
645
+ """
646
+ Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
647
+ """
648
+ return pulumi.get(self, "geography_output_format")
649
+
650
+ @geography_output_format.setter
651
+ def geography_output_format(self, value: Optional[pulumi.Input[str]]):
652
+ pulumi.set(self, "geography_output_format", value)
653
+
654
+ @property
655
+ @pulumi.getter(name="geometryOutputFormat")
656
+ def geometry_output_format(self) -> Optional[pulumi.Input[str]]:
657
+ """
658
+ Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
659
+ """
660
+ return pulumi.get(self, "geometry_output_format")
661
+
662
+ @geometry_output_format.setter
663
+ def geometry_output_format(self, value: Optional[pulumi.Input[str]]):
664
+ pulumi.set(self, "geometry_output_format", value)
665
+
666
+ @property
667
+ @pulumi.getter(name="jdbcTreatDecimalAsInt")
668
+ def jdbc_treat_decimal_as_int(self) -> Optional[pulumi.Input[bool]]:
669
+ """
670
+ Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
671
+ """
672
+ return pulumi.get(self, "jdbc_treat_decimal_as_int")
673
+
674
+ @jdbc_treat_decimal_as_int.setter
675
+ def jdbc_treat_decimal_as_int(self, value: Optional[pulumi.Input[bool]]):
676
+ pulumi.set(self, "jdbc_treat_decimal_as_int", value)
677
+
678
+ @property
679
+ @pulumi.getter(name="jdbcTreatTimestampNtzAsUtc")
680
+ def jdbc_treat_timestamp_ntz_as_utc(self) -> Optional[pulumi.Input[bool]]:
681
+ """
682
+ Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
683
+ """
684
+ return pulumi.get(self, "jdbc_treat_timestamp_ntz_as_utc")
685
+
686
+ @jdbc_treat_timestamp_ntz_as_utc.setter
687
+ def jdbc_treat_timestamp_ntz_as_utc(self, value: Optional[pulumi.Input[bool]]):
688
+ pulumi.set(self, "jdbc_treat_timestamp_ntz_as_utc", value)
689
+
690
+ @property
691
+ @pulumi.getter(name="jdbcUseSessionTimezone")
692
+ def jdbc_use_session_timezone(self) -> Optional[pulumi.Input[bool]]:
693
+ """
694
+ Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
695
+ """
696
+ return pulumi.get(self, "jdbc_use_session_timezone")
697
+
698
+ @jdbc_use_session_timezone.setter
699
+ def jdbc_use_session_timezone(self, value: Optional[pulumi.Input[bool]]):
700
+ pulumi.set(self, "jdbc_use_session_timezone", value)
701
+
702
+ @property
703
+ @pulumi.getter(name="jsonIndent")
704
+ def json_indent(self) -> Optional[pulumi.Input[int]]:
705
+ """
706
+ Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
707
+ """
708
+ return pulumi.get(self, "json_indent")
709
+
710
+ @json_indent.setter
711
+ def json_indent(self, value: Optional[pulumi.Input[int]]):
712
+ pulumi.set(self, "json_indent", value)
713
+
714
+ @property
715
+ @pulumi.getter(name="lockTimeout")
716
+ def lock_timeout(self) -> Optional[pulumi.Input[int]]:
717
+ """
718
+ Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
719
+ """
720
+ return pulumi.get(self, "lock_timeout")
721
+
722
+ @lock_timeout.setter
723
+ def lock_timeout(self, value: Optional[pulumi.Input[int]]):
724
+ pulumi.set(self, "lock_timeout", value)
725
+
726
+ @property
727
+ @pulumi.getter(name="logLevel")
728
+ def log_level(self) -> Optional[pulumi.Input[str]]:
729
+ """
730
+ Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
731
+ """
732
+ return pulumi.get(self, "log_level")
733
+
734
+ @log_level.setter
735
+ def log_level(self, value: Optional[pulumi.Input[str]]):
736
+ pulumi.set(self, "log_level", value)
737
+
738
+ @property
739
+ @pulumi.getter(name="loginName")
740
+ def login_name(self) -> Optional[pulumi.Input[str]]:
741
+ """
742
+ The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
743
+ """
744
+ return pulumi.get(self, "login_name")
745
+
746
+ @login_name.setter
747
+ def login_name(self, value: Optional[pulumi.Input[str]]):
748
+ pulumi.set(self, "login_name", value)
749
+
750
+ @property
751
+ @pulumi.getter(name="minsToUnlock")
752
+ def mins_to_unlock(self) -> Optional[pulumi.Input[int]]:
753
+ return pulumi.get(self, "mins_to_unlock")
754
+
755
+ @mins_to_unlock.setter
756
+ def mins_to_unlock(self, value: Optional[pulumi.Input[int]]):
757
+ pulumi.set(self, "mins_to_unlock", value)
758
+
759
+ @property
760
+ @pulumi.getter(name="multiStatementCount")
761
+ def multi_statement_count(self) -> Optional[pulumi.Input[int]]:
762
+ """
763
+ Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
764
+ """
765
+ return pulumi.get(self, "multi_statement_count")
766
+
767
+ @multi_statement_count.setter
768
+ def multi_statement_count(self, value: Optional[pulumi.Input[int]]):
769
+ pulumi.set(self, "multi_statement_count", value)
770
+
771
+ @property
772
+ @pulumi.getter(name="mustChangePassword")
773
+ def must_change_password(self) -> Optional[pulumi.Input[str]]:
774
+ """
775
+ Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
776
+ """
777
+ return pulumi.get(self, "must_change_password")
778
+
779
+ @must_change_password.setter
780
+ def must_change_password(self, value: Optional[pulumi.Input[str]]):
781
+ pulumi.set(self, "must_change_password", value)
782
+
783
+ @property
784
+ @pulumi.getter
785
+ def name(self) -> Optional[pulumi.Input[str]]:
786
+ """
787
+ Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
788
+ """
789
+ return pulumi.get(self, "name")
790
+
791
+ @name.setter
792
+ def name(self, value: Optional[pulumi.Input[str]]):
793
+ pulumi.set(self, "name", value)
794
+
795
+ @property
796
+ @pulumi.getter(name="networkPolicy")
797
+ def network_policy(self) -> Optional[pulumi.Input[str]]:
798
+ """
799
+ Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
800
+ """
801
+ return pulumi.get(self, "network_policy")
802
+
803
+ @network_policy.setter
804
+ def network_policy(self, value: Optional[pulumi.Input[str]]):
805
+ pulumi.set(self, "network_policy", value)
806
+
807
+ @property
808
+ @pulumi.getter(name="noorderSequenceAsDefault")
809
+ def noorder_sequence_as_default(self) -> Optional[pulumi.Input[bool]]:
810
+ """
811
+ Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
812
+ """
813
+ return pulumi.get(self, "noorder_sequence_as_default")
814
+
815
+ @noorder_sequence_as_default.setter
816
+ def noorder_sequence_as_default(self, value: Optional[pulumi.Input[bool]]):
817
+ pulumi.set(self, "noorder_sequence_as_default", value)
818
+
819
+ @property
820
+ @pulumi.getter(name="odbcTreatDecimalAsInt")
821
+ def odbc_treat_decimal_as_int(self) -> Optional[pulumi.Input[bool]]:
822
+ """
823
+ Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
824
+ """
825
+ return pulumi.get(self, "odbc_treat_decimal_as_int")
826
+
827
+ @odbc_treat_decimal_as_int.setter
828
+ def odbc_treat_decimal_as_int(self, value: Optional[pulumi.Input[bool]]):
829
+ pulumi.set(self, "odbc_treat_decimal_as_int", value)
830
+
831
+ @property
832
+ @pulumi.getter
833
+ def password(self) -> Optional[pulumi.Input[str]]:
834
+ return pulumi.get(self, "password")
835
+
836
+ @password.setter
837
+ def password(self, value: Optional[pulumi.Input[str]]):
838
+ pulumi.set(self, "password", value)
839
+
840
+ @property
841
+ @pulumi.getter(name="preventUnloadToInternalStages")
842
+ def prevent_unload_to_internal_stages(self) -> Optional[pulumi.Input[bool]]:
843
+ """
844
+ Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
845
+ """
846
+ return pulumi.get(self, "prevent_unload_to_internal_stages")
847
+
848
+ @prevent_unload_to_internal_stages.setter
849
+ def prevent_unload_to_internal_stages(self, value: Optional[pulumi.Input[bool]]):
850
+ pulumi.set(self, "prevent_unload_to_internal_stages", value)
851
+
852
+ @property
853
+ @pulumi.getter(name="queryTag")
854
+ def query_tag(self) -> Optional[pulumi.Input[str]]:
855
+ """
856
+ Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
857
+ """
858
+ return pulumi.get(self, "query_tag")
859
+
860
+ @query_tag.setter
861
+ def query_tag(self, value: Optional[pulumi.Input[str]]):
862
+ pulumi.set(self, "query_tag", value)
863
+
864
+ @property
865
+ @pulumi.getter(name="quotedIdentifiersIgnoreCase")
866
+ def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[bool]]:
867
+ """
868
+ Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
869
+ """
870
+ return pulumi.get(self, "quoted_identifiers_ignore_case")
871
+
872
+ @quoted_identifiers_ignore_case.setter
873
+ def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[bool]]):
874
+ pulumi.set(self, "quoted_identifiers_ignore_case", value)
875
+
876
+ @property
877
+ @pulumi.getter(name="rowsPerResultset")
878
+ def rows_per_resultset(self) -> Optional[pulumi.Input[int]]:
879
+ """
880
+ Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
881
+ """
882
+ return pulumi.get(self, "rows_per_resultset")
883
+
884
+ @rows_per_resultset.setter
885
+ def rows_per_resultset(self, value: Optional[pulumi.Input[int]]):
886
+ pulumi.set(self, "rows_per_resultset", value)
887
+
888
+ @property
889
+ @pulumi.getter(name="rsaPublicKey")
890
+ def rsa_public_key(self) -> Optional[pulumi.Input[str]]:
891
+ """
892
+ Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
893
+ """
894
+ return pulumi.get(self, "rsa_public_key")
895
+
896
+ @rsa_public_key.setter
897
+ def rsa_public_key(self, value: Optional[pulumi.Input[str]]):
898
+ pulumi.set(self, "rsa_public_key", value)
899
+
900
+ @property
901
+ @pulumi.getter(name="rsaPublicKey2")
902
+ def rsa_public_key2(self) -> Optional[pulumi.Input[str]]:
903
+ """
904
+ Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
905
+ """
906
+ return pulumi.get(self, "rsa_public_key2")
907
+
908
+ @rsa_public_key2.setter
909
+ def rsa_public_key2(self, value: Optional[pulumi.Input[str]]):
910
+ pulumi.set(self, "rsa_public_key2", value)
911
+
912
+ @property
913
+ @pulumi.getter(name="s3StageVpceDnsName")
914
+ def s3_stage_vpce_dns_name(self) -> Optional[pulumi.Input[str]]:
915
+ """
916
+ Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
917
+ """
918
+ return pulumi.get(self, "s3_stage_vpce_dns_name")
919
+
920
+ @s3_stage_vpce_dns_name.setter
921
+ def s3_stage_vpce_dns_name(self, value: Optional[pulumi.Input[str]]):
922
+ pulumi.set(self, "s3_stage_vpce_dns_name", value)
923
+
924
+ @property
925
+ @pulumi.getter(name="searchPath")
926
+ def search_path(self) -> Optional[pulumi.Input[str]]:
927
+ """
928
+ Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
929
+ """
930
+ return pulumi.get(self, "search_path")
931
+
932
+ @search_path.setter
933
+ def search_path(self, value: Optional[pulumi.Input[str]]):
934
+ pulumi.set(self, "search_path", value)
935
+
936
+ @property
937
+ @pulumi.getter(name="simulatedDataSharingConsumer")
938
+ def simulated_data_sharing_consumer(self) -> Optional[pulumi.Input[str]]:
939
+ """
940
+ Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
941
+ """
942
+ return pulumi.get(self, "simulated_data_sharing_consumer")
943
+
944
+ @simulated_data_sharing_consumer.setter
945
+ def simulated_data_sharing_consumer(self, value: Optional[pulumi.Input[str]]):
946
+ pulumi.set(self, "simulated_data_sharing_consumer", value)
947
+
948
+ @property
949
+ @pulumi.getter(name="statementQueuedTimeoutInSeconds")
950
+ def statement_queued_timeout_in_seconds(self) -> Optional[pulumi.Input[int]]:
951
+ """
952
+ Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
953
+ """
954
+ return pulumi.get(self, "statement_queued_timeout_in_seconds")
955
+
956
+ @statement_queued_timeout_in_seconds.setter
957
+ def statement_queued_timeout_in_seconds(self, value: Optional[pulumi.Input[int]]):
958
+ pulumi.set(self, "statement_queued_timeout_in_seconds", value)
959
+
960
+ @property
961
+ @pulumi.getter(name="statementTimeoutInSeconds")
962
+ def statement_timeout_in_seconds(self) -> Optional[pulumi.Input[int]]:
963
+ """
964
+ Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
965
+ """
966
+ return pulumi.get(self, "statement_timeout_in_seconds")
967
+
968
+ @statement_timeout_in_seconds.setter
969
+ def statement_timeout_in_seconds(self, value: Optional[pulumi.Input[int]]):
970
+ pulumi.set(self, "statement_timeout_in_seconds", value)
971
+
972
+ @property
973
+ @pulumi.getter(name="strictJsonOutput")
974
+ def strict_json_output(self) -> Optional[pulumi.Input[bool]]:
975
+ """
976
+ This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
977
+ """
978
+ return pulumi.get(self, "strict_json_output")
979
+
980
+ @strict_json_output.setter
981
+ def strict_json_output(self, value: Optional[pulumi.Input[bool]]):
982
+ pulumi.set(self, "strict_json_output", value)
983
+
984
+ @property
985
+ @pulumi.getter(name="timeInputFormat")
986
+ def time_input_format(self) -> Optional[pulumi.Input[str]]:
987
+ """
988
+ Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
989
+ """
990
+ return pulumi.get(self, "time_input_format")
991
+
992
+ @time_input_format.setter
993
+ def time_input_format(self, value: Optional[pulumi.Input[str]]):
994
+ pulumi.set(self, "time_input_format", value)
995
+
996
+ @property
997
+ @pulumi.getter(name="timeOutputFormat")
998
+ def time_output_format(self) -> Optional[pulumi.Input[str]]:
999
+ """
1000
+ Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
1001
+ """
1002
+ return pulumi.get(self, "time_output_format")
1003
+
1004
+ @time_output_format.setter
1005
+ def time_output_format(self, value: Optional[pulumi.Input[str]]):
1006
+ pulumi.set(self, "time_output_format", value)
1007
+
1008
+ @property
1009
+ @pulumi.getter(name="timestampDayIsAlways24h")
1010
+ def timestamp_day_is_always24h(self) -> Optional[pulumi.Input[bool]]:
1011
+ """
1012
+ Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
1013
+ """
1014
+ return pulumi.get(self, "timestamp_day_is_always24h")
1015
+
1016
+ @timestamp_day_is_always24h.setter
1017
+ def timestamp_day_is_always24h(self, value: Optional[pulumi.Input[bool]]):
1018
+ pulumi.set(self, "timestamp_day_is_always24h", value)
1019
+
1020
+ @property
1021
+ @pulumi.getter(name="timestampInputFormat")
1022
+ def timestamp_input_format(self) -> Optional[pulumi.Input[str]]:
1023
+ """
1024
+ Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
1025
+ """
1026
+ return pulumi.get(self, "timestamp_input_format")
1027
+
1028
+ @timestamp_input_format.setter
1029
+ def timestamp_input_format(self, value: Optional[pulumi.Input[str]]):
1030
+ pulumi.set(self, "timestamp_input_format", value)
1031
+
1032
+ @property
1033
+ @pulumi.getter(name="timestampLtzOutputFormat")
1034
+ def timestamp_ltz_output_format(self) -> Optional[pulumi.Input[str]]:
1035
+ """
1036
+ Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
1037
+ """
1038
+ return pulumi.get(self, "timestamp_ltz_output_format")
1039
+
1040
+ @timestamp_ltz_output_format.setter
1041
+ def timestamp_ltz_output_format(self, value: Optional[pulumi.Input[str]]):
1042
+ pulumi.set(self, "timestamp_ltz_output_format", value)
1043
+
1044
+ @property
1045
+ @pulumi.getter(name="timestampNtzOutputFormat")
1046
+ def timestamp_ntz_output_format(self) -> Optional[pulumi.Input[str]]:
1047
+ """
1048
+ Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
1049
+ """
1050
+ return pulumi.get(self, "timestamp_ntz_output_format")
1051
+
1052
+ @timestamp_ntz_output_format.setter
1053
+ def timestamp_ntz_output_format(self, value: Optional[pulumi.Input[str]]):
1054
+ pulumi.set(self, "timestamp_ntz_output_format", value)
1055
+
1056
+ @property
1057
+ @pulumi.getter(name="timestampOutputFormat")
1058
+ def timestamp_output_format(self) -> Optional[pulumi.Input[str]]:
1059
+ """
1060
+ Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
1061
+ """
1062
+ return pulumi.get(self, "timestamp_output_format")
1063
+
1064
+ @timestamp_output_format.setter
1065
+ def timestamp_output_format(self, value: Optional[pulumi.Input[str]]):
1066
+ pulumi.set(self, "timestamp_output_format", value)
1067
+
1068
+ @property
1069
+ @pulumi.getter(name="timestampTypeMapping")
1070
+ def timestamp_type_mapping(self) -> Optional[pulumi.Input[str]]:
1071
+ """
1072
+ Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
1073
+ """
1074
+ return pulumi.get(self, "timestamp_type_mapping")
1075
+
1076
+ @timestamp_type_mapping.setter
1077
+ def timestamp_type_mapping(self, value: Optional[pulumi.Input[str]]):
1078
+ pulumi.set(self, "timestamp_type_mapping", value)
1079
+
1080
+ @property
1081
+ @pulumi.getter(name="timestampTzOutputFormat")
1082
+ def timestamp_tz_output_format(self) -> Optional[pulumi.Input[str]]:
1083
+ """
1084
+ Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
1085
+ """
1086
+ return pulumi.get(self, "timestamp_tz_output_format")
1087
+
1088
+ @timestamp_tz_output_format.setter
1089
+ def timestamp_tz_output_format(self, value: Optional[pulumi.Input[str]]):
1090
+ pulumi.set(self, "timestamp_tz_output_format", value)
1091
+
1092
+ @property
1093
+ @pulumi.getter
1094
+ def timezone(self) -> Optional[pulumi.Input[str]]:
1095
+ """
1096
+ Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
1097
+ """
1098
+ return pulumi.get(self, "timezone")
1099
+
1100
+ @timezone.setter
1101
+ def timezone(self, value: Optional[pulumi.Input[str]]):
1102
+ pulumi.set(self, "timezone", value)
1103
+
1104
+ @property
1105
+ @pulumi.getter(name="traceLevel")
1106
+ def trace_level(self) -> Optional[pulumi.Input[str]]:
1107
+ """
1108
+ Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
1109
+ """
1110
+ return pulumi.get(self, "trace_level")
1111
+
1112
+ @trace_level.setter
1113
+ def trace_level(self, value: Optional[pulumi.Input[str]]):
1114
+ pulumi.set(self, "trace_level", value)
1115
+
1116
+ @property
1117
+ @pulumi.getter(name="transactionAbortOnError")
1118
+ def transaction_abort_on_error(self) -> Optional[pulumi.Input[bool]]:
1119
+ """
1120
+ Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
1121
+ """
1122
+ return pulumi.get(self, "transaction_abort_on_error")
1123
+
1124
+ @transaction_abort_on_error.setter
1125
+ def transaction_abort_on_error(self, value: Optional[pulumi.Input[bool]]):
1126
+ pulumi.set(self, "transaction_abort_on_error", value)
1127
+
1128
+ @property
1129
+ @pulumi.getter(name="transactionDefaultIsolationLevel")
1130
+ def transaction_default_isolation_level(self) -> Optional[pulumi.Input[str]]:
1131
+ """
1132
+ Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
1133
+ """
1134
+ return pulumi.get(self, "transaction_default_isolation_level")
1135
+
1136
+ @transaction_default_isolation_level.setter
1137
+ def transaction_default_isolation_level(self, value: Optional[pulumi.Input[str]]):
1138
+ pulumi.set(self, "transaction_default_isolation_level", value)
1139
+
1140
+ @property
1141
+ @pulumi.getter(name="twoDigitCenturyStart")
1142
+ def two_digit_century_start(self) -> Optional[pulumi.Input[int]]:
1143
+ """
1144
+ Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
1145
+ """
1146
+ return pulumi.get(self, "two_digit_century_start")
1147
+
1148
+ @two_digit_century_start.setter
1149
+ def two_digit_century_start(self, value: Optional[pulumi.Input[int]]):
1150
+ pulumi.set(self, "two_digit_century_start", value)
1151
+
1152
+ @property
1153
+ @pulumi.getter(name="unsupportedDdlAction")
1154
+ def unsupported_ddl_action(self) -> Optional[pulumi.Input[str]]:
1155
+ """
1156
+ Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
1157
+ """
1158
+ return pulumi.get(self, "unsupported_ddl_action")
1159
+
1160
+ @unsupported_ddl_action.setter
1161
+ def unsupported_ddl_action(self, value: Optional[pulumi.Input[str]]):
1162
+ pulumi.set(self, "unsupported_ddl_action", value)
1163
+
1164
+ @property
1165
+ @pulumi.getter(name="useCachedResult")
1166
+ def use_cached_result(self) -> Optional[pulumi.Input[bool]]:
1167
+ """
1168
+ Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
1169
+ """
1170
+ return pulumi.get(self, "use_cached_result")
1171
+
1172
+ @use_cached_result.setter
1173
+ def use_cached_result(self, value: Optional[pulumi.Input[bool]]):
1174
+ pulumi.set(self, "use_cached_result", value)
1175
+
1176
+ @property
1177
+ @pulumi.getter(name="weekOfYearPolicy")
1178
+ def week_of_year_policy(self) -> Optional[pulumi.Input[int]]:
1179
+ """
1180
+ Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
1181
+ """
1182
+ return pulumi.get(self, "week_of_year_policy")
1183
+
1184
+ @week_of_year_policy.setter
1185
+ def week_of_year_policy(self, value: Optional[pulumi.Input[int]]):
1186
+ pulumi.set(self, "week_of_year_policy", value)
1187
+
1188
+ @property
1189
+ @pulumi.getter(name="weekStart")
1190
+ def week_start(self) -> Optional[pulumi.Input[int]]:
1191
+ """
1192
+ Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
1193
+ """
1194
+ return pulumi.get(self, "week_start")
1195
+
1196
+ @week_start.setter
1197
+ def week_start(self, value: Optional[pulumi.Input[int]]):
1198
+ pulumi.set(self, "week_start", value)
1199
+
1200
+
1201
+ @pulumi.input_type
1202
+ class _LegacyServiceUserState:
1203
+ def __init__(__self__, *,
1204
+ abort_detached_query: Optional[pulumi.Input[bool]] = None,
1205
+ autocommit: Optional[pulumi.Input[bool]] = None,
1206
+ binary_input_format: Optional[pulumi.Input[str]] = None,
1207
+ binary_output_format: Optional[pulumi.Input[str]] = None,
1208
+ client_memory_limit: Optional[pulumi.Input[int]] = None,
1209
+ client_metadata_request_use_connection_ctx: Optional[pulumi.Input[bool]] = None,
1210
+ client_prefetch_threads: Optional[pulumi.Input[int]] = None,
1211
+ client_result_chunk_size: Optional[pulumi.Input[int]] = None,
1212
+ client_result_column_case_insensitive: Optional[pulumi.Input[bool]] = None,
1213
+ client_session_keep_alive: Optional[pulumi.Input[bool]] = None,
1214
+ client_session_keep_alive_heartbeat_frequency: Optional[pulumi.Input[int]] = None,
1215
+ client_timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
1216
+ comment: Optional[pulumi.Input[str]] = None,
1217
+ date_input_format: Optional[pulumi.Input[str]] = None,
1218
+ date_output_format: Optional[pulumi.Input[str]] = None,
1219
+ days_to_expiry: Optional[pulumi.Input[int]] = None,
1220
+ default_namespace: Optional[pulumi.Input[str]] = None,
1221
+ default_role: Optional[pulumi.Input[str]] = None,
1222
+ default_secondary_roles_option: Optional[pulumi.Input[str]] = None,
1223
+ default_warehouse: Optional[pulumi.Input[str]] = None,
1224
+ disabled: Optional[pulumi.Input[str]] = None,
1225
+ display_name: Optional[pulumi.Input[str]] = None,
1226
+ email: Optional[pulumi.Input[str]] = None,
1227
+ enable_unload_physical_type_optimization: Optional[pulumi.Input[bool]] = None,
1228
+ enable_unredacted_query_syntax_error: Optional[pulumi.Input[bool]] = None,
1229
+ error_on_nondeterministic_merge: Optional[pulumi.Input[bool]] = None,
1230
+ error_on_nondeterministic_update: Optional[pulumi.Input[bool]] = None,
1231
+ fully_qualified_name: Optional[pulumi.Input[str]] = None,
1232
+ geography_output_format: Optional[pulumi.Input[str]] = None,
1233
+ geometry_output_format: Optional[pulumi.Input[str]] = None,
1234
+ jdbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
1235
+ jdbc_treat_timestamp_ntz_as_utc: Optional[pulumi.Input[bool]] = None,
1236
+ jdbc_use_session_timezone: Optional[pulumi.Input[bool]] = None,
1237
+ json_indent: Optional[pulumi.Input[int]] = None,
1238
+ lock_timeout: Optional[pulumi.Input[int]] = None,
1239
+ log_level: Optional[pulumi.Input[str]] = None,
1240
+ login_name: Optional[pulumi.Input[str]] = None,
1241
+ mins_to_unlock: Optional[pulumi.Input[int]] = None,
1242
+ multi_statement_count: Optional[pulumi.Input[int]] = None,
1243
+ must_change_password: Optional[pulumi.Input[str]] = None,
1244
+ name: Optional[pulumi.Input[str]] = None,
1245
+ network_policy: Optional[pulumi.Input[str]] = None,
1246
+ noorder_sequence_as_default: Optional[pulumi.Input[bool]] = None,
1247
+ odbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
1248
+ parameters: Optional[pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserParameterArgs']]]] = None,
1249
+ password: Optional[pulumi.Input[str]] = None,
1250
+ prevent_unload_to_internal_stages: Optional[pulumi.Input[bool]] = None,
1251
+ query_tag: Optional[pulumi.Input[str]] = None,
1252
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[bool]] = None,
1253
+ rows_per_resultset: Optional[pulumi.Input[int]] = None,
1254
+ rsa_public_key: Optional[pulumi.Input[str]] = None,
1255
+ rsa_public_key2: Optional[pulumi.Input[str]] = None,
1256
+ s3_stage_vpce_dns_name: Optional[pulumi.Input[str]] = None,
1257
+ search_path: Optional[pulumi.Input[str]] = None,
1258
+ show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserShowOutputArgs']]]] = None,
1259
+ simulated_data_sharing_consumer: Optional[pulumi.Input[str]] = None,
1260
+ statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
1261
+ statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
1262
+ strict_json_output: Optional[pulumi.Input[bool]] = None,
1263
+ time_input_format: Optional[pulumi.Input[str]] = None,
1264
+ time_output_format: Optional[pulumi.Input[str]] = None,
1265
+ timestamp_day_is_always24h: Optional[pulumi.Input[bool]] = None,
1266
+ timestamp_input_format: Optional[pulumi.Input[str]] = None,
1267
+ timestamp_ltz_output_format: Optional[pulumi.Input[str]] = None,
1268
+ timestamp_ntz_output_format: Optional[pulumi.Input[str]] = None,
1269
+ timestamp_output_format: Optional[pulumi.Input[str]] = None,
1270
+ timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
1271
+ timestamp_tz_output_format: Optional[pulumi.Input[str]] = None,
1272
+ timezone: Optional[pulumi.Input[str]] = None,
1273
+ trace_level: Optional[pulumi.Input[str]] = None,
1274
+ transaction_abort_on_error: Optional[pulumi.Input[bool]] = None,
1275
+ transaction_default_isolation_level: Optional[pulumi.Input[str]] = None,
1276
+ two_digit_century_start: Optional[pulumi.Input[int]] = None,
1277
+ unsupported_ddl_action: Optional[pulumi.Input[str]] = None,
1278
+ use_cached_result: Optional[pulumi.Input[bool]] = None,
1279
+ user_type: Optional[pulumi.Input[str]] = None,
1280
+ week_of_year_policy: Optional[pulumi.Input[int]] = None,
1281
+ week_start: Optional[pulumi.Input[int]] = None):
1282
+ """
1283
+ Input properties used for looking up and filtering LegacyServiceUser resources.
1284
+ :param pulumi.Input[bool] abort_detached_query: Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
1285
+ :param pulumi.Input[bool] autocommit: Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
1286
+ :param pulumi.Input[str] binary_input_format: The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
1287
+ :param pulumi.Input[str] binary_output_format: The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
1288
+ :param pulumi.Input[int] client_memory_limit: Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
1289
+ :param pulumi.Input[bool] client_metadata_request_use_connection_ctx: For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
1290
+ :param pulumi.Input[int] client_prefetch_threads: Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
1291
+ :param pulumi.Input[int] client_result_chunk_size: Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
1292
+ :param pulumi.Input[bool] client_result_column_case_insensitive: Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
1293
+ :param pulumi.Input[bool] client_session_keep_alive: Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
1294
+ :param pulumi.Input[int] client_session_keep_alive_heartbeat_frequency: Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
1295
+ :param pulumi.Input[str] client_timestamp_type_mapping: Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
1296
+ :param pulumi.Input[str] comment: Specifies a comment for the user.
1297
+ :param pulumi.Input[str] date_input_format: Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
1298
+ :param pulumi.Input[str] date_output_format: Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
1299
+ :param pulumi.Input[str] default_namespace: Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
1300
+ :param pulumi.Input[str] default_role: Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
1301
+ :param pulumi.Input[str] default_secondary_roles_option: Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
1302
+ :param pulumi.Input[str] default_warehouse: Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
1303
+ :param pulumi.Input[str] disabled: Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
1304
+ :param pulumi.Input[str] display_name: Name displayed for the user in the Snowflake web interface.
1305
+ :param pulumi.Input[str] email: Email address for the user.
1306
+ :param pulumi.Input[bool] enable_unload_physical_type_optimization: Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
1307
+ :param pulumi.Input[bool] enable_unredacted_query_syntax_error: Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
1308
+ :param pulumi.Input[bool] error_on_nondeterministic_merge: Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
1309
+ :param pulumi.Input[bool] error_on_nondeterministic_update: Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
1310
+ :param pulumi.Input[str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
1311
+ :param pulumi.Input[str] geography_output_format: Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
1312
+ :param pulumi.Input[str] geometry_output_format: Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
1313
+ :param pulumi.Input[bool] jdbc_treat_decimal_as_int: Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
1314
+ :param pulumi.Input[bool] jdbc_treat_timestamp_ntz_as_utc: Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
1315
+ :param pulumi.Input[bool] jdbc_use_session_timezone: Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
1316
+ :param pulumi.Input[int] json_indent: Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
1317
+ :param pulumi.Input[int] lock_timeout: Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
1318
+ :param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
1319
+ :param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
1320
+ :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
1321
+ :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
1322
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
1323
+ :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
1324
+ :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
1325
+ :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
1326
+ :param pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserParameterArgs']]] parameters: Outputs the result of `SHOW PARAMETERS IN USER` for the given user.
1327
+ :param pulumi.Input[bool] prevent_unload_to_internal_stages: Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
1328
+ :param pulumi.Input[str] query_tag: Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
1329
+ :param pulumi.Input[bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
1330
+ :param pulumi.Input[int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
1331
+ :param pulumi.Input[str] rsa_public_key: Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
1332
+ :param pulumi.Input[str] rsa_public_key2: Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
1333
+ :param pulumi.Input[str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
1334
+ :param pulumi.Input[str] search_path: Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
1335
+ :param pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserShowOutputArgs']]] show_outputs: Outputs the result of `SHOW USER` for the given user.
1336
+ :param pulumi.Input[str] simulated_data_sharing_consumer: Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
1337
+ :param pulumi.Input[int] statement_queued_timeout_in_seconds: Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
1338
+ :param pulumi.Input[int] statement_timeout_in_seconds: Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
1339
+ :param pulumi.Input[bool] strict_json_output: This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
1340
+ :param pulumi.Input[str] time_input_format: Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
1341
+ :param pulumi.Input[str] time_output_format: Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
1342
+ :param pulumi.Input[bool] timestamp_day_is_always24h: Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
1343
+ :param pulumi.Input[str] timestamp_input_format: Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
1344
+ :param pulumi.Input[str] timestamp_ltz_output_format: Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
1345
+ :param pulumi.Input[str] timestamp_ntz_output_format: Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
1346
+ :param pulumi.Input[str] timestamp_output_format: Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
1347
+ :param pulumi.Input[str] timestamp_type_mapping: Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
1348
+ :param pulumi.Input[str] timestamp_tz_output_format: Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
1349
+ :param pulumi.Input[str] timezone: Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
1350
+ :param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
1351
+ :param pulumi.Input[bool] transaction_abort_on_error: Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
1352
+ :param pulumi.Input[str] transaction_default_isolation_level: Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
1353
+ :param pulumi.Input[int] two_digit_century_start: Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
1354
+ :param pulumi.Input[str] unsupported_ddl_action: Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
1355
+ :param pulumi.Input[bool] use_cached_result: Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
1356
+ :param pulumi.Input[str] user_type: Specifies a type for the user.
1357
+ :param pulumi.Input[int] week_of_year_policy: Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
1358
+ :param pulumi.Input[int] week_start: Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
1359
+ """
1360
+ if abort_detached_query is not None:
1361
+ pulumi.set(__self__, "abort_detached_query", abort_detached_query)
1362
+ if autocommit is not None:
1363
+ pulumi.set(__self__, "autocommit", autocommit)
1364
+ if binary_input_format is not None:
1365
+ pulumi.set(__self__, "binary_input_format", binary_input_format)
1366
+ if binary_output_format is not None:
1367
+ pulumi.set(__self__, "binary_output_format", binary_output_format)
1368
+ if client_memory_limit is not None:
1369
+ pulumi.set(__self__, "client_memory_limit", client_memory_limit)
1370
+ if client_metadata_request_use_connection_ctx is not None:
1371
+ pulumi.set(__self__, "client_metadata_request_use_connection_ctx", client_metadata_request_use_connection_ctx)
1372
+ if client_prefetch_threads is not None:
1373
+ pulumi.set(__self__, "client_prefetch_threads", client_prefetch_threads)
1374
+ if client_result_chunk_size is not None:
1375
+ pulumi.set(__self__, "client_result_chunk_size", client_result_chunk_size)
1376
+ if client_result_column_case_insensitive is not None:
1377
+ pulumi.set(__self__, "client_result_column_case_insensitive", client_result_column_case_insensitive)
1378
+ if client_session_keep_alive is not None:
1379
+ pulumi.set(__self__, "client_session_keep_alive", client_session_keep_alive)
1380
+ if client_session_keep_alive_heartbeat_frequency is not None:
1381
+ pulumi.set(__self__, "client_session_keep_alive_heartbeat_frequency", client_session_keep_alive_heartbeat_frequency)
1382
+ if client_timestamp_type_mapping is not None:
1383
+ pulumi.set(__self__, "client_timestamp_type_mapping", client_timestamp_type_mapping)
1384
+ if comment is not None:
1385
+ pulumi.set(__self__, "comment", comment)
1386
+ if date_input_format is not None:
1387
+ pulumi.set(__self__, "date_input_format", date_input_format)
1388
+ if date_output_format is not None:
1389
+ pulumi.set(__self__, "date_output_format", date_output_format)
1390
+ if days_to_expiry is not None:
1391
+ pulumi.set(__self__, "days_to_expiry", days_to_expiry)
1392
+ if default_namespace is not None:
1393
+ pulumi.set(__self__, "default_namespace", default_namespace)
1394
+ if default_role is not None:
1395
+ pulumi.set(__self__, "default_role", default_role)
1396
+ if default_secondary_roles_option is not None:
1397
+ pulumi.set(__self__, "default_secondary_roles_option", default_secondary_roles_option)
1398
+ if default_warehouse is not None:
1399
+ pulumi.set(__self__, "default_warehouse", default_warehouse)
1400
+ if disabled is not None:
1401
+ pulumi.set(__self__, "disabled", disabled)
1402
+ if display_name is not None:
1403
+ pulumi.set(__self__, "display_name", display_name)
1404
+ if email is not None:
1405
+ pulumi.set(__self__, "email", email)
1406
+ if enable_unload_physical_type_optimization is not None:
1407
+ pulumi.set(__self__, "enable_unload_physical_type_optimization", enable_unload_physical_type_optimization)
1408
+ if enable_unredacted_query_syntax_error is not None:
1409
+ pulumi.set(__self__, "enable_unredacted_query_syntax_error", enable_unredacted_query_syntax_error)
1410
+ if error_on_nondeterministic_merge is not None:
1411
+ pulumi.set(__self__, "error_on_nondeterministic_merge", error_on_nondeterministic_merge)
1412
+ if error_on_nondeterministic_update is not None:
1413
+ pulumi.set(__self__, "error_on_nondeterministic_update", error_on_nondeterministic_update)
1414
+ if fully_qualified_name is not None:
1415
+ pulumi.set(__self__, "fully_qualified_name", fully_qualified_name)
1416
+ if geography_output_format is not None:
1417
+ pulumi.set(__self__, "geography_output_format", geography_output_format)
1418
+ if geometry_output_format is not None:
1419
+ pulumi.set(__self__, "geometry_output_format", geometry_output_format)
1420
+ if jdbc_treat_decimal_as_int is not None:
1421
+ pulumi.set(__self__, "jdbc_treat_decimal_as_int", jdbc_treat_decimal_as_int)
1422
+ if jdbc_treat_timestamp_ntz_as_utc is not None:
1423
+ pulumi.set(__self__, "jdbc_treat_timestamp_ntz_as_utc", jdbc_treat_timestamp_ntz_as_utc)
1424
+ if jdbc_use_session_timezone is not None:
1425
+ pulumi.set(__self__, "jdbc_use_session_timezone", jdbc_use_session_timezone)
1426
+ if json_indent is not None:
1427
+ pulumi.set(__self__, "json_indent", json_indent)
1428
+ if lock_timeout is not None:
1429
+ pulumi.set(__self__, "lock_timeout", lock_timeout)
1430
+ if log_level is not None:
1431
+ pulumi.set(__self__, "log_level", log_level)
1432
+ if login_name is not None:
1433
+ pulumi.set(__self__, "login_name", login_name)
1434
+ if mins_to_unlock is not None:
1435
+ pulumi.set(__self__, "mins_to_unlock", mins_to_unlock)
1436
+ if multi_statement_count is not None:
1437
+ pulumi.set(__self__, "multi_statement_count", multi_statement_count)
1438
+ if must_change_password is not None:
1439
+ pulumi.set(__self__, "must_change_password", must_change_password)
1440
+ if name is not None:
1441
+ pulumi.set(__self__, "name", name)
1442
+ if network_policy is not None:
1443
+ pulumi.set(__self__, "network_policy", network_policy)
1444
+ if noorder_sequence_as_default is not None:
1445
+ pulumi.set(__self__, "noorder_sequence_as_default", noorder_sequence_as_default)
1446
+ if odbc_treat_decimal_as_int is not None:
1447
+ pulumi.set(__self__, "odbc_treat_decimal_as_int", odbc_treat_decimal_as_int)
1448
+ if parameters is not None:
1449
+ pulumi.set(__self__, "parameters", parameters)
1450
+ if password is not None:
1451
+ pulumi.set(__self__, "password", password)
1452
+ if prevent_unload_to_internal_stages is not None:
1453
+ pulumi.set(__self__, "prevent_unload_to_internal_stages", prevent_unload_to_internal_stages)
1454
+ if query_tag is not None:
1455
+ pulumi.set(__self__, "query_tag", query_tag)
1456
+ if quoted_identifiers_ignore_case is not None:
1457
+ pulumi.set(__self__, "quoted_identifiers_ignore_case", quoted_identifiers_ignore_case)
1458
+ if rows_per_resultset is not None:
1459
+ pulumi.set(__self__, "rows_per_resultset", rows_per_resultset)
1460
+ if rsa_public_key is not None:
1461
+ pulumi.set(__self__, "rsa_public_key", rsa_public_key)
1462
+ if rsa_public_key2 is not None:
1463
+ pulumi.set(__self__, "rsa_public_key2", rsa_public_key2)
1464
+ if s3_stage_vpce_dns_name is not None:
1465
+ pulumi.set(__self__, "s3_stage_vpce_dns_name", s3_stage_vpce_dns_name)
1466
+ if search_path is not None:
1467
+ pulumi.set(__self__, "search_path", search_path)
1468
+ if show_outputs is not None:
1469
+ pulumi.set(__self__, "show_outputs", show_outputs)
1470
+ if simulated_data_sharing_consumer is not None:
1471
+ pulumi.set(__self__, "simulated_data_sharing_consumer", simulated_data_sharing_consumer)
1472
+ if statement_queued_timeout_in_seconds is not None:
1473
+ pulumi.set(__self__, "statement_queued_timeout_in_seconds", statement_queued_timeout_in_seconds)
1474
+ if statement_timeout_in_seconds is not None:
1475
+ pulumi.set(__self__, "statement_timeout_in_seconds", statement_timeout_in_seconds)
1476
+ if strict_json_output is not None:
1477
+ pulumi.set(__self__, "strict_json_output", strict_json_output)
1478
+ if time_input_format is not None:
1479
+ pulumi.set(__self__, "time_input_format", time_input_format)
1480
+ if time_output_format is not None:
1481
+ pulumi.set(__self__, "time_output_format", time_output_format)
1482
+ if timestamp_day_is_always24h is not None:
1483
+ pulumi.set(__self__, "timestamp_day_is_always24h", timestamp_day_is_always24h)
1484
+ if timestamp_input_format is not None:
1485
+ pulumi.set(__self__, "timestamp_input_format", timestamp_input_format)
1486
+ if timestamp_ltz_output_format is not None:
1487
+ pulumi.set(__self__, "timestamp_ltz_output_format", timestamp_ltz_output_format)
1488
+ if timestamp_ntz_output_format is not None:
1489
+ pulumi.set(__self__, "timestamp_ntz_output_format", timestamp_ntz_output_format)
1490
+ if timestamp_output_format is not None:
1491
+ pulumi.set(__self__, "timestamp_output_format", timestamp_output_format)
1492
+ if timestamp_type_mapping is not None:
1493
+ pulumi.set(__self__, "timestamp_type_mapping", timestamp_type_mapping)
1494
+ if timestamp_tz_output_format is not None:
1495
+ pulumi.set(__self__, "timestamp_tz_output_format", timestamp_tz_output_format)
1496
+ if timezone is not None:
1497
+ pulumi.set(__self__, "timezone", timezone)
1498
+ if trace_level is not None:
1499
+ pulumi.set(__self__, "trace_level", trace_level)
1500
+ if transaction_abort_on_error is not None:
1501
+ pulumi.set(__self__, "transaction_abort_on_error", transaction_abort_on_error)
1502
+ if transaction_default_isolation_level is not None:
1503
+ pulumi.set(__self__, "transaction_default_isolation_level", transaction_default_isolation_level)
1504
+ if two_digit_century_start is not None:
1505
+ pulumi.set(__self__, "two_digit_century_start", two_digit_century_start)
1506
+ if unsupported_ddl_action is not None:
1507
+ pulumi.set(__self__, "unsupported_ddl_action", unsupported_ddl_action)
1508
+ if use_cached_result is not None:
1509
+ pulumi.set(__self__, "use_cached_result", use_cached_result)
1510
+ if user_type is not None:
1511
+ pulumi.set(__self__, "user_type", user_type)
1512
+ if week_of_year_policy is not None:
1513
+ pulumi.set(__self__, "week_of_year_policy", week_of_year_policy)
1514
+ if week_start is not None:
1515
+ pulumi.set(__self__, "week_start", week_start)
1516
+
1517
+ @property
1518
+ @pulumi.getter(name="abortDetachedQuery")
1519
+ def abort_detached_query(self) -> Optional[pulumi.Input[bool]]:
1520
+ """
1521
+ Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
1522
+ """
1523
+ return pulumi.get(self, "abort_detached_query")
1524
+
1525
+ @abort_detached_query.setter
1526
+ def abort_detached_query(self, value: Optional[pulumi.Input[bool]]):
1527
+ pulumi.set(self, "abort_detached_query", value)
1528
+
1529
+ @property
1530
+ @pulumi.getter
1531
+ def autocommit(self) -> Optional[pulumi.Input[bool]]:
1532
+ """
1533
+ Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
1534
+ """
1535
+ return pulumi.get(self, "autocommit")
1536
+
1537
+ @autocommit.setter
1538
+ def autocommit(self, value: Optional[pulumi.Input[bool]]):
1539
+ pulumi.set(self, "autocommit", value)
1540
+
1541
+ @property
1542
+ @pulumi.getter(name="binaryInputFormat")
1543
+ def binary_input_format(self) -> Optional[pulumi.Input[str]]:
1544
+ """
1545
+ The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
1546
+ """
1547
+ return pulumi.get(self, "binary_input_format")
1548
+
1549
+ @binary_input_format.setter
1550
+ def binary_input_format(self, value: Optional[pulumi.Input[str]]):
1551
+ pulumi.set(self, "binary_input_format", value)
1552
+
1553
+ @property
1554
+ @pulumi.getter(name="binaryOutputFormat")
1555
+ def binary_output_format(self) -> Optional[pulumi.Input[str]]:
1556
+ """
1557
+ The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
1558
+ """
1559
+ return pulumi.get(self, "binary_output_format")
1560
+
1561
+ @binary_output_format.setter
1562
+ def binary_output_format(self, value: Optional[pulumi.Input[str]]):
1563
+ pulumi.set(self, "binary_output_format", value)
1564
+
1565
+ @property
1566
+ @pulumi.getter(name="clientMemoryLimit")
1567
+ def client_memory_limit(self) -> Optional[pulumi.Input[int]]:
1568
+ """
1569
+ Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
1570
+ """
1571
+ return pulumi.get(self, "client_memory_limit")
1572
+
1573
+ @client_memory_limit.setter
1574
+ def client_memory_limit(self, value: Optional[pulumi.Input[int]]):
1575
+ pulumi.set(self, "client_memory_limit", value)
1576
+
1577
+ @property
1578
+ @pulumi.getter(name="clientMetadataRequestUseConnectionCtx")
1579
+ def client_metadata_request_use_connection_ctx(self) -> Optional[pulumi.Input[bool]]:
1580
+ """
1581
+ For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
1582
+ """
1583
+ return pulumi.get(self, "client_metadata_request_use_connection_ctx")
1584
+
1585
+ @client_metadata_request_use_connection_ctx.setter
1586
+ def client_metadata_request_use_connection_ctx(self, value: Optional[pulumi.Input[bool]]):
1587
+ pulumi.set(self, "client_metadata_request_use_connection_ctx", value)
1588
+
1589
+ @property
1590
+ @pulumi.getter(name="clientPrefetchThreads")
1591
+ def client_prefetch_threads(self) -> Optional[pulumi.Input[int]]:
1592
+ """
1593
+ Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
1594
+ """
1595
+ return pulumi.get(self, "client_prefetch_threads")
1596
+
1597
+ @client_prefetch_threads.setter
1598
+ def client_prefetch_threads(self, value: Optional[pulumi.Input[int]]):
1599
+ pulumi.set(self, "client_prefetch_threads", value)
1600
+
1601
+ @property
1602
+ @pulumi.getter(name="clientResultChunkSize")
1603
+ def client_result_chunk_size(self) -> Optional[pulumi.Input[int]]:
1604
+ """
1605
+ Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
1606
+ """
1607
+ return pulumi.get(self, "client_result_chunk_size")
1608
+
1609
+ @client_result_chunk_size.setter
1610
+ def client_result_chunk_size(self, value: Optional[pulumi.Input[int]]):
1611
+ pulumi.set(self, "client_result_chunk_size", value)
1612
+
1613
+ @property
1614
+ @pulumi.getter(name="clientResultColumnCaseInsensitive")
1615
+ def client_result_column_case_insensitive(self) -> Optional[pulumi.Input[bool]]:
1616
+ """
1617
+ Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
1618
+ """
1619
+ return pulumi.get(self, "client_result_column_case_insensitive")
1620
+
1621
+ @client_result_column_case_insensitive.setter
1622
+ def client_result_column_case_insensitive(self, value: Optional[pulumi.Input[bool]]):
1623
+ pulumi.set(self, "client_result_column_case_insensitive", value)
1624
+
1625
+ @property
1626
+ @pulumi.getter(name="clientSessionKeepAlive")
1627
+ def client_session_keep_alive(self) -> Optional[pulumi.Input[bool]]:
1628
+ """
1629
+ Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
1630
+ """
1631
+ return pulumi.get(self, "client_session_keep_alive")
1632
+
1633
+ @client_session_keep_alive.setter
1634
+ def client_session_keep_alive(self, value: Optional[pulumi.Input[bool]]):
1635
+ pulumi.set(self, "client_session_keep_alive", value)
1636
+
1637
+ @property
1638
+ @pulumi.getter(name="clientSessionKeepAliveHeartbeatFrequency")
1639
+ def client_session_keep_alive_heartbeat_frequency(self) -> Optional[pulumi.Input[int]]:
1640
+ """
1641
+ Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
1642
+ """
1643
+ return pulumi.get(self, "client_session_keep_alive_heartbeat_frequency")
1644
+
1645
+ @client_session_keep_alive_heartbeat_frequency.setter
1646
+ def client_session_keep_alive_heartbeat_frequency(self, value: Optional[pulumi.Input[int]]):
1647
+ pulumi.set(self, "client_session_keep_alive_heartbeat_frequency", value)
1648
+
1649
+ @property
1650
+ @pulumi.getter(name="clientTimestampTypeMapping")
1651
+ def client_timestamp_type_mapping(self) -> Optional[pulumi.Input[str]]:
1652
+ """
1653
+ Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
1654
+ """
1655
+ return pulumi.get(self, "client_timestamp_type_mapping")
1656
+
1657
+ @client_timestamp_type_mapping.setter
1658
+ def client_timestamp_type_mapping(self, value: Optional[pulumi.Input[str]]):
1659
+ pulumi.set(self, "client_timestamp_type_mapping", value)
1660
+
1661
+ @property
1662
+ @pulumi.getter
1663
+ def comment(self) -> Optional[pulumi.Input[str]]:
1664
+ """
1665
+ Specifies a comment for the user.
1666
+ """
1667
+ return pulumi.get(self, "comment")
1668
+
1669
+ @comment.setter
1670
+ def comment(self, value: Optional[pulumi.Input[str]]):
1671
+ pulumi.set(self, "comment", value)
1672
+
1673
+ @property
1674
+ @pulumi.getter(name="dateInputFormat")
1675
+ def date_input_format(self) -> Optional[pulumi.Input[str]]:
1676
+ """
1677
+ Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
1678
+ """
1679
+ return pulumi.get(self, "date_input_format")
1680
+
1681
+ @date_input_format.setter
1682
+ def date_input_format(self, value: Optional[pulumi.Input[str]]):
1683
+ pulumi.set(self, "date_input_format", value)
1684
+
1685
+ @property
1686
+ @pulumi.getter(name="dateOutputFormat")
1687
+ def date_output_format(self) -> Optional[pulumi.Input[str]]:
1688
+ """
1689
+ Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
1690
+ """
1691
+ return pulumi.get(self, "date_output_format")
1692
+
1693
+ @date_output_format.setter
1694
+ def date_output_format(self, value: Optional[pulumi.Input[str]]):
1695
+ pulumi.set(self, "date_output_format", value)
1696
+
1697
+ @property
1698
+ @pulumi.getter(name="daysToExpiry")
1699
+ def days_to_expiry(self) -> Optional[pulumi.Input[int]]:
1700
+ return pulumi.get(self, "days_to_expiry")
1701
+
1702
+ @days_to_expiry.setter
1703
+ def days_to_expiry(self, value: Optional[pulumi.Input[int]]):
1704
+ pulumi.set(self, "days_to_expiry", value)
1705
+
1706
+ @property
1707
+ @pulumi.getter(name="defaultNamespace")
1708
+ def default_namespace(self) -> Optional[pulumi.Input[str]]:
1709
+ """
1710
+ Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
1711
+ """
1712
+ return pulumi.get(self, "default_namespace")
1713
+
1714
+ @default_namespace.setter
1715
+ def default_namespace(self, value: Optional[pulumi.Input[str]]):
1716
+ pulumi.set(self, "default_namespace", value)
1717
+
1718
+ @property
1719
+ @pulumi.getter(name="defaultRole")
1720
+ def default_role(self) -> Optional[pulumi.Input[str]]:
1721
+ """
1722
+ Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
1723
+ """
1724
+ return pulumi.get(self, "default_role")
1725
+
1726
+ @default_role.setter
1727
+ def default_role(self, value: Optional[pulumi.Input[str]]):
1728
+ pulumi.set(self, "default_role", value)
1729
+
1730
+ @property
1731
+ @pulumi.getter(name="defaultSecondaryRolesOption")
1732
+ def default_secondary_roles_option(self) -> Optional[pulumi.Input[str]]:
1733
+ """
1734
+ Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
1735
+ """
1736
+ return pulumi.get(self, "default_secondary_roles_option")
1737
+
1738
+ @default_secondary_roles_option.setter
1739
+ def default_secondary_roles_option(self, value: Optional[pulumi.Input[str]]):
1740
+ pulumi.set(self, "default_secondary_roles_option", value)
1741
+
1742
+ @property
1743
+ @pulumi.getter(name="defaultWarehouse")
1744
+ def default_warehouse(self) -> Optional[pulumi.Input[str]]:
1745
+ """
1746
+ Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
1747
+ """
1748
+ return pulumi.get(self, "default_warehouse")
1749
+
1750
+ @default_warehouse.setter
1751
+ def default_warehouse(self, value: Optional[pulumi.Input[str]]):
1752
+ pulumi.set(self, "default_warehouse", value)
1753
+
1754
+ @property
1755
+ @pulumi.getter
1756
+ def disabled(self) -> Optional[pulumi.Input[str]]:
1757
+ """
1758
+ Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
1759
+ """
1760
+ return pulumi.get(self, "disabled")
1761
+
1762
+ @disabled.setter
1763
+ def disabled(self, value: Optional[pulumi.Input[str]]):
1764
+ pulumi.set(self, "disabled", value)
1765
+
1766
+ @property
1767
+ @pulumi.getter(name="displayName")
1768
+ def display_name(self) -> Optional[pulumi.Input[str]]:
1769
+ """
1770
+ Name displayed for the user in the Snowflake web interface.
1771
+ """
1772
+ return pulumi.get(self, "display_name")
1773
+
1774
+ @display_name.setter
1775
+ def display_name(self, value: Optional[pulumi.Input[str]]):
1776
+ pulumi.set(self, "display_name", value)
1777
+
1778
+ @property
1779
+ @pulumi.getter
1780
+ def email(self) -> Optional[pulumi.Input[str]]:
1781
+ """
1782
+ Email address for the user.
1783
+ """
1784
+ return pulumi.get(self, "email")
1785
+
1786
+ @email.setter
1787
+ def email(self, value: Optional[pulumi.Input[str]]):
1788
+ pulumi.set(self, "email", value)
1789
+
1790
+ @property
1791
+ @pulumi.getter(name="enableUnloadPhysicalTypeOptimization")
1792
+ def enable_unload_physical_type_optimization(self) -> Optional[pulumi.Input[bool]]:
1793
+ """
1794
+ Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
1795
+ """
1796
+ return pulumi.get(self, "enable_unload_physical_type_optimization")
1797
+
1798
+ @enable_unload_physical_type_optimization.setter
1799
+ def enable_unload_physical_type_optimization(self, value: Optional[pulumi.Input[bool]]):
1800
+ pulumi.set(self, "enable_unload_physical_type_optimization", value)
1801
+
1802
+ @property
1803
+ @pulumi.getter(name="enableUnredactedQuerySyntaxError")
1804
+ def enable_unredacted_query_syntax_error(self) -> Optional[pulumi.Input[bool]]:
1805
+ """
1806
+ Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
1807
+ """
1808
+ return pulumi.get(self, "enable_unredacted_query_syntax_error")
1809
+
1810
+ @enable_unredacted_query_syntax_error.setter
1811
+ def enable_unredacted_query_syntax_error(self, value: Optional[pulumi.Input[bool]]):
1812
+ pulumi.set(self, "enable_unredacted_query_syntax_error", value)
1813
+
1814
+ @property
1815
+ @pulumi.getter(name="errorOnNondeterministicMerge")
1816
+ def error_on_nondeterministic_merge(self) -> Optional[pulumi.Input[bool]]:
1817
+ """
1818
+ Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
1819
+ """
1820
+ return pulumi.get(self, "error_on_nondeterministic_merge")
1821
+
1822
+ @error_on_nondeterministic_merge.setter
1823
+ def error_on_nondeterministic_merge(self, value: Optional[pulumi.Input[bool]]):
1824
+ pulumi.set(self, "error_on_nondeterministic_merge", value)
1825
+
1826
+ @property
1827
+ @pulumi.getter(name="errorOnNondeterministicUpdate")
1828
+ def error_on_nondeterministic_update(self) -> Optional[pulumi.Input[bool]]:
1829
+ """
1830
+ Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
1831
+ """
1832
+ return pulumi.get(self, "error_on_nondeterministic_update")
1833
+
1834
+ @error_on_nondeterministic_update.setter
1835
+ def error_on_nondeterministic_update(self, value: Optional[pulumi.Input[bool]]):
1836
+ pulumi.set(self, "error_on_nondeterministic_update", value)
1837
+
1838
+ @property
1839
+ @pulumi.getter(name="fullyQualifiedName")
1840
+ def fully_qualified_name(self) -> Optional[pulumi.Input[str]]:
1841
+ """
1842
+ Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
1843
+ """
1844
+ return pulumi.get(self, "fully_qualified_name")
1845
+
1846
+ @fully_qualified_name.setter
1847
+ def fully_qualified_name(self, value: Optional[pulumi.Input[str]]):
1848
+ pulumi.set(self, "fully_qualified_name", value)
1849
+
1850
+ @property
1851
+ @pulumi.getter(name="geographyOutputFormat")
1852
+ def geography_output_format(self) -> Optional[pulumi.Input[str]]:
1853
+ """
1854
+ Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
1855
+ """
1856
+ return pulumi.get(self, "geography_output_format")
1857
+
1858
+ @geography_output_format.setter
1859
+ def geography_output_format(self, value: Optional[pulumi.Input[str]]):
1860
+ pulumi.set(self, "geography_output_format", value)
1861
+
1862
+ @property
1863
+ @pulumi.getter(name="geometryOutputFormat")
1864
+ def geometry_output_format(self) -> Optional[pulumi.Input[str]]:
1865
+ """
1866
+ Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
1867
+ """
1868
+ return pulumi.get(self, "geometry_output_format")
1869
+
1870
+ @geometry_output_format.setter
1871
+ def geometry_output_format(self, value: Optional[pulumi.Input[str]]):
1872
+ pulumi.set(self, "geometry_output_format", value)
1873
+
1874
+ @property
1875
+ @pulumi.getter(name="jdbcTreatDecimalAsInt")
1876
+ def jdbc_treat_decimal_as_int(self) -> Optional[pulumi.Input[bool]]:
1877
+ """
1878
+ Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
1879
+ """
1880
+ return pulumi.get(self, "jdbc_treat_decimal_as_int")
1881
+
1882
+ @jdbc_treat_decimal_as_int.setter
1883
+ def jdbc_treat_decimal_as_int(self, value: Optional[pulumi.Input[bool]]):
1884
+ pulumi.set(self, "jdbc_treat_decimal_as_int", value)
1885
+
1886
+ @property
1887
+ @pulumi.getter(name="jdbcTreatTimestampNtzAsUtc")
1888
+ def jdbc_treat_timestamp_ntz_as_utc(self) -> Optional[pulumi.Input[bool]]:
1889
+ """
1890
+ Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
1891
+ """
1892
+ return pulumi.get(self, "jdbc_treat_timestamp_ntz_as_utc")
1893
+
1894
+ @jdbc_treat_timestamp_ntz_as_utc.setter
1895
+ def jdbc_treat_timestamp_ntz_as_utc(self, value: Optional[pulumi.Input[bool]]):
1896
+ pulumi.set(self, "jdbc_treat_timestamp_ntz_as_utc", value)
1897
+
1898
+ @property
1899
+ @pulumi.getter(name="jdbcUseSessionTimezone")
1900
+ def jdbc_use_session_timezone(self) -> Optional[pulumi.Input[bool]]:
1901
+ """
1902
+ Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
1903
+ """
1904
+ return pulumi.get(self, "jdbc_use_session_timezone")
1905
+
1906
+ @jdbc_use_session_timezone.setter
1907
+ def jdbc_use_session_timezone(self, value: Optional[pulumi.Input[bool]]):
1908
+ pulumi.set(self, "jdbc_use_session_timezone", value)
1909
+
1910
+ @property
1911
+ @pulumi.getter(name="jsonIndent")
1912
+ def json_indent(self) -> Optional[pulumi.Input[int]]:
1913
+ """
1914
+ Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
1915
+ """
1916
+ return pulumi.get(self, "json_indent")
1917
+
1918
+ @json_indent.setter
1919
+ def json_indent(self, value: Optional[pulumi.Input[int]]):
1920
+ pulumi.set(self, "json_indent", value)
1921
+
1922
+ @property
1923
+ @pulumi.getter(name="lockTimeout")
1924
+ def lock_timeout(self) -> Optional[pulumi.Input[int]]:
1925
+ """
1926
+ Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
1927
+ """
1928
+ return pulumi.get(self, "lock_timeout")
1929
+
1930
+ @lock_timeout.setter
1931
+ def lock_timeout(self, value: Optional[pulumi.Input[int]]):
1932
+ pulumi.set(self, "lock_timeout", value)
1933
+
1934
+ @property
1935
+ @pulumi.getter(name="logLevel")
1936
+ def log_level(self) -> Optional[pulumi.Input[str]]:
1937
+ """
1938
+ Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
1939
+ """
1940
+ return pulumi.get(self, "log_level")
1941
+
1942
+ @log_level.setter
1943
+ def log_level(self, value: Optional[pulumi.Input[str]]):
1944
+ pulumi.set(self, "log_level", value)
1945
+
1946
+ @property
1947
+ @pulumi.getter(name="loginName")
1948
+ def login_name(self) -> Optional[pulumi.Input[str]]:
1949
+ """
1950
+ The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
1951
+ """
1952
+ return pulumi.get(self, "login_name")
1953
+
1954
+ @login_name.setter
1955
+ def login_name(self, value: Optional[pulumi.Input[str]]):
1956
+ pulumi.set(self, "login_name", value)
1957
+
1958
+ @property
1959
+ @pulumi.getter(name="minsToUnlock")
1960
+ def mins_to_unlock(self) -> Optional[pulumi.Input[int]]:
1961
+ return pulumi.get(self, "mins_to_unlock")
1962
+
1963
+ @mins_to_unlock.setter
1964
+ def mins_to_unlock(self, value: Optional[pulumi.Input[int]]):
1965
+ pulumi.set(self, "mins_to_unlock", value)
1966
+
1967
+ @property
1968
+ @pulumi.getter(name="multiStatementCount")
1969
+ def multi_statement_count(self) -> Optional[pulumi.Input[int]]:
1970
+ """
1971
+ Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
1972
+ """
1973
+ return pulumi.get(self, "multi_statement_count")
1974
+
1975
+ @multi_statement_count.setter
1976
+ def multi_statement_count(self, value: Optional[pulumi.Input[int]]):
1977
+ pulumi.set(self, "multi_statement_count", value)
1978
+
1979
+ @property
1980
+ @pulumi.getter(name="mustChangePassword")
1981
+ def must_change_password(self) -> Optional[pulumi.Input[str]]:
1982
+ """
1983
+ Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
1984
+ """
1985
+ return pulumi.get(self, "must_change_password")
1986
+
1987
+ @must_change_password.setter
1988
+ def must_change_password(self, value: Optional[pulumi.Input[str]]):
1989
+ pulumi.set(self, "must_change_password", value)
1990
+
1991
+ @property
1992
+ @pulumi.getter
1993
+ def name(self) -> Optional[pulumi.Input[str]]:
1994
+ """
1995
+ Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
1996
+ """
1997
+ return pulumi.get(self, "name")
1998
+
1999
+ @name.setter
2000
+ def name(self, value: Optional[pulumi.Input[str]]):
2001
+ pulumi.set(self, "name", value)
2002
+
2003
+ @property
2004
+ @pulumi.getter(name="networkPolicy")
2005
+ def network_policy(self) -> Optional[pulumi.Input[str]]:
2006
+ """
2007
+ Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
2008
+ """
2009
+ return pulumi.get(self, "network_policy")
2010
+
2011
+ @network_policy.setter
2012
+ def network_policy(self, value: Optional[pulumi.Input[str]]):
2013
+ pulumi.set(self, "network_policy", value)
2014
+
2015
+ @property
2016
+ @pulumi.getter(name="noorderSequenceAsDefault")
2017
+ def noorder_sequence_as_default(self) -> Optional[pulumi.Input[bool]]:
2018
+ """
2019
+ Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
2020
+ """
2021
+ return pulumi.get(self, "noorder_sequence_as_default")
2022
+
2023
+ @noorder_sequence_as_default.setter
2024
+ def noorder_sequence_as_default(self, value: Optional[pulumi.Input[bool]]):
2025
+ pulumi.set(self, "noorder_sequence_as_default", value)
2026
+
2027
+ @property
2028
+ @pulumi.getter(name="odbcTreatDecimalAsInt")
2029
+ def odbc_treat_decimal_as_int(self) -> Optional[pulumi.Input[bool]]:
2030
+ """
2031
+ Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
2032
+ """
2033
+ return pulumi.get(self, "odbc_treat_decimal_as_int")
2034
+
2035
+ @odbc_treat_decimal_as_int.setter
2036
+ def odbc_treat_decimal_as_int(self, value: Optional[pulumi.Input[bool]]):
2037
+ pulumi.set(self, "odbc_treat_decimal_as_int", value)
2038
+
2039
+ @property
2040
+ @pulumi.getter
2041
+ def parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserParameterArgs']]]]:
2042
+ """
2043
+ Outputs the result of `SHOW PARAMETERS IN USER` for the given user.
2044
+ """
2045
+ return pulumi.get(self, "parameters")
2046
+
2047
+ @parameters.setter
2048
+ def parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserParameterArgs']]]]):
2049
+ pulumi.set(self, "parameters", value)
2050
+
2051
+ @property
2052
+ @pulumi.getter
2053
+ def password(self) -> Optional[pulumi.Input[str]]:
2054
+ return pulumi.get(self, "password")
2055
+
2056
+ @password.setter
2057
+ def password(self, value: Optional[pulumi.Input[str]]):
2058
+ pulumi.set(self, "password", value)
2059
+
2060
+ @property
2061
+ @pulumi.getter(name="preventUnloadToInternalStages")
2062
+ def prevent_unload_to_internal_stages(self) -> Optional[pulumi.Input[bool]]:
2063
+ """
2064
+ Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
2065
+ """
2066
+ return pulumi.get(self, "prevent_unload_to_internal_stages")
2067
+
2068
+ @prevent_unload_to_internal_stages.setter
2069
+ def prevent_unload_to_internal_stages(self, value: Optional[pulumi.Input[bool]]):
2070
+ pulumi.set(self, "prevent_unload_to_internal_stages", value)
2071
+
2072
+ @property
2073
+ @pulumi.getter(name="queryTag")
2074
+ def query_tag(self) -> Optional[pulumi.Input[str]]:
2075
+ """
2076
+ Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
2077
+ """
2078
+ return pulumi.get(self, "query_tag")
2079
+
2080
+ @query_tag.setter
2081
+ def query_tag(self, value: Optional[pulumi.Input[str]]):
2082
+ pulumi.set(self, "query_tag", value)
2083
+
2084
+ @property
2085
+ @pulumi.getter(name="quotedIdentifiersIgnoreCase")
2086
+ def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[bool]]:
2087
+ """
2088
+ Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
2089
+ """
2090
+ return pulumi.get(self, "quoted_identifiers_ignore_case")
2091
+
2092
+ @quoted_identifiers_ignore_case.setter
2093
+ def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[bool]]):
2094
+ pulumi.set(self, "quoted_identifiers_ignore_case", value)
2095
+
2096
+ @property
2097
+ @pulumi.getter(name="rowsPerResultset")
2098
+ def rows_per_resultset(self) -> Optional[pulumi.Input[int]]:
2099
+ """
2100
+ Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
2101
+ """
2102
+ return pulumi.get(self, "rows_per_resultset")
2103
+
2104
+ @rows_per_resultset.setter
2105
+ def rows_per_resultset(self, value: Optional[pulumi.Input[int]]):
2106
+ pulumi.set(self, "rows_per_resultset", value)
2107
+
2108
+ @property
2109
+ @pulumi.getter(name="rsaPublicKey")
2110
+ def rsa_public_key(self) -> Optional[pulumi.Input[str]]:
2111
+ """
2112
+ Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
2113
+ """
2114
+ return pulumi.get(self, "rsa_public_key")
2115
+
2116
+ @rsa_public_key.setter
2117
+ def rsa_public_key(self, value: Optional[pulumi.Input[str]]):
2118
+ pulumi.set(self, "rsa_public_key", value)
2119
+
2120
+ @property
2121
+ @pulumi.getter(name="rsaPublicKey2")
2122
+ def rsa_public_key2(self) -> Optional[pulumi.Input[str]]:
2123
+ """
2124
+ Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
2125
+ """
2126
+ return pulumi.get(self, "rsa_public_key2")
2127
+
2128
+ @rsa_public_key2.setter
2129
+ def rsa_public_key2(self, value: Optional[pulumi.Input[str]]):
2130
+ pulumi.set(self, "rsa_public_key2", value)
2131
+
2132
+ @property
2133
+ @pulumi.getter(name="s3StageVpceDnsName")
2134
+ def s3_stage_vpce_dns_name(self) -> Optional[pulumi.Input[str]]:
2135
+ """
2136
+ Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
2137
+ """
2138
+ return pulumi.get(self, "s3_stage_vpce_dns_name")
2139
+
2140
+ @s3_stage_vpce_dns_name.setter
2141
+ def s3_stage_vpce_dns_name(self, value: Optional[pulumi.Input[str]]):
2142
+ pulumi.set(self, "s3_stage_vpce_dns_name", value)
2143
+
2144
+ @property
2145
+ @pulumi.getter(name="searchPath")
2146
+ def search_path(self) -> Optional[pulumi.Input[str]]:
2147
+ """
2148
+ Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
2149
+ """
2150
+ return pulumi.get(self, "search_path")
2151
+
2152
+ @search_path.setter
2153
+ def search_path(self, value: Optional[pulumi.Input[str]]):
2154
+ pulumi.set(self, "search_path", value)
2155
+
2156
+ @property
2157
+ @pulumi.getter(name="showOutputs")
2158
+ def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserShowOutputArgs']]]]:
2159
+ """
2160
+ Outputs the result of `SHOW USER` for the given user.
2161
+ """
2162
+ return pulumi.get(self, "show_outputs")
2163
+
2164
+ @show_outputs.setter
2165
+ def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LegacyServiceUserShowOutputArgs']]]]):
2166
+ pulumi.set(self, "show_outputs", value)
2167
+
2168
+ @property
2169
+ @pulumi.getter(name="simulatedDataSharingConsumer")
2170
+ def simulated_data_sharing_consumer(self) -> Optional[pulumi.Input[str]]:
2171
+ """
2172
+ Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
2173
+ """
2174
+ return pulumi.get(self, "simulated_data_sharing_consumer")
2175
+
2176
+ @simulated_data_sharing_consumer.setter
2177
+ def simulated_data_sharing_consumer(self, value: Optional[pulumi.Input[str]]):
2178
+ pulumi.set(self, "simulated_data_sharing_consumer", value)
2179
+
2180
+ @property
2181
+ @pulumi.getter(name="statementQueuedTimeoutInSeconds")
2182
+ def statement_queued_timeout_in_seconds(self) -> Optional[pulumi.Input[int]]:
2183
+ """
2184
+ Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
2185
+ """
2186
+ return pulumi.get(self, "statement_queued_timeout_in_seconds")
2187
+
2188
+ @statement_queued_timeout_in_seconds.setter
2189
+ def statement_queued_timeout_in_seconds(self, value: Optional[pulumi.Input[int]]):
2190
+ pulumi.set(self, "statement_queued_timeout_in_seconds", value)
2191
+
2192
+ @property
2193
+ @pulumi.getter(name="statementTimeoutInSeconds")
2194
+ def statement_timeout_in_seconds(self) -> Optional[pulumi.Input[int]]:
2195
+ """
2196
+ Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
2197
+ """
2198
+ return pulumi.get(self, "statement_timeout_in_seconds")
2199
+
2200
+ @statement_timeout_in_seconds.setter
2201
+ def statement_timeout_in_seconds(self, value: Optional[pulumi.Input[int]]):
2202
+ pulumi.set(self, "statement_timeout_in_seconds", value)
2203
+
2204
+ @property
2205
+ @pulumi.getter(name="strictJsonOutput")
2206
+ def strict_json_output(self) -> Optional[pulumi.Input[bool]]:
2207
+ """
2208
+ This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
2209
+ """
2210
+ return pulumi.get(self, "strict_json_output")
2211
+
2212
+ @strict_json_output.setter
2213
+ def strict_json_output(self, value: Optional[pulumi.Input[bool]]):
2214
+ pulumi.set(self, "strict_json_output", value)
2215
+
2216
+ @property
2217
+ @pulumi.getter(name="timeInputFormat")
2218
+ def time_input_format(self) -> Optional[pulumi.Input[str]]:
2219
+ """
2220
+ Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
2221
+ """
2222
+ return pulumi.get(self, "time_input_format")
2223
+
2224
+ @time_input_format.setter
2225
+ def time_input_format(self, value: Optional[pulumi.Input[str]]):
2226
+ pulumi.set(self, "time_input_format", value)
2227
+
2228
+ @property
2229
+ @pulumi.getter(name="timeOutputFormat")
2230
+ def time_output_format(self) -> Optional[pulumi.Input[str]]:
2231
+ """
2232
+ Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
2233
+ """
2234
+ return pulumi.get(self, "time_output_format")
2235
+
2236
+ @time_output_format.setter
2237
+ def time_output_format(self, value: Optional[pulumi.Input[str]]):
2238
+ pulumi.set(self, "time_output_format", value)
2239
+
2240
+ @property
2241
+ @pulumi.getter(name="timestampDayIsAlways24h")
2242
+ def timestamp_day_is_always24h(self) -> Optional[pulumi.Input[bool]]:
2243
+ """
2244
+ Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
2245
+ """
2246
+ return pulumi.get(self, "timestamp_day_is_always24h")
2247
+
2248
+ @timestamp_day_is_always24h.setter
2249
+ def timestamp_day_is_always24h(self, value: Optional[pulumi.Input[bool]]):
2250
+ pulumi.set(self, "timestamp_day_is_always24h", value)
2251
+
2252
+ @property
2253
+ @pulumi.getter(name="timestampInputFormat")
2254
+ def timestamp_input_format(self) -> Optional[pulumi.Input[str]]:
2255
+ """
2256
+ Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
2257
+ """
2258
+ return pulumi.get(self, "timestamp_input_format")
2259
+
2260
+ @timestamp_input_format.setter
2261
+ def timestamp_input_format(self, value: Optional[pulumi.Input[str]]):
2262
+ pulumi.set(self, "timestamp_input_format", value)
2263
+
2264
+ @property
2265
+ @pulumi.getter(name="timestampLtzOutputFormat")
2266
+ def timestamp_ltz_output_format(self) -> Optional[pulumi.Input[str]]:
2267
+ """
2268
+ Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
2269
+ """
2270
+ return pulumi.get(self, "timestamp_ltz_output_format")
2271
+
2272
+ @timestamp_ltz_output_format.setter
2273
+ def timestamp_ltz_output_format(self, value: Optional[pulumi.Input[str]]):
2274
+ pulumi.set(self, "timestamp_ltz_output_format", value)
2275
+
2276
+ @property
2277
+ @pulumi.getter(name="timestampNtzOutputFormat")
2278
+ def timestamp_ntz_output_format(self) -> Optional[pulumi.Input[str]]:
2279
+ """
2280
+ Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
2281
+ """
2282
+ return pulumi.get(self, "timestamp_ntz_output_format")
2283
+
2284
+ @timestamp_ntz_output_format.setter
2285
+ def timestamp_ntz_output_format(self, value: Optional[pulumi.Input[str]]):
2286
+ pulumi.set(self, "timestamp_ntz_output_format", value)
2287
+
2288
+ @property
2289
+ @pulumi.getter(name="timestampOutputFormat")
2290
+ def timestamp_output_format(self) -> Optional[pulumi.Input[str]]:
2291
+ """
2292
+ Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
2293
+ """
2294
+ return pulumi.get(self, "timestamp_output_format")
2295
+
2296
+ @timestamp_output_format.setter
2297
+ def timestamp_output_format(self, value: Optional[pulumi.Input[str]]):
2298
+ pulumi.set(self, "timestamp_output_format", value)
2299
+
2300
+ @property
2301
+ @pulumi.getter(name="timestampTypeMapping")
2302
+ def timestamp_type_mapping(self) -> Optional[pulumi.Input[str]]:
2303
+ """
2304
+ Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
2305
+ """
2306
+ return pulumi.get(self, "timestamp_type_mapping")
2307
+
2308
+ @timestamp_type_mapping.setter
2309
+ def timestamp_type_mapping(self, value: Optional[pulumi.Input[str]]):
2310
+ pulumi.set(self, "timestamp_type_mapping", value)
2311
+
2312
+ @property
2313
+ @pulumi.getter(name="timestampTzOutputFormat")
2314
+ def timestamp_tz_output_format(self) -> Optional[pulumi.Input[str]]:
2315
+ """
2316
+ Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
2317
+ """
2318
+ return pulumi.get(self, "timestamp_tz_output_format")
2319
+
2320
+ @timestamp_tz_output_format.setter
2321
+ def timestamp_tz_output_format(self, value: Optional[pulumi.Input[str]]):
2322
+ pulumi.set(self, "timestamp_tz_output_format", value)
2323
+
2324
+ @property
2325
+ @pulumi.getter
2326
+ def timezone(self) -> Optional[pulumi.Input[str]]:
2327
+ """
2328
+ Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
2329
+ """
2330
+ return pulumi.get(self, "timezone")
2331
+
2332
+ @timezone.setter
2333
+ def timezone(self, value: Optional[pulumi.Input[str]]):
2334
+ pulumi.set(self, "timezone", value)
2335
+
2336
+ @property
2337
+ @pulumi.getter(name="traceLevel")
2338
+ def trace_level(self) -> Optional[pulumi.Input[str]]:
2339
+ """
2340
+ Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
2341
+ """
2342
+ return pulumi.get(self, "trace_level")
2343
+
2344
+ @trace_level.setter
2345
+ def trace_level(self, value: Optional[pulumi.Input[str]]):
2346
+ pulumi.set(self, "trace_level", value)
2347
+
2348
+ @property
2349
+ @pulumi.getter(name="transactionAbortOnError")
2350
+ def transaction_abort_on_error(self) -> Optional[pulumi.Input[bool]]:
2351
+ """
2352
+ Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
2353
+ """
2354
+ return pulumi.get(self, "transaction_abort_on_error")
2355
+
2356
+ @transaction_abort_on_error.setter
2357
+ def transaction_abort_on_error(self, value: Optional[pulumi.Input[bool]]):
2358
+ pulumi.set(self, "transaction_abort_on_error", value)
2359
+
2360
+ @property
2361
+ @pulumi.getter(name="transactionDefaultIsolationLevel")
2362
+ def transaction_default_isolation_level(self) -> Optional[pulumi.Input[str]]:
2363
+ """
2364
+ Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
2365
+ """
2366
+ return pulumi.get(self, "transaction_default_isolation_level")
2367
+
2368
+ @transaction_default_isolation_level.setter
2369
+ def transaction_default_isolation_level(self, value: Optional[pulumi.Input[str]]):
2370
+ pulumi.set(self, "transaction_default_isolation_level", value)
2371
+
2372
+ @property
2373
+ @pulumi.getter(name="twoDigitCenturyStart")
2374
+ def two_digit_century_start(self) -> Optional[pulumi.Input[int]]:
2375
+ """
2376
+ Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
2377
+ """
2378
+ return pulumi.get(self, "two_digit_century_start")
2379
+
2380
+ @two_digit_century_start.setter
2381
+ def two_digit_century_start(self, value: Optional[pulumi.Input[int]]):
2382
+ pulumi.set(self, "two_digit_century_start", value)
2383
+
2384
+ @property
2385
+ @pulumi.getter(name="unsupportedDdlAction")
2386
+ def unsupported_ddl_action(self) -> Optional[pulumi.Input[str]]:
2387
+ """
2388
+ Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
2389
+ """
2390
+ return pulumi.get(self, "unsupported_ddl_action")
2391
+
2392
+ @unsupported_ddl_action.setter
2393
+ def unsupported_ddl_action(self, value: Optional[pulumi.Input[str]]):
2394
+ pulumi.set(self, "unsupported_ddl_action", value)
2395
+
2396
+ @property
2397
+ @pulumi.getter(name="useCachedResult")
2398
+ def use_cached_result(self) -> Optional[pulumi.Input[bool]]:
2399
+ """
2400
+ Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
2401
+ """
2402
+ return pulumi.get(self, "use_cached_result")
2403
+
2404
+ @use_cached_result.setter
2405
+ def use_cached_result(self, value: Optional[pulumi.Input[bool]]):
2406
+ pulumi.set(self, "use_cached_result", value)
2407
+
2408
+ @property
2409
+ @pulumi.getter(name="userType")
2410
+ def user_type(self) -> Optional[pulumi.Input[str]]:
2411
+ """
2412
+ Specifies a type for the user.
2413
+ """
2414
+ return pulumi.get(self, "user_type")
2415
+
2416
+ @user_type.setter
2417
+ def user_type(self, value: Optional[pulumi.Input[str]]):
2418
+ pulumi.set(self, "user_type", value)
2419
+
2420
+ @property
2421
+ @pulumi.getter(name="weekOfYearPolicy")
2422
+ def week_of_year_policy(self) -> Optional[pulumi.Input[int]]:
2423
+ """
2424
+ Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
2425
+ """
2426
+ return pulumi.get(self, "week_of_year_policy")
2427
+
2428
+ @week_of_year_policy.setter
2429
+ def week_of_year_policy(self, value: Optional[pulumi.Input[int]]):
2430
+ pulumi.set(self, "week_of_year_policy", value)
2431
+
2432
+ @property
2433
+ @pulumi.getter(name="weekStart")
2434
+ def week_start(self) -> Optional[pulumi.Input[int]]:
2435
+ """
2436
+ Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
2437
+ """
2438
+ return pulumi.get(self, "week_start")
2439
+
2440
+ @week_start.setter
2441
+ def week_start(self, value: Optional[pulumi.Input[int]]):
2442
+ pulumi.set(self, "week_start", value)
2443
+
2444
+
2445
+ class LegacyServiceUser(pulumi.CustomResource):
2446
+ @overload
2447
+ def __init__(__self__,
2448
+ resource_name: str,
2449
+ opts: Optional[pulumi.ResourceOptions] = None,
2450
+ abort_detached_query: Optional[pulumi.Input[bool]] = None,
2451
+ autocommit: Optional[pulumi.Input[bool]] = None,
2452
+ binary_input_format: Optional[pulumi.Input[str]] = None,
2453
+ binary_output_format: Optional[pulumi.Input[str]] = None,
2454
+ client_memory_limit: Optional[pulumi.Input[int]] = None,
2455
+ client_metadata_request_use_connection_ctx: Optional[pulumi.Input[bool]] = None,
2456
+ client_prefetch_threads: Optional[pulumi.Input[int]] = None,
2457
+ client_result_chunk_size: Optional[pulumi.Input[int]] = None,
2458
+ client_result_column_case_insensitive: Optional[pulumi.Input[bool]] = None,
2459
+ client_session_keep_alive: Optional[pulumi.Input[bool]] = None,
2460
+ client_session_keep_alive_heartbeat_frequency: Optional[pulumi.Input[int]] = None,
2461
+ client_timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
2462
+ comment: Optional[pulumi.Input[str]] = None,
2463
+ date_input_format: Optional[pulumi.Input[str]] = None,
2464
+ date_output_format: Optional[pulumi.Input[str]] = None,
2465
+ days_to_expiry: Optional[pulumi.Input[int]] = None,
2466
+ default_namespace: Optional[pulumi.Input[str]] = None,
2467
+ default_role: Optional[pulumi.Input[str]] = None,
2468
+ default_secondary_roles_option: Optional[pulumi.Input[str]] = None,
2469
+ default_warehouse: Optional[pulumi.Input[str]] = None,
2470
+ disabled: Optional[pulumi.Input[str]] = None,
2471
+ display_name: Optional[pulumi.Input[str]] = None,
2472
+ email: Optional[pulumi.Input[str]] = None,
2473
+ enable_unload_physical_type_optimization: Optional[pulumi.Input[bool]] = None,
2474
+ enable_unredacted_query_syntax_error: Optional[pulumi.Input[bool]] = None,
2475
+ error_on_nondeterministic_merge: Optional[pulumi.Input[bool]] = None,
2476
+ error_on_nondeterministic_update: Optional[pulumi.Input[bool]] = None,
2477
+ geography_output_format: Optional[pulumi.Input[str]] = None,
2478
+ geometry_output_format: Optional[pulumi.Input[str]] = None,
2479
+ jdbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
2480
+ jdbc_treat_timestamp_ntz_as_utc: Optional[pulumi.Input[bool]] = None,
2481
+ jdbc_use_session_timezone: Optional[pulumi.Input[bool]] = None,
2482
+ json_indent: Optional[pulumi.Input[int]] = None,
2483
+ lock_timeout: Optional[pulumi.Input[int]] = None,
2484
+ log_level: Optional[pulumi.Input[str]] = None,
2485
+ login_name: Optional[pulumi.Input[str]] = None,
2486
+ mins_to_unlock: Optional[pulumi.Input[int]] = None,
2487
+ multi_statement_count: Optional[pulumi.Input[int]] = None,
2488
+ must_change_password: Optional[pulumi.Input[str]] = None,
2489
+ name: Optional[pulumi.Input[str]] = None,
2490
+ network_policy: Optional[pulumi.Input[str]] = None,
2491
+ noorder_sequence_as_default: Optional[pulumi.Input[bool]] = None,
2492
+ odbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
2493
+ password: Optional[pulumi.Input[str]] = None,
2494
+ prevent_unload_to_internal_stages: Optional[pulumi.Input[bool]] = None,
2495
+ query_tag: Optional[pulumi.Input[str]] = None,
2496
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[bool]] = None,
2497
+ rows_per_resultset: Optional[pulumi.Input[int]] = None,
2498
+ rsa_public_key: Optional[pulumi.Input[str]] = None,
2499
+ rsa_public_key2: Optional[pulumi.Input[str]] = None,
2500
+ s3_stage_vpce_dns_name: Optional[pulumi.Input[str]] = None,
2501
+ search_path: Optional[pulumi.Input[str]] = None,
2502
+ simulated_data_sharing_consumer: Optional[pulumi.Input[str]] = None,
2503
+ statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
2504
+ statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
2505
+ strict_json_output: Optional[pulumi.Input[bool]] = None,
2506
+ time_input_format: Optional[pulumi.Input[str]] = None,
2507
+ time_output_format: Optional[pulumi.Input[str]] = None,
2508
+ timestamp_day_is_always24h: Optional[pulumi.Input[bool]] = None,
2509
+ timestamp_input_format: Optional[pulumi.Input[str]] = None,
2510
+ timestamp_ltz_output_format: Optional[pulumi.Input[str]] = None,
2511
+ timestamp_ntz_output_format: Optional[pulumi.Input[str]] = None,
2512
+ timestamp_output_format: Optional[pulumi.Input[str]] = None,
2513
+ timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
2514
+ timestamp_tz_output_format: Optional[pulumi.Input[str]] = None,
2515
+ timezone: Optional[pulumi.Input[str]] = None,
2516
+ trace_level: Optional[pulumi.Input[str]] = None,
2517
+ transaction_abort_on_error: Optional[pulumi.Input[bool]] = None,
2518
+ transaction_default_isolation_level: Optional[pulumi.Input[str]] = None,
2519
+ two_digit_century_start: Optional[pulumi.Input[int]] = None,
2520
+ unsupported_ddl_action: Optional[pulumi.Input[str]] = None,
2521
+ use_cached_result: Optional[pulumi.Input[bool]] = None,
2522
+ week_of_year_policy: Optional[pulumi.Input[int]] = None,
2523
+ week_start: Optional[pulumi.Input[int]] = None,
2524
+ __props__=None):
2525
+ """
2526
+ ## Import
2527
+
2528
+ ```sh
2529
+ $ pulumi import snowflake:index/legacyServiceUser:LegacyServiceUser example '"<user_name>"'
2530
+ ```
2531
+
2532
+ Note: pulumi preview+apply may be needed after successful import to fill out all the missing fields (like `password`) in state.
2533
+
2534
+ :param str resource_name: The name of the resource.
2535
+ :param pulumi.ResourceOptions opts: Options for the resource.
2536
+ :param pulumi.Input[bool] abort_detached_query: Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
2537
+ :param pulumi.Input[bool] autocommit: Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
2538
+ :param pulumi.Input[str] binary_input_format: The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
2539
+ :param pulumi.Input[str] binary_output_format: The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
2540
+ :param pulumi.Input[int] client_memory_limit: Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
2541
+ :param pulumi.Input[bool] client_metadata_request_use_connection_ctx: For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
2542
+ :param pulumi.Input[int] client_prefetch_threads: Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
2543
+ :param pulumi.Input[int] client_result_chunk_size: Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
2544
+ :param pulumi.Input[bool] client_result_column_case_insensitive: Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
2545
+ :param pulumi.Input[bool] client_session_keep_alive: Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
2546
+ :param pulumi.Input[int] client_session_keep_alive_heartbeat_frequency: Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
2547
+ :param pulumi.Input[str] client_timestamp_type_mapping: Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
2548
+ :param pulumi.Input[str] comment: Specifies a comment for the user.
2549
+ :param pulumi.Input[str] date_input_format: Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
2550
+ :param pulumi.Input[str] date_output_format: Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
2551
+ :param pulumi.Input[str] default_namespace: Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
2552
+ :param pulumi.Input[str] default_role: Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
2553
+ :param pulumi.Input[str] default_secondary_roles_option: Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
2554
+ :param pulumi.Input[str] default_warehouse: Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
2555
+ :param pulumi.Input[str] disabled: Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
2556
+ :param pulumi.Input[str] display_name: Name displayed for the user in the Snowflake web interface.
2557
+ :param pulumi.Input[str] email: Email address for the user.
2558
+ :param pulumi.Input[bool] enable_unload_physical_type_optimization: Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
2559
+ :param pulumi.Input[bool] enable_unredacted_query_syntax_error: Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
2560
+ :param pulumi.Input[bool] error_on_nondeterministic_merge: Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
2561
+ :param pulumi.Input[bool] error_on_nondeterministic_update: Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
2562
+ :param pulumi.Input[str] geography_output_format: Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
2563
+ :param pulumi.Input[str] geometry_output_format: Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
2564
+ :param pulumi.Input[bool] jdbc_treat_decimal_as_int: Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
2565
+ :param pulumi.Input[bool] jdbc_treat_timestamp_ntz_as_utc: Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
2566
+ :param pulumi.Input[bool] jdbc_use_session_timezone: Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
2567
+ :param pulumi.Input[int] json_indent: Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
2568
+ :param pulumi.Input[int] lock_timeout: Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
2569
+ :param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
2570
+ :param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
2571
+ :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
2572
+ :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
2573
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
2574
+ :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
2575
+ :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
2576
+ :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
2577
+ :param pulumi.Input[bool] prevent_unload_to_internal_stages: Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
2578
+ :param pulumi.Input[str] query_tag: Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
2579
+ :param pulumi.Input[bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
2580
+ :param pulumi.Input[int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
2581
+ :param pulumi.Input[str] rsa_public_key: Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
2582
+ :param pulumi.Input[str] rsa_public_key2: Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
2583
+ :param pulumi.Input[str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
2584
+ :param pulumi.Input[str] search_path: Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
2585
+ :param pulumi.Input[str] simulated_data_sharing_consumer: Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
2586
+ :param pulumi.Input[int] statement_queued_timeout_in_seconds: Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
2587
+ :param pulumi.Input[int] statement_timeout_in_seconds: Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
2588
+ :param pulumi.Input[bool] strict_json_output: This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
2589
+ :param pulumi.Input[str] time_input_format: Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
2590
+ :param pulumi.Input[str] time_output_format: Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
2591
+ :param pulumi.Input[bool] timestamp_day_is_always24h: Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
2592
+ :param pulumi.Input[str] timestamp_input_format: Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
2593
+ :param pulumi.Input[str] timestamp_ltz_output_format: Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
2594
+ :param pulumi.Input[str] timestamp_ntz_output_format: Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
2595
+ :param pulumi.Input[str] timestamp_output_format: Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
2596
+ :param pulumi.Input[str] timestamp_type_mapping: Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
2597
+ :param pulumi.Input[str] timestamp_tz_output_format: Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
2598
+ :param pulumi.Input[str] timezone: Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
2599
+ :param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
2600
+ :param pulumi.Input[bool] transaction_abort_on_error: Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
2601
+ :param pulumi.Input[str] transaction_default_isolation_level: Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
2602
+ :param pulumi.Input[int] two_digit_century_start: Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
2603
+ :param pulumi.Input[str] unsupported_ddl_action: Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
2604
+ :param pulumi.Input[bool] use_cached_result: Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
2605
+ :param pulumi.Input[int] week_of_year_policy: Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
2606
+ :param pulumi.Input[int] week_start: Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
2607
+ """
2608
+ ...
2609
+ @overload
2610
+ def __init__(__self__,
2611
+ resource_name: str,
2612
+ args: Optional[LegacyServiceUserArgs] = None,
2613
+ opts: Optional[pulumi.ResourceOptions] = None):
2614
+ """
2615
+ ## Import
2616
+
2617
+ ```sh
2618
+ $ pulumi import snowflake:index/legacyServiceUser:LegacyServiceUser example '"<user_name>"'
2619
+ ```
2620
+
2621
+ Note: pulumi preview+apply may be needed after successful import to fill out all the missing fields (like `password`) in state.
2622
+
2623
+ :param str resource_name: The name of the resource.
2624
+ :param LegacyServiceUserArgs args: The arguments to use to populate this resource's properties.
2625
+ :param pulumi.ResourceOptions opts: Options for the resource.
2626
+ """
2627
+ ...
2628
+ def __init__(__self__, resource_name: str, *args, **kwargs):
2629
+ resource_args, opts = _utilities.get_resource_args_opts(LegacyServiceUserArgs, pulumi.ResourceOptions, *args, **kwargs)
2630
+ if resource_args is not None:
2631
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
2632
+ else:
2633
+ __self__._internal_init(resource_name, *args, **kwargs)
2634
+
2635
+ def _internal_init(__self__,
2636
+ resource_name: str,
2637
+ opts: Optional[pulumi.ResourceOptions] = None,
2638
+ abort_detached_query: Optional[pulumi.Input[bool]] = None,
2639
+ autocommit: Optional[pulumi.Input[bool]] = None,
2640
+ binary_input_format: Optional[pulumi.Input[str]] = None,
2641
+ binary_output_format: Optional[pulumi.Input[str]] = None,
2642
+ client_memory_limit: Optional[pulumi.Input[int]] = None,
2643
+ client_metadata_request_use_connection_ctx: Optional[pulumi.Input[bool]] = None,
2644
+ client_prefetch_threads: Optional[pulumi.Input[int]] = None,
2645
+ client_result_chunk_size: Optional[pulumi.Input[int]] = None,
2646
+ client_result_column_case_insensitive: Optional[pulumi.Input[bool]] = None,
2647
+ client_session_keep_alive: Optional[pulumi.Input[bool]] = None,
2648
+ client_session_keep_alive_heartbeat_frequency: Optional[pulumi.Input[int]] = None,
2649
+ client_timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
2650
+ comment: Optional[pulumi.Input[str]] = None,
2651
+ date_input_format: Optional[pulumi.Input[str]] = None,
2652
+ date_output_format: Optional[pulumi.Input[str]] = None,
2653
+ days_to_expiry: Optional[pulumi.Input[int]] = None,
2654
+ default_namespace: Optional[pulumi.Input[str]] = None,
2655
+ default_role: Optional[pulumi.Input[str]] = None,
2656
+ default_secondary_roles_option: Optional[pulumi.Input[str]] = None,
2657
+ default_warehouse: Optional[pulumi.Input[str]] = None,
2658
+ disabled: Optional[pulumi.Input[str]] = None,
2659
+ display_name: Optional[pulumi.Input[str]] = None,
2660
+ email: Optional[pulumi.Input[str]] = None,
2661
+ enable_unload_physical_type_optimization: Optional[pulumi.Input[bool]] = None,
2662
+ enable_unredacted_query_syntax_error: Optional[pulumi.Input[bool]] = None,
2663
+ error_on_nondeterministic_merge: Optional[pulumi.Input[bool]] = None,
2664
+ error_on_nondeterministic_update: Optional[pulumi.Input[bool]] = None,
2665
+ geography_output_format: Optional[pulumi.Input[str]] = None,
2666
+ geometry_output_format: Optional[pulumi.Input[str]] = None,
2667
+ jdbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
2668
+ jdbc_treat_timestamp_ntz_as_utc: Optional[pulumi.Input[bool]] = None,
2669
+ jdbc_use_session_timezone: Optional[pulumi.Input[bool]] = None,
2670
+ json_indent: Optional[pulumi.Input[int]] = None,
2671
+ lock_timeout: Optional[pulumi.Input[int]] = None,
2672
+ log_level: Optional[pulumi.Input[str]] = None,
2673
+ login_name: Optional[pulumi.Input[str]] = None,
2674
+ mins_to_unlock: Optional[pulumi.Input[int]] = None,
2675
+ multi_statement_count: Optional[pulumi.Input[int]] = None,
2676
+ must_change_password: Optional[pulumi.Input[str]] = None,
2677
+ name: Optional[pulumi.Input[str]] = None,
2678
+ network_policy: Optional[pulumi.Input[str]] = None,
2679
+ noorder_sequence_as_default: Optional[pulumi.Input[bool]] = None,
2680
+ odbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
2681
+ password: Optional[pulumi.Input[str]] = None,
2682
+ prevent_unload_to_internal_stages: Optional[pulumi.Input[bool]] = None,
2683
+ query_tag: Optional[pulumi.Input[str]] = None,
2684
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[bool]] = None,
2685
+ rows_per_resultset: Optional[pulumi.Input[int]] = None,
2686
+ rsa_public_key: Optional[pulumi.Input[str]] = None,
2687
+ rsa_public_key2: Optional[pulumi.Input[str]] = None,
2688
+ s3_stage_vpce_dns_name: Optional[pulumi.Input[str]] = None,
2689
+ search_path: Optional[pulumi.Input[str]] = None,
2690
+ simulated_data_sharing_consumer: Optional[pulumi.Input[str]] = None,
2691
+ statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
2692
+ statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
2693
+ strict_json_output: Optional[pulumi.Input[bool]] = None,
2694
+ time_input_format: Optional[pulumi.Input[str]] = None,
2695
+ time_output_format: Optional[pulumi.Input[str]] = None,
2696
+ timestamp_day_is_always24h: Optional[pulumi.Input[bool]] = None,
2697
+ timestamp_input_format: Optional[pulumi.Input[str]] = None,
2698
+ timestamp_ltz_output_format: Optional[pulumi.Input[str]] = None,
2699
+ timestamp_ntz_output_format: Optional[pulumi.Input[str]] = None,
2700
+ timestamp_output_format: Optional[pulumi.Input[str]] = None,
2701
+ timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
2702
+ timestamp_tz_output_format: Optional[pulumi.Input[str]] = None,
2703
+ timezone: Optional[pulumi.Input[str]] = None,
2704
+ trace_level: Optional[pulumi.Input[str]] = None,
2705
+ transaction_abort_on_error: Optional[pulumi.Input[bool]] = None,
2706
+ transaction_default_isolation_level: Optional[pulumi.Input[str]] = None,
2707
+ two_digit_century_start: Optional[pulumi.Input[int]] = None,
2708
+ unsupported_ddl_action: Optional[pulumi.Input[str]] = None,
2709
+ use_cached_result: Optional[pulumi.Input[bool]] = None,
2710
+ week_of_year_policy: Optional[pulumi.Input[int]] = None,
2711
+ week_start: Optional[pulumi.Input[int]] = None,
2712
+ __props__=None):
2713
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
2714
+ if not isinstance(opts, pulumi.ResourceOptions):
2715
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
2716
+ if opts.id is None:
2717
+ if __props__ is not None:
2718
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
2719
+ __props__ = LegacyServiceUserArgs.__new__(LegacyServiceUserArgs)
2720
+
2721
+ __props__.__dict__["abort_detached_query"] = abort_detached_query
2722
+ __props__.__dict__["autocommit"] = autocommit
2723
+ __props__.__dict__["binary_input_format"] = binary_input_format
2724
+ __props__.__dict__["binary_output_format"] = binary_output_format
2725
+ __props__.__dict__["client_memory_limit"] = client_memory_limit
2726
+ __props__.__dict__["client_metadata_request_use_connection_ctx"] = client_metadata_request_use_connection_ctx
2727
+ __props__.__dict__["client_prefetch_threads"] = client_prefetch_threads
2728
+ __props__.__dict__["client_result_chunk_size"] = client_result_chunk_size
2729
+ __props__.__dict__["client_result_column_case_insensitive"] = client_result_column_case_insensitive
2730
+ __props__.__dict__["client_session_keep_alive"] = client_session_keep_alive
2731
+ __props__.__dict__["client_session_keep_alive_heartbeat_frequency"] = client_session_keep_alive_heartbeat_frequency
2732
+ __props__.__dict__["client_timestamp_type_mapping"] = client_timestamp_type_mapping
2733
+ __props__.__dict__["comment"] = comment
2734
+ __props__.__dict__["date_input_format"] = date_input_format
2735
+ __props__.__dict__["date_output_format"] = date_output_format
2736
+ __props__.__dict__["days_to_expiry"] = days_to_expiry
2737
+ __props__.__dict__["default_namespace"] = default_namespace
2738
+ __props__.__dict__["default_role"] = default_role
2739
+ __props__.__dict__["default_secondary_roles_option"] = default_secondary_roles_option
2740
+ __props__.__dict__["default_warehouse"] = default_warehouse
2741
+ __props__.__dict__["disabled"] = disabled
2742
+ __props__.__dict__["display_name"] = display_name
2743
+ __props__.__dict__["email"] = None if email is None else pulumi.Output.secret(email)
2744
+ __props__.__dict__["enable_unload_physical_type_optimization"] = enable_unload_physical_type_optimization
2745
+ __props__.__dict__["enable_unredacted_query_syntax_error"] = enable_unredacted_query_syntax_error
2746
+ __props__.__dict__["error_on_nondeterministic_merge"] = error_on_nondeterministic_merge
2747
+ __props__.__dict__["error_on_nondeterministic_update"] = error_on_nondeterministic_update
2748
+ __props__.__dict__["geography_output_format"] = geography_output_format
2749
+ __props__.__dict__["geometry_output_format"] = geometry_output_format
2750
+ __props__.__dict__["jdbc_treat_decimal_as_int"] = jdbc_treat_decimal_as_int
2751
+ __props__.__dict__["jdbc_treat_timestamp_ntz_as_utc"] = jdbc_treat_timestamp_ntz_as_utc
2752
+ __props__.__dict__["jdbc_use_session_timezone"] = jdbc_use_session_timezone
2753
+ __props__.__dict__["json_indent"] = json_indent
2754
+ __props__.__dict__["lock_timeout"] = lock_timeout
2755
+ __props__.__dict__["log_level"] = log_level
2756
+ __props__.__dict__["login_name"] = None if login_name is None else pulumi.Output.secret(login_name)
2757
+ __props__.__dict__["mins_to_unlock"] = mins_to_unlock
2758
+ __props__.__dict__["multi_statement_count"] = multi_statement_count
2759
+ __props__.__dict__["must_change_password"] = must_change_password
2760
+ __props__.__dict__["name"] = name
2761
+ __props__.__dict__["network_policy"] = network_policy
2762
+ __props__.__dict__["noorder_sequence_as_default"] = noorder_sequence_as_default
2763
+ __props__.__dict__["odbc_treat_decimal_as_int"] = odbc_treat_decimal_as_int
2764
+ __props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
2765
+ __props__.__dict__["prevent_unload_to_internal_stages"] = prevent_unload_to_internal_stages
2766
+ __props__.__dict__["query_tag"] = query_tag
2767
+ __props__.__dict__["quoted_identifiers_ignore_case"] = quoted_identifiers_ignore_case
2768
+ __props__.__dict__["rows_per_resultset"] = rows_per_resultset
2769
+ __props__.__dict__["rsa_public_key"] = rsa_public_key
2770
+ __props__.__dict__["rsa_public_key2"] = rsa_public_key2
2771
+ __props__.__dict__["s3_stage_vpce_dns_name"] = s3_stage_vpce_dns_name
2772
+ __props__.__dict__["search_path"] = search_path
2773
+ __props__.__dict__["simulated_data_sharing_consumer"] = simulated_data_sharing_consumer
2774
+ __props__.__dict__["statement_queued_timeout_in_seconds"] = statement_queued_timeout_in_seconds
2775
+ __props__.__dict__["statement_timeout_in_seconds"] = statement_timeout_in_seconds
2776
+ __props__.__dict__["strict_json_output"] = strict_json_output
2777
+ __props__.__dict__["time_input_format"] = time_input_format
2778
+ __props__.__dict__["time_output_format"] = time_output_format
2779
+ __props__.__dict__["timestamp_day_is_always24h"] = timestamp_day_is_always24h
2780
+ __props__.__dict__["timestamp_input_format"] = timestamp_input_format
2781
+ __props__.__dict__["timestamp_ltz_output_format"] = timestamp_ltz_output_format
2782
+ __props__.__dict__["timestamp_ntz_output_format"] = timestamp_ntz_output_format
2783
+ __props__.__dict__["timestamp_output_format"] = timestamp_output_format
2784
+ __props__.__dict__["timestamp_type_mapping"] = timestamp_type_mapping
2785
+ __props__.__dict__["timestamp_tz_output_format"] = timestamp_tz_output_format
2786
+ __props__.__dict__["timezone"] = timezone
2787
+ __props__.__dict__["trace_level"] = trace_level
2788
+ __props__.__dict__["transaction_abort_on_error"] = transaction_abort_on_error
2789
+ __props__.__dict__["transaction_default_isolation_level"] = transaction_default_isolation_level
2790
+ __props__.__dict__["two_digit_century_start"] = two_digit_century_start
2791
+ __props__.__dict__["unsupported_ddl_action"] = unsupported_ddl_action
2792
+ __props__.__dict__["use_cached_result"] = use_cached_result
2793
+ __props__.__dict__["week_of_year_policy"] = week_of_year_policy
2794
+ __props__.__dict__["week_start"] = week_start
2795
+ __props__.__dict__["fully_qualified_name"] = None
2796
+ __props__.__dict__["parameters"] = None
2797
+ __props__.__dict__["show_outputs"] = None
2798
+ __props__.__dict__["user_type"] = None
2799
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["email", "loginName", "password"])
2800
+ opts = pulumi.ResourceOptions.merge(opts, secret_opts)
2801
+ super(LegacyServiceUser, __self__).__init__(
2802
+ 'snowflake:index/legacyServiceUser:LegacyServiceUser',
2803
+ resource_name,
2804
+ __props__,
2805
+ opts)
2806
+
2807
+ @staticmethod
2808
+ def get(resource_name: str,
2809
+ id: pulumi.Input[str],
2810
+ opts: Optional[pulumi.ResourceOptions] = None,
2811
+ abort_detached_query: Optional[pulumi.Input[bool]] = None,
2812
+ autocommit: Optional[pulumi.Input[bool]] = None,
2813
+ binary_input_format: Optional[pulumi.Input[str]] = None,
2814
+ binary_output_format: Optional[pulumi.Input[str]] = None,
2815
+ client_memory_limit: Optional[pulumi.Input[int]] = None,
2816
+ client_metadata_request_use_connection_ctx: Optional[pulumi.Input[bool]] = None,
2817
+ client_prefetch_threads: Optional[pulumi.Input[int]] = None,
2818
+ client_result_chunk_size: Optional[pulumi.Input[int]] = None,
2819
+ client_result_column_case_insensitive: Optional[pulumi.Input[bool]] = None,
2820
+ client_session_keep_alive: Optional[pulumi.Input[bool]] = None,
2821
+ client_session_keep_alive_heartbeat_frequency: Optional[pulumi.Input[int]] = None,
2822
+ client_timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
2823
+ comment: Optional[pulumi.Input[str]] = None,
2824
+ date_input_format: Optional[pulumi.Input[str]] = None,
2825
+ date_output_format: Optional[pulumi.Input[str]] = None,
2826
+ days_to_expiry: Optional[pulumi.Input[int]] = None,
2827
+ default_namespace: Optional[pulumi.Input[str]] = None,
2828
+ default_role: Optional[pulumi.Input[str]] = None,
2829
+ default_secondary_roles_option: Optional[pulumi.Input[str]] = None,
2830
+ default_warehouse: Optional[pulumi.Input[str]] = None,
2831
+ disabled: Optional[pulumi.Input[str]] = None,
2832
+ display_name: Optional[pulumi.Input[str]] = None,
2833
+ email: Optional[pulumi.Input[str]] = None,
2834
+ enable_unload_physical_type_optimization: Optional[pulumi.Input[bool]] = None,
2835
+ enable_unredacted_query_syntax_error: Optional[pulumi.Input[bool]] = None,
2836
+ error_on_nondeterministic_merge: Optional[pulumi.Input[bool]] = None,
2837
+ error_on_nondeterministic_update: Optional[pulumi.Input[bool]] = None,
2838
+ fully_qualified_name: Optional[pulumi.Input[str]] = None,
2839
+ geography_output_format: Optional[pulumi.Input[str]] = None,
2840
+ geometry_output_format: Optional[pulumi.Input[str]] = None,
2841
+ jdbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
2842
+ jdbc_treat_timestamp_ntz_as_utc: Optional[pulumi.Input[bool]] = None,
2843
+ jdbc_use_session_timezone: Optional[pulumi.Input[bool]] = None,
2844
+ json_indent: Optional[pulumi.Input[int]] = None,
2845
+ lock_timeout: Optional[pulumi.Input[int]] = None,
2846
+ log_level: Optional[pulumi.Input[str]] = None,
2847
+ login_name: Optional[pulumi.Input[str]] = None,
2848
+ mins_to_unlock: Optional[pulumi.Input[int]] = None,
2849
+ multi_statement_count: Optional[pulumi.Input[int]] = None,
2850
+ must_change_password: Optional[pulumi.Input[str]] = None,
2851
+ name: Optional[pulumi.Input[str]] = None,
2852
+ network_policy: Optional[pulumi.Input[str]] = None,
2853
+ noorder_sequence_as_default: Optional[pulumi.Input[bool]] = None,
2854
+ odbc_treat_decimal_as_int: Optional[pulumi.Input[bool]] = None,
2855
+ parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LegacyServiceUserParameterArgs', 'LegacyServiceUserParameterArgsDict']]]]] = None,
2856
+ password: Optional[pulumi.Input[str]] = None,
2857
+ prevent_unload_to_internal_stages: Optional[pulumi.Input[bool]] = None,
2858
+ query_tag: Optional[pulumi.Input[str]] = None,
2859
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[bool]] = None,
2860
+ rows_per_resultset: Optional[pulumi.Input[int]] = None,
2861
+ rsa_public_key: Optional[pulumi.Input[str]] = None,
2862
+ rsa_public_key2: Optional[pulumi.Input[str]] = None,
2863
+ s3_stage_vpce_dns_name: Optional[pulumi.Input[str]] = None,
2864
+ search_path: Optional[pulumi.Input[str]] = None,
2865
+ show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LegacyServiceUserShowOutputArgs', 'LegacyServiceUserShowOutputArgsDict']]]]] = None,
2866
+ simulated_data_sharing_consumer: Optional[pulumi.Input[str]] = None,
2867
+ statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
2868
+ statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
2869
+ strict_json_output: Optional[pulumi.Input[bool]] = None,
2870
+ time_input_format: Optional[pulumi.Input[str]] = None,
2871
+ time_output_format: Optional[pulumi.Input[str]] = None,
2872
+ timestamp_day_is_always24h: Optional[pulumi.Input[bool]] = None,
2873
+ timestamp_input_format: Optional[pulumi.Input[str]] = None,
2874
+ timestamp_ltz_output_format: Optional[pulumi.Input[str]] = None,
2875
+ timestamp_ntz_output_format: Optional[pulumi.Input[str]] = None,
2876
+ timestamp_output_format: Optional[pulumi.Input[str]] = None,
2877
+ timestamp_type_mapping: Optional[pulumi.Input[str]] = None,
2878
+ timestamp_tz_output_format: Optional[pulumi.Input[str]] = None,
2879
+ timezone: Optional[pulumi.Input[str]] = None,
2880
+ trace_level: Optional[pulumi.Input[str]] = None,
2881
+ transaction_abort_on_error: Optional[pulumi.Input[bool]] = None,
2882
+ transaction_default_isolation_level: Optional[pulumi.Input[str]] = None,
2883
+ two_digit_century_start: Optional[pulumi.Input[int]] = None,
2884
+ unsupported_ddl_action: Optional[pulumi.Input[str]] = None,
2885
+ use_cached_result: Optional[pulumi.Input[bool]] = None,
2886
+ user_type: Optional[pulumi.Input[str]] = None,
2887
+ week_of_year_policy: Optional[pulumi.Input[int]] = None,
2888
+ week_start: Optional[pulumi.Input[int]] = None) -> 'LegacyServiceUser':
2889
+ """
2890
+ Get an existing LegacyServiceUser resource's state with the given name, id, and optional extra
2891
+ properties used to qualify the lookup.
2892
+
2893
+ :param str resource_name: The unique name of the resulting resource.
2894
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
2895
+ :param pulumi.ResourceOptions opts: Options for the resource.
2896
+ :param pulumi.Input[bool] abort_detached_query: Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
2897
+ :param pulumi.Input[bool] autocommit: Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
2898
+ :param pulumi.Input[str] binary_input_format: The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
2899
+ :param pulumi.Input[str] binary_output_format: The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
2900
+ :param pulumi.Input[int] client_memory_limit: Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
2901
+ :param pulumi.Input[bool] client_metadata_request_use_connection_ctx: For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
2902
+ :param pulumi.Input[int] client_prefetch_threads: Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
2903
+ :param pulumi.Input[int] client_result_chunk_size: Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
2904
+ :param pulumi.Input[bool] client_result_column_case_insensitive: Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
2905
+ :param pulumi.Input[bool] client_session_keep_alive: Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
2906
+ :param pulumi.Input[int] client_session_keep_alive_heartbeat_frequency: Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
2907
+ :param pulumi.Input[str] client_timestamp_type_mapping: Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
2908
+ :param pulumi.Input[str] comment: Specifies a comment for the user.
2909
+ :param pulumi.Input[str] date_input_format: Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
2910
+ :param pulumi.Input[str] date_output_format: Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
2911
+ :param pulumi.Input[str] default_namespace: Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
2912
+ :param pulumi.Input[str] default_role: Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
2913
+ :param pulumi.Input[str] default_secondary_roles_option: Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
2914
+ :param pulumi.Input[str] default_warehouse: Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
2915
+ :param pulumi.Input[str] disabled: Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
2916
+ :param pulumi.Input[str] display_name: Name displayed for the user in the Snowflake web interface.
2917
+ :param pulumi.Input[str] email: Email address for the user.
2918
+ :param pulumi.Input[bool] enable_unload_physical_type_optimization: Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
2919
+ :param pulumi.Input[bool] enable_unredacted_query_syntax_error: Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
2920
+ :param pulumi.Input[bool] error_on_nondeterministic_merge: Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
2921
+ :param pulumi.Input[bool] error_on_nondeterministic_update: Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
2922
+ :param pulumi.Input[str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
2923
+ :param pulumi.Input[str] geography_output_format: Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
2924
+ :param pulumi.Input[str] geometry_output_format: Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
2925
+ :param pulumi.Input[bool] jdbc_treat_decimal_as_int: Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
2926
+ :param pulumi.Input[bool] jdbc_treat_timestamp_ntz_as_utc: Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
2927
+ :param pulumi.Input[bool] jdbc_use_session_timezone: Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
2928
+ :param pulumi.Input[int] json_indent: Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
2929
+ :param pulumi.Input[int] lock_timeout: Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
2930
+ :param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
2931
+ :param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
2932
+ :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
2933
+ :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
2934
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
2935
+ :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
2936
+ :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
2937
+ :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
2938
+ :param pulumi.Input[Sequence[pulumi.Input[Union['LegacyServiceUserParameterArgs', 'LegacyServiceUserParameterArgsDict']]]] parameters: Outputs the result of `SHOW PARAMETERS IN USER` for the given user.
2939
+ :param pulumi.Input[bool] prevent_unload_to_internal_stages: Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
2940
+ :param pulumi.Input[str] query_tag: Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
2941
+ :param pulumi.Input[bool] quoted_identifiers_ignore_case: Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
2942
+ :param pulumi.Input[int] rows_per_resultset: Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
2943
+ :param pulumi.Input[str] rsa_public_key: Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
2944
+ :param pulumi.Input[str] rsa_public_key2: Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
2945
+ :param pulumi.Input[str] s3_stage_vpce_dns_name: Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
2946
+ :param pulumi.Input[str] search_path: Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
2947
+ :param pulumi.Input[Sequence[pulumi.Input[Union['LegacyServiceUserShowOutputArgs', 'LegacyServiceUserShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW USER` for the given user.
2948
+ :param pulumi.Input[str] simulated_data_sharing_consumer: Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
2949
+ :param pulumi.Input[int] statement_queued_timeout_in_seconds: Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
2950
+ :param pulumi.Input[int] statement_timeout_in_seconds: Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
2951
+ :param pulumi.Input[bool] strict_json_output: This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
2952
+ :param pulumi.Input[str] time_input_format: Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
2953
+ :param pulumi.Input[str] time_output_format: Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
2954
+ :param pulumi.Input[bool] timestamp_day_is_always24h: Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
2955
+ :param pulumi.Input[str] timestamp_input_format: Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
2956
+ :param pulumi.Input[str] timestamp_ltz_output_format: Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
2957
+ :param pulumi.Input[str] timestamp_ntz_output_format: Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
2958
+ :param pulumi.Input[str] timestamp_output_format: Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
2959
+ :param pulumi.Input[str] timestamp_type_mapping: Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
2960
+ :param pulumi.Input[str] timestamp_tz_output_format: Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
2961
+ :param pulumi.Input[str] timezone: Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
2962
+ :param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
2963
+ :param pulumi.Input[bool] transaction_abort_on_error: Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
2964
+ :param pulumi.Input[str] transaction_default_isolation_level: Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
2965
+ :param pulumi.Input[int] two_digit_century_start: Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
2966
+ :param pulumi.Input[str] unsupported_ddl_action: Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
2967
+ :param pulumi.Input[bool] use_cached_result: Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
2968
+ :param pulumi.Input[str] user_type: Specifies a type for the user.
2969
+ :param pulumi.Input[int] week_of_year_policy: Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
2970
+ :param pulumi.Input[int] week_start: Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
2971
+ """
2972
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
2973
+
2974
+ __props__ = _LegacyServiceUserState.__new__(_LegacyServiceUserState)
2975
+
2976
+ __props__.__dict__["abort_detached_query"] = abort_detached_query
2977
+ __props__.__dict__["autocommit"] = autocommit
2978
+ __props__.__dict__["binary_input_format"] = binary_input_format
2979
+ __props__.__dict__["binary_output_format"] = binary_output_format
2980
+ __props__.__dict__["client_memory_limit"] = client_memory_limit
2981
+ __props__.__dict__["client_metadata_request_use_connection_ctx"] = client_metadata_request_use_connection_ctx
2982
+ __props__.__dict__["client_prefetch_threads"] = client_prefetch_threads
2983
+ __props__.__dict__["client_result_chunk_size"] = client_result_chunk_size
2984
+ __props__.__dict__["client_result_column_case_insensitive"] = client_result_column_case_insensitive
2985
+ __props__.__dict__["client_session_keep_alive"] = client_session_keep_alive
2986
+ __props__.__dict__["client_session_keep_alive_heartbeat_frequency"] = client_session_keep_alive_heartbeat_frequency
2987
+ __props__.__dict__["client_timestamp_type_mapping"] = client_timestamp_type_mapping
2988
+ __props__.__dict__["comment"] = comment
2989
+ __props__.__dict__["date_input_format"] = date_input_format
2990
+ __props__.__dict__["date_output_format"] = date_output_format
2991
+ __props__.__dict__["days_to_expiry"] = days_to_expiry
2992
+ __props__.__dict__["default_namespace"] = default_namespace
2993
+ __props__.__dict__["default_role"] = default_role
2994
+ __props__.__dict__["default_secondary_roles_option"] = default_secondary_roles_option
2995
+ __props__.__dict__["default_warehouse"] = default_warehouse
2996
+ __props__.__dict__["disabled"] = disabled
2997
+ __props__.__dict__["display_name"] = display_name
2998
+ __props__.__dict__["email"] = email
2999
+ __props__.__dict__["enable_unload_physical_type_optimization"] = enable_unload_physical_type_optimization
3000
+ __props__.__dict__["enable_unredacted_query_syntax_error"] = enable_unredacted_query_syntax_error
3001
+ __props__.__dict__["error_on_nondeterministic_merge"] = error_on_nondeterministic_merge
3002
+ __props__.__dict__["error_on_nondeterministic_update"] = error_on_nondeterministic_update
3003
+ __props__.__dict__["fully_qualified_name"] = fully_qualified_name
3004
+ __props__.__dict__["geography_output_format"] = geography_output_format
3005
+ __props__.__dict__["geometry_output_format"] = geometry_output_format
3006
+ __props__.__dict__["jdbc_treat_decimal_as_int"] = jdbc_treat_decimal_as_int
3007
+ __props__.__dict__["jdbc_treat_timestamp_ntz_as_utc"] = jdbc_treat_timestamp_ntz_as_utc
3008
+ __props__.__dict__["jdbc_use_session_timezone"] = jdbc_use_session_timezone
3009
+ __props__.__dict__["json_indent"] = json_indent
3010
+ __props__.__dict__["lock_timeout"] = lock_timeout
3011
+ __props__.__dict__["log_level"] = log_level
3012
+ __props__.__dict__["login_name"] = login_name
3013
+ __props__.__dict__["mins_to_unlock"] = mins_to_unlock
3014
+ __props__.__dict__["multi_statement_count"] = multi_statement_count
3015
+ __props__.__dict__["must_change_password"] = must_change_password
3016
+ __props__.__dict__["name"] = name
3017
+ __props__.__dict__["network_policy"] = network_policy
3018
+ __props__.__dict__["noorder_sequence_as_default"] = noorder_sequence_as_default
3019
+ __props__.__dict__["odbc_treat_decimal_as_int"] = odbc_treat_decimal_as_int
3020
+ __props__.__dict__["parameters"] = parameters
3021
+ __props__.__dict__["password"] = password
3022
+ __props__.__dict__["prevent_unload_to_internal_stages"] = prevent_unload_to_internal_stages
3023
+ __props__.__dict__["query_tag"] = query_tag
3024
+ __props__.__dict__["quoted_identifiers_ignore_case"] = quoted_identifiers_ignore_case
3025
+ __props__.__dict__["rows_per_resultset"] = rows_per_resultset
3026
+ __props__.__dict__["rsa_public_key"] = rsa_public_key
3027
+ __props__.__dict__["rsa_public_key2"] = rsa_public_key2
3028
+ __props__.__dict__["s3_stage_vpce_dns_name"] = s3_stage_vpce_dns_name
3029
+ __props__.__dict__["search_path"] = search_path
3030
+ __props__.__dict__["show_outputs"] = show_outputs
3031
+ __props__.__dict__["simulated_data_sharing_consumer"] = simulated_data_sharing_consumer
3032
+ __props__.__dict__["statement_queued_timeout_in_seconds"] = statement_queued_timeout_in_seconds
3033
+ __props__.__dict__["statement_timeout_in_seconds"] = statement_timeout_in_seconds
3034
+ __props__.__dict__["strict_json_output"] = strict_json_output
3035
+ __props__.__dict__["time_input_format"] = time_input_format
3036
+ __props__.__dict__["time_output_format"] = time_output_format
3037
+ __props__.__dict__["timestamp_day_is_always24h"] = timestamp_day_is_always24h
3038
+ __props__.__dict__["timestamp_input_format"] = timestamp_input_format
3039
+ __props__.__dict__["timestamp_ltz_output_format"] = timestamp_ltz_output_format
3040
+ __props__.__dict__["timestamp_ntz_output_format"] = timestamp_ntz_output_format
3041
+ __props__.__dict__["timestamp_output_format"] = timestamp_output_format
3042
+ __props__.__dict__["timestamp_type_mapping"] = timestamp_type_mapping
3043
+ __props__.__dict__["timestamp_tz_output_format"] = timestamp_tz_output_format
3044
+ __props__.__dict__["timezone"] = timezone
3045
+ __props__.__dict__["trace_level"] = trace_level
3046
+ __props__.__dict__["transaction_abort_on_error"] = transaction_abort_on_error
3047
+ __props__.__dict__["transaction_default_isolation_level"] = transaction_default_isolation_level
3048
+ __props__.__dict__["two_digit_century_start"] = two_digit_century_start
3049
+ __props__.__dict__["unsupported_ddl_action"] = unsupported_ddl_action
3050
+ __props__.__dict__["use_cached_result"] = use_cached_result
3051
+ __props__.__dict__["user_type"] = user_type
3052
+ __props__.__dict__["week_of_year_policy"] = week_of_year_policy
3053
+ __props__.__dict__["week_start"] = week_start
3054
+ return LegacyServiceUser(resource_name, opts=opts, __props__=__props__)
3055
+
3056
+ @property
3057
+ @pulumi.getter(name="abortDetachedQuery")
3058
+ def abort_detached_query(self) -> pulumi.Output[bool]:
3059
+ """
3060
+ Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
3061
+ """
3062
+ return pulumi.get(self, "abort_detached_query")
3063
+
3064
+ @property
3065
+ @pulumi.getter
3066
+ def autocommit(self) -> pulumi.Output[bool]:
3067
+ """
3068
+ Specifies whether autocommit is enabled for the session. Autocommit determines whether a DML statement, when executed without an active transaction, is automatically committed after the statement successfully completes. For more information, see [Transactions](https://docs.snowflake.com/en/sql-reference/transactions). For more information, check [AUTOCOMMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#autocommit).
3069
+ """
3070
+ return pulumi.get(self, "autocommit")
3071
+
3072
+ @property
3073
+ @pulumi.getter(name="binaryInputFormat")
3074
+ def binary_input_format(self) -> pulumi.Output[str]:
3075
+ """
3076
+ The format of VARCHAR values passed as input to VARCHAR-to-BINARY conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-input-format).
3077
+ """
3078
+ return pulumi.get(self, "binary_input_format")
3079
+
3080
+ @property
3081
+ @pulumi.getter(name="binaryOutputFormat")
3082
+ def binary_output_format(self) -> pulumi.Output[str]:
3083
+ """
3084
+ The format for VARCHAR values returned as output by BINARY-to-VARCHAR conversion functions. For more information, see [Binary input and output](https://docs.snowflake.com/en/sql-reference/binary-input-output). For more information, check [BINARY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#binary-output-format).
3085
+ """
3086
+ return pulumi.get(self, "binary_output_format")
3087
+
3088
+ @property
3089
+ @pulumi.getter(name="clientMemoryLimit")
3090
+ def client_memory_limit(self) -> pulumi.Output[int]:
3091
+ """
3092
+ Parameter that specifies the maximum amount of memory the JDBC driver or ODBC driver should use for the result set from queries (in MB). For more information, check [CLIENT*MEMORY*LIMIT docs](https://docs.snowflake.com/en/sql-reference/parameters#client-memory-limit).
3093
+ """
3094
+ return pulumi.get(self, "client_memory_limit")
3095
+
3096
+ @property
3097
+ @pulumi.getter(name="clientMetadataRequestUseConnectionCtx")
3098
+ def client_metadata_request_use_connection_ctx(self) -> pulumi.Output[bool]:
3099
+ """
3100
+ For specific ODBC functions and JDBC methods, this parameter can change the default search scope from all databases/schemas to the current database/schema. The narrower search typically returns fewer rows and executes more quickly. For more information, check [CLIENT*METADATA*REQUEST*USE*CONNECTION_CTX docs](https://docs.snowflake.com/en/sql-reference/parameters#client-metadata-request-use-connection-ctx).
3101
+ """
3102
+ return pulumi.get(self, "client_metadata_request_use_connection_ctx")
3103
+
3104
+ @property
3105
+ @pulumi.getter(name="clientPrefetchThreads")
3106
+ def client_prefetch_threads(self) -> pulumi.Output[int]:
3107
+ """
3108
+ Parameter that specifies the number of threads used by the client to pre-fetch large result sets. The driver will attempt to honor the parameter value, but defines the minimum and maximum values (depending on your system’s resources) to improve performance. For more information, check [CLIENT*PREFETCH*THREADS docs](https://docs.snowflake.com/en/sql-reference/parameters#client-prefetch-threads).
3109
+ """
3110
+ return pulumi.get(self, "client_prefetch_threads")
3111
+
3112
+ @property
3113
+ @pulumi.getter(name="clientResultChunkSize")
3114
+ def client_result_chunk_size(self) -> pulumi.Output[int]:
3115
+ """
3116
+ Parameter that specifies the maximum size of each set (or chunk) of query results to download (in MB). The JDBC driver downloads query results in chunks. For more information, check [CLIENT*RESULT*CHUNK_SIZE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-chunk-size).
3117
+ """
3118
+ return pulumi.get(self, "client_result_chunk_size")
3119
+
3120
+ @property
3121
+ @pulumi.getter(name="clientResultColumnCaseInsensitive")
3122
+ def client_result_column_case_insensitive(self) -> pulumi.Output[bool]:
3123
+ """
3124
+ Parameter that indicates whether to match column name case-insensitively in ResultSet.get* methods in JDBC. For more information, check [CLIENT*RESULT*COLUMN*CASE*INSENSITIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-result-column-case-insensitive).
3125
+ """
3126
+ return pulumi.get(self, "client_result_column_case_insensitive")
3127
+
3128
+ @property
3129
+ @pulumi.getter(name="clientSessionKeepAlive")
3130
+ def client_session_keep_alive(self) -> pulumi.Output[bool]:
3131
+ """
3132
+ Parameter that indicates whether to force a user to log in again after a period of inactivity in the session. For more information, check [CLIENT*SESSION*KEEP_ALIVE docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive).
3133
+ """
3134
+ return pulumi.get(self, "client_session_keep_alive")
3135
+
3136
+ @property
3137
+ @pulumi.getter(name="clientSessionKeepAliveHeartbeatFrequency")
3138
+ def client_session_keep_alive_heartbeat_frequency(self) -> pulumi.Output[int]:
3139
+ """
3140
+ Number of seconds in-between client attempts to update the token for the session. For more information, check [CLIENT*SESSION*KEEP*ALIVE*HEARTBEAT_FREQUENCY docs](https://docs.snowflake.com/en/sql-reference/parameters#client-session-keep-alive-heartbeat-frequency).
3141
+ """
3142
+ return pulumi.get(self, "client_session_keep_alive_heartbeat_frequency")
3143
+
3144
+ @property
3145
+ @pulumi.getter(name="clientTimestampTypeMapping")
3146
+ def client_timestamp_type_mapping(self) -> pulumi.Output[str]:
3147
+ """
3148
+ Specifies the [TIMESTAMP_* variation](https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#label-datatypes-timestamp-variations) to use when binding timestamp variables for JDBC or ODBC applications that use the bind API to load data. For more information, check [CLIENT*TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#client-timestamp-type-mapping).
3149
+ """
3150
+ return pulumi.get(self, "client_timestamp_type_mapping")
3151
+
3152
+ @property
3153
+ @pulumi.getter
3154
+ def comment(self) -> pulumi.Output[Optional[str]]:
3155
+ """
3156
+ Specifies a comment for the user.
3157
+ """
3158
+ return pulumi.get(self, "comment")
3159
+
3160
+ @property
3161
+ @pulumi.getter(name="dateInputFormat")
3162
+ def date_input_format(self) -> pulumi.Output[str]:
3163
+ """
3164
+ Specifies the input format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-input-format).
3165
+ """
3166
+ return pulumi.get(self, "date_input_format")
3167
+
3168
+ @property
3169
+ @pulumi.getter(name="dateOutputFormat")
3170
+ def date_output_format(self) -> pulumi.Output[str]:
3171
+ """
3172
+ Specifies the display format for the DATE data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [DATE*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#date-output-format).
3173
+ """
3174
+ return pulumi.get(self, "date_output_format")
3175
+
3176
+ @property
3177
+ @pulumi.getter(name="daysToExpiry")
3178
+ def days_to_expiry(self) -> pulumi.Output[Optional[int]]:
3179
+ return pulumi.get(self, "days_to_expiry")
3180
+
3181
+ @property
3182
+ @pulumi.getter(name="defaultNamespace")
3183
+ def default_namespace(self) -> pulumi.Output[Optional[str]]:
3184
+ """
3185
+ Specifies the namespace (database only or database and schema) that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the namespace exists.
3186
+ """
3187
+ return pulumi.get(self, "default_namespace")
3188
+
3189
+ @property
3190
+ @pulumi.getter(name="defaultRole")
3191
+ def default_role(self) -> pulumi.Output[Optional[str]]:
3192
+ """
3193
+ Specifies the role that is active by default for the user’s session upon login. Note that specifying a default role for a user does **not** grant the role to the user. The role must be granted explicitly to the user using the [GRANT ROLE](https://docs.snowflake.com/en/sql-reference/sql/grant-role) command. In addition, the CREATE USER operation does not verify that the role exists. For more information about this resource, see docs.
3194
+ """
3195
+ return pulumi.get(self, "default_role")
3196
+
3197
+ @property
3198
+ @pulumi.getter(name="defaultSecondaryRolesOption")
3199
+ def default_secondary_roles_option(self) -> pulumi.Output[Optional[str]]:
3200
+ """
3201
+ Specifies the secondary roles that are active for the user’s session upon login. Valid values are (case-insensitive): `DEFAULT` | `NONE` | `ALL`. More information can be found in [doc](https://docs.snowflake.com/en/sql-reference/sql/create-user#optional-object-properties-objectproperties).
3202
+ """
3203
+ return pulumi.get(self, "default_secondary_roles_option")
3204
+
3205
+ @property
3206
+ @pulumi.getter(name="defaultWarehouse")
3207
+ def default_warehouse(self) -> pulumi.Output[Optional[str]]:
3208
+ """
3209
+ Specifies the virtual warehouse that is active by default for the user’s session upon login. Note that the CREATE USER operation does not verify that the warehouse exists. For more information about this resource, see docs.
3210
+ """
3211
+ return pulumi.get(self, "default_warehouse")
3212
+
3213
+ @property
3214
+ @pulumi.getter
3215
+ def disabled(self) -> pulumi.Output[Optional[str]]:
3216
+ """
3217
+ Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
3218
+ """
3219
+ return pulumi.get(self, "disabled")
3220
+
3221
+ @property
3222
+ @pulumi.getter(name="displayName")
3223
+ def display_name(self) -> pulumi.Output[Optional[str]]:
3224
+ """
3225
+ Name displayed for the user in the Snowflake web interface.
3226
+ """
3227
+ return pulumi.get(self, "display_name")
3228
+
3229
+ @property
3230
+ @pulumi.getter
3231
+ def email(self) -> pulumi.Output[Optional[str]]:
3232
+ """
3233
+ Email address for the user.
3234
+ """
3235
+ return pulumi.get(self, "email")
3236
+
3237
+ @property
3238
+ @pulumi.getter(name="enableUnloadPhysicalTypeOptimization")
3239
+ def enable_unload_physical_type_optimization(self) -> pulumi.Output[bool]:
3240
+ """
3241
+ Specifies whether to set the schema for unloaded Parquet files based on the logical column data types (i.e. the types in the unload SQL query or source table) or on the unloaded column values (i.e. the smallest data types and precision that support the values in the output columns of the unload SQL statement or source table). For more information, check [ENABLE*UNLOAD*PHYSICAL*TYPE*OPTIMIZATION docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unload-physical-type-optimization).
3242
+ """
3243
+ return pulumi.get(self, "enable_unload_physical_type_optimization")
3244
+
3245
+ @property
3246
+ @pulumi.getter(name="enableUnredactedQuerySyntaxError")
3247
+ def enable_unredacted_query_syntax_error(self) -> pulumi.Output[bool]:
3248
+ """
3249
+ Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If `FALSE`, the content of a failed query is redacted in the views, pages, and functions that provide a query history. Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR parameter. When using the ALTER USER command to set the parameter to `TRUE` for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). For more information, check [ENABLE*UNREDACTED*QUERY*SYNTAX*ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#enable-unredacted-query-syntax-error).
3250
+ """
3251
+ return pulumi.get(self, "enable_unredacted_query_syntax_error")
3252
+
3253
+ @property
3254
+ @pulumi.getter(name="errorOnNondeterministicMerge")
3255
+ def error_on_nondeterministic_merge(self) -> pulumi.Output[bool]:
3256
+ """
3257
+ Specifies whether to return an error when the [MERGE](https://docs.snowflake.com/en/sql-reference/sql/merge) command is used to update or delete a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_MERGE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-merge).
3258
+ """
3259
+ return pulumi.get(self, "error_on_nondeterministic_merge")
3260
+
3261
+ @property
3262
+ @pulumi.getter(name="errorOnNondeterministicUpdate")
3263
+ def error_on_nondeterministic_update(self) -> pulumi.Output[bool]:
3264
+ """
3265
+ Specifies whether to return an error when the [UPDATE](https://docs.snowflake.com/en/sql-reference/sql/update) command is used to update a target row that joins multiple source rows and the system cannot determine the action to perform on the target row. For more information, check [ERROR*ON*NONDETERMINISTIC_UPDATE docs](https://docs.snowflake.com/en/sql-reference/parameters#error-on-nondeterministic-update).
3266
+ """
3267
+ return pulumi.get(self, "error_on_nondeterministic_update")
3268
+
3269
+ @property
3270
+ @pulumi.getter(name="fullyQualifiedName")
3271
+ def fully_qualified_name(self) -> pulumi.Output[str]:
3272
+ """
3273
+ Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
3274
+ """
3275
+ return pulumi.get(self, "fully_qualified_name")
3276
+
3277
+ @property
3278
+ @pulumi.getter(name="geographyOutputFormat")
3279
+ def geography_output_format(self) -> pulumi.Output[str]:
3280
+ """
3281
+ Display format for [GEOGRAPHY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geography). For more information, check [GEOGRAPHY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geography-output-format).
3282
+ """
3283
+ return pulumi.get(self, "geography_output_format")
3284
+
3285
+ @property
3286
+ @pulumi.getter(name="geometryOutputFormat")
3287
+ def geometry_output_format(self) -> pulumi.Output[str]:
3288
+ """
3289
+ Display format for [GEOMETRY values](https://docs.snowflake.com/en/sql-reference/data-types-geospatial.html#label-data-types-geometry). For more information, check [GEOMETRY*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#geometry-output-format).
3290
+ """
3291
+ return pulumi.get(self, "geometry_output_format")
3292
+
3293
+ @property
3294
+ @pulumi.getter(name="jdbcTreatDecimalAsInt")
3295
+ def jdbc_treat_decimal_as_int(self) -> pulumi.Output[bool]:
3296
+ """
3297
+ Specifies how JDBC processes columns that have a scale of zero (0). For more information, check [JDBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-decimal-as-int).
3298
+ """
3299
+ return pulumi.get(self, "jdbc_treat_decimal_as_int")
3300
+
3301
+ @property
3302
+ @pulumi.getter(name="jdbcTreatTimestampNtzAsUtc")
3303
+ def jdbc_treat_timestamp_ntz_as_utc(self) -> pulumi.Output[bool]:
3304
+ """
3305
+ Specifies how JDBC processes TIMESTAMP*NTZ values. For more information, check [JDBC*TREAT*TIMESTAMP*NTZ*AS*UTC docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-treat-timestamp-ntz-as-utc).
3306
+ """
3307
+ return pulumi.get(self, "jdbc_treat_timestamp_ntz_as_utc")
3308
+
3309
+ @property
3310
+ @pulumi.getter(name="jdbcUseSessionTimezone")
3311
+ def jdbc_use_session_timezone(self) -> pulumi.Output[bool]:
3312
+ """
3313
+ Specifies whether the JDBC Driver uses the time zone of the JVM or the time zone of the session (specified by the [TIMEZONE](https://docs.snowflake.com/en/sql-reference/parameters#label-timezone) parameter) for the getDate(), getTime(), and getTimestamp() methods of the ResultSet class. For more information, check [JDBC*USE*SESSION_TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#jdbc-use-session-timezone).
3314
+ """
3315
+ return pulumi.get(self, "jdbc_use_session_timezone")
3316
+
3317
+ @property
3318
+ @pulumi.getter(name="jsonIndent")
3319
+ def json_indent(self) -> pulumi.Output[int]:
3320
+ """
3321
+ Specifies the number of blank spaces to indent each new element in JSON output in the session. Also specifies whether to insert newline characters after each element. For more information, check [JSON_INDENT docs](https://docs.snowflake.com/en/sql-reference/parameters#json-indent).
3322
+ """
3323
+ return pulumi.get(self, "json_indent")
3324
+
3325
+ @property
3326
+ @pulumi.getter(name="lockTimeout")
3327
+ def lock_timeout(self) -> pulumi.Output[int]:
3328
+ """
3329
+ Number of seconds to wait while trying to lock a resource, before timing out and aborting the statement. For more information, check [LOCK_TIMEOUT docs](https://docs.snowflake.com/en/sql-reference/parameters#lock-timeout).
3330
+ """
3331
+ return pulumi.get(self, "lock_timeout")
3332
+
3333
+ @property
3334
+ @pulumi.getter(name="logLevel")
3335
+ def log_level(self) -> pulumi.Output[str]:
3336
+ """
3337
+ Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
3338
+ """
3339
+ return pulumi.get(self, "log_level")
3340
+
3341
+ @property
3342
+ @pulumi.getter(name="loginName")
3343
+ def login_name(self) -> pulumi.Output[Optional[str]]:
3344
+ """
3345
+ The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
3346
+ """
3347
+ return pulumi.get(self, "login_name")
3348
+
3349
+ @property
3350
+ @pulumi.getter(name="minsToUnlock")
3351
+ def mins_to_unlock(self) -> pulumi.Output[Optional[int]]:
3352
+ return pulumi.get(self, "mins_to_unlock")
3353
+
3354
+ @property
3355
+ @pulumi.getter(name="multiStatementCount")
3356
+ def multi_statement_count(self) -> pulumi.Output[int]:
3357
+ """
3358
+ Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
3359
+ """
3360
+ return pulumi.get(self, "multi_statement_count")
3361
+
3362
+ @property
3363
+ @pulumi.getter(name="mustChangePassword")
3364
+ def must_change_password(self) -> pulumi.Output[Optional[str]]:
3365
+ """
3366
+ Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
3367
+ """
3368
+ return pulumi.get(self, "must_change_password")
3369
+
3370
+ @property
3371
+ @pulumi.getter
3372
+ def name(self) -> pulumi.Output[str]:
3373
+ """
3374
+ Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
3375
+ """
3376
+ return pulumi.get(self, "name")
3377
+
3378
+ @property
3379
+ @pulumi.getter(name="networkPolicy")
3380
+ def network_policy(self) -> pulumi.Output[str]:
3381
+ """
3382
+ Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
3383
+ """
3384
+ return pulumi.get(self, "network_policy")
3385
+
3386
+ @property
3387
+ @pulumi.getter(name="noorderSequenceAsDefault")
3388
+ def noorder_sequence_as_default(self) -> pulumi.Output[bool]:
3389
+ """
3390
+ Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
3391
+ """
3392
+ return pulumi.get(self, "noorder_sequence_as_default")
3393
+
3394
+ @property
3395
+ @pulumi.getter(name="odbcTreatDecimalAsInt")
3396
+ def odbc_treat_decimal_as_int(self) -> pulumi.Output[bool]:
3397
+ """
3398
+ Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
3399
+ """
3400
+ return pulumi.get(self, "odbc_treat_decimal_as_int")
3401
+
3402
+ @property
3403
+ @pulumi.getter
3404
+ def parameters(self) -> pulumi.Output[Sequence['outputs.LegacyServiceUserParameter']]:
3405
+ """
3406
+ Outputs the result of `SHOW PARAMETERS IN USER` for the given user.
3407
+ """
3408
+ return pulumi.get(self, "parameters")
3409
+
3410
+ @property
3411
+ @pulumi.getter
3412
+ def password(self) -> pulumi.Output[Optional[str]]:
3413
+ return pulumi.get(self, "password")
3414
+
3415
+ @property
3416
+ @pulumi.getter(name="preventUnloadToInternalStages")
3417
+ def prevent_unload_to_internal_stages(self) -> pulumi.Output[bool]:
3418
+ """
3419
+ Specifies whether to prevent data unload operations to internal (Snowflake) stages using [COPY INTO \\n\\n](https://docs.snowflake.com/en/sql-reference/sql/copy-into-location) statements. For more information, check [PREVENT*UNLOAD*TO*INTERNAL*STAGES docs](https://docs.snowflake.com/en/sql-reference/parameters#prevent-unload-to-internal-stages).
3420
+ """
3421
+ return pulumi.get(self, "prevent_unload_to_internal_stages")
3422
+
3423
+ @property
3424
+ @pulumi.getter(name="queryTag")
3425
+ def query_tag(self) -> pulumi.Output[str]:
3426
+ """
3427
+ Optional string that can be used to tag queries and other SQL statements executed within a session. The tags are displayed in the output of the [QUERY*HISTORY, QUERY*HISTORY*BY**](https://docs.snowflake.com/en/sql-reference/functions/query_history) functions. For more information, check [QUERY_TAG docs](https://docs.snowflake.com/en/sql-reference/parameters#query-tag).
3428
+ """
3429
+ return pulumi.get(self, "query_tag")
3430
+
3431
+ @property
3432
+ @pulumi.getter(name="quotedIdentifiersIgnoreCase")
3433
+ def quoted_identifiers_ignore_case(self) -> pulumi.Output[bool]:
3434
+ """
3435
+ Specifies whether letters in double-quoted object identifiers are stored and resolved as uppercase letters. By default, Snowflake preserves the case of alphabetic characters when storing and resolving double-quoted identifiers (see [Identifier resolution](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing)). You can use this parameter in situations in which [third-party applications always use double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax.html#label-identifier-casing-parameter). For more information, check [QUOTED*IDENTIFIERS*IGNORE_CASE docs](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
3436
+ """
3437
+ return pulumi.get(self, "quoted_identifiers_ignore_case")
3438
+
3439
+ @property
3440
+ @pulumi.getter(name="rowsPerResultset")
3441
+ def rows_per_resultset(self) -> pulumi.Output[int]:
3442
+ """
3443
+ Specifies the maximum number of rows returned in a result set. A value of 0 specifies no maximum. For more information, check [ROWS*PER*RESULTSET docs](https://docs.snowflake.com/en/sql-reference/parameters#rows-per-resultset).
3444
+ """
3445
+ return pulumi.get(self, "rows_per_resultset")
3446
+
3447
+ @property
3448
+ @pulumi.getter(name="rsaPublicKey")
3449
+ def rsa_public_key(self) -> pulumi.Output[Optional[str]]:
3450
+ """
3451
+ Specifies the user’s RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer.
3452
+ """
3453
+ return pulumi.get(self, "rsa_public_key")
3454
+
3455
+ @property
3456
+ @pulumi.getter(name="rsaPublicKey2")
3457
+ def rsa_public_key2(self) -> pulumi.Output[Optional[str]]:
3458
+ """
3459
+ Specifies the user’s second RSA public key; used to rotate the public and private keys for key-pair authentication based on an expiration schedule set by your organization. Must be on 1 line without header and trailer.
3460
+ """
3461
+ return pulumi.get(self, "rsa_public_key2")
3462
+
3463
+ @property
3464
+ @pulumi.getter(name="s3StageVpceDnsName")
3465
+ def s3_stage_vpce_dns_name(self) -> pulumi.Output[str]:
3466
+ """
3467
+ Specifies the DNS name of an Amazon S3 interface endpoint. Requests sent to the internal stage of an account via [AWS PrivateLink for Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/privatelink-interface-endpoints.html) use this endpoint to connect. For more information, see [Accessing Internal stages with dedicated interface endpoints](https://docs.snowflake.com/en/user-guide/private-internal-stages-aws.html#label-aws-privatelink-internal-stage-network-isolation). For more information, check [S3*STAGE*VPCE*DNS*NAME docs](https://docs.snowflake.com/en/sql-reference/parameters#s3-stage-vpce-dns-name).
3468
+ """
3469
+ return pulumi.get(self, "s3_stage_vpce_dns_name")
3470
+
3471
+ @property
3472
+ @pulumi.getter(name="searchPath")
3473
+ def search_path(self) -> pulumi.Output[str]:
3474
+ """
3475
+ Specifies the path to search to resolve unqualified object names in queries. For more information, see [Name resolution in queries](https://docs.snowflake.com/en/sql-reference/name-resolution.html#label-object-name-resolution-search-path). Comma-separated list of identifiers. An identifier can be a fully or partially qualified schema name. For more information, check [SEARCH_PATH docs](https://docs.snowflake.com/en/sql-reference/parameters#search-path).
3476
+ """
3477
+ return pulumi.get(self, "search_path")
3478
+
3479
+ @property
3480
+ @pulumi.getter(name="showOutputs")
3481
+ def show_outputs(self) -> pulumi.Output[Sequence['outputs.LegacyServiceUserShowOutput']]:
3482
+ """
3483
+ Outputs the result of `SHOW USER` for the given user.
3484
+ """
3485
+ return pulumi.get(self, "show_outputs")
3486
+
3487
+ @property
3488
+ @pulumi.getter(name="simulatedDataSharingConsumer")
3489
+ def simulated_data_sharing_consumer(self) -> pulumi.Output[str]:
3490
+ """
3491
+ Specifies the name of a consumer account to simulate for testing/validating shared data, particularly shared secure views. When this parameter is set in a session, shared views return rows as if executed in the specified consumer account rather than the provider account. For more information, see [Introduction to Secure Data Sharing](https://docs.snowflake.com/en/user-guide/data-sharing-intro) and [Working with shares](https://docs.snowflake.com/en/user-guide/data-sharing-provider). For more information, check [SIMULATED*DATA*SHARING_CONSUMER docs](https://docs.snowflake.com/en/sql-reference/parameters#simulated-data-sharing-consumer).
3492
+ """
3493
+ return pulumi.get(self, "simulated_data_sharing_consumer")
3494
+
3495
+ @property
3496
+ @pulumi.getter(name="statementQueuedTimeoutInSeconds")
3497
+ def statement_queued_timeout_in_seconds(self) -> pulumi.Output[int]:
3498
+ """
3499
+ Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains queued for a warehouse before it is canceled by the system. This parameter can be used in conjunction with the [MAX*CONCURRENCY*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters#label-max-concurrency-level) parameter to ensure a warehouse is never backlogged. For more information, check [STATEMENT*QUEUED*TIMEOUT*IN*SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-queued-timeout-in-seconds).
3500
+ """
3501
+ return pulumi.get(self, "statement_queued_timeout_in_seconds")
3502
+
3503
+ @property
3504
+ @pulumi.getter(name="statementTimeoutInSeconds")
3505
+ def statement_timeout_in_seconds(self) -> pulumi.Output[int]:
3506
+ """
3507
+ Amount of time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system. For more information, check [STATEMENT*TIMEOUT*IN_SECONDS docs](https://docs.snowflake.com/en/sql-reference/parameters#statement-timeout-in-seconds).
3508
+ """
3509
+ return pulumi.get(self, "statement_timeout_in_seconds")
3510
+
3511
+ @property
3512
+ @pulumi.getter(name="strictJsonOutput")
3513
+ def strict_json_output(self) -> pulumi.Output[bool]:
3514
+ """
3515
+ This parameter specifies whether JSON output in a session is compatible with the general standard (as described by [http://json.org](http://json.org)). By design, Snowflake allows JSON input that contains non-standard values; however, these non-standard values might result in Snowflake outputting JSON that is incompatible with other platforms and languages. This parameter, when enabled, ensures that Snowflake outputs valid/compatible JSON. For more information, check [STRICT*JSON*OUTPUT docs](https://docs.snowflake.com/en/sql-reference/parameters#strict-json-output).
3516
+ """
3517
+ return pulumi.get(self, "strict_json_output")
3518
+
3519
+ @property
3520
+ @pulumi.getter(name="timeInputFormat")
3521
+ def time_input_format(self) -> pulumi.Output[str]:
3522
+ """
3523
+ Specifies the input format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported time format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of times stored in the system during the session). For more information, check [TIME*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-input-format).
3524
+ """
3525
+ return pulumi.get(self, "time_input_format")
3526
+
3527
+ @property
3528
+ @pulumi.getter(name="timeOutputFormat")
3529
+ def time_output_format(self) -> pulumi.Output[str]:
3530
+ """
3531
+ Specifies the display format for the TIME data type. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIME*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#time-output-format).
3532
+ """
3533
+ return pulumi.get(self, "time_output_format")
3534
+
3535
+ @property
3536
+ @pulumi.getter(name="timestampDayIsAlways24h")
3537
+ def timestamp_day_is_always24h(self) -> pulumi.Output[bool]:
3538
+ """
3539
+ Specifies whether the [DATEADD](https://docs.snowflake.com/en/sql-reference/functions/dateadd) function (and its aliases) always consider a day to be exactly 24 hours for expressions that span multiple days. For more information, check [TIMESTAMP*DAY*IS*ALWAYS*24H docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-day-is-always-24h).
3540
+ """
3541
+ return pulumi.get(self, "timestamp_day_is_always24h")
3542
+
3543
+ @property
3544
+ @pulumi.getter(name="timestampInputFormat")
3545
+ def timestamp_input_format(self) -> pulumi.Output[str]:
3546
+ """
3547
+ Specifies the input format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). Any valid, supported timestamp format or AUTO (AUTO specifies that Snowflake attempts to automatically detect the format of timestamps stored in the system during the session). For more information, check [TIMESTAMP*INPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-input-format).
3548
+ """
3549
+ return pulumi.get(self, "timestamp_input_format")
3550
+
3551
+ @property
3552
+ @pulumi.getter(name="timestampLtzOutputFormat")
3553
+ def timestamp_ltz_output_format(self) -> pulumi.Output[str]:
3554
+ """
3555
+ Specifies the display format for the TIMESTAMP*LTZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*LTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ltz-output-format).
3556
+ """
3557
+ return pulumi.get(self, "timestamp_ltz_output_format")
3558
+
3559
+ @property
3560
+ @pulumi.getter(name="timestampNtzOutputFormat")
3561
+ def timestamp_ntz_output_format(self) -> pulumi.Output[str]:
3562
+ """
3563
+ Specifies the display format for the TIMESTAMP*NTZ data type. For more information, check [TIMESTAMP*NTZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-ntz-output-format).
3564
+ """
3565
+ return pulumi.get(self, "timestamp_ntz_output_format")
3566
+
3567
+ @property
3568
+ @pulumi.getter(name="timestampOutputFormat")
3569
+ def timestamp_output_format(self) -> pulumi.Output[str]:
3570
+ """
3571
+ Specifies the display format for the TIMESTAMP data type alias. For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-output-format).
3572
+ """
3573
+ return pulumi.get(self, "timestamp_output_format")
3574
+
3575
+ @property
3576
+ @pulumi.getter(name="timestampTypeMapping")
3577
+ def timestamp_type_mapping(self) -> pulumi.Output[str]:
3578
+ """
3579
+ Specifies the TIMESTAMP** variation that the TIMESTAMP data type alias maps to. For more information, check [TIMESTAMP*TYPE_MAPPING docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-type-mapping).
3580
+ """
3581
+ return pulumi.get(self, "timestamp_type_mapping")
3582
+
3583
+ @property
3584
+ @pulumi.getter(name="timestampTzOutputFormat")
3585
+ def timestamp_tz_output_format(self) -> pulumi.Output[str]:
3586
+ """
3587
+ Specifies the display format for the TIMESTAMP*TZ data type. If no format is specified, defaults to [TIMESTAMP*OUTPUT*FORMAT](https://docs.snowflake.com/en/sql-reference/parameters#label-timestamp-output-format). For more information, see [Date and time input and output formats](https://docs.snowflake.com/en/sql-reference/date-time-input-output). For more information, check [TIMESTAMP*TZ*OUTPUT*FORMAT docs](https://docs.snowflake.com/en/sql-reference/parameters#timestamp-tz-output-format).
3588
+ """
3589
+ return pulumi.get(self, "timestamp_tz_output_format")
3590
+
3591
+ @property
3592
+ @pulumi.getter
3593
+ def timezone(self) -> pulumi.Output[str]:
3594
+ """
3595
+ Specifies the time zone for the session. You can specify a [time zone name](https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab) or a [link name](https://data.iana.org/time-zones/tzdb-2021a/backward) from release 2021a of the [IANA Time Zone Database](https://www.iana.org/time-zones) (e.g. America/Los_Angeles, Europe/London, UTC, Etc/GMT, etc.). For more information, check [TIMEZONE docs](https://docs.snowflake.com/en/sql-reference/parameters#timezone).
3596
+ """
3597
+ return pulumi.get(self, "timezone")
3598
+
3599
+ @property
3600
+ @pulumi.getter(name="traceLevel")
3601
+ def trace_level(self) -> pulumi.Output[str]:
3602
+ """
3603
+ Controls how trace events are ingested into the event table. For more information about trace levels, see [Setting trace level](https://docs.snowflake.com/en/developer-guide/logging-tracing/tracing-trace-level). For more information, check [TRACE_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#trace-level).
3604
+ """
3605
+ return pulumi.get(self, "trace_level")
3606
+
3607
+ @property
3608
+ @pulumi.getter(name="transactionAbortOnError")
3609
+ def transaction_abort_on_error(self) -> pulumi.Output[bool]:
3610
+ """
3611
+ Specifies the action to perform when a statement issued within a non-autocommit transaction returns with an error. For more information, check [TRANSACTION*ABORT*ON_ERROR docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-abort-on-error).
3612
+ """
3613
+ return pulumi.get(self, "transaction_abort_on_error")
3614
+
3615
+ @property
3616
+ @pulumi.getter(name="transactionDefaultIsolationLevel")
3617
+ def transaction_default_isolation_level(self) -> pulumi.Output[str]:
3618
+ """
3619
+ Specifies the isolation level for transactions in the user session. For more information, check [TRANSACTION*DEFAULT*ISOLATION_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#transaction-default-isolation-level).
3620
+ """
3621
+ return pulumi.get(self, "transaction_default_isolation_level")
3622
+
3623
+ @property
3624
+ @pulumi.getter(name="twoDigitCenturyStart")
3625
+ def two_digit_century_start(self) -> pulumi.Output[int]:
3626
+ """
3627
+ Specifies the “century start” year for 2-digit years (i.e. the earliest year such dates can represent). This parameter prevents ambiguous dates when importing or converting data with the `YY` date format component (i.e. years represented as 2 digits). For more information, check [TWO*DIGIT*CENTURY_START docs](https://docs.snowflake.com/en/sql-reference/parameters#two-digit-century-start).
3628
+ """
3629
+ return pulumi.get(self, "two_digit_century_start")
3630
+
3631
+ @property
3632
+ @pulumi.getter(name="unsupportedDdlAction")
3633
+ def unsupported_ddl_action(self) -> pulumi.Output[str]:
3634
+ """
3635
+ Determines if an unsupported (i.e. non-default) value specified for a constraint property returns an error. For more information, check [UNSUPPORTED*DDL*ACTION docs](https://docs.snowflake.com/en/sql-reference/parameters#unsupported-ddl-action).
3636
+ """
3637
+ return pulumi.get(self, "unsupported_ddl_action")
3638
+
3639
+ @property
3640
+ @pulumi.getter(name="useCachedResult")
3641
+ def use_cached_result(self) -> pulumi.Output[bool]:
3642
+ """
3643
+ Specifies whether to reuse persisted query results, if available, when a matching query is submitted. For more information, check [USE*CACHED*RESULT docs](https://docs.snowflake.com/en/sql-reference/parameters#use-cached-result).
3644
+ """
3645
+ return pulumi.get(self, "use_cached_result")
3646
+
3647
+ @property
3648
+ @pulumi.getter(name="userType")
3649
+ def user_type(self) -> pulumi.Output[str]:
3650
+ """
3651
+ Specifies a type for the user.
3652
+ """
3653
+ return pulumi.get(self, "user_type")
3654
+
3655
+ @property
3656
+ @pulumi.getter(name="weekOfYearPolicy")
3657
+ def week_of_year_policy(self) -> pulumi.Output[int]:
3658
+ """
3659
+ Specifies how the weeks in a given year are computed. `0`: The semantics used are equivalent to the ISO semantics, in which a week belongs to a given year if at least 4 days of that week are in that year. `1`: January 1 is included in the first week of the year and December 31 is included in the last week of the year. For more information, check [WEEK*OF*YEAR_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#week-of-year-policy).
3660
+ """
3661
+ return pulumi.get(self, "week_of_year_policy")
3662
+
3663
+ @property
3664
+ @pulumi.getter(name="weekStart")
3665
+ def week_start(self) -> pulumi.Output[int]:
3666
+ """
3667
+ Specifies the first day of the week (used by week-related date functions). `0`: Legacy Snowflake behavior is used (i.e. ISO-like semantics). `1` (Monday) to `7` (Sunday): All the week-related functions use weeks that start on the specified day of the week. For more information, check [WEEK_START docs](https://docs.snowflake.com/en/sql-reference/parameters#week-start).
3668
+ """
3669
+ return pulumi.get(self, "week_start")
3670
+