pulumi-snowflake 2.3.0a1752907264__py3-none-any.whl → 2.3.0a1753398370__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-snowflake might be problematic. Click here for more details.

Files changed (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1752907264.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,14 +21,14 @@ __all__ = ['PrimaryConnectionArgs', 'PrimaryConnection']
22
21
  @pulumi.input_type
23
22
  class PrimaryConnectionArgs:
24
23
  def __init__(__self__, *,
25
- comment: Optional[pulumi.Input[builtins.str]] = None,
26
- enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
27
- name: Optional[pulumi.Input[builtins.str]] = None):
24
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
25
+ enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
26
+ name: Optional[pulumi.Input[_builtins.str]] = None):
28
27
  """
29
28
  The set of arguments for constructing a PrimaryConnection resource.
30
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the connection.
31
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
32
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
29
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the connection.
30
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
31
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
33
32
  """
34
33
  if comment is not None:
35
34
  pulumi.set(__self__, "comment", comment)
@@ -38,58 +37,58 @@ class PrimaryConnectionArgs:
38
37
  if name is not None:
39
38
  pulumi.set(__self__, "name", name)
40
39
 
41
- @property
40
+ @_builtins.property
42
41
  @pulumi.getter
43
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
42
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
44
43
  """
45
44
  Specifies a comment for the connection.
46
45
  """
47
46
  return pulumi.get(self, "comment")
48
47
 
49
48
  @comment.setter
50
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
49
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
51
50
  pulumi.set(self, "comment", value)
52
51
 
53
- @property
52
+ @_builtins.property
54
53
  @pulumi.getter(name="enableFailoverToAccounts")
55
- def enable_failover_to_accounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
54
+ def enable_failover_to_accounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
56
55
  """
57
56
  Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
58
57
  """
59
58
  return pulumi.get(self, "enable_failover_to_accounts")
60
59
 
61
60
  @enable_failover_to_accounts.setter
62
- def enable_failover_to_accounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
61
+ def enable_failover_to_accounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
63
62
  pulumi.set(self, "enable_failover_to_accounts", value)
64
63
 
65
- @property
64
+ @_builtins.property
66
65
  @pulumi.getter
67
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
66
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
68
67
  """
69
68
  String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
70
69
  """
71
70
  return pulumi.get(self, "name")
72
71
 
73
72
  @name.setter
74
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
73
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
75
74
  pulumi.set(self, "name", value)
76
75
 
77
76
 
78
77
  @pulumi.input_type
79
78
  class _PrimaryConnectionState:
80
79
  def __init__(__self__, *,
81
- comment: Optional[pulumi.Input[builtins.str]] = None,
82
- enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
83
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
84
- is_primary: Optional[pulumi.Input[builtins.bool]] = None,
85
- name: Optional[pulumi.Input[builtins.str]] = None,
80
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
81
+ enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
82
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
83
+ is_primary: Optional[pulumi.Input[_builtins.bool]] = None,
84
+ name: Optional[pulumi.Input[_builtins.str]] = None,
86
85
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['PrimaryConnectionShowOutputArgs']]]] = None):
87
86
  """
88
87
  Input properties used for looking up and filtering PrimaryConnection resources.
89
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the connection.
90
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
91
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
92
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
88
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the connection.
89
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
90
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
91
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
93
92
  :param pulumi.Input[Sequence[pulumi.Input['PrimaryConnectionShowOutputArgs']]] show_outputs: Outputs the result of `SHOW CONNECTIONS` for the given connection.
94
93
  """
95
94
  if comment is not None:
@@ -105,64 +104,64 @@ class _PrimaryConnectionState:
105
104
  if show_outputs is not None:
106
105
  pulumi.set(__self__, "show_outputs", show_outputs)
107
106
 
108
- @property
107
+ @_builtins.property
109
108
  @pulumi.getter
110
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
109
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
111
110
  """
112
111
  Specifies a comment for the connection.
113
112
  """
114
113
  return pulumi.get(self, "comment")
115
114
 
116
115
  @comment.setter
117
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
116
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
118
117
  pulumi.set(self, "comment", value)
119
118
 
120
- @property
119
+ @_builtins.property
121
120
  @pulumi.getter(name="enableFailoverToAccounts")
122
- def enable_failover_to_accounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
121
+ def enable_failover_to_accounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
123
122
  """
124
123
  Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
125
124
  """
126
125
  return pulumi.get(self, "enable_failover_to_accounts")
127
126
 
128
127
  @enable_failover_to_accounts.setter
129
- def enable_failover_to_accounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
128
+ def enable_failover_to_accounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
130
129
  pulumi.set(self, "enable_failover_to_accounts", value)
131
130
 
132
- @property
131
+ @_builtins.property
133
132
  @pulumi.getter(name="fullyQualifiedName")
134
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
133
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
135
134
  """
136
135
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
137
136
  """
138
137
  return pulumi.get(self, "fully_qualified_name")
139
138
 
140
139
  @fully_qualified_name.setter
141
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
140
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
142
141
  pulumi.set(self, "fully_qualified_name", value)
143
142
 
144
- @property
143
+ @_builtins.property
145
144
  @pulumi.getter(name="isPrimary")
146
- def is_primary(self) -> Optional[pulumi.Input[builtins.bool]]:
145
+ def is_primary(self) -> Optional[pulumi.Input[_builtins.bool]]:
147
146
  return pulumi.get(self, "is_primary")
148
147
 
149
148
  @is_primary.setter
150
- def is_primary(self, value: Optional[pulumi.Input[builtins.bool]]):
149
+ def is_primary(self, value: Optional[pulumi.Input[_builtins.bool]]):
151
150
  pulumi.set(self, "is_primary", value)
