pulumi-snowflake 1.1.4a1742960027__py3-none-any.whl → 1.2.0__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 (147) hide show
  1. pulumi_snowflake/__init__.py +1 -0
  2. pulumi_snowflake/_inputs.py +12306 -12305
  3. pulumi_snowflake/account.py +189 -188
  4. pulumi_snowflake/account_authentication_policy_attachment.py +15 -14
  5. pulumi_snowflake/account_parameter.py +29 -28
  6. pulumi_snowflake/account_password_policy_attachment.py +15 -14
  7. pulumi_snowflake/account_role.py +32 -31
  8. pulumi_snowflake/alert.py +123 -122
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +161 -160
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +147 -146
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +157 -156
  12. pulumi_snowflake/api_integration.py +218 -217
  13. pulumi_snowflake/authentication_policy.py +137 -136
  14. pulumi_snowflake/config/__init__.py +1 -0
  15. pulumi_snowflake/config/__init__.pyi +1 -0
  16. pulumi_snowflake/config/outputs.py +16 -15
  17. pulumi_snowflake/config/vars.py +1 -0
  18. pulumi_snowflake/cortex_search_service.py +141 -140
  19. pulumi_snowflake/database.py +288 -287
  20. pulumi_snowflake/database_role.py +50 -49
  21. pulumi_snowflake/dynamic_table.py +227 -226
  22. pulumi_snowflake/email_notification_integration.py +56 -55
  23. pulumi_snowflake/execute.py +50 -49
  24. pulumi_snowflake/external_function.py +237 -236
  25. pulumi_snowflake/external_oauth_integration.py +232 -231
  26. pulumi_snowflake/external_table.py +206 -205
  27. pulumi_snowflake/external_volume.py +59 -54
  28. pulumi_snowflake/failover_group.py +109 -108
  29. pulumi_snowflake/file_format.py +512 -511
  30. pulumi_snowflake/function_java.py +255 -254
  31. pulumi_snowflake/function_javascript.py +199 -198
  32. pulumi_snowflake/function_python.py +272 -271
  33. pulumi_snowflake/function_scala.py +255 -254
  34. pulumi_snowflake/function_sql.py +185 -184
  35. pulumi_snowflake/get_account_roles.py +12 -11
  36. pulumi_snowflake/get_accounts.py +12 -11
  37. pulumi_snowflake/get_alerts.py +23 -18
  38. pulumi_snowflake/get_connections.py +7 -6
  39. pulumi_snowflake/get_cortex_search_services.py +18 -13
  40. pulumi_snowflake/get_current_account.py +11 -6
  41. pulumi_snowflake/get_current_role.py +9 -4
  42. pulumi_snowflake/get_database.py +21 -16
  43. pulumi_snowflake/get_database_role.py +20 -15
  44. pulumi_snowflake/get_database_roles.py +12 -11
  45. pulumi_snowflake/get_databases.py +24 -23
  46. pulumi_snowflake/get_dynamic_tables.py +13 -8
  47. pulumi_snowflake/get_external_functions.py +18 -13
  48. pulumi_snowflake/get_external_tables.py +18 -13
  49. pulumi_snowflake/get_failover_groups.py +13 -8
  50. pulumi_snowflake/get_file_formats.py +18 -13
  51. pulumi_snowflake/get_functions.py +18 -13
  52. pulumi_snowflake/get_grants.py +6 -1
  53. pulumi_snowflake/get_masking_policies.py +13 -12
  54. pulumi_snowflake/get_materialized_views.py +18 -13
  55. pulumi_snowflake/get_network_policies.py +13 -12
  56. pulumi_snowflake/get_parameters.py +34 -29
  57. pulumi_snowflake/get_pipes.py +18 -13
  58. pulumi_snowflake/get_procedures.py +18 -13
  59. pulumi_snowflake/get_resource_monitors.py +7 -6
  60. pulumi_snowflake/get_row_access_policies.py +13 -12
  61. pulumi_snowflake/get_schemas.py +24 -23
  62. pulumi_snowflake/get_secrets.py +17 -12
  63. pulumi_snowflake/get_security_integrations.py +13 -12
  64. pulumi_snowflake/get_sequences.py +18 -13
  65. pulumi_snowflake/get_shares.py +13 -8
  66. pulumi_snowflake/get_stages.py +18 -13
  67. pulumi_snowflake/get_storage_integrations.py +8 -3
  68. pulumi_snowflake/get_streamlits.py +13 -12
  69. pulumi_snowflake/get_streams.py +18 -17
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +14 -9
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +12 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +17 -12
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +10 -5
  74. pulumi_snowflake/get_tables.py +18 -13
  75. pulumi_snowflake/get_tags.py +7 -6
  76. pulumi_snowflake/get_tasks.py +23 -22
  77. pulumi_snowflake/get_users.py +24 -23
  78. pulumi_snowflake/get_views.py +18 -17
  79. pulumi_snowflake/get_warehouses.py +19 -18
  80. pulumi_snowflake/grant_account_role.py +43 -42
  81. pulumi_snowflake/grant_application_role.py +43 -42
  82. pulumi_snowflake/grant_database_role.py +57 -56
  83. pulumi_snowflake/grant_ownership.py +43 -42
  84. pulumi_snowflake/grant_privileges_to_account_role.py +107 -106
  85. pulumi_snowflake/grant_privileges_to_database_role.py +104 -103
  86. pulumi_snowflake/grant_privileges_to_share.py +127 -126
  87. pulumi_snowflake/legacy_service_user.py +1048 -1047
  88. pulumi_snowflake/managed_account.py +116 -115
  89. pulumi_snowflake/masking_policy.py +109 -108
  90. pulumi_snowflake/materialized_view.py +126 -125
  91. pulumi_snowflake/network_policy.py +92 -91
  92. pulumi_snowflake/network_policy_attachment.py +46 -45
  93. pulumi_snowflake/network_rule.py +106 -105
  94. pulumi_snowflake/notification_integration.py +254 -240
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +225 -224
  96. pulumi_snowflake/oauth_integration_for_partner_applications.py +143 -142
  97. pulumi_snowflake/object_parameter.py +60 -59
  98. pulumi_snowflake/outputs.py +9282 -9281
  99. pulumi_snowflake/password_policy.py +291 -286
  100. pulumi_snowflake/pipe.py +151 -150
  101. pulumi_snowflake/primary_connection.py +55 -54
  102. pulumi_snowflake/procedure_java.py +273 -272
  103. pulumi_snowflake/procedure_javascript.py +203 -202
  104. pulumi_snowflake/procedure_python.py +273 -272
  105. pulumi_snowflake/procedure_scala.py +273 -272
  106. pulumi_snowflake/procedure_sql.py +203 -202
  107. pulumi_snowflake/provider.py +303 -302
  108. pulumi_snowflake/pulumi-plugin.json +1 -1
  109. pulumi_snowflake/resource_monitor.py +134 -133
  110. pulumi_snowflake/row_access_policy.py +78 -77
  111. pulumi_snowflake/saml2_integration.py +258 -257
  112. pulumi_snowflake/schema.py +322 -321
  113. pulumi_snowflake/scim_integration.py +109 -108
  114. pulumi_snowflake/secondary_connection.py +57 -56
  115. pulumi_snowflake/secondary_database.py +288 -287
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +109 -108
  117. pulumi_snowflake/secret_with_basic_authentication.py +95 -94
  118. pulumi_snowflake/secret_with_client_credentials.py +99 -98
  119. pulumi_snowflake/secret_with_generic_string.py +81 -80
  120. pulumi_snowflake/sequence.py +108 -107
  121. pulumi_snowflake/service_user.py +1021 -1020
  122. pulumi_snowflake/share.py +50 -49
  123. pulumi_snowflake/shared_database.py +246 -245
  124. pulumi_snowflake/stage.py +190 -189
  125. pulumi_snowflake/storage_integration.py +231 -165
  126. pulumi_snowflake/stream_on_directory_table.py +100 -99
  127. pulumi_snowflake/stream_on_external_table.py +117 -116
  128. pulumi_snowflake/stream_on_table.py +127 -126
  129. pulumi_snowflake/stream_on_view.py +127 -126
  130. pulumi_snowflake/streamlit.py +148 -147
  131. pulumi_snowflake/table.py +119 -118
  132. pulumi_snowflake/table_column_masking_policy_application.py +43 -42
  133. pulumi_snowflake/table_constraint.py +173 -172
  134. pulumi_snowflake/tag.py +92 -91
  135. pulumi_snowflake/tag_association.py +74 -73
  136. pulumi_snowflake/task.py +1005 -1004
  137. pulumi_snowflake/user.py +1110 -1109
  138. pulumi_snowflake/user_authentication_policy_attachment.py +29 -28
  139. pulumi_snowflake/user_password_policy_attachment.py +29 -28
  140. pulumi_snowflake/user_public_keys.py +43 -42
  141. pulumi_snowflake/view.py +142 -141
  142. pulumi_snowflake/warehouse.py +244 -243
  143. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/METADATA +1 -1
  144. pulumi_snowflake-1.2.0.dist-info/RECORD +148 -0
  145. pulumi_snowflake-1.1.4a1742960027.dist-info/RECORD +0 -148
  146. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/WHEEL +0 -0
  147. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -47,7 +48,7 @@ class GetSecretsResult:
