pulumi-snowflake 2.3.0a1752907264__py3-none-any.whl → 2.3.0a1753398370__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-snowflake might be problematic. Click here for more details.

Files changed (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1752907264.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,28 +21,28 @@ __all__ = ['ApiAuthenticationIntegrationWithJwtBearerArgs', 'ApiAuthenticationIn
22
21
  @pulumi.input_type
23
22
  class ApiAuthenticationIntegrationWithJwtBearerArgs:
24
23
  def __init__(__self__, *,
25
- enabled: pulumi.Input[builtins.bool],
26
- oauth_assertion_issuer: pulumi.Input[builtins.str],
27
- oauth_client_id: pulumi.Input[builtins.str],
28
- oauth_client_secret: pulumi.Input[builtins.str],
29
- comment: Optional[pulumi.Input[builtins.str]] = None,
30
- name: Optional[pulumi.Input[builtins.str]] = None,
31
- oauth_access_token_validity: Optional[pulumi.Input[builtins.int]] = None,
32
- oauth_authorization_endpoint: Optional[pulumi.Input[builtins.str]] = None,
33
- oauth_client_auth_method: Optional[pulumi.Input[builtins.str]] = None,
34
- oauth_refresh_token_validity: Optional[pulumi.Input[builtins.int]] = None,
35
- oauth_token_endpoint: Optional[pulumi.Input[builtins.str]] = None):
24
+ enabled: pulumi.Input[_builtins.bool],
25
+ oauth_assertion_issuer: pulumi.Input[_builtins.str],
26
+ oauth_client_id: pulumi.Input[_builtins.str],
27
+ oauth_client_secret: pulumi.Input[_builtins.str],
28
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
29
+ name: Optional[pulumi.Input[_builtins.str]] = None,
30
+ oauth_access_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
31
+ oauth_authorization_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
32
+ oauth_client_auth_method: Optional[pulumi.Input[_builtins.str]] = None,
33
+ oauth_refresh_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
34
+ oauth_token_endpoint: Optional[pulumi.Input[_builtins.str]] = None):
36
35
  """
37
36
  The set of arguments for constructing a ApiAuthenticationIntegrationWithJwtBearer resource.
38
- :param pulumi.Input[builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
39
- :param pulumi.Input[builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
40
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the integration.
41
- :param pulumi.Input[builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
42
- :param pulumi.Input[builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
43
- :param pulumi.Input[builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
44
- :param pulumi.Input[builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
45
- :param pulumi.Input[builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
46
- :param pulumi.Input[builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
37
+ :param pulumi.Input[_builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
38
+ :param pulumi.Input[_builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
39
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the integration.
40
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
41
+ :param pulumi.Input[_builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
42
+ :param pulumi.Input[_builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
43
+ :param pulumi.Input[_builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
44
+ :param pulumi.Input[_builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
45
+ :param pulumi.Input[_builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
47
46
  """
48
47
  pulumi.set(__self__, "enabled", enabled)
49
48
  pulumi.set(__self__, "oauth_assertion_issuer", oauth_assertion_issuer)
@@ -64,163 +63,163 @@ class ApiAuthenticationIntegrationWithJwtBearerArgs:
64
63
  if oauth_token_endpoint is not None:
65
64
  pulumi.set(__self__, "oauth_token_endpoint", oauth_token_endpoint)
66
65
 
67
- @property
66
+ @_builtins.property
68
67
  @pulumi.getter
69
- def enabled(self) -> pulumi.Input[builtins.bool]:
68
+ def enabled(self) -> pulumi.Input[_builtins.bool]:
70
69
  """
71
70
  Specifies whether this security integration is enabled or disabled.
72
71
  """
73
72
  return pulumi.get(self, "enabled")
74
73
 
75
74
  @enabled.setter
76
- def enabled(self, value: pulumi.Input[builtins.bool]):
75
+ def enabled(self, value: pulumi.Input[_builtins.bool]):
77
76
  pulumi.set(self, "enabled", value)
78
77
 
79
- @property
78
+ @_builtins.property
80
79
  @pulumi.getter(name="oauthAssertionIssuer")
81
- def oauth_assertion_issuer(self) -> pulumi.Input[builtins.str]:
80
+ def oauth_assertion_issuer(self) -> pulumi.Input[_builtins.str]:
82
81
  return pulumi.get(self, "oauth_assertion_issuer")
83
82
 
84
83
  @oauth_assertion_issuer.setter
85
- def oauth_assertion_issuer(self, value: pulumi.Input[builtins.str]):
84
+ def oauth_assertion_issuer(self, value: pulumi.Input[_builtins.str]):
86
85
  pulumi.set(self, "oauth_assertion_issuer", value)
87
86
 
88
- @property
87
+ @_builtins.property
89
88
  @pulumi.getter(name="oauthClientId")
90
- def oauth_client_id(self) -> pulumi.Input[builtins.str]:
89
+ def oauth_client_id(self) -> pulumi.Input[_builtins.str]:
91
90
  """
92
91
  Specifies the client ID for the OAuth application in the external service.
93
92
  """
94
93
  return pulumi.get(self, "oauth_client_id")
95
94
 
96
95
  @oauth_client_id.setter
97
- def oauth_client_id(self, value: pulumi.Input[builtins.str]):
96
+ def oauth_client_id(self, value: pulumi.Input[_builtins.str]):
98
97
  pulumi.set(self, "oauth_client_id", value)
99
98
 
100
- @property
99
+ @_builtins.property
101
100
  @pulumi.getter(name="oauthClientSecret")
102
- def oauth_client_secret(self) -> pulumi.Input[builtins.str]:
101
+ def oauth_client_secret(self) -> pulumi.Input[_builtins.str]:
103
102
  return pulumi.get(self, "oauth_client_secret")
104
103
 
105
104
  @oauth_client_secret.setter
106
- def oauth_client_secret(self, value: pulumi.Input[builtins.str]):
105
+ def oauth_client_secret(self, value: pulumi.Input[_builtins.str]):
107
106
  pulumi.set(self, "oauth_client_secret", value)
108
107
 
109
- @property
108
+ @_builtins.property
110
109
  @pulumi.getter
111
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
110
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
112
111
  """
113
112
  Specifies a comment for the integration.
114
113
  """
115
114
  return pulumi.get(self, "comment")
116
115
 
117
116
  @comment.setter
118
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
117
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
119
118
  pulumi.set(self, "comment", value)
120
119
 
121
- @property
120
+ @_builtins.property
122
121
  @pulumi.getter
123
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
122
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
124
123
  """
125
124
  Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
126
125
  """
127
126
  return pulumi.get(self, "name")
128
127
 
129
128
  @name.setter
130
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
129
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
131
130
  pulumi.set(self, "name", value)
132
131
 
133
- @property
132
+ @_builtins.property
134
133
  @pulumi.getter(name="oauthAccessTokenValidity")
135
- def oauth_access_token_validity(self) -> Optional[pulumi.Input[builtins.int]]:
134
+ def oauth_access_token_validity(self) -> Optional[pulumi.Input[_builtins.int]]:
136
135
  """
137
136
  (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
138
137
  """
139
138
  return pulumi.get(self, "oauth_access_token_validity")
140
139
 
141
140
  @oauth_access_token_validity.setter
142
- def oauth_access_token_validity(self, value: Optional[pulumi.Input[builtins.int]]):
141
+ def oauth_access_token_validity(self, value: Optional[pulumi.Input[_builtins.int]]):
143
142
  pulumi.set(self, "oauth_access_token_validity", value)
144
143
 
145
- @property
144
+ @_builtins.property
146
145
  @pulumi.getter(name="oauthAuthorizationEndpoint")
147
- def oauth_authorization_endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
146
+ def oauth_authorization_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
148
147
  """
149
148
  Specifies the URL for authenticating to the external service.
150
149
  """
151
150
  return pulumi.get(self, "oauth_authorization_endpoint")
152
151
 
153
152
  @oauth_authorization_endpoint.setter
154
- def oauth_authorization_endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
153
+ def oauth_authorization_endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
155
154
  pulumi.set(self, "oauth_authorization_endpoint", value)
156
155
 
157
- @property
156
+ @_builtins.property
158
157
  @pulumi.getter(name="oauthClientAuthMethod")
159
- def oauth_client_auth_method(self) -> Optional[pulumi.Input[builtins.str]]:
158
+ def oauth_client_auth_method(self) -> Optional[pulumi.Input[_builtins.str]]:
160
159
  """
161
160
  Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
162
161
  """
163
162
  return pulumi.get(self, "oauth_client_auth_method")
164
163
 
165
164
  @oauth_client_auth_method.setter
166
- def oauth_client_auth_method(self, value: Optional[pulumi.Input[builtins.str]]):
165
+ def oauth_client_auth_method(self, value: Optional[pulumi.Input[_builtins.str]]):
167
166
  pulumi.set(self, "oauth_client_auth_method", value)
168
167
 
169
- @property
168
+ @_builtins.property
170
169
  @pulumi.getter(name="oauthRefreshTokenValidity")
171
- def oauth_refresh_token_validity(self) -> Optional[pulumi.Input[builtins.int]]:
170
+ def oauth_refresh_token_validity(self) -> Optional[pulumi.Input[_builtins.int]]:
172
171
  """
173
172
  Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
174
173
  """
175
174
  return pulumi.get(self, "oauth_refresh_token_validity")
176
175
 
177
176
  @oauth_refresh_token_validity.setter
178
- def oauth_refresh_token_validity(self, value: Optional[pulumi.Input[builtins.int]]):
177
+ def oauth_refresh_token_validity(self, value: Optional[pulumi.Input[_builtins.int]]):
179
178
  pulumi.set(self, "oauth_refresh_token_validity", value)
180
179
 
181
- @property
180
+ @_builtins.property
182
181
  @pulumi.getter(name="oauthTokenEndpoint")
183
- def oauth_token_endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
182
+ def oauth_token_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
184
183
  """
185
184
  Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
186
185
  """
187
186
  return pulumi.get(self, "oauth_token_endpoint")
188
187
 
189
188
  @oauth_token_endpoint.setter
190
- def oauth_token_endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
189
+ def oauth_token_endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
191
190
  pulumi.set(self, "oauth_token_endpoint", value)
192
191
 
193
192
 
194
193
  @pulumi.input_type
195
194
  class _ApiAuthenticationIntegrationWithJwtBearerState:
196
195
  def __init__(__self__, *,
197
- comment: Optional[pulumi.Input[builtins.str]] = None,
196
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
198
197
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgs']]]] = None,
199
- enabled: Optional[pulumi.Input[builtins.bool]] = None,
200
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
201
- name: Optional[pulumi.Input[builtins.str]] = None,
202
- oauth_access_token_validity: Optional[pulumi.Input[builtins.int]] = None,
203
- oauth_assertion_issuer: Optional[pulumi.Input[builtins.str]] = None,
204
- oauth_authorization_endpoint: Optional[pulumi.Input[builtins.str]] = None,
205
- oauth_client_auth_method: Optional[pulumi.Input[builtins.str]] = None,
206
- oauth_client_id: Optional[pulumi.Input[builtins.str]] = None,
207
- oauth_client_secret: Optional[pulumi.Input[builtins.str]] = None,
208
- oauth_refresh_token_validity: Optional[pulumi.Input[builtins.int]] = None,
209
- oauth_token_endpoint: Optional[pulumi.Input[builtins.str]] = None,
198
+ enabled: Optional[pulumi.Input[_builtins.bool]] = None,
199
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
200
+ name: Optional[pulumi.Input[_builtins.str]] = None,
201
+ oauth_access_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
202
+ oauth_assertion_issuer: Optional[pulumi.Input[_builtins.str]] = None,
203
+ oauth_authorization_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
204
+ oauth_client_auth_method: Optional[pulumi.Input[_builtins.str]] = None,
205
+ oauth_client_id: Optional[pulumi.Input[_builtins.str]] = None,
206
+ oauth_client_secret: Optional[pulumi.Input[_builtins.str]] = None,
207
+ oauth_refresh_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
208
+ oauth_token_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
210
209
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerShowOutputArgs']]]] = None):
211
210
  """
212
211
  Input properties used for looking up and filtering ApiAuthenticationIntegrationWithJwtBearer resources.
213
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the integration.
212
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the integration.
214
213
  :param pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
215
- :param pulumi.Input[builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
216
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
217
- :param pulumi.Input[builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
218
- :param pulumi.Input[builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
219
- :param pulumi.Input[builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
220
- :param pulumi.Input[builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
221
- :param pulumi.Input[builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
222
- :param pulumi.Input[builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
223
- :param pulumi.Input[builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
214
+ :param pulumi.Input[_builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
215
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
216
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
217
+ :param pulumi.Input[_builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
218
+ :param pulumi.Input[_builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
219
+ :param pulumi.Input[_builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
220
+ :param pulumi.Input[_builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
221
+ :param pulumi.Input[_builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
222
+ :param pulumi.Input[_builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
224
223
  :param pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
225
224
  """
226
225
  if comment is not None:
@@ -252,19 +251,19 @@ class _ApiAuthenticationIntegrationWithJwtBearerState:
252
251
  if show_outputs is not None:
253
252
  pulumi.set(__self__, "show_outputs", show_outputs)
254
253
 
255
- @property
254
+ @_builtins.property
256
255
  @pulumi.getter
257
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
256
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
258
257
  """
259
258
  Specifies a comment for the integration.
260
259
  """
261
260
  return pulumi.get(self, "comment")
262
261
 
263
262
  @comment.setter
264
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
263
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
265
264
  pulumi.set(self, "comment", value)
266
265
 
267
- @property
266
+ @_builtins.property
268
267
  @pulumi.getter(name="describeOutputs")
269
268
  def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgs']]]]:
270
269
  """
@@ -276,133 +275,133 @@ class _ApiAuthenticationIntegrationWithJwtBearerState:
276
275
  def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgs']]]]):
277
276
  pulumi.set(self, "describe_outputs", value)
278
277
 
279
- @property
278
+ @_builtins.property
280
279
  @pulumi.getter
281
- def enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
280
+ def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
282
281
  """
283
282
  Specifies whether this security integration is enabled or disabled.
284
283
  """
285
284
  return pulumi.get(self, "enabled")
286
285
 
287
286
  @enabled.setter
288
- def enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
287
+ def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
289
288
  pulumi.set(self, "enabled", value)
290
289
 
291
- @property
290
+ @_builtins.property
292
291
  @pulumi.getter(name="fullyQualifiedName")
293
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
292
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
294
293
  """
295
294
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
296
295
  """
297
296
  return pulumi.get(self, "fully_qualified_name")
298
297
 
299
298
  @fully_qualified_name.setter
300
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
299
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
301
300
  pulumi.set(self, "fully_qualified_name", value)
302
301
 
303
- @property
302
+ @_builtins.property
304
303
  @pulumi.getter
305
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
304
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
306
305
  """
307
306
  Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
308
307
  """
309
308
  return pulumi.get(self, "name")
310
309
 
311
310
  @name.setter
312
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
311
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
313
312
  pulumi.set(self, "name", value)
314
313
 
315
- @property
314
+ @_builtins.property
316
315
  @pulumi.getter(name="oauthAccessTokenValidity")
317
- def oauth_access_token_validity(self) -> Optional[pulumi.Input[builtins.int]]:
316
+ def oauth_access_token_validity(self) -> Optional[pulumi.Input[_builtins.int]]:
318
317
  """
319
318
  (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
320
319
  """
321
320
  return pulumi.get(self, "oauth_access_token_validity")
322
321
 
323
322
  @oauth_access_token_validity.setter
324
- def oauth_access_token_validity(self, value: Optional[pulumi.Input[builtins.int]]):
323
+ def oauth_access_token_validity(self, value: Optional[pulumi.Input[_builtins.int]]):
325
324
  pulumi.set(self, "oauth_access_token_validity", value)
326
325
 
327
- @property
326
+ @_builtins.property
328
327
  @pulumi.getter(name="oauthAssertionIssuer")
329
- def oauth_assertion_issuer(self) -> Optional[pulumi.Input[builtins.str]]:
328
+ def oauth_assertion_issuer(self) -> Optional[pulumi.Input[_builtins.str]]:
330
329
  return pulumi.get(self, "oauth_assertion_issuer")
331
330
 
332
331
  @oauth_assertion_issuer.setter
333
- def oauth_assertion_issuer(self, value: Optional[pulumi.Input[builtins.str]]):
332
+ def oauth_assertion_issuer(self, value: Optional[pulumi.Input[_builtins.str]]):
334
333
  pulumi.set(self, "oauth_assertion_issuer", value)
335
334
 
336
- @property
335
+ @_builtins.property
337
336
  @pulumi.getter(name="oauthAuthorizationEndpoint")
338
- def oauth_authorization_endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
337
+ def oauth_authorization_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
339
338
  """
340
339
  Specifies the URL for authenticating to the external service.
341
340
  """
342
341
  return pulumi.get(self, "oauth_authorization_endpoint")
343
342
 
344
343
  @oauth_authorization_endpoint.setter
345
- def oauth_authorization_endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
344
+ def oauth_authorization_endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
346
345
  pulumi.set(self, "oauth_authorization_endpoint", value)
347
346
 
348
- @property
347
+ @_builtins.property
349
348
  @pulumi.getter(name="oauthClientAuthMethod")
350
- def oauth_client_auth_method(self) -> Optional[pulumi.Input[builtins.str]]:
349
+ def oauth_client_auth_method(self) -> Optional[pulumi.Input[_builtins.str]]:
351
350
  """
352
351
  Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
353
352
  """
354
353
  return pulumi.get(self, "oauth_client_auth_method")
355
354
 
356
355
  @oauth_client_auth_method.setter
357
- def oauth_client_auth_method(self, value: Optional[pulumi.Input[builtins.str]]):
356
+ def oauth_client_auth_method(self, value: Optional[pulumi.Input[_builtins.str]]):
358
357
  pulumi.set(self, "oauth_client_auth_method", value)
359
358
 
360
- @property
359
+ @_builtins.property
361
360
  @pulumi.getter(name="oauthClientId")
362
- def oauth_client_id(self) -> Optional[pulumi.Input[builtins.str]]:
361
+ def oauth_client_id(self) -> Optional[pulumi.Input[_builtins.str]]:
363
362
  """
364
363
  Specifies the client ID for the OAuth application in the external service.
365
364
  """
366
365
  return pulumi.get(self, "oauth_client_id")
367
366
 
368
367
  @oauth_client_id.setter
369
- def oauth_client_id(self, value: Optional[pulumi.Input[builtins.str]]):
368
+ def oauth_client_id(self, value: Optional[pulumi.Input[_builtins.str]]):
370
369
  pulumi.set(self, "oauth_client_id", value)
371
370
 
372
- @property
371
+ @_builtins.property
373
372
  @pulumi.getter(name="oauthClientSecret")
374
- def oauth_client_secret(self) -> Optional[pulumi.Input[builtins.str]]:
373
+ def oauth_client_secret(self) -> Optional[pulumi.Input[_builtins.str]]:
375
374
  return pulumi.get(self, "oauth_client_secret")
376
375
 
377
376
  @oauth_client_secret.setter
378
- def oauth_client_secret(self, value: Optional[pulumi.Input[builtins.str]]):
377
+ def oauth_client_secret(self, value: Optional[pulumi.Input[_builtins.str]]):
379
378
  pulumi.set(self, "oauth_client_secret", value)
380
379
 
381
- @property
380
+ @_builtins.property
382
381
  @pulumi.getter(name="oauthRefreshTokenValidity")
383
- def oauth_refresh_token_validity(self) -> Optional[pulumi.Input[builtins.int]]:
382
+ def oauth_refresh_token_validity(self) -> Optional[pulumi.Input[_builtins.int]]:
384
383
  """
385
384
  Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
386
385
  """
387
386
  return pulumi.get(self, "oauth_refresh_token_validity")
388
387
 
389
388
  @oauth_refresh_token_validity.setter
390
- def oauth_refresh_token_validity(self, value: Optional[pulumi.Input[builtins.int]]):
389
+ def oauth_refresh_token_validity(self, value: Optional[pulumi.Input[_builtins.int]]):
391
390
  pulumi.set(self, "oauth_refresh_token_validity", value)
392
391
 
393
- @property
392
+ @_builtins.property
394
393
  @pulumi.getter(name="oauthTokenEndpoint")
395
- def oauth_token_endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
394
+ def oauth_token_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
396
395
  """
397
396
  Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
398
397
  """
399
398
  return pulumi.get(self, "oauth_token_endpoint")
400
399
 
401
400
  @oauth_token_endpoint.setter
402
- def oauth_token_endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
401
+ def oauth_token_endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
403
402
  pulumi.set(self, "oauth_token_endpoint", value)
404
403
 
405
- @property
404
+ @_builtins.property
406
405
  @pulumi.getter(name="showOutputs")
407
406
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ApiAuthenticationIntegrationWithJwtBearerShowOutputArgs']]]]:
408
407
  """
@@ -421,17 +420,17 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
421
420
  def __init__(__self__,
422
421
  resource_name: str,
423
422
  opts: Optional[pulumi.ResourceOptions] = None,
424
- comment: Optional[pulumi.Input[builtins.str]] = None,
425
- enabled: Optional[pulumi.Input[builtins.bool]] = None,
426
- name: Optional[pulumi.Input[builtins.str]] = None,
427
- oauth_access_token_validity: Optional[pulumi.Input[builtins.int]] = None,
428
- oauth_assertion_issuer: Optional[pulumi.Input[builtins.str]] = None,
429
- oauth_authorization_endpoint: Optional[pulumi.Input[builtins.str]] = None,
430
- oauth_client_auth_method: Optional[pulumi.Input[builtins.str]] = None,
431
- oauth_client_id: Optional[pulumi.Input[builtins.str]] = None,
432
- oauth_client_secret: Optional[pulumi.Input[builtins.str]] = None,
433
- oauth_refresh_token_validity: Optional[pulumi.Input[builtins.int]] = None,
434
- oauth_token_endpoint: Optional[pulumi.Input[builtins.str]] = None,
423
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
424
+ enabled: Optional[pulumi.Input[_builtins.bool]] = None,
425
+ name: Optional[pulumi.Input[_builtins.str]] = None,
426
+ oauth_access_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
427
+ oauth_assertion_issuer: Optional[pulumi.Input[_builtins.str]] = None,
428
+ oauth_authorization_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
429
+ oauth_client_auth_method: Optional[pulumi.Input[_builtins.str]] = None,
430
+ oauth_client_id: Optional[pulumi.Input[_builtins.str]] = None,
431
+ oauth_client_secret: Optional[pulumi.Input[_builtins.str]] = None,
432
+ oauth_refresh_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
433
+ oauth_token_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
435
434
  __props__=None):
436
435
  """
437
436
  ## Import
@@ -442,15 +441,15 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
442
441
 
443
442
  :param str resource_name: The name of the resource.
444
443
  :param pulumi.ResourceOptions opts: Options for the resource.
445
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the integration.
446
- :param pulumi.Input[builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
447
- :param pulumi.Input[builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
448
- :param pulumi.Input[builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
449
- :param pulumi.Input[builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
450
- :param pulumi.Input[builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
451
- :param pulumi.Input[builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
452
- :param pulumi.Input[builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
453
- :param pulumi.Input[builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
444
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the integration.
445
+ :param pulumi.Input[_builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
446
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
447
+ :param pulumi.Input[_builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
448
+ :param pulumi.Input[_builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
449
+ :param pulumi.Input[_builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
450
+ :param pulumi.Input[_builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
451
+ :param pulumi.Input[_builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
452
+ :param pulumi.Input[_builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
454
453
  """
455
454
  ...
456
455
  @overload
@@ -480,17 +479,17 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
480
479
  def _internal_init(__self__,
481
480
  resource_name: str,
482
481
  opts: Optional[pulumi.ResourceOptions] = None,
483
- comment: Optional[pulumi.Input[builtins.str]] = None,
484
- enabled: Optional[pulumi.Input[builtins.bool]] = None,
485
- name: Optional[pulumi.Input[builtins.str]] = None,
486
- oauth_access_token_validity: Optional[pulumi.Input[builtins.int]] = None,
487
- oauth_assertion_issuer: Optional[pulumi.Input[builtins.str]] = None,
488
- oauth_authorization_endpoint: Optional[pulumi.Input[builtins.str]] = None,
489
- oauth_client_auth_method: Optional[pulumi.Input[builtins.str]] = None,
490
- oauth_client_id: Optional[pulumi.Input[builtins.str]] = None,
491
- oauth_client_secret: Optional[pulumi.Input[builtins.str]] = None,
492
- oauth_refresh_token_validity: Optional[pulumi.Input[builtins.int]] = None,
493
- oauth_token_endpoint: Optional[pulumi.Input[builtins.str]] = None,
482
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
483
+ enabled: Optional[pulumi.Input[_builtins.bool]] = None,
484
+ name: Optional[pulumi.Input[_builtins.str]] = None,
485
+ oauth_access_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
486
+ oauth_assertion_issuer: Optional[pulumi.Input[_builtins.str]] = None,
487
+ oauth_authorization_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
488
+ oauth_client_auth_method: Optional[pulumi.Input[_builtins.str]] = None,
489
+ oauth_client_id: Optional[pulumi.Input[_builtins.str]] = None,
490
+ oauth_client_secret: Optional[pulumi.Input[_builtins.str]] = None,
491
+ oauth_refresh_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
492
+ oauth_token_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
494
493
  __props__=None):
495
494
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
496
495
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -534,19 +533,19 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
534
533
  def get(resource_name: str,
535
534
  id: pulumi.Input[str],
536
535
  opts: Optional[pulumi.ResourceOptions] = None,
537
- comment: Optional[pulumi.Input[builtins.str]] = None,
536
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
538
537
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgs', 'ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgsDict']]]]] = None,
539
- enabled: Optional[pulumi.Input[builtins.bool]] = None,
540
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
541
- name: Optional[pulumi.Input[builtins.str]] = None,
542
- oauth_access_token_validity: Optional[pulumi.Input[builtins.int]] = None,
543
- oauth_assertion_issuer: Optional[pulumi.Input[builtins.str]] = None,
544
- oauth_authorization_endpoint: Optional[pulumi.Input[builtins.str]] = None,
545
- oauth_client_auth_method: Optional[pulumi.Input[builtins.str]] = None,
546
- oauth_client_id: Optional[pulumi.Input[builtins.str]] = None,
547
- oauth_client_secret: Optional[pulumi.Input[builtins.str]] = None,
548
- oauth_refresh_token_validity: Optional[pulumi.Input[builtins.int]] = None,
549
- oauth_token_endpoint: Optional[pulumi.Input[builtins.str]] = None,
538
+ enabled: Optional[pulumi.Input[_builtins.bool]] = None,
539
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
540
+ name: Optional[pulumi.Input[_builtins.str]] = None,
541
+ oauth_access_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
542
+ oauth_assertion_issuer: Optional[pulumi.Input[_builtins.str]] = None,
543
+ oauth_authorization_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
544
+ oauth_client_auth_method: Optional[pulumi.Input[_builtins.str]] = None,
545
+ oauth_client_id: Optional[pulumi.Input[_builtins.str]] = None,
546
+ oauth_client_secret: Optional[pulumi.Input[_builtins.str]] = None,
547
+ oauth_refresh_token_validity: Optional[pulumi.Input[_builtins.int]] = None,
548
+ oauth_token_endpoint: Optional[pulumi.Input[_builtins.str]] = None,
550
549
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApiAuthenticationIntegrationWithJwtBearerShowOutputArgs', 'ApiAuthenticationIntegrationWithJwtBearerShowOutputArgsDict']]]]] = None) -> 'ApiAuthenticationIntegrationWithJwtBearer':
551
550
  """
552
551
  Get an existing ApiAuthenticationIntegrationWithJwtBearer resource's state with the given name, id, and optional extra
@@ -555,17 +554,17 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
555
554
  :param str resource_name: The unique name of the resulting resource.
556
555
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
557
556
  :param pulumi.ResourceOptions opts: Options for the resource.
558
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the integration.
557
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the integration.
559
558
  :param pulumi.Input[Sequence[pulumi.Input[Union['ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgs', 'ApiAuthenticationIntegrationWithJwtBearerDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
560
- :param pulumi.Input[builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
561
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
562
- :param pulumi.Input[builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
563
- :param pulumi.Input[builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
564
- :param pulumi.Input[builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
565
- :param pulumi.Input[builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
566
- :param pulumi.Input[builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
567
- :param pulumi.Input[builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
568
- :param pulumi.Input[builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
559
+ :param pulumi.Input[_builtins.bool] enabled: Specifies whether this security integration is enabled or disabled.
560
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
561
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
562
+ :param pulumi.Input[_builtins.int] oauth_access_token_validity: (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
563
+ :param pulumi.Input[_builtins.str] oauth_authorization_endpoint: Specifies the URL for authenticating to the external service.
564
+ :param pulumi.Input[_builtins.str] oauth_client_auth_method: Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
565
+ :param pulumi.Input[_builtins.str] oauth_client_id: Specifies the client ID for the OAuth application in the external service.
566
+ :param pulumi.Input[_builtins.int] oauth_refresh_token_validity: Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
567
+ :param pulumi.Input[_builtins.str] oauth_token_endpoint: Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
569
568
  :param pulumi.Input[Sequence[pulumi.Input[Union['ApiAuthenticationIntegrationWithJwtBearerShowOutputArgs', 'ApiAuthenticationIntegrationWithJwtBearerShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
570
569
  """
571
570
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -588,15 +587,15 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
588
587
  __props__.__dict__["show_outputs"] = show_outputs
589
588
  return ApiAuthenticationIntegrationWithJwtBearer(resource_name, opts=opts, __props__=__props__)
590
589
 
591
- @property
590
+ @_builtins.property
592
591
  @pulumi.getter
593
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
592
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
594
593
  """
595
594
  Specifies a comment for the integration.
596
595
  """
597
596
  return pulumi.get(self, "comment")
598
597
 
599
- @property
598
+ @_builtins.property
600
599
  @pulumi.getter(name="describeOutputs")
601
600
  def describe_outputs(self) -> pulumi.Output[Sequence['outputs.ApiAuthenticationIntegrationWithJwtBearerDescribeOutput']]:
602
601
  """
@@ -604,89 +603,89 @@ class ApiAuthenticationIntegrationWithJwtBearer(pulumi.CustomResource):
604
603
  """
605
604
  return pulumi.get(self, "describe_outputs")
606
605
 
607
- @property
606
+ @_builtins.property
608
607
  @pulumi.getter
609
- def enabled(self) -> pulumi.Output[builtins.bool]:
608
+ def enabled(self) -> pulumi.Output[_builtins.bool]:
610
609
  """
611
610
  Specifies whether this security integration is enabled or disabled.
612
611
  """
613
612
  return pulumi.get(self, "enabled")
614
613
 
615
- @property
614
+ @_builtins.property
616
615
  @pulumi.getter(name="fullyQualifiedName")
617
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
616
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
618
617
  """
619
618
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
620
619
  """
621
620
  return pulumi.get(self, "fully_qualified_name")
622
621
 
623
- @property
622
+ @_builtins.property
624
623
  @pulumi.getter
625
- def name(self) -> pulumi.Output[builtins.str]:
624
+ def name(self) -> pulumi.Output[_builtins.str]:
626
625
  """
627
626
  Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
628
627
  """
629
628
  return pulumi.get(self, "name")
630
629
 
631
- @property
630
+ @_builtins.property
632
631
  @pulumi.getter(name="oauthAccessTokenValidity")
633
- def oauth_access_token_validity(self) -> pulumi.Output[Optional[builtins.int]]:
632
+ def oauth_access_token_validity(self) -> pulumi.Output[Optional[_builtins.int]]:
634
633
  """
635
634
  (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (`-1`)) Specifies the default lifetime of the OAuth access token (in seconds) issued by an OAuth server.
636
635
  """
637
636
  return pulumi.get(self, "oauth_access_token_validity")
638
637
 
639
- @property
638
+ @_builtins.property
640
639
  @pulumi.getter(name="oauthAssertionIssuer")
641
- def oauth_assertion_issuer(self) -> pulumi.Output[builtins.str]:
640
+ def oauth_assertion_issuer(self) -> pulumi.Output[_builtins.str]:
642
641
  return pulumi.get(self, "oauth_assertion_issuer")
643
642
 
644
- @property
643
+ @_builtins.property
645
644
  @pulumi.getter(name="oauthAuthorizationEndpoint")
646
- def oauth_authorization_endpoint(self) -> pulumi.Output[Optional[builtins.str]]:
645
+ def oauth_authorization_endpoint(self) -> pulumi.Output[Optional[_builtins.str]]:
647
646
  """
648
647
  Specifies the URL for authenticating to the external service.
649
648
  """
650
649
  return pulumi.get(self, "oauth_authorization_endpoint")
651
650
 
652
- @property
651
+ @_builtins.property
653
652
  @pulumi.getter(name="oauthClientAuthMethod")
654
- def oauth_client_auth_method(self) -> pulumi.Output[Optional[builtins.str]]:
653
+ def oauth_client_auth_method(self) -> pulumi.Output[Optional[_builtins.str]]:
655
654
  """
656
655
  Specifies that POST is used as the authentication method to the external service. If removed from the config, the resource is recreated. Valid values are (case-insensitive): `CLIENT_SECRET_POST`.
657
656
  """
658
657
  return pulumi.get(self, "oauth_client_auth_method")
659
658
 
660
- @property
659
+ @_builtins.property
661
660
  @pulumi.getter(name="oauthClientId")
662
- def oauth_client_id(self) -> pulumi.Output[builtins.str]:
661
+ def oauth_client_id(self) -> pulumi.Output[_builtins.str]:
663
662
  """
664
663
  Specifies the client ID for the OAuth application in the external service.
665
664
  """
666
665
  return pulumi.get(self, "oauth_client_id")
667
666
 
668
- @property
667
+ @_builtins.property
669
668
  @pulumi.getter(name="oauthClientSecret")
670
- def oauth_client_secret(self) -> pulumi.Output[builtins.str]:
669
+ def oauth_client_secret(self) -> pulumi.Output[_builtins.str]:
671
670
  return pulumi.get(self, "oauth_client_secret")
672
671
 
673
- @property
672
+ @_builtins.property
674
673
  @pulumi.getter(name="oauthRefreshTokenValidity")
675
- def oauth_refresh_token_validity(self) -> pulumi.Output[Optional[builtins.int]]:
674
+ def oauth_refresh_token_validity(self) -> pulumi.Output[Optional[_builtins.int]]:
676
675
  """
677
676
  Specifies the value to determine the validity of the refresh token obtained from the OAuth server.
678
677
  """
679
678
  return pulumi.get(self, "oauth_refresh_token_validity")
680
679
 
681
- @property
680
+ @_builtins.property
682
681
  @pulumi.getter(name="oauthTokenEndpoint")
683
- def oauth_token_endpoint(self) -> pulumi.Output[Optional[builtins.str]]:
682
+ def oauth_token_endpoint(self) -> pulumi.Output[Optional[_builtins.str]]:
684
683
  """
685
684
  Specifies the token endpoint used by the client to obtain an access token by presenting its authorization grant or refresh token. The token endpoint is used with every authorization grant except for the implicit grant type (since an access token is issued directly). If removed from the config, the resource is recreated.
686
685
  """
687
686
  return pulumi.get(self, "oauth_token_endpoint")
688
687
 
689
- @property
688
+ @_builtins.property
690
689
  @pulumi.getter(name="showOutputs")
691
690
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.ApiAuthenticationIntegrationWithJwtBearerShowOutput']]:
692
691
  """