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
@@ -23,15 +22,15 @@ __all__ = ['ExternalVolumeArgs', 'ExternalVolume']
23
22
  class ExternalVolumeArgs:
24
23
  def __init__(__self__, *,
25
24
  storage_locations: pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]],
26
- allow_writes: Optional[pulumi.Input[builtins.str]] = None,
27
- comment: Optional[pulumi.Input[builtins.str]] = None,
28
- name: Optional[pulumi.Input[builtins.str]] = None):
25
+ allow_writes: Optional[pulumi.Input[_builtins.str]] = None,
26
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
27
+ name: Optional[pulumi.Input[_builtins.str]] = None):
29
28
  """
30
29
  The set of arguments for constructing a ExternalVolume resource.
31
30
  :param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
32
- :param pulumi.Input[builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
33
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the external volume.
34
- :param pulumi.Input[builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
31
+ :param pulumi.Input[_builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
32
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the external volume.
33
+ :param pulumi.Input[_builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
35
34
  """
36
35
  pulumi.set(__self__, "storage_locations", storage_locations)
37
36
  if allow_writes is not None:
@@ -41,7 +40,7 @@ class ExternalVolumeArgs:
41
40
  if name is not None:
42
41
  pulumi.set(__self__, "name", name)
43
42
 
44
- @property
43
+ @_builtins.property
45
44
  @pulumi.getter(name="storageLocations")
46
45
  def storage_locations(self) -> pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]]:
47
46
  """
@@ -53,60 +52,60 @@ class ExternalVolumeArgs:
53
52
  def storage_locations(self, value: pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]]):
54
53
  pulumi.set(self, "storage_locations", value)
55
54
 
56
- @property
55
+ @_builtins.property
57
56
  @pulumi.getter(name="allowWrites")
58
- def allow_writes(self) -> Optional[pulumi.Input[builtins.str]]:
57
+ def allow_writes(self) -> Optional[pulumi.Input[_builtins.str]]:
59
58
  """