152
151
 
153
- @property
152
+ @_builtins.property
154
153
  @pulumi.getter
155
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
154
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
156
155
  """
157
156
  String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
158
157
  """
159
158
  return pulumi.get(self, "name")
160
159
 
161
160
  @name.setter
162
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
161
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
163
162
  pulumi.set(self, "name", value)
164
163
 
165
- @property
164
+ @_builtins.property
166
165
  @pulumi.getter(name="showOutputs")
167
166
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PrimaryConnectionShowOutputArgs']]]]:
168
167
  """
@@ -181,9 +180,9 @@ class PrimaryConnection(pulumi.CustomResource):
181
180
  def __init__(__self__,
182
181
  resource_name: str,
183
182
  opts: Optional[pulumi.ResourceOptions] = None,
184
- comment: Optional[pulumi.Input[builtins.str]] = None,
185
- enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
186
- name: Optional[pulumi.Input[builtins.str]] = None,
183
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
184
+ enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
185
+ name: Optional[pulumi.Input[_builtins.str]] = None,
187
186
  __props__=None):
188
187
  """
189
188
  ## Import
@@ -194,9 +193,9 @@ class PrimaryConnection(pulumi.CustomResource):
194
193
 
195
194
  :param str resource_name: The name of the resource.
196
195
  :param pulumi.ResourceOptions opts: Options for the resource.
197
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the connection.
198
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
199
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
196
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the connection.
197
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
198
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
200
199
  """
201
200
  ...
202
201
  @overload
@@ -226,9 +225,9 @@ class PrimaryConnection(pulumi.CustomResource):
226
225
  def _internal_init(__self__,
227
226
  resource_name: str,
228
227
  opts: Optional[pulumi.ResourceOptions] = None,
229
- comment: Optional[pulumi.Input[builtins.str]] = None,
230
- enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
231
- name: Optional[pulumi.Input[builtins.str]] = None,
228
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
229
+ enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
230
+ name: Optional[pulumi.Input[_builtins.str]] = None,
232
231
  __props__=None):
233
232
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
234
233
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -254,11 +253,11 @@ class PrimaryConnection(pulumi.CustomResource):
254
253
  def get(resource_name: str,
255
254
  id: pulumi.Input[str],
256
255
  opts: Optional[pulumi.ResourceOptions] = None,
257
- comment: Optional[pulumi.Input[builtins.str]] = None,
258
- enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
259
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
260
- is_primary: Optional[pulumi.Input[builtins.bool]] = None,
261
- name: Optional[pulumi.Input[builtins.str]] = None,
256
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
257
+ enable_failover_to_accounts: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
258
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
259
+ is_primary: Optional[pulumi.Input[_builtins.bool]] = None,
260
+ name: Optional[pulumi.Input[_builtins.str]] = None,
262
261
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PrimaryConnectionShowOutputArgs', 'PrimaryConnectionShowOutputArgsDict']]]]] = None) -> 'PrimaryConnection':
263
262
  """
264
263
  Get an existing PrimaryConnection resource's state with the given name, id, and optional extra
@@ -267,10 +266,10 @@ class PrimaryConnection(pulumi.CustomResource):
267
266
  :param str resource_name: The unique name of the resulting resource.
268
267
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
269
268
  :param pulumi.ResourceOptions opts: Options for the resource.
270
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the connection.
271
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
272
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
273
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
269
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the connection.
270
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
271
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
272
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
274
273
  :param pulumi.Input[Sequence[pulumi.Input[Union['PrimaryConnectionShowOutputArgs', 'PrimaryConnectionShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW CONNECTIONS` for the given connection.
275
274
  """
276
275
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -285,44 +284,44 @@ class PrimaryConnection(pulumi.CustomResource):
285
284
  __props__.__dict__["show_outputs"] = show_outputs
286
285
  return PrimaryConnection(resource_name, opts=opts, __props__=__props__)
287
286
 
288
- @property
287
+ @_builtins.property
289
288
  @pulumi.getter
290
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
289
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
291
290
  """
292
291
  Specifies a comment for the connection.
293
292
  """
294
293
  return pulumi.get(self, "comment")
295
294
 
296
- @property
295
+ @_builtins.property
297
296
  @pulumi.getter(name="enableFailoverToAccounts")
298
- def enable_failover_to_accounts(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
297
+ def enable_failover_to_accounts(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
299
298
  """
300
299
  Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
301
300
  """
302
301
  return pulumi.get(self, "enable_failover_to_accounts")
303
302
 
304
- @property
303
+ @_builtins.property
305
304
  @pulumi.getter(name="fullyQualifiedName")
306
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
305
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
307
306
  """
308
307
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
309
308
  """
310
309
  return pulumi.get(self, "fully_qualified_name")
311
310
 
312
- @property
311
+ @_builtins.property
313
312
  @pulumi.getter(name="isPrimary")
314
- def is_primary(self) -> pulumi.Output[builtins.bool]:
313
+ def is_primary(self) -> pulumi.Output[_builtins.bool]:
315
314
  return pulumi.get(self, "is_primary")
316
315
 
317
- @property
316
+ @_builtins.property
318
317
  @pulumi.getter
319
- def name(self) -> pulumi.Output[builtins.str]:
318
+ def name(self) -> pulumi.Output[_builtins.str]:
320
319
  """
321
320
  String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (*). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
322
321
  """
323
322
  return pulumi.get(self, "name")
324
323
 
325
- @property
324
+ @_builtins.property
326
325
  @pulumi.getter(name="showOutputs")
327
326
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.PrimaryConnectionShowOutput']]:
328
327
  """