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,16 +21,16 @@ __all__ = ['ImageRepositoryArgs', 'ImageRepository']
22
21
  @pulumi.input_type
23
22
  class ImageRepositoryArgs:
24
23
  def __init__(__self__, *,
25
- database: pulumi.Input[builtins.str],
26
- schema: pulumi.Input[builtins.str],
27
- comment: Optional[pulumi.Input[builtins.str]] = None,
28
- name: Optional[pulumi.Input[builtins.str]] = None):
24
+ database: pulumi.Input[_builtins.str],
25
+ schema: pulumi.Input[_builtins.str],
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 ImageRepository resource.
31
- :param pulumi.Input[builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
32
- :param pulumi.Input[builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
33
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the object.
34
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
30
+ :param pulumi.Input[_builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
31
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
32
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the object.
33
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
35
34
  """
36
35
  pulumi.set(__self__, "database", database)
37
36
  pulumi.set(__self__, "schema", schema)
@@ -40,71 +39,71 @@ class ImageRepositoryArgs:
40
39
  if name is not None:
41
40
  pulumi.set(__self__, "name", name)
42
41
 
43
- @property
42
+ @_builtins.property
44
43
  @pulumi.getter
45
- def database(self) -> pulumi.Input[builtins.str]:
44
+ def database(self) -> pulumi.Input[_builtins.str]:
46
45
  """
47
46
  The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
48
47
  """
49
48
  return pulumi.get(self, "database")
50
49
 
51
50
  @database.setter
52
- def database(self, value: pulumi.Input[builtins.str]):
51
+ def database(self, value: pulumi.Input[_builtins.str]):
53
52
  pulumi.set(self, "database", value)
54
53
 
55
- @property
54
+ @_builtins.property
56
55
  @pulumi.getter
57
- def schema(self) -> pulumi.Input[builtins.str]:
56
+ def schema(self) -> pulumi.Input[_builtins.str]:
58
57
  """
59
58
  The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
60
59
  """
61
60
  return pulumi.get(self, "schema")
62
61
 
63
62
  @schema.setter
64
- def schema(self, value: pulumi.Input[builtins.str]):
63
+ def schema(self, value: pulumi.Input[_builtins.str]):
65
64
  pulumi.set(self, "schema", value)
66
65
 
67
- @property
66
+ @_builtins.property
68
67
  @pulumi.getter
69
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
68
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
70
69
  """
71
70
  Specifies a comment for the object.
72
71
  """
73
72
  return pulumi.get(self, "comment")
74
73
 
75
74
  @comment.setter
76
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
75
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
77
76
  pulumi.set(self, "comment", value)
78
77
 
79
- @property
78
+ @_builtins.property
80
79
  @pulumi.getter
81
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
80
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
82
81
  """
83
82
  Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
84
83
  """
85
84
  return pulumi.get(self, "name")
86
85
 
87
86
  @name.setter
88
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
87
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
89
88
  pulumi.set(self, "name", value)
90
89
 
91
90
 
92
91
  @pulumi.input_type
93
92
  class _ImageRepositoryState:
94
93
  def __init__(__self__, *,
95
- comment: Optional[pulumi.Input[builtins.str]] = None,
96
- database: Optional[pulumi.Input[builtins.str]] = None,
97
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
98
- name: Optional[pulumi.Input[builtins.str]] = None,
99
- schema: Optional[pulumi.Input[builtins.str]] = None,
94
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
95
+ database: Optional[pulumi.Input[_builtins.str]] = None,
96
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
97
+ name: Optional[pulumi.Input[_builtins.str]] = None,
98
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
100
99
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ImageRepositoryShowOutputArgs']]]] = None):
101
100
  """
102
101
  Input properties used for looking up and filtering ImageRepository resources.
103
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the object.
104
- :param pulumi.Input[builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
105
- :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).
106
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
107
- :param pulumi.Input[builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
102
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the object.
103
+ :param pulumi.Input[_builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
104
+ :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).
105
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
106
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
108
107
  :param pulumi.Input[Sequence[pulumi.Input['ImageRepositoryShowOutputArgs']]] show_outputs: Outputs the result of `SHOW IMAGE REPOSITORIES` for the given image repository.
109
108
  """
110
109
  if comment is not None:
@@ -120,67 +119,67 @@ class _ImageRepositoryState:
120
119
  if show_outputs is not None:
121
120
  pulumi.set(__self__, "show_outputs", show_outputs)
122
121
 
123
- @property
122
+ @_builtins.property
124
123
  @pulumi.getter
125
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
124
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
126
125
  """
127
126
  Specifies a comment for the object.
128
127
  """
129
128
  return pulumi.get(self, "comment")
130
129
 
131
130
  @comment.setter
132
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
131
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
133
132
  pulumi.set(self, "comment", value)
134
133
 
135
- @property
134
+ @_builtins.property
136
135
  @pulumi.getter
137
- def database(self) -> Optional[pulumi.Input[builtins.str]]:
136
+ def database(self) -> Optional[pulumi.Input[_builtins.str]]:
138
137
  """
139
138
  The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
140
139
  """
141
140
  return pulumi.get(self, "database")
142
141
 
143
142
  @database.setter
144
- def database(self, value: Optional[pulumi.Input[builtins.str]]):
143
+ def database(self, value: Optional[pulumi.Input[_builtins.str]]):
145
144
  pulumi.set(self, "database", value)
146
145
 
147
- @property
146
+ @_builtins.property
148
147
  @pulumi.getter(name="fullyQualifiedName")
149
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
148
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
150
149
  """
151
150
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
152
151
  """
153
152
  return pulumi.get(self, "fully_qualified_name")
154
153
 
155
154
  @fully_qualified_name.setter
156
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
155
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
157
156
  pulumi.set(self, "fully_qualified_name", value)
158
157
 
159
- @property
158
+ @_builtins.property
160
159
  @pulumi.getter
161
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
160
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
162
161
  """
163
162
  Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
164
163
  """
165
164
  return pulumi.get(self, "name")
166
165
 
167
166
  @name.setter
168
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
167
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
169
168
  pulumi.set(self, "name", value)
170
169
 
171
- @property
170
+ @_builtins.property
172
171
  @pulumi.getter
173
- def schema(self) -> Optional[pulumi.Input[builtins.str]]:
172
+ def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
174
173
  """
175
174
  The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
176
175
  """
177
176
  return pulumi.get(self, "schema")
178
177
 
179
178
  @schema.setter
180
- def schema(self, value: Optional[pulumi.Input[builtins.str]]):
179
+ def schema(self, value: Optional[pulumi.Input[_builtins.str]]):
181
180
  pulumi.set(self, "schema", value)
182
181
 
183
- @property
182
+ @_builtins.property
184
183
  @pulumi.getter(name="showOutputs")
185
184
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ImageRepositoryShowOutputArgs']]]]:
186
185
  """
@@ -199,10 +198,10 @@ class ImageRepository(pulumi.CustomResource):
199
198
  def __init__(__self__,
200
199
  resource_name: str,
201
200
  opts: Optional[pulumi.ResourceOptions] = None,
202
- comment: Optional[pulumi.Input[builtins.str]] = None,
203
- database: Optional[pulumi.Input[builtins.str]] = None,
204
- name: Optional[pulumi.Input[builtins.str]] = None,
205
- schema: Optional[pulumi.Input[builtins.str]] = None,
201
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
202
+ database: Optional[pulumi.Input[_builtins.str]] = None,
203
+ name: Optional[pulumi.Input[_builtins.str]] = None,
204
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
206
205
  __props__=None):
207
206
  """
208
207
  ## Import
@@ -213,10 +212,10 @@ class ImageRepository(pulumi.CustomResource):
213
212
 
214
213
  :param str resource_name: The name of the resource.
215
214
  :param pulumi.ResourceOptions opts: Options for the resource.
216
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the object.
217
- :param pulumi.Input[builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
218
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
219
- :param pulumi.Input[builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
215
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the object.
216
+ :param pulumi.Input[_builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
217
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
218
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
220
219
  """
221
220
  ...
222
221
  @overload
@@ -246,10 +245,10 @@ class ImageRepository(pulumi.CustomResource):
246
245
  def _internal_init(__self__,
247
246
  resource_name: str,
248
247
  opts: Optional[pulumi.ResourceOptions] = None,
249
- comment: Optional[pulumi.Input[builtins.str]] = None,
250
- database: Optional[pulumi.Input[builtins.str]] = None,
251
- name: Optional[pulumi.Input[builtins.str]] = None,
252
- schema: Optional[pulumi.Input[builtins.str]] = None,
248
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
249
+ database: Optional[pulumi.Input[_builtins.str]] = None,
250
+ name: Optional[pulumi.Input[_builtins.str]] = None,
251
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
253
252
  __props__=None):
254
253
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
255
254
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -279,11 +278,11 @@ class ImageRepository(pulumi.CustomResource):
279
278
  def get(resource_name: str,
280
279
  id: pulumi.Input[str],
281
280
  opts: Optional[pulumi.ResourceOptions] = None,
282
- comment: Optional[pulumi.Input[builtins.str]] = None,
283
- database: Optional[pulumi.Input[builtins.str]] = None,
284
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
285
- name: Optional[pulumi.Input[builtins.str]] = None,
286
- schema: Optional[pulumi.Input[builtins.str]] = None,
281
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
282
+ database: Optional[pulumi.Input[_builtins.str]] = None,
283
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
284
+ name: Optional[pulumi.Input[_builtins.str]] = None,
285
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
287
286
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ImageRepositoryShowOutputArgs', 'ImageRepositoryShowOutputArgsDict']]]]] = None) -> 'ImageRepository':
288
287
  """
289
288
  Get an existing ImageRepository resource's state with the given name, id, and optional extra
@@ -292,11 +291,11 @@ class ImageRepository(pulumi.CustomResource):
292
291
  :param str resource_name: The unique name of the resulting resource.
293
292
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
294
293
  :param pulumi.ResourceOptions opts: Options for the resource.
295
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the object.
296
- :param pulumi.Input[builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
297
- :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).
298
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
299
- :param pulumi.Input[builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
294
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the object.
295
+ :param pulumi.Input[_builtins.str] database: The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
296
+ :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).
297
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
298
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
300
299
  :param pulumi.Input[Sequence[pulumi.Input[Union['ImageRepositoryShowOutputArgs', 'ImageRepositoryShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW IMAGE REPOSITORIES` for the given image repository.
301
300
  """
302
301
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -311,47 +310,47 @@ class ImageRepository(pulumi.CustomResource):
311
310
  __props__.__dict__["show_outputs"] = show_outputs
312
311
  return ImageRepository(resource_name, opts=opts, __props__=__props__)
313
312
 
314
- @property
313
+ @_builtins.property
315
314
  @pulumi.getter
316
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
315
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
317
316
  """
318
317
  Specifies a comment for the object.
319
318
  """
320
319
  return pulumi.get(self, "comment")
321
320
 
322
- @property
321
+ @_builtins.property
323
322
  @pulumi.getter
324
- def database(self) -> pulumi.Output[builtins.str]:
323
+ def database(self) -> pulumi.Output[_builtins.str]:
325
324
  """
326
325
  The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
327
326
  """
328
327
  return pulumi.get(self, "database")
329
328
 
330
- @property
329
+ @_builtins.property
331
330
  @pulumi.getter(name="fullyQualifiedName")
332
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
331
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
333
332
  """
334
333
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
335
334
  """
336
335
  return pulumi.get(self, "fully_qualified_name")
337
336
 
338
- @property
337
+ @_builtins.property
339
338
  @pulumi.getter
340
- def name(self) -> pulumi.Output[builtins.str]:
339
+ def name(self) -> pulumi.Output[_builtins.str]:
341
340
  """
342
341
  Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
343
342
  """
344
343
  return pulumi.get(self, "name")
345
344
 
346
- @property
345
+ @_builtins.property
347
346
  @pulumi.getter
348
- def schema(self) -> pulumi.Output[builtins.str]:
347
+ def schema(self) -> pulumi.Output[_builtins.str]:
349
348
  """
350
349
  The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
351
350
  """
352
351
  return pulumi.get(self, "schema")
353
352
 
354
- @property
353
+ @_builtins.property
355
354
  @pulumi.getter(name="showOutputs")
356
355
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.ImageRepositoryShowOutput']]:
357
356
  """