60
59
  (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
61
60
  """
62
61
  return pulumi.get(self, "allow_writes")
63
62
 
64
63
  @allow_writes.setter
65
- def allow_writes(self, value: Optional[pulumi.Input[builtins.str]]):
64
+ def allow_writes(self, value: Optional[pulumi.Input[_builtins.str]]):
66
65
  pulumi.set(self, "allow_writes", value)
67
66
 
68
- @property
67
+ @_builtins.property
69
68
  @pulumi.getter
70
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
69
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
71
70
  """
72
71
  Specifies a comment for the external volume.
73
72
  """
74
73
  return pulumi.get(self, "comment")
75
74
 
76
75
  @comment.setter
77
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
76
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
78
77
  pulumi.set(self, "comment", value)
79
78
 
80
- @property
79
+ @_builtins.property
81
80
  @pulumi.getter
82
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
81
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
83
82
  """
84
83
  Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
85
84
  """
86
85
  return pulumi.get(self, "name")
87
86
 
88
87
  @name.setter
89
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
88
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
90
89
  pulumi.set(self, "name", value)
91
90
 
92
91
 
93
92
  @pulumi.input_type
94
93
  class _ExternalVolumeState:
95
94
  def __init__(__self__, *,
96
- allow_writes: Optional[pulumi.Input[builtins.str]] = None,
97
- comment: Optional[pulumi.Input[builtins.str]] = None,
95
+ allow_writes: Optional[pulumi.Input[_builtins.str]] = None,
96
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
98
97
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeDescribeOutputArgs']]]] = None,
99
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
100
- name: Optional[pulumi.Input[builtins.str]] = None,
98
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
99
+ name: Optional[pulumi.Input[_builtins.str]] = None,
101
100
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeShowOutputArgs']]]] = None,
102
101
  storage_locations: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]]] = None):
103
102
  """
104
103
  Input properties used for looking up and filtering ExternalVolume resources.
105
- :param pulumi.Input[builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
106
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the external volume.
104
+ :param pulumi.Input[_builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
105
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the external volume.
107
106
  :param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE EXTERNAL VOLUME` for the given external volume.
108
- :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).
109
- :param pulumi.Input[builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
107
+ :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).
108
+ :param pulumi.Input[_builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
110
109
  :param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeShowOutputArgs']]] show_outputs: Outputs the result of `SHOW EXTERNAL VOLUMES` for the given external volume.
111
110
  :param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
112
111
  """
@@ -125,31 +124,31 @@ class _ExternalVolumeState:
125
124
  if storage_locations is not None:
126
125
  pulumi.set(__self__, "storage_locations", storage_locations)
127
126
 
128
- @property
127
+ @_builtins.property
129
128
  @pulumi.getter(name="allowWrites")
130
- def allow_writes(self) -> Optional[pulumi.Input[builtins.str]]:
129
+ def allow_writes(self) -> Optional[pulumi.Input[_builtins.str]]:
131
130
  """
132
131
  (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
133
132
  """
134
133
  return pulumi.get(self, "allow_writes")
135
134
 
136
135
  @allow_writes.setter
137
- def allow_writes(self, value: Optional[pulumi.Input[builtins.str]]):
136
+ def allow_writes(self, value: Optional[pulumi.Input[_builtins.str]]):
138
137
  pulumi.set(self, "allow_writes", value)
139
138
 
140
- @property
139
+ @_builtins.property
141
140
  @pulumi.getter
142
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
141
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
143
142
  """
144
143
  Specifies a comment for the external volume.
145
144
  """
146
145
  return pulumi.get(self, "comment")
147
146
 
148
147
  @comment.setter
149
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
148
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
150
149
  pulumi.set(self, "comment", value)
151
150
 
152
- @property
151
+ @_builtins.property
153
152
  @pulumi.getter(name="describeOutputs")
154
153
  def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeDescribeOutputArgs']]]]:
155
154
  """
@@ -161,31 +160,31 @@ class _ExternalVolumeState:
161
160
  def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeDescribeOutputArgs']]]]):
162
161
  pulumi.set(self, "describe_outputs", value)
163
162
 
164
- @property
163
+ @_builtins.property
165
164
  @pulumi.getter(name="fullyQualifiedName")
166
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
165
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
167
166
  """
168
167
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
169
168
  """
170
169
  return pulumi.get(self, "fully_qualified_name")
171
170
 
172
171
  @fully_qualified_name.setter
173
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
172
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
174
173
  pulumi.set(self, "fully_qualified_name", value)
175
174
 
176
- @property
175
+ @_builtins.property
177
176
  @pulumi.getter
178
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
177
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
179
178
  """
180
179
  Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
181
180
  """
182
181
  return pulumi.get(self, "name")
183
182
 
184
183
  @name.setter
185
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
184
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
186
185
  pulumi.set(self, "name", value)
187
186
 
188
- @property
187
+ @_builtins.property
189
188
  @pulumi.getter(name="showOutputs")
190
189
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeShowOutputArgs']]]]:
191
190
  """
@@ -197,7 +196,7 @@ class _ExternalVolumeState:
197
196
  def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeShowOutputArgs']]]]):
198
197
  pulumi.set(self, "show_outputs", value)
199
198
 
200
- @property
199
+ @_builtins.property
201
200
  @pulumi.getter(name="storageLocations")
202
201
  def storage_locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]]]:
203
202
  """
@@ -216,9 +215,9 @@ class ExternalVolume(pulumi.CustomResource):
216
215
  def __init__(__self__,
217
216
  resource_name: str,
218
217
  opts: Optional[pulumi.ResourceOptions] = None,
219
- allow_writes: Optional[pulumi.Input[builtins.str]] = None,
220
- comment: Optional[pulumi.Input[builtins.str]] = None,
221
- name: Optional[pulumi.Input[builtins.str]] = None,
218
+ allow_writes: Optional[pulumi.Input[_builtins.str]] = None,
219
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
220
+ name: Optional[pulumi.Input[_builtins.str]] = None,
222
221
  storage_locations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]]] = None,
223
222
  __props__=None):
224
223
  """
@@ -230,9 +229,9 @@ class ExternalVolume(pulumi.CustomResource):
230
229
 
231
230
  :param str resource_name: The name of the resource.
232
231
  :param pulumi.ResourceOptions opts: Options for the resource.
233
- :param pulumi.Input[builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
234
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the external volume.
235
- :param pulumi.Input[builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
232
+ :param pulumi.Input[_builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
233
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the external volume.
234
+ :param pulumi.Input[_builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
236
235
  :param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
237
236
  """
238
237
  ...
@@ -263,9 +262,9 @@ class ExternalVolume(pulumi.CustomResource):
263
262
  def _internal_init(__self__,
264
263
  resource_name: str,
265
264
  opts: Optional[pulumi.ResourceOptions] = None,
266
- allow_writes: Optional[pulumi.Input[builtins.str]] = None,
267
- comment: Optional[pulumi.Input[builtins.str]] = None,
268
- name: Optional[pulumi.Input[builtins.str]] = None,
265
+ allow_writes: Optional[pulumi.Input[_builtins.str]] = None,
266
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
267
+ name: Optional[pulumi.Input[_builtins.str]] = None,
269
268
  storage_locations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]]] = None,
270
269
  __props__=None):
271
270
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -295,11 +294,11 @@ class ExternalVolume(pulumi.CustomResource):
295
294
  def get(resource_name: str,
296
295
  id: pulumi.Input[str],
297
296
  opts: Optional[pulumi.ResourceOptions] = None,
298
- allow_writes: Optional[pulumi.Input[builtins.str]] = None,
299
- comment: Optional[pulumi.Input[builtins.str]] = None,
297
+ allow_writes: Optional[pulumi.Input[_builtins.str]] = None,
298
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
300
299
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeDescribeOutputArgs', 'ExternalVolumeDescribeOutputArgsDict']]]]] = None,
301
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
302
- name: Optional[pulumi.Input[builtins.str]] = None,
300
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
301
+ name: Optional[pulumi.Input[_builtins.str]] = None,
303
302
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeShowOutputArgs', 'ExternalVolumeShowOutputArgsDict']]]]] = None,
304
303
  storage_locations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]]] = None) -> 'ExternalVolume':
305
304
  """
@@ -309,11 +308,11 @@ class ExternalVolume(pulumi.CustomResource):
309
308
  :param str resource_name: The unique name of the resulting resource.
310
309
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
311
310
  :param pulumi.ResourceOptions opts: Options for the resource.
312
- :param pulumi.Input[builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
313
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the external volume.
311
+ :param pulumi.Input[_builtins.str] allow_writes: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
312
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the external volume.
314
313
  :param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeDescribeOutputArgs', 'ExternalVolumeDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE EXTERNAL VOLUME` for the given external volume.
315
- :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).
316
- :param pulumi.Input[builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
314
+ :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).
315
+ :param pulumi.Input[_builtins.str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
317
316
  :param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeShowOutputArgs', 'ExternalVolumeShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW EXTERNAL VOLUMES` for the given external volume.
318
317
  :param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
319
318
  """
@@ -330,23 +329,23 @@ class ExternalVolume(pulumi.CustomResource):
330
329
  __props__.__dict__["storage_locations"] = storage_locations
331
330
  return ExternalVolume(resource_name, opts=opts, __props__=__props__)
332
331
 
333
- @property
332
+ @_builtins.property
334
333
  @pulumi.getter(name="allowWrites")
335
- def allow_writes(self) -> pulumi.Output[Optional[builtins.str]]:
334
+ def allow_writes(self) -> pulumi.Output[Optional[_builtins.str]]:
336
335
  """
337
336
  (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`default`)) Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. 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.
338
337
  """
339
338
  return pulumi.get(self, "allow_writes")
340
339
 
341
- @property
340
+ @_builtins.property
342
341
  @pulumi.getter
343
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
342
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
344
343
  """
345
344
  Specifies a comment for the external volume.
346
345
  """
347
346
  return pulumi.get(self, "comment")
348
347
 
349
- @property
348
+ @_builtins.property
350
349
  @pulumi.getter(name="describeOutputs")
351
350
  def describe_outputs(self) -> pulumi.Output[Sequence['outputs.ExternalVolumeDescribeOutput']]:
352
351
  """
@@ -354,23 +353,23 @@ class ExternalVolume(pulumi.CustomResource):
354
353
  """
355
354
  return pulumi.get(self, "describe_outputs")
356
355
 
357
- @property
356
+ @_builtins.property
358
357
  @pulumi.getter(name="fullyQualifiedName")
359
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
358
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
360
359
  """
361
360
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
362
361
  """
363
362
  return pulumi.get(self, "fully_qualified_name")
364
363
 
365
- @property
364
+ @_builtins.property
366
365
  @pulumi.getter
367
- def name(self) -> pulumi.Output[builtins.str]:
366
+ def name(self) -> pulumi.Output[_builtins.str]:
368
367
  """
369
368
  Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
370
369
  """
371
370
  return pulumi.get(self, "name")
372
371
 
373
- @property
372
+ @_builtins.property
374
373
  @pulumi.getter(name="showOutputs")
375
374
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.ExternalVolumeShowOutput']]:
376
375
  """
@@ -378,7 +377,7 @@ class ExternalVolume(pulumi.CustomResource):
378
377
  """
379
378
  return pulumi.get(self, "show_outputs")
380
379
 
381
- @property
380
+ @_builtins.property
382
381
  @pulumi.getter(name="storageLocations")
383
382
  def storage_locations(self) -> pulumi.Output[Sequence['outputs.ExternalVolumeStorageLocation']]:
384
383
  """