47
48
 
48
49
  @property
49
50
  @pulumi.getter
50
- def id(self) -> str:
51
+ def id(self) -> builtins.str:
51
52
  """
52
53
  The provider-assigned unique ID for this managed resource.
53
54
  """
@@ -63,7 +64,7 @@ class GetSecretsResult:
63
64
 
64
65
  @property
65
66
  @pulumi.getter
66
- def like(self) -> Optional[str]:
67
+ def like(self) -> Optional[builtins.str]:
67
68
  """
68
69
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
69
70
  """
@@ -79,9 +80,9 @@ class GetSecretsResult:
79
80
 
80
81
  @property
81
82
  @pulumi.getter(name="withDescribe")
82
- def with_describe(self) -> Optional[bool]:
83
+ def with_describe(self) -> Optional[builtins.bool]:
83
84
  """
84
- 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.
85
+ (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.
85
86
  """
86
87
  return pulumi.get(self, "with_describe")
87
88
 
@@ -100,8 +101,8 @@ class AwaitableGetSecretsResult(GetSecretsResult):
100
101
 
101
102
 
102
103
  def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']] = None,
103
- like: Optional[str] = None,
104
- with_describe: Optional[bool] = None,
104
+ like: Optional[builtins.str] = None,
105
+ with_describe: Optional[builtins.bool] = None,
105
106
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretsResult:
106
107
  """
107
108
  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`.
@@ -131,10 +132,12 @@ def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]
131
132
  pulumi.export("onlyShowOutput", only_show.secrets)
132
133
  ```
133
134
 
135
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
136
+
134
137
 
135
138
  :param Union['GetSecretsInArgs', 'GetSecretsInArgsDict'] in_: IN clause to filter the list of secrets
136
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
137
- :param bool with_describe: 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.
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
141
  """
139
142
  __args__ = dict()
140
143
  __args__['in'] = in_
@@ -150,8 +153,8 @@ def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]
150
153
  secrets=pulumi.get(__ret__, 'secrets'),
151
154
  with_describe=pulumi.get(__ret__, 'with_describe'))
152
155
  def get_secrets_output(in_: Optional[pulumi.Input[Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]]] = None,
153
- like: Optional[pulumi.Input[Optional[str]]] = None,
154
- with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
156
+ like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
157
+ with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
155
158
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecretsResult]:
156
159
  """
157
160
  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`.
@@ -181,10 +184,12 @@ def get_secrets_output(in_: Optional[pulumi.Input[Optional[Union['GetSecretsInAr
181
184
  pulumi.export("onlyShowOutput", only_show.secrets)
182
185
  ```
183
186
 
187
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
188
+
184
189
 
185
190
  :param Union['GetSecretsInArgs', 'GetSecretsInArgsDict'] in_: IN clause to filter the list of secrets
186
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
187
- :param bool with_describe: 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.
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.
188
193
  """
189
194
  __args__ = dict()
190
195
  __args__['in'] = in_
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -43,7 +44,7 @@ class GetSecurityIntegrationsResult:
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def id(self) -> str:
47
+ def id(self) -> builtins.str:
47
48
  """
48
49
  The provider-assigned unique ID for this managed resource.
49
50
  """
