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
@@ -51,7 +52,7 @@ class GetAccountRolesResult:
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 GetAccountRolesResult:
59
60
 
60
61
  @property
61
62
  @pulumi.getter(name="inClass")
62
- def in_class(self) -> Optional[str]:
63
+ def in_class(self) -> Optional[builtins.str]:
63
64
  """
64
65
  Filters the SHOW GRANTS output by class name.
65
66
  """
@@ -67,7 +68,7 @@ class GetAccountRolesResult:
67
68
 
68
69
  @property
69
70
  @pulumi.getter
70
- def like(self) -> Optional[str]:
71
+ def like(self) -> Optional[builtins.str]:
71
72
  """
72
73
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
73
74
  """
@@ -86,15 +87,15 @@ class AwaitableGetAccountRolesResult(GetAccountRolesResult):
86
87
  like=self.like)
87
88
 
88
89
 
89
- def get_account_roles(in_class: Optional[str] = None,
90
- like: Optional[str] = None,
90
+ def get_account_roles(in_class: Optional[builtins.str] = None,
91
+ like: Optional[builtins.str] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountRolesResult:
92
93
  """
93
94
  Data source used to get details of filtered account roles. Filtering is aligned with the current possibilities for [SHOW ROLES](https://docs.snowflake.com/en/sql-reference/sql/show-roles) query (`like` and `in_class` are all supported). The results of SHOW are encapsulated in one output collection.
94
95
 
95
96
 
96
- :param str in_class: Filters the SHOW GRANTS output by class name.
97
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
97
+ :param builtins.str in_class: Filters the SHOW GRANTS output by class name.
98
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
98
99
  """
99
100
  __args__ = dict()
100
101
  __args__['inClass'] = in_class
@@ -107,15 +108,15 @@ def get_account_roles(in_class: Optional[str] = None,
107
108
  id=pulumi.get(__ret__, 'id'),
108
109
  in_class=pulumi.get(__ret__, 'in_class'),
109
110
  like=pulumi.get(__ret__, 'like'))
110
- def get_account_roles_output(in_class: Optional[pulumi.Input[Optional[str]]] = None,
111
- like: Optional[pulumi.Input[Optional[str]]] = None,
111
+ def get_account_roles_output(in_class: Optional[pulumi.Input[Optional[builtins.str]]] = None,
112
+ like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
112
113
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountRolesResult]:
113
114
  """
114
115
  Data source used to get details of filtered account roles. Filtering is aligned with the current possibilities for [SHOW ROLES](https://docs.snowflake.com/en/sql-reference/sql/show-roles) query (`like` and `in_class` are all supported). The results of SHOW are encapsulated in one output collection.
115
116
 
116
117
 
117
- :param str in_class: Filters the SHOW GRANTS output by class name.
118
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
118
+ :param builtins.str in_class: Filters the SHOW GRANTS output by class name.
119
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
119
120
  """
120
121
  __args__ = dict()
121
122
  __args__['inClass'] = in_class
@@ -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
@@ -51,7 +52,7 @@ class GetAccountsResult:
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 GetAccountsResult:
59
60
 
60
61
  @property
61
62
  @pulumi.getter
62
- def like(self) -> Optional[str]:
63
+ def like(self) -> Optional[builtins.str]:
63
64
  """
64
65
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
65
66
  """
@@ -67,7 +68,7 @@ class GetAccountsResult:
67
68
 
68
69
  @property
69
70
  @pulumi.getter(name="withHistory")
70
- def with_history(self) -> Optional[bool]:
71
+ def with_history(self) -> Optional[builtins.bool]:
71
72
  """
72
73
  Includes dropped accounts that have not yet been deleted.
73
74
  """
@@ -86,15 +87,15 @@ class AwaitableGetAccountsResult(GetAccountsResult):
86
87
  with_history=self.with_history)
87
88
 
88
89
 
89
- def get_accounts(like: Optional[str] = None,
90
- with_history: Optional[bool] = None,
90
+ def get_accounts(like: Optional[builtins.str] = None,
91
+ with_history: Optional[builtins.bool] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountsResult:
92
93
  """
93
94
  Data source used to get details of filtered accounts. Filtering is aligned with the current possibilities for [SHOW ACCOUNTS](https://docs.snowflake.com/en/sql-reference/sql/show-accounts) query. The results of SHOW are encapsulated in one output collection `accounts`.
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_history: Includes dropped accounts that have not yet been deleted.
97
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
98
+ :param builtins.bool with_history: Includes dropped accounts that have not yet been deleted.
98
99
  """
99
100
  __args__ = dict()
100
101
  __args__['like'] = like
@@ -107,15 +108,15 @@ def get_accounts(like: Optional[str] = None,
107
108
  id=pulumi.get(__ret__, 'id'),
108
109
  like=pulumi.get(__ret__, 'like'),
109
110
  with_history=pulumi.get(__ret__, 'with_history'))
110
- def get_accounts_output(like: Optional[pulumi.Input[Optional[str]]] = None,
111
- with_history: Optional[pulumi.Input[Optional[bool]]] = None,
111
+ def get_accounts_output(like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
112
+ with_history: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
112
113
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountsResult]:
113
114
  """
114
115
  Data source used to get details of filtered accounts. Filtering is aligned with the current possibilities for [SHOW ACCOUNTS](https://docs.snowflake.com/en/sql-reference/sql/show-accounts) query. The results of SHOW are encapsulated in one output collection `accounts`.
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_history: Includes dropped accounts that have not yet been deleted.
118
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
119
+ :param builtins.bool with_history: Includes dropped accounts that have not yet been deleted.
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
@@ -54,7 +55,7 @@ class GetAlertsResult:
54
55
 
55
56
  @property
56
57
  @pulumi.getter
57
- def database(self) -> Optional[str]:
58
+ def database(self) -> Optional[builtins.str]:
58
59
  """
59
60
  The database from which to return the alerts from.
60
61
  """
@@ -62,7 +63,7 @@ class GetAlertsResult:
62
63
 
63
64
  @property
64
65
  @pulumi.getter
65
- def id(self) -> str:
66
+ def id(self) -> builtins.str:
66
67
  """
67
68
  The provider-assigned unique ID for this managed resource.
68
69
  """
@@ -70,7 +71,7 @@ class GetAlertsResult:
70
71
 
71
72
  @property
72
73
  @pulumi.getter
73
- def pattern(self) -> Optional[str]:
74
+ def pattern(self) -> Optional[builtins.str]:
74
75
  """
75
76
  Filters the command output by object name.
76
77
  """
@@ -78,7 +79,7 @@ class GetAlertsResult:
78
79
 
79
80
  @property
80
81
  @pulumi.getter
81
- def schema(self) -> Optional[str]:
82
+ def schema(self) -> Optional[builtins.str]:
82
83
  """
83
84
  The schema from which to return the alerts from.
84
85
  """
@@ -98,12 +99,12 @@ class AwaitableGetAlertsResult(GetAlertsResult):
98
99
  schema=self.schema)
99
100
 
100
101
 
101
- def get_alerts(database: Optional[str] = None,
102
- pattern: Optional[str] = None,
103
- schema: Optional[str] = None,
102
+ def get_alerts(database: Optional[builtins.str] = None,
103
+ pattern: Optional[builtins.str] = None,
104
+ schema: Optional[builtins.str] = None,
104
105
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAlertsResult:
105
106
  """
106
- !> **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.
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.
107
108
 
108
109
  ## Example Usage
109
110
 
@@ -115,10 +116,12 @@ def get_alerts(database: Optional[str] = None,
115
116
  schema="MYSCHEMA")
116
117
  ```
117
118
 
119
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
118
120
 
119
- :param str database: The database from which to return the alerts from.
120
- :param str pattern: Filters the command output by object name.
121
- :param str schema: The schema from which to return the alerts from.
121
+
122
+ :param builtins.str database: The database from which to return the alerts from.
123
+ :param builtins.str pattern: Filters the command output by object name.
124
+ :param builtins.str schema: The schema from which to return the alerts from.
122
125
  """
123
126
  __args__ = dict()
124
127
  __args__['database'] = database
@@ -133,12 +136,12 @@ def get_alerts(database: Optional[str] = None,
133
136
  id=pulumi.get(__ret__, 'id'),
134
137
  pattern=pulumi.get(__ret__, 'pattern'),
135
138
  schema=pulumi.get(__ret__, 'schema'))
136
- def get_alerts_output(database: Optional[pulumi.Input[Optional[str]]] = None,
137
- pattern: Optional[pulumi.Input[Optional[str]]] = None,
138
- schema: Optional[pulumi.Input[Optional[str]]] = None,
139
+ def get_alerts_output(database: Optional[pulumi.Input[Optional[builtins.str]]] = None,
140
+ pattern: Optional[pulumi.Input[Optional[builtins.str]]] = None,
141
+ schema: Optional[pulumi.Input[Optional[builtins.str]]] = None,
139
142
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertsResult]:
140
143
  """
141
- !> **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.
144
+ !> **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.
142
145
 
143
146
  ## Example Usage
144
147
 
@@ -150,10 +153,12 @@ def get_alerts_output(database: Optional[pulumi.Input[Optional[str]]] = None,
150
153
  schema="MYSCHEMA")
151
154
  ```
152
155
 
156
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
157
+
153
158
 
154
- :param str database: The database from which to return the alerts from.
155
- :param str pattern: Filters the command output by object name.
156
- :param str schema: The schema from which to return the alerts from.
159
+ :param builtins.str database: The database from which to return the alerts from.
160
+ :param builtins.str pattern: Filters the command output by object name.
161
+ :param builtins.str schema: The schema from which to return the alerts from.
157
162
  """
158
163
  __args__ = dict()
159
164
  __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
@@ -48,7 +49,7 @@ class GetConnectionsResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter
51
- def id(self) -> str:
52
+ def id(self) -> builtins.str:
52
53
  """
53
54
  The provider-assigned unique ID for this managed resource.
54
55
  """
@@ -56,7 +57,7 @@ class GetConnectionsResult:
56
57
 
57
58
  @property
58
59
  @pulumi.getter
59
- def like(self) -> Optional[str]:
60
+ def like(self) -> Optional[builtins.str]:
60
61
  """
61
62
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
62
63
  """
@@ -74,13 +75,13 @@ class AwaitableGetConnectionsResult(GetConnectionsResult):
74
75
  like=self.like)
75
76
 
76
77
 
77
- def get_connections(like: Optional[str] = None,
78
+ def get_connections(like: Optional[builtins.str] = None,
78
79
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConnectionsResult:
79
80
  """
80
81
  Data source used to get details of filtered connections. Filtering is aligned with the current possibilities for [SHOW CONNECTIONS](https://docs.snowflake.com/en/sql-reference/sql/show-connections) query. The results of SHOW is encapsulated in one output collection `connections`.
81
82
 
82
83
 
83
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
84
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
84
85
  """
85
86
  __args__ = dict()
86
87
  __args__['like'] = like
@@ -91,13 +92,13 @@ def get_connections(like: Optional[str] = None,
91
92
  connections=pulumi.get(__ret__, 'connections'),
92
93
  id=pulumi.get(__ret__, 'id'),
93
94
  like=pulumi.get(__ret__, 'like'))
94
- def get_connections_output(like: Optional[pulumi.Input[Optional[str]]] = None,
95
+ def get_connections_output(like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
95
96
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConnectionsResult]:
96
97
  """
97
98
  Data source used to get details of filtered connections. Filtering is aligned with the current possibilities for [SHOW CONNECTIONS](https://docs.snowflake.com/en/sql-reference/sql/show-connections) query. The results of SHOW is encapsulated in one output collection `connections`.
98
99
 
99
100
 
100
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
101
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
101
102
  """
102
103
  __args__ = dict()
103
104
  __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
@@ -58,7 +59,7 @@ class GetCortexSearchServicesResult:
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def id(self) -> str:
62
+ def id(self) -> builtins.str:
62
63
  """
63
64
  The provider-assigned unique ID for this managed resource.
64
65
  """
@@ -74,7 +75,7 @@ class GetCortexSearchServicesResult:
74
75
 
75
76
  @property
76
77
  @pulumi.getter
77
- def like(self) -> Optional[str]:
78
+ def like(self) -> Optional[builtins.str]:
78
79
  """
79
80
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
80
81
  """
@@ -90,7 +91,7 @@ class GetCortexSearchServicesResult:
90
91
 
91
92
  @property
92
93
  @pulumi.getter(name="startsWith")
93
- def starts_with(self) -> Optional[str]:
94
+ def starts_with(self) -> Optional[builtins.str]:
94
95
  """
95
96
  Filters the output with **case-sensitive** characters indicating the beginning of the object name.
96
97
  """
@@ -112,12 +113,12 @@ class AwaitableGetCortexSearchServicesResult(GetCortexSearchServicesResult):
112
113
 
113
114
 
114
115
  def get_cortex_search_services(in_: Optional[Union['GetCortexSearchServicesInArgs', 'GetCortexSearchServicesInArgsDict']] = None,
115
- like: Optional[str] = None,
116
+ like: Optional[builtins.str] = None,
116
117
  limit: Optional[Union['GetCortexSearchServicesLimitArgs', 'GetCortexSearchServicesLimitArgsDict']] = None,
117
- starts_with: Optional[str] = None,
118
+ starts_with: Optional[builtins.str] = None,
118
119
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCortexSearchServicesResult:
119
120
  """
120
- !> **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.
121
+ !> **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.
121
122
 
122
123
  ## Example Usage
123
124
 
@@ -142,11 +143,13 @@ def get_cortex_search_services(in_: Optional[Union['GetCortexSearchServicesInArg
142
143
  pulumi.export("limitOutput", limit.cortex_search_services)
143
144
  ```
144
145
 
146
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
147
+
145
148
 
146
149
  :param Union['GetCortexSearchServicesInArgs', 'GetCortexSearchServicesInArgsDict'] in_: IN clause to filter the list of cortex search services.
147
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
150
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
148
151
  :param Union['GetCortexSearchServicesLimitArgs', 'GetCortexSearchServicesLimitArgsDict'] 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`.
149
- :param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
152
+ :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
150
153
  """
151
154
  __args__ = dict()
152
155
  __args__['in'] = in_
@@ -164,12 +167,12 @@ def get_cortex_search_services(in_: Optional[Union['GetCortexSearchServicesInArg
164
167
  limit=pulumi.get(__ret__, 'limit'),
165
168
  starts_with=pulumi.get(__ret__, 'starts_with'))
166
169
  def get_cortex_search_services_output(in_: Optional[pulumi.Input[Optional[Union['GetCortexSearchServicesInArgs', 'GetCortexSearchServicesInArgsDict']]]] = None,
167
- like: Optional[pulumi.Input[Optional[str]]] = None,
170
+ like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
168
171
  limit: Optional[pulumi.Input[Optional[Union['GetCortexSearchServicesLimitArgs', 'GetCortexSearchServicesLimitArgsDict']]]] = None,
169
- starts_with: Optional[pulumi.Input[Optional[str]]] = None,
172
+ starts_with: Optional[pulumi.Input[Optional[builtins.str]]] = None,
170
173
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCortexSearchServicesResult]:
171
174
  """
172
- !> **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.
175
+ !> **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.
173
176
 
174
177
  ## Example Usage
175
178
 
@@ -194,11 +197,13 @@ def get_cortex_search_services_output(in_: Optional[pulumi.Input[Optional[Union[
194
197
  pulumi.export("limitOutput", limit.cortex_search_services)
195
198
  ```
196
199
 
200
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
201
+
197
202
 
198
203
  :param Union['GetCortexSearchServicesInArgs', 'GetCortexSearchServicesInArgsDict'] in_: IN clause to filter the list of cortex search services.
199
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
204
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
200
205
  :param Union['GetCortexSearchServicesLimitArgs', 'GetCortexSearchServicesLimitArgsDict'] 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`.
201
- :param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
206
+ :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
202
207
  """
203
208
  __args__ = dict()
204
209
  __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
@@ -42,7 +43,7 @@ class GetCurrentAccountResult:
42
43
 
43
44
  @property
44
45
  @pulumi.getter
45
- def account(self) -> str:
46
+ def account(self) -> builtins.str:
46
47
  """
47
48
  The Snowflake Account ID; as returned by CURRENT_ACCOUNT().
48
49
  """
@@ -50,7 +51,7 @@ class GetCurrentAccountResult:
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
  """
@@ -58,7 +59,7 @@ class GetCurrentAccountResult:
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def region(self) -> str:
62
+ def region(self) -> builtins.str:
62
63
  """
63
64
  The Snowflake Region; as returned by CURRENT_REGION()
64
65
  """
@@ -66,7 +67,7 @@ class GetCurrentAccountResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def url(self) -> str:
70
+ def url(self) -> builtins.str:
70
71
  """
71
72
  The Snowflake URL.
72
73
  """
@@ -87,7 +88,7 @@ class AwaitableGetCurrentAccountResult(GetCurrentAccountResult):
87
88
 
88
89
  def get_current_account(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCurrentAccountResult:
89
90
  """
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.
91
+ !> **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.
91
92
 
92
93
  ## Example Usage
93
94
 
@@ -102,6 +103,8 @@ def get_current_account(opts: Optional[pulumi.InvokeOptions] = None) -> Awaitabl
102
103
  type=String,
103
104
  value=this.url)
104
105
  ```
106
+
107
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
105
108
  """
106
109
  __args__ = dict()
107
110
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
@@ -114,7 +117,7 @@ def get_current_account(opts: Optional[pulumi.InvokeOptions] = None) -> Awaitabl
114
117
  url=pulumi.get(__ret__, 'url'))
115
118
  def get_current_account_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCurrentAccountResult]:
116
119
  """
117
- !> **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.
120
+ !> **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.
118
121
 
119
122
  ## Example Usage
120
123
 
@@ -129,6 +132,8 @@ def get_current_account_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi
129
132
  type=String,
130
133
  value=this.url)
131
134
  ```
135
+
136
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
132
137
  """
133
138
  __args__ = dict()
134
139
  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
@@ -36,7 +37,7 @@ class GetCurrentRoleResult:
36
37
 
37
38
  @property
38
39
  @pulumi.getter
39
- def id(self) -> str:
40
+ def id(self) -> builtins.str:
40
41
  """
41
42
  The provider-assigned unique ID for this managed resource.
42
43
  """
@@ -44,7 +45,7 @@ class GetCurrentRoleResult:
44
45
 
45
46
  @property
46
47
  @pulumi.getter
47
- def name(self) -> str:
48
+ def name(self) -> builtins.str:
48
49
  """
49
50
  The name of the [primary role](https://docs.snowflake.com/en/user-guide/security-access-control-overview.html#label-access-control-role-enforcement) in use for the current session.
50
51
  """
@@ -63,7 +64,9 @@ class AwaitableGetCurrentRoleResult(GetCurrentRoleResult):
63
64
 
64
65
  def get_current_role(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCurrentRoleResult:
65
66
  """
66
- !> **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.
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
+
69
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
67
70
  """
68
71
  __args__ = dict()
69
72
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
@@ -74,7 +77,9 @@ def get_current_role(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGe
74
77
  name=pulumi.get(__ret__, 'name'))
75
78
  def get_current_role_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCurrentRoleResult]:
76
79
  """
77
- !> **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.
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
+
82
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
78
83
  """
79
84
  __args__ = dict()
80
85
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)