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
@@ -55,15 +54,15 @@ class GetSchemasResult:
55
54
  raise TypeError("Expected argument 'with_parameters' to be a bool")
56
55
  pulumi.set(__self__, "with_parameters", with_parameters)
57
56
 
58
- @property
57
+ @_builtins.property
59
58
  @pulumi.getter
60
- def id(self) -> builtins.str:
59
+ def id(self) -> _builtins.str:
61
60
  """
62
61
  The provider-assigned unique ID for this managed resource.
63
62
  """
64
63
  return pulumi.get(self, "id")
65
64
 
66
- @property
65
+ @_builtins.property
67
66
  @pulumi.getter(name="in")
68
67
  def in_(self) -> Optional['outputs.GetSchemasInResult']:
69
68
  """
@@ -71,15 +70,15 @@ class GetSchemasResult:
71
70
  """
72
71
  return pulumi.get(self, "in_")
73
72
 
74
- @property
73
+ @_builtins.property
75
74
  @pulumi.getter
76
- def like(self) -> Optional[builtins.str]:
75
+ def like(self) -> Optional[_builtins.str]:
77
76
  """
78
77
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
79
78
  """
80
79
  return pulumi.get(self, "like")
81
80
 
82
- @property
81
+ @_builtins.property
83
82
  @pulumi.getter
84
83
  def limit(self) -> Optional['outputs.GetSchemasLimitResult']:
85
84
  """
@@ -87,7 +86,7 @@ class GetSchemasResult:
87
86
  """
88
87
  return pulumi.get(self, "limit")
89
88
 
90
- @property
89
+ @_builtins.property
91
90
  @pulumi.getter
92
91
  def schemas(self) -> Sequence['outputs.GetSchemasSchemaResult']:
93
92
  """
@@ -95,25 +94,25 @@ class GetSchemasResult:
95
94
  """
96
95
  return pulumi.get(self, "schemas")
97
96
 
98
- @property
97
+ @_builtins.property
99
98
  @pulumi.getter(name="startsWith")
100
- def starts_with(self) -> Optional[builtins.str]:
99
+ def starts_with(self) -> Optional[_builtins.str]:
101
100
  """
102
101
  Filters the output with **case-sensitive** characters indicating the beginning of the object name.
103
102
  """
104
103
  return pulumi.get(self, "starts_with")
105
104
 
106
- @property
105
+ @_builtins.property
107
106
  @pulumi.getter(name="withDescribe")
108
- def with_describe(self) -> Optional[builtins.bool]:
107
+ def with_describe(self) -> Optional[_builtins.bool]:
109
108
  """
110
109
  (Default: `true`) Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
111
110
  """
112
111
  return pulumi.get(self, "with_describe")
113
112
 
114
- @property
113
+ @_builtins.property
115
114
  @pulumi.getter(name="withParameters")
116
- def with_parameters(self) -> Optional[builtins.bool]:
115
+ def with_parameters(self) -> Optional[_builtins.bool]:
117
116
  """
118
117
  (Default: `true`) Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
119
118
  """
@@ -137,11 +136,11 @@ class AwaitableGetSchemasResult(GetSchemasResult):
137
136
 
138
137
 
139
138
  def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']] = None,
140
- like: Optional[builtins.str] = None,
139
+ like: Optional[_builtins.str] = None,
141
140
  limit: Optional[Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict']] = None,
142
- starts_with: Optional[builtins.str] = None,
143
- with_describe: Optional[builtins.bool] = None,
144
- with_parameters: Optional[builtins.bool] = None,
141
+ starts_with: Optional[_builtins.str] = None,
142
+ with_describe: Optional[_builtins.bool] = None,
143
+ with_parameters: Optional[_builtins.bool] = None,
145
144
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchemasResult:
146
145
  """
147
146
  <!-- TODO(SNOW-1844996): Remove this note.-->
@@ -151,11 +150,11 @@ def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]
151
150
 
152
151
 
153
152
  :param Union['GetSchemasInArgs', 'GetSchemasInArgsDict'] in_: IN clause to filter the list of streamlits
154
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
153
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
155
154
  :param Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
156
- :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
157
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
158
- :param builtins.bool with_parameters: (Default: `true`) Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
155
+ :param _builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
156
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
157
+ :param _builtins.bool with_parameters: (Default: `true`) Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
159
158
  """
160
159
  __args__ = dict()
161
160
  __args__['in'] = in_
@@ -177,11 +176,11 @@ def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]
177
176
  with_describe=pulumi.get(__ret__, 'with_describe'),
178
177
  with_parameters=pulumi.get(__ret__, 'with_parameters'))
179
178
  def get_schemas_output(in_: Optional[pulumi.Input[Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]]] = None,
180
- like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
179
+ like: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
181
180
  limit: Optional[pulumi.Input[Optional[Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict']]]] = None,
182
- starts_with: Optional[pulumi.Input[Optional[builtins.str]]] = None,
183
- with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
184
- with_parameters: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
181
+ starts_with: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
182
+ with_describe: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
183
+ with_parameters: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
185
184
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchemasResult]:
186
185
  """
187
186
  <!-- TODO(SNOW-1844996): Remove this note.-->
@@ -191,11 +190,11 @@ def get_schemas_output(in_: Optional[pulumi.Input[Optional[Union['GetSchemasInAr
191
190
 
192
191
 
193
192
  :param Union['GetSchemasInArgs', 'GetSchemasInArgsDict'] in_: IN clause to filter the list of streamlits
194
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
193
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
195
194
  :param Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
196
- :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
197
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
198
- :param builtins.bool with_parameters: (Default: `true`) Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
195
+ :param _builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
196
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
197
+ :param _builtins.bool with_parameters: (Default: `true`) Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
199
198
  """
200
199
  __args__ = dict()
201
200
  __args__['in'] = in_
@@ -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
@@ -46,15 +45,15 @@ class GetSecretsResult:
46
45
  raise TypeError("Expected argument 'with_describe' to be a bool")
47
46
  pulumi.set(__self__, "with_describe", with_describe)
48
47
 
49
- @property
48
+ @_builtins.property
50
49
  @pulumi.getter
51
- def id(self) -> builtins.str:
50
+ def id(self) -> _builtins.str:
52
51
  """
53
52
  The provider-assigned unique ID for this managed resource.
54
53
  """
55
54
  return pulumi.get(self, "id")
56
55
 
57
- @property
56
+ @_builtins.property
58
57
  @pulumi.getter(name="in")
59
58
  def in_(self) -> Optional['outputs.GetSecretsInResult']:
60
59
  """
@@ -62,15 +61,15 @@ class GetSecretsResult:
62
61
  """
63
62
  return pulumi.get(self, "in_")
64
63
 
65
- @property
64
+ @_builtins.property
66
65
  @pulumi.getter
67
- def like(self) -> Optional[builtins.str]:
66
+ def like(self) -> Optional[_builtins.str]:
68
67
  """
69
68
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
70
69
  """
71
70
  return pulumi.get(self, "like")
72
71
 
73
- @property
72
+ @_builtins.property
74
73
  @pulumi.getter
75
74
  def secrets(self) -> Sequence['outputs.GetSecretsSecretResult']:
76
75
  """
@@ -78,9 +77,9 @@ class GetSecretsResult:
78
77
  """
79
78
  return pulumi.get(self, "secrets")
80
79
 
81
- @property
80
+ @_builtins.property
82
81
  @pulumi.getter(name="withDescribe")
83
- def with_describe(self) -> Optional[builtins.bool]:
82
+ def with_describe(self) -> Optional[_builtins.bool]:
84
83
  """
85
84
  (Default: `true`) Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
86
85
  """
@@ -101,8 +100,8 @@ class AwaitableGetSecretsResult(GetSecretsResult):
101
100
 
102
101
 
103
102
  def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']] = None,
104
- like: Optional[builtins.str] = None,
105
- with_describe: Optional[builtins.bool] = None,
103
+ like: Optional[_builtins.str] = None,
104
+ with_describe: Optional[_builtins.bool] = None,
106
105
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretsResult:
107
106
  """
108
107
  Data source used to get details of filtered secrets. Filtering is aligned with the current possibilities for [SHOW SECRETS](https://docs.snowflake.com/en/sql-reference/sql/show-secrets) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `secrets`.
@@ -136,8 +135,8 @@ def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]
136
135
 
137
136
 
138
137
  :param Union['GetSecretsInArgs', 'GetSecretsInArgsDict'] in_: IN clause to filter the list of secrets
139
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
140
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
138
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
139
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
141
140
  """
142
141
  __args__ = dict()
143
142
  __args__['in'] = in_
@@ -153,8 +152,8 @@ def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]
153
152
  secrets=pulumi.get(__ret__, 'secrets'),
154
153
  with_describe=pulumi.get(__ret__, 'with_describe'))
155
154
  def get_secrets_output(in_: Optional[pulumi.Input[Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]]] = None,
156
- like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
157
- with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
155
+ like: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
156
+ with_describe: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
158
157
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecretsResult]:
159
158
  """
160
159
  Data source used to get details of filtered secrets. Filtering is aligned with the current possibilities for [SHOW SECRETS](https://docs.snowflake.com/en/sql-reference/sql/show-secrets) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `secrets`.
@@ -188,8 +187,8 @@ def get_secrets_output(in_: Optional[pulumi.Input[Optional[Union['GetSecretsInAr
188
187
 
189
188
 
190
189
  :param Union['GetSecretsInArgs', 'GetSecretsInArgsDict'] in_: IN clause to filter the list of secrets
191
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
192
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
190
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
191
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
193
192
  """
194
193
  __args__ = dict()
195
194
  __args__['in'] = in_
@@ -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
@@ -42,23 +41,23 @@ class GetSecurityIntegrationsResult:
42
41
  raise TypeError("Expected argument 'with_describe' to be a bool")
43
42
  pulumi.set(__self__, "with_describe", with_describe)
44
43
 
45
- @property
44
+ @_builtins.property
46
45
  @pulumi.getter
47
- def id(self) -> builtins.str:
46
+ def id(self) -> _builtins.str:
48
47
  """
49
48
  The provider-assigned unique ID for this managed resource.
50
49
  """
51
50
  return pulumi.get(self, "id")
52
51
 
53
- @property
52
+ @_builtins.property
54
53
  @pulumi.getter
55
- def like(self) -> Optional[builtins.str]:
54
+ def like(self) -> Optional[_builtins.str]:
56
55
  """
57
56
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
58
57
  """
59
58
  return pulumi.get(self, "like")
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter(name="securityIntegrations")
63
62
  def security_integrations(self) -> Sequence['outputs.GetSecurityIntegrationsSecurityIntegrationResult']:
64
63
  """
@@ -66,9 +65,9 @@ class GetSecurityIntegrationsResult:
66
65
  """
67
66
  return pulumi.get(self, "security_integrations")
68
67
 
69
- @property
68
+ @_builtins.property
70
69
  @pulumi.getter(name="withDescribe")
71
- def with_describe(self) -> Optional[builtins.bool]:
70
+ def with_describe(self) -> Optional[_builtins.bool]:
72
71
  """
73
72
  (Default: `true`) Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
74
73
  """
@@ -87,15 +86,15 @@ class AwaitableGetSecurityIntegrationsResult(GetSecurityIntegrationsResult):
87
86
  with_describe=self.with_describe)
88
87
 
89
88
 
90
- def get_security_integrations(like: Optional[builtins.str] = None,
91
- with_describe: Optional[builtins.bool] = None,
89
+ def get_security_integrations(like: Optional[_builtins.str] = None,
90
+ with_describe: Optional[_builtins.bool] = None,
92
91
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityIntegrationsResult:
93
92
  """
94
93
  ## Example Usage
95
94
 
96
95
 
97
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
98
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
96
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
97
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
99
98
  """
100
99
  __args__ = dict()
101
100
  __args__['like'] = like
@@ -108,15 +107,15 @@ def get_security_integrations(like: Optional[builtins.str] = None,
108
107
  like=pulumi.get(__ret__, 'like'),
109
108
  security_integrations=pulumi.get(__ret__, 'security_integrations'),
110
109
  with_describe=pulumi.get(__ret__, 'with_describe'))
111
- def get_security_integrations_output(like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
112
- with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
110
+ def get_security_integrations_output(like: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
111
+ with_describe: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
113
112
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecurityIntegrationsResult]:
114
113
  """
115
114
  ## Example Usage
116
115
 
117
116
 
118
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
119
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
117
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
118
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
120
119
  """
121
120
  __args__ = dict()
122
121
  __args__['like'] = like
@@ -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
@@ -42,31 +41,31 @@ class GetSequencesResult:
42
41
  raise TypeError("Expected argument 'sequences' to be a list")
43
42
  pulumi.set(__self__, "sequences", sequences)
44
43
 
45
- @property
44
+ @_builtins.property
46
45
  @pulumi.getter
47
- def database(self) -> builtins.str:
46
+ def database(self) -> _builtins.str:
48
47
  """
49
48
  The database from which to return the schemas from.
50
49
  """
51
50
  return pulumi.get(self, "database")
52
51
 
53
- @property
52
+ @_builtins.property
54
53
  @pulumi.getter
55
- def id(self) -> builtins.str:
54
+ def id(self) -> _builtins.str:
56
55
  """
57
56
  The provider-assigned unique ID for this managed resource.
58
57
  """
59
58
  return pulumi.get(self, "id")
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter
63
- def schema(self) -> builtins.str:
62
+ def schema(self) -> _builtins.str:
64
63
  """
65
64
  The schema from which to return the sequences from.
66
65
  """
67
66
  return pulumi.get(self, "schema")
68
67
 
69
- @property
68
+ @_builtins.property
70
69
  @pulumi.getter
71
70
  def sequences(self) -> Sequence['outputs.GetSequencesSequenceResult']:
72
71
  """
@@ -87,8 +86,8 @@ class AwaitableGetSequencesResult(GetSequencesResult):
87
86
  sequences=self.sequences)
88
87
 
89
88
 
90
- def get_sequences(database: Optional[builtins.str] = None,
91
- schema: Optional[builtins.str] = None,
89
+ def get_sequences(database: Optional[_builtins.str] = None,
90
+ schema: Optional[_builtins.str] = None,
92
91
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSequencesResult:
93
92
  """
94
93
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -106,8 +105,8 @@ def get_sequences(database: Optional[builtins.str] = None,
106
105
  > **Note** If a field has a default value, it is shown next to the type in the schema.
107
106
 
108
107
 
109
- :param builtins.str database: The database from which to return the schemas from.
110
- :param builtins.str schema: The schema from which to return the sequences from.
108
+ :param _builtins.str database: The database from which to return the schemas from.
109
+ :param _builtins.str schema: The schema from which to return the sequences from.
111
110
  """
112
111
  __args__ = dict()
113
112
  __args__['database'] = database
@@ -120,8 +119,8 @@ def get_sequences(database: Optional[builtins.str] = None,
120
119
  id=pulumi.get(__ret__, 'id'),
121
120
  schema=pulumi.get(__ret__, 'schema'),
122
121
  sequences=pulumi.get(__ret__, 'sequences'))
123
- def get_sequences_output(database: Optional[pulumi.Input[builtins.str]] = None,
124
- schema: Optional[pulumi.Input[builtins.str]] = None,
122
+ def get_sequences_output(database: Optional[pulumi.Input[_builtins.str]] = None,
123
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
125
124
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSequencesResult]:
126
125
  """
127
126
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -139,8 +138,8 @@ def get_sequences_output(database: Optional[pulumi.Input[builtins.str]] = None,
139
138
  > **Note** If a field has a default value, it is shown next to the type in the schema.
140
139
 
141
140
 
142
- :param builtins.str database: The database from which to return the schemas from.
143
- :param builtins.str schema: The schema from which to return the sequences from.
141
+ :param _builtins.str database: The database from which to return the schemas from.
142
+ :param _builtins.str schema: The schema from which to return the sequences from.
144
143
  """
145
144
  __args__ = dict()
146
145
  __args__['database'] = database
@@ -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
@@ -55,15 +54,15 @@ class GetServicesResult:
55
54
  raise TypeError("Expected argument 'with_describe' to be a bool")
56
55
  pulumi.set(__self__, "with_describe", with_describe)
57
56
 
58
- @property
57
+ @_builtins.property
59
58
  @pulumi.getter
60
- def id(self) -> builtins.str:
59
+ def id(self) -> _builtins.str:
61
60
  """
62
61
  The provider-assigned unique ID for this managed resource.
63
62
  """
64
63
  return pulumi.get(self, "id")
65
64
 
66
- @property
65
+ @_builtins.property
67
66
  @pulumi.getter(name="in")
68
67
  def in_(self) -> Optional['outputs.GetServicesInResult']:
69
68
  """
@@ -71,15 +70,15 @@ class GetServicesResult:
71
70
  """
72
71
  return pulumi.get(self, "in_")
73
72
 
74
- @property
73
+ @_builtins.property
75
74
  @pulumi.getter
76
- def like(self) -> Optional[builtins.str]:
75
+ def like(self) -> Optional[_builtins.str]:
77
76
  """
78
77
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
79
78
  """
80
79
  return pulumi.get(self, "like")
81
80
 
82
- @property
81
+ @_builtins.property
83
82
  @pulumi.getter
84
83
  def limit(self) -> Optional['outputs.GetServicesLimitResult']:
85
84
  """
@@ -87,15 +86,15 @@ class GetServicesResult:
87
86
  """
88
87
  return pulumi.get(self, "limit")
89
88
 
90
- @property
89
+ @_builtins.property
91
90
  @pulumi.getter(name="serviceType")
92
- def service_type(self) -> Optional[builtins.str]:
91
+ def service_type(self) -> Optional[_builtins.str]:
93
92
  """
94
93
  (Default: `ALL`) The type filtering of `SHOW SERVICES` results. `ALL` returns both services and job services. `JOBS_ONLY` returns only job services (`JOB` option in SQL). `SERVICES_ONLY` returns only services (`EXCLUDE_JOBS` option in SQL).
95
94
  """
96
95
  return pulumi.get(self, "service_type")
97
96
 
98
- @property
97
+ @_builtins.property
99
98
  @pulumi.getter
100
99
  def services(self) -> Sequence['outputs.GetServicesServiceResult']:
101
100
  """
@@ -103,17 +102,17 @@ class GetServicesResult:
103
102
  """
104
103
  return pulumi.get(self, "services")
105
104
 
106
- @property
105
+ @_builtins.property
107
106
  @pulumi.getter(name="startsWith")
108
- def starts_with(self) -> Optional[builtins.str]:
107
+ def starts_with(self) -> Optional[_builtins.str]:
109
108
  """
110
109
  Filters the output with **case-sensitive** characters indicating the beginning of the object name.
111
110
  """
112
111
  return pulumi.get(self, "starts_with")
113
112
 
114
- @property
113
+ @_builtins.property
115
114
  @pulumi.getter(name="withDescribe")
116
- def with_describe(self) -> Optional[builtins.bool]:
115
+ def with_describe(self) -> Optional[_builtins.bool]:
117
116
  """
118
117
  (Default: `true`) Runs DESC SERVICE for each service returned by SHOW SERVICES. The output of describe is saved to the description field. By default this value is set to true.
119
118
  """
@@ -137,11 +136,11 @@ class AwaitableGetServicesResult(GetServicesResult):
137
136
 
138
137
 
139
138
  def get_services(in_: Optional[Union['GetServicesInArgs', 'GetServicesInArgsDict']] = None,
140
- like: Optional[builtins.str] = None,
139
+ like: Optional[_builtins.str] = None,
141
140
  limit: Optional[Union['GetServicesLimitArgs', 'GetServicesLimitArgsDict']] = None,
142
- service_type: Optional[builtins.str] = None,
143
- starts_with: Optional[builtins.str] = None,
144
- with_describe: Optional[builtins.bool] = None,
141
+ service_type: Optional[_builtins.str] = None,
142
+ starts_with: Optional[_builtins.str] = None,
143
+ with_describe: Optional[_builtins.bool] = None,
145
144
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServicesResult:
146
145
  """
147
146
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -150,11 +149,11 @@ def get_services(in_: Optional[Union['GetServicesInArgs', 'GetServicesInArgsDict
150
149
 
151
150
 
152
151
  :param Union['GetServicesInArgs', 'GetServicesInArgsDict'] in_: IN clause to filter the list of objects
153
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
152
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
153
  :param Union['GetServicesLimitArgs', 'GetServicesLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
155
- :param builtins.str service_type: (Default: `ALL`) The type filtering of `SHOW SERVICES` results. `ALL` returns both services and job services. `JOBS_ONLY` returns only job services (`JOB` option in SQL). `SERVICES_ONLY` returns only services (`EXCLUDE_JOBS` option in SQL).
156
- :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
157
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SERVICE for each service returned by SHOW SERVICES. The output of describe is saved to the description field. By default this value is set to true.
154
+ :param _builtins.str service_type: (Default: `ALL`) The type filtering of `SHOW SERVICES` results. `ALL` returns both services and job services. `JOBS_ONLY` returns only job services (`JOB` option in SQL). `SERVICES_ONLY` returns only services (`EXCLUDE_JOBS` option in SQL).
155
+ :param _builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
156
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SERVICE for each service returned by SHOW SERVICES. The output of describe is saved to the description field. By default this value is set to true.
158
157
  """
159
158
  __args__ = dict()
160
159
  __args__['in'] = in_
@@ -176,11 +175,11 @@ def get_services(in_: Optional[Union['GetServicesInArgs', 'GetServicesInArgsDict
176
175
  starts_with=pulumi.get(__ret__, 'starts_with'),
177
176
  with_describe=pulumi.get(__ret__, 'with_describe'))
178
177
  def get_services_output(in_: Optional[pulumi.Input[Optional[Union['GetServicesInArgs', 'GetServicesInArgsDict']]]] = None,
179
- like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
178
+ like: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
180
179
  limit: Optional[pulumi.Input[Optional[Union['GetServicesLimitArgs', 'GetServicesLimitArgsDict']]]] = None,
181
- service_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
182
- starts_with: Optional[pulumi.Input[Optional[builtins.str]]] = None,
183
- with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
180
+ service_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
181
+ starts_with: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
182
+ with_describe: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
184
183
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServicesResult]:
185
184
  """
186
185
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -189,11 +188,11 @@ def get_services_output(in_: Optional[pulumi.Input[Optional[Union['GetServicesIn
189
188
 
190
189
 
191
190
  :param Union['GetServicesInArgs', 'GetServicesInArgsDict'] in_: IN clause to filter the list of objects
192
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
191
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
193
192
  :param Union['GetServicesLimitArgs', 'GetServicesLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
194
- :param builtins.str service_type: (Default: `ALL`) The type filtering of `SHOW SERVICES` results. `ALL` returns both services and job services. `JOBS_ONLY` returns only job services (`JOB` option in SQL). `SERVICES_ONLY` returns only services (`EXCLUDE_JOBS` option in SQL).
195
- :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
196
- :param builtins.bool with_describe: (Default: `true`) Runs DESC SERVICE for each service returned by SHOW SERVICES. The output of describe is saved to the description field. By default this value is set to true.
193
+ :param _builtins.str service_type: (Default: `ALL`) The type filtering of `SHOW SERVICES` results. `ALL` returns both services and job services. `JOBS_ONLY` returns only job services (`JOB` option in SQL). `SERVICES_ONLY` returns only services (`EXCLUDE_JOBS` option in SQL).
194
+ :param _builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
195
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC SERVICE for each service returned by SHOW SERVICES. The output of describe is saved to the description field. By default this value is set to true.
197
196
  """
198
197
  __args__ = dict()
199
198
  __args__['in'] = in_