@@ -51,7 +52,7 @@ class GetSecurityIntegrationsResult:
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def like(self) -> Optional[str]:
55
+ def like(self) -> Optional[builtins.str]:
55
56
  """
56
57
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
57
58
  """
@@ -67,9 +68,9 @@ class GetSecurityIntegrationsResult:
67
68
 
68
69
  @property
69
70
  @pulumi.getter(name="withDescribe")
70
- def with_describe(self) -> Optional[bool]:
71
+ def with_describe(self) -> Optional[builtins.bool]:
71
72
  """
72
- 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.
73
+ (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.
73
74
  """
74
75
  return pulumi.get(self, "with_describe")
75
76
 
@@ -86,15 +87,15 @@ class AwaitableGetSecurityIntegrationsResult(GetSecurityIntegrationsResult):
86
87
  with_describe=self.with_describe)
87
88
 
88
89
 
89
- def get_security_integrations(like: Optional[str] = None,
90
- with_describe: Optional[bool] = None,
90
+ def get_security_integrations(like: Optional[builtins.str] = None,
91
+ with_describe: Optional[builtins.bool] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityIntegrationsResult:
92
93
  """
93
94
  Data source used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `security_integrations`.
94
95
 
95
96
 
96
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
97
- :param bool with_describe: 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.
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.
98
99
  """
99
100
  __args__ = dict()
100
101
  __args__['like'] = like
@@ -107,15 +108,15 @@ def get_security_integrations(like: Optional[str] = None,
107
108
  like=pulumi.get(__ret__, 'like'),
108
109
  security_integrations=pulumi.get(__ret__, 'security_integrations'),
109
110
  with_describe=pulumi.get(__ret__, 'with_describe'))
110
- def get_security_integrations_output(like: Optional[pulumi.Input[Optional[str]]] = None,
111
- with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
111
+ def get_security_integrations_output(like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
112
+ with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
112
113
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecurityIntegrationsResult]:
113
114
  """
114
115
  Data source used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `security_integrations`.
115
116
 
116
117
 
117
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
118
- :param bool with_describe: 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.
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.
119
120
  """
120
121
  __args__ = dict()
121
122
  __args__['like'] = like
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -43,7 +44,7 @@ class GetSequencesResult:
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def database(self) -> str:
47
+ def database(self) -> builtins.str:
47
48
  """
48
49
  The database from which to return the schemas from.
49
50
  """
@@ -51,7 +52,7 @@ class GetSequencesResult:
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def id(self) -> str:
55
+ def id(self) -> builtins.str:
55
56
  """
56
57
  The provider-assigned unique ID for this managed resource.
57
58
  """
@@ -59,7 +60,7 @@ class GetSequencesResult:
59
60
 
60
61
  @property
61
62
  @pulumi.getter
62
- def schema(self) -> str:
63
+ def schema(self) -> builtins.str:
63
64
  """
64
65
  The schema from which to return the sequences from.
65
66
  """
@@ -86,11 +87,11 @@ class AwaitableGetSequencesResult(GetSequencesResult):
86
87
  sequences=self.sequences)
87
88
 
88
89
 
89
- def get_sequences(database: Optional[str] = None,
90
- schema: Optional[str] = None,
90
+ def get_sequences(database: Optional[builtins.str] = None,
91
+ schema: Optional[builtins.str] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSequencesResult:
92
93
  """
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.
94
+ !> **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.
94
95
 
95
96
  ## Example Usage
96
97
 
@@ -102,9 +103,11 @@ def get_sequences(database: Optional[str] = None,
102
103
  schema="MYSCHEMA")
103
104
  ```
104
105
 
106
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
105
107
 
106
- :param str database: The database from which to return the schemas from.
107
- :param str schema: The schema from which to return the sequences from.
108
+
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
111
  """
109
112
  __args__ = dict()
110
113
  __args__['database'] = database
@@ -117,11 +120,11 @@ def get_sequences(database: Optional[str] = None,
117
120
  id=pulumi.get(__ret__, 'id'),
118
121
  schema=pulumi.get(__ret__, 'schema'),
119
122
  sequences=pulumi.get(__ret__, 'sequences'))
120
- def get_sequences_output(database: Optional[pulumi.Input[str]] = None,
121
- schema: Optional[pulumi.Input[str]] = None,
123
+ def get_sequences_output(database: Optional[pulumi.Input[builtins.str]] = None,
124
+ schema: Optional[pulumi.Input[builtins.str]] = None,
122
125
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSequencesResult]:
123
126
  """
124
- !> **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.
127
+ !> **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.
125
128
 
126
129
  ## Example Usage
127
130
 
@@ -133,9 +136,11 @@ def get_sequences_output(database: Optional[pulumi.Input[str]] = None,
133
136
  schema="MYSCHEMA")
134
137
  ```
135
138
 
139
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
140
+
136
141
 
137
- :param str database: The database from which to return the schemas from.
138
- :param str schema: The schema from which to return the sequences from.
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.
139
144
  """
140
145
  __args__ = dict()
141
146
  __args__['database'] = database
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -40,7 +41,7 @@ class GetSharesResult:
40
41
 
41
42
  @property
42
43
  @pulumi.getter
43
- def id(self) -> str:
44
+ def id(self) -> builtins.str:
44
45
  """
45
46
  The provider-assigned unique ID for this managed resource.
46
47
  """
@@ -48,7 +49,7 @@ class GetSharesResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter
51
- def pattern(self) -> Optional[str]:
52
+ def pattern(self) -> Optional[builtins.str]:
52
53
  """
53
54
  Filters the command output by object name.
54
55
  """
@@ -74,10 +75,10 @@ class AwaitableGetSharesResult(GetSharesResult):
74
75
  shares=self.shares)
75
76
 
76
77
 
77
- def get_shares(pattern: Optional[str] = None,
78
+ def get_shares(pattern: Optional[builtins.str] = None,
78
79
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSharesResult:
79
80
  """
80
- !> **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.
81
+ !> **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.
81
82
 
82
83
  ## Example Usage
83
84
 
@@ -89,8 +90,10 @@ def get_shares(pattern: Optional[str] = None,
89
90
  ad = snowflake.get_shares(pattern="usage")
90
91
  ```
91
92
 
93
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
92
94
 
93
- :param str pattern: Filters the command output by object name.
95
+
96
+ :param builtins.str pattern: Filters the command output by object name.
94
97
  """
95
98
  __args__ = dict()
96
99
  __args__['pattern'] = pattern
@@ -101,10 +104,10 @@ def get_shares(pattern: Optional[str] = None,
101
104
  id=pulumi.get(__ret__, 'id'),
102
105
  pattern=pulumi.get(__ret__, 'pattern'),
103
106
  shares=pulumi.get(__ret__, 'shares'))
104
- def get_shares_output(pattern: Optional[pulumi.Input[Optional[str]]] = None,
107
+ def get_shares_output(pattern: Optional[pulumi.Input[Optional[builtins.str]]] = None,
105
108
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSharesResult]:
106
109
  """
107
- !> **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.
110
+ !> **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.
108
111
 
109
112
  ## Example Usage
110
113
 
@@ -116,8 +119,10 @@ def get_shares_output(pattern: Optional[pulumi.Input[Optional[str]]] = None,
116
119
  ad = snowflake.get_shares(pattern="usage")
117
120
  ```
118
121
 
122
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
123
+
119
124
 
120
- :param str pattern: Filters the command output by object name.
125
+ :param builtins.str pattern: Filters the command output by object name.
121
126
  """
122
127
  __args__ = dict()
123
128
  __args__['pattern'] = pattern
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -43,7 +44,7 @@ class GetStagesResult:
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def database(self) -> str:
47
+ def database(self) -> builtins.str:
47
48
  """
48
49
  The database from which to return the schemas from.
49
50
  """
@@ -51,7 +52,7 @@ class GetStagesResult:
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def id(self) -> str:
55
+ def id(self) -> builtins.str:
55
56
  """
56
57
  The provider-assigned unique ID for this managed resource.
57
58
  """
@@ -59,7 +60,7 @@ class GetStagesResult:
59
60
 
60
61
  @property
61
62
  @pulumi.getter
62
- def schema(self) -> str:
63
+ def schema(self) -> builtins.str:
63
64
  """
64
65
  The schema from which to return the stages from.
65
66
  """
@@ -86,11 +87,11 @@ class AwaitableGetStagesResult(GetStagesResult):
86
87
  stages=self.stages)
87
88
 
88
89
 
89
- def get_stages(database: Optional[str] = None,
90
- schema: Optional[str] = None,
90
+ def get_stages(database: Optional[builtins.str] = None,
91
+ schema: Optional[builtins.str] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStagesResult:
92
93
  """
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.
94
+ !> **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.
94
95
 
95
96
  ## Example Usage
96
97
 
@@ -102,9 +103,11 @@ def get_stages(database: Optional[str] = None,
102
103
  schema="MYSCHEMA")
103
104
  ```
104
105
 
106
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
105
107
 
106
- :param str database: The database from which to return the schemas from.
107
- :param str schema: The schema from which to return the stages from.
108
+
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 stages from.
108
111
  """
109
112
  __args__ = dict()
110
113
  __args__['database'] = database
@@ -117,11 +120,11 @@ def get_stages(database: Optional[str] = None,
117
120
  id=pulumi.get(__ret__, 'id'),
118
121
  schema=pulumi.get(__ret__, 'schema'),
119
122
  stages=pulumi.get(__ret__, 'stages'))
120
- def get_stages_output(database: Optional[pulumi.Input[str]] = None,
121
- schema: Optional[pulumi.Input[str]] = None,
123
+ def get_stages_output(database: Optional[pulumi.Input[builtins.str]] = None,
124
+ schema: Optional[pulumi.Input[builtins.str]] = None,
122
125
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStagesResult]:
123
126
  """
124
- !> **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.
127
+ !> **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.
125
128
 
126
129
  ## Example Usage
127
130
 
@@ -133,9 +136,11 @@ def get_stages_output(database: Optional[pulumi.Input[str]] = None,
133
136
  schema="MYSCHEMA")
134
137
  ```
135
138
 
139
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
140
+
136
141
 
137
- :param str database: The database from which to return the schemas from.
138
- :param str schema: The schema from which to return the stages from.
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 stages from.
139
144
  """
140
145
  __args__ = dict()
141
146
  __args__['database'] = database
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -37,7 +38,7 @@ class GetStorageIntegrationsResult:
37
38
 
38
39
  @property
39
40
  @pulumi.getter
40
- def id(self) -> str:
41
+ def id(self) -> builtins.str:
41
42
  """
42
43
  The provider-assigned unique ID for this managed resource.
43
44
  """
@@ -64,7 +65,7 @@ class AwaitableGetStorageIntegrationsResult(GetStorageIntegrationsResult):
64
65
 
65
66
  def get_storage_integrations(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStorageIntegrationsResult:
66
67
  """
67
- !> **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.
68
+ !> **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.
68
69
 
69
70
  ## Example Usage
70
71
 
@@ -74,6 +75,8 @@ def get_storage_integrations(opts: Optional[pulumi.InvokeOptions] = None) -> Awa
74
75
 
75
76
  current = snowflake.get_storage_integrations()
76
77
  ```
78
+
79
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
77
80
  """
78
81
  __args__ = dict()
79
82
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
@@ -84,7 +87,7 @@ def get_storage_integrations(opts: Optional[pulumi.InvokeOptions] = None) -> Awa
84
87
  storage_integrations=pulumi.get(__ret__, 'storage_integrations'))
85
88
  def get_storage_integrations_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStorageIntegrationsResult]:
86
89
  """
87
- !> **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.
90
+ !> **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.
88
91
 
89
92
  ## Example Usage
90
93
 
@@ -94,6 +97,8 @@ def get_storage_integrations_output(opts: Optional[Union[pulumi.InvokeOptions, p
94
97
 
95
98
  current = snowflake.get_storage_integrations()
96
99
  ```
100
+
101
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
97
102
  """
98
103
  __args__ = dict()
99
104
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -50,7 +51,7 @@ class GetStreamlitsResult:
50
51
 
51
52
  @property
52
53
  @pulumi.getter
53
- def id(self) -> str:
54
+ def id(self) -> builtins.str:
54
55
  """
55
56
  The provider-assigned unique ID for this managed resource.
56
57
  """
@@ -66,7 +67,7 @@ class GetStreamlitsResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def like(self) -> Optional[str]:
70
+ def like(self) -> Optional[builtins.str]:
70
71
  """
71
72
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
72
73
  """
@@ -90,9 +91,9 @@ class GetStreamlitsResult:
90
91
 
91
92
  @property
92
93
  @pulumi.getter(name="withDescribe")
93
- def with_describe(self) -> Optional[bool]:
94
+ def with_describe(self) -> Optional[builtins.bool]:
94
95
  """
95
- Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
96
+ (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
96
97
  """
97
98
  return pulumi.get(self, "with_describe")
98
99
 
@@ -112,18 +113,18 @@ class AwaitableGetStreamlitsResult(GetStreamlitsResult):
112
113
 
113
114
 
114
115
  def get_streamlits(in_: Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict']] = None,
115
- like: Optional[str] = None,
116
+ like: Optional[builtins.str] = None,
116
117
  limit: Optional[Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict']] = None,
117
- with_describe: Optional[bool] = None,
118
+ with_describe: Optional[builtins.bool] = None,
118
119
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStreamlitsResult:
119
120
  """
120
121
  Data source used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
121
122
 
122
123
 
123
124
  :param Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict'] in_: IN clause to filter the list of streamlits
124
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
125
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
125
126
  :param Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll 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`.
126
- :param bool with_describe: Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
127
+ :param builtins.bool with_describe: (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
127
128
  """
128
129
  __args__ = dict()
129
130
  __args__['in'] = in_
@@ -141,18 +142,18 @@ def get_streamlits(in_: Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInAr
141
142
  streamlits=pulumi.get(__ret__, 'streamlits'),
142
143
  with_describe=pulumi.get(__ret__, 'with_describe'))
143
144
  def get_streamlits_output(in_: Optional[pulumi.Input[Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict']]]] = None,
144
- like: Optional[pulumi.Input[Optional[str]]] = None,
145
+ like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
145
146
  limit: Optional[pulumi.Input[Optional[Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict']]]] = None,
146
- with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
147
+ with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
147
148
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStreamlitsResult]:
148
149
  """
149
150
  Data source used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
150
151
 
151
152
 
152
153
  :param Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict'] in_: IN clause to filter the list of streamlits
153
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
155
  :param Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll 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 bool with_describe: Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
156
+ :param builtins.bool with_describe: (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
156
157
  """
157
158
  __args__ = dict()
158
159
  __args__['in'] = in_