pulumi-snowflake 0.63.0a1734416430__py3-none-any.whl → 1.0.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 (127) hide show
  1. pulumi_snowflake/__init__.py +82 -74
  2. pulumi_snowflake/_inputs.py +12705 -4876
  3. pulumi_snowflake/account.py +156 -163
  4. pulumi_snowflake/account_parameter.py +16 -16
  5. pulumi_snowflake/account_role.py +9 -9
  6. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +9 -22
  7. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +9 -22
  8. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +9 -22
  9. pulumi_snowflake/authentication_policy.py +21 -21
  10. pulumi_snowflake/config/__init__.pyi +8 -86
  11. pulumi_snowflake/config/vars.py +10 -110
  12. pulumi_snowflake/database.py +9 -9
  13. pulumi_snowflake/database_role.py +14 -14
  14. pulumi_snowflake/{unsafe_execute.py → execute.py} +35 -25
  15. pulumi_snowflake/external_oauth_integration.py +27 -27
  16. pulumi_snowflake/external_volume.py +11 -7
  17. pulumi_snowflake/function_java.py +1211 -0
  18. pulumi_snowflake/function_javascript.py +882 -0
  19. pulumi_snowflake/function_python.py +1212 -0
  20. pulumi_snowflake/function_scala.py +1212 -0
  21. pulumi_snowflake/function_sql.py +835 -0
  22. pulumi_snowflake/get_account_roles.py +129 -0
  23. pulumi_snowflake/get_accounts.py +41 -19
  24. pulumi_snowflake/get_alerts.py +4 -0
  25. pulumi_snowflake/get_connections.py +2 -40
  26. pulumi_snowflake/get_cortex_search_services.py +4 -0
  27. pulumi_snowflake/get_current_account.py +4 -0
  28. pulumi_snowflake/get_current_role.py +2 -2
  29. pulumi_snowflake/get_database.py +4 -0
  30. pulumi_snowflake/get_database_role.py +4 -0
  31. pulumi_snowflake/get_database_roles.py +2 -6
  32. pulumi_snowflake/get_databases.py +2 -6
  33. pulumi_snowflake/get_dynamic_tables.py +4 -2
  34. pulumi_snowflake/get_external_functions.py +4 -0
  35. pulumi_snowflake/get_external_tables.py +4 -0
  36. pulumi_snowflake/get_failover_groups.py +4 -2
  37. pulumi_snowflake/get_file_formats.py +4 -0
  38. pulumi_snowflake/get_functions.py +4 -0
  39. pulumi_snowflake/get_grants.py +0 -4
  40. pulumi_snowflake/get_masking_policies.py +2 -6
  41. pulumi_snowflake/get_materialized_views.py +4 -0
  42. pulumi_snowflake/get_network_policies.py +2 -6
  43. pulumi_snowflake/get_parameters.py +4 -0
  44. pulumi_snowflake/get_pipes.py +4 -0
  45. pulumi_snowflake/get_procedures.py +4 -0
  46. pulumi_snowflake/get_resource_monitors.py +2 -6
  47. pulumi_snowflake/get_row_access_policies.py +2 -6
  48. pulumi_snowflake/get_schemas.py +6 -4
  49. pulumi_snowflake/get_secrets.py +2 -6
  50. pulumi_snowflake/get_security_integrations.py +2 -6
  51. pulumi_snowflake/get_sequences.py +4 -0
  52. pulumi_snowflake/get_shares.py +4 -0
  53. pulumi_snowflake/get_stages.py +4 -0
  54. pulumi_snowflake/get_storage_integrations.py +4 -0
  55. pulumi_snowflake/get_streamlits.py +2 -6
  56. pulumi_snowflake/get_streams.py +2 -6
  57. pulumi_snowflake/get_system_generate_scim_access_token.py +4 -0
  58. pulumi_snowflake/get_system_get_private_link_config.py +4 -0
  59. pulumi_snowflake/get_system_get_snowflake_platform_info.py +2 -2
  60. pulumi_snowflake/get_tables.py +4 -0
  61. pulumi_snowflake/get_tags.py +2 -6
  62. pulumi_snowflake/get_tasks.py +0 -4
  63. pulumi_snowflake/get_users.py +2 -6
  64. pulumi_snowflake/get_views.py +2 -6
  65. pulumi_snowflake/get_warehouses.py +2 -6
  66. pulumi_snowflake/grant_account_role.py +21 -21
  67. pulumi_snowflake/grant_application_role.py +7 -7
  68. pulumi_snowflake/grant_database_role.py +28 -28
  69. pulumi_snowflake/grant_ownership.py +14 -14
  70. pulumi_snowflake/grant_privileges_to_account_role.py +14 -14
  71. pulumi_snowflake/grant_privileges_to_database_role.py +14 -14
  72. pulumi_snowflake/grant_privileges_to_share.py +42 -42
  73. pulumi_snowflake/legacy_service_user.py +21 -21
  74. pulumi_snowflake/masking_policy.py +21 -21
  75. pulumi_snowflake/network_policy.py +23 -23
  76. pulumi_snowflake/oauth_integration_for_custom_clients.py +73 -46
  77. pulumi_snowflake/oauth_integration_for_partner_applications.py +57 -30
  78. pulumi_snowflake/outputs.py +10029 -4056
  79. pulumi_snowflake/password_policy.py +12 -2
  80. pulumi_snowflake/primary_connection.py +16 -16
  81. pulumi_snowflake/procedure_java.py +1273 -0
  82. pulumi_snowflake/procedure_javascript.py +895 -0
  83. pulumi_snowflake/procedure_python.py +1226 -0
  84. pulumi_snowflake/procedure_scala.py +1273 -0
  85. pulumi_snowflake/procedure_sql.py +895 -0
  86. pulumi_snowflake/provider.py +40 -527
  87. pulumi_snowflake/pulumi-plugin.json +1 -1
  88. pulumi_snowflake/resource_monitor.py +16 -20
  89. pulumi_snowflake/row_access_policy.py +21 -21
  90. pulumi_snowflake/saml2_integration.py +9 -9
  91. pulumi_snowflake/schema.py +14 -18
  92. pulumi_snowflake/scim_integration.py +16 -16
  93. pulumi_snowflake/secondary_connection.py +16 -16
  94. pulumi_snowflake/secondary_database.py +16 -16
  95. pulumi_snowflake/secret_with_authorization_code_grant.py +28 -28
  96. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  97. pulumi_snowflake/secret_with_client_credentials.py +28 -28
  98. pulumi_snowflake/secret_with_generic_string.py +21 -21
  99. pulumi_snowflake/service_user.py +21 -21
  100. pulumi_snowflake/shared_database.py +16 -16
  101. pulumi_snowflake/stream_on_directory_table.py +28 -41
  102. pulumi_snowflake/stream_on_external_table.py +28 -41
  103. pulumi_snowflake/stream_on_table.py +28 -41
  104. pulumi_snowflake/stream_on_view.py +28 -41
  105. pulumi_snowflake/streamlit.py +42 -46
  106. pulumi_snowflake/tag.py +28 -28
  107. pulumi_snowflake/tag_association.py +28 -86
  108. pulumi_snowflake/task.py +58 -62
  109. pulumi_snowflake/user.py +21 -21
  110. pulumi_snowflake/view.py +28 -41
  111. pulumi_snowflake/warehouse.py +16 -16
  112. {pulumi_snowflake-0.63.0a1734416430.dist-info → pulumi_snowflake-1.0.0.dist-info}/METADATA +1 -1
  113. pulumi_snowflake-1.0.0.dist-info/RECORD +148 -0
  114. pulumi_snowflake/database_old.py +0 -489
  115. pulumi_snowflake/function.py +0 -901
  116. pulumi_snowflake/get_role.py +0 -126
  117. pulumi_snowflake/get_roles.py +0 -133
  118. pulumi_snowflake/oauth_integration.py +0 -610
  119. pulumi_snowflake/procedure.py +0 -910
  120. pulumi_snowflake/role.py +0 -250
  121. pulumi_snowflake/saml_integration.py +0 -916
  122. pulumi_snowflake/session_parameter.py +0 -301
  123. pulumi_snowflake/stream.py +0 -643
  124. pulumi_snowflake/tag_masking_policy_association.py +0 -211
  125. pulumi_snowflake-0.63.0a1734416430.dist-info/RECORD +0 -148
  126. {pulumi_snowflake-0.63.0a1734416430.dist-info → pulumi_snowflake-1.0.0.dist-info}/WHEEL +0 -0
  127. {pulumi_snowflake-0.63.0a1734416430.dist-info → pulumi_snowflake-1.0.0.dist-info}/top_level.txt +0 -0
@@ -29,11 +29,11 @@ class SecretWithBasicAuthenticationArgs:
29
29
  name: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a SecretWithBasicAuthentication resource.
32
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
33
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
32
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
33
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
34
34
  :param pulumi.Input[str] username: Specifies the username value to store in the secret.
35
35
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
36
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
36
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
37
37
  """
38
38
  pulumi.set(__self__, "database", database)
39
39
  pulumi.set(__self__, "password", password)
@@ -48,7 +48,7 @@ class SecretWithBasicAuthenticationArgs:
48
48
  @pulumi.getter
49
49
  def database(self) -> pulumi.Input[str]:
50
50
  """
51
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
51
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
52
52
  """
53
53
  return pulumi.get(self, "database")
54
54
 
@@ -69,7 +69,7 @@ class SecretWithBasicAuthenticationArgs:
69
69
  @pulumi.getter
70
70
  def schema(self) -> pulumi.Input[str]:
71
71
  """
72
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
72
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
73
73
  """
74
74
  return pulumi.get(self, "schema")
75
75
 
@@ -105,7 +105,7 @@ class SecretWithBasicAuthenticationArgs:
105
105
  @pulumi.getter
106
106
  def name(self) -> Optional[pulumi.Input[str]]:
107
107
  """
108
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
108
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
109
109
  """
110
110
  return pulumi.get(self, "name")
111
111
 
@@ -130,11 +130,11 @@ class _SecretWithBasicAuthenticationState:
130
130
  """
131
131
  Input properties used for looking up and filtering SecretWithBasicAuthentication resources.
132
132
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
133
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
133
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
134
134
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithBasicAuthenticationDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
135
135
  :param pulumi.Input[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).
136
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
137
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
136
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
137
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
138
138
  :param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
139
139
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithBasicAuthenticationShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
140
140
  :param pulumi.Input[str] username: Specifies the username value to store in the secret.
@@ -176,7 +176,7 @@ class _SecretWithBasicAuthenticationState:
176
176
  @pulumi.getter
177
177
  def database(self) -> Optional[pulumi.Input[str]]:
178
178
  """
179
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
179
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
180
180
  """
181
181
  return pulumi.get(self, "database")
182
182
 
@@ -212,7 +212,7 @@ class _SecretWithBasicAuthenticationState:
212
212
  @pulumi.getter
213
213
  def name(self) -> Optional[pulumi.Input[str]]:
214
214
  """
215
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
215
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
216
216
  """
217
217
  return pulumi.get(self, "name")
218
218
 
@@ -233,7 +233,7 @@ class _SecretWithBasicAuthenticationState:
233
233
  @pulumi.getter
234
234
  def schema(self) -> Optional[pulumi.Input[str]]:
235
235
  """
236
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
236
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
237
237
  """
238
238
  return pulumi.get(self, "schema")
239
239
 
@@ -300,9 +300,9 @@ class SecretWithBasicAuthentication(pulumi.CustomResource):
300
300
  :param str resource_name: The name of the resource.
301
301
  :param pulumi.ResourceOptions opts: Options for the resource.
302
302
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
303
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
304
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
305
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
303
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
304
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
305
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
306
306
  :param pulumi.Input[str] username: Specifies the username value to store in the secret.
307
307
  """
308
308
  ...
@@ -396,11 +396,11 @@ class SecretWithBasicAuthentication(pulumi.CustomResource):
396
396
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
397
397
  :param pulumi.ResourceOptions opts: Options for the resource.
398
398
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
399
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
399
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
400
400
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithBasicAuthenticationDescribeOutputArgs', 'SecretWithBasicAuthenticationDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
401
401
  :param pulumi.Input[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).
402
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
403
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
402
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
403
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
404
404
  :param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
405
405
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithBasicAuthenticationShowOutputArgs', 'SecretWithBasicAuthenticationShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
406
406
  :param pulumi.Input[str] username: Specifies the username value to store in the secret.
@@ -433,7 +433,7 @@ class SecretWithBasicAuthentication(pulumi.CustomResource):
433
433
  @pulumi.getter
434
434
  def database(self) -> pulumi.Output[str]:
435
435
  """
436
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
436
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
437
437
  """
438
438
  return pulumi.get(self, "database")
439
439
 
@@ -457,7 +457,7 @@ class SecretWithBasicAuthentication(pulumi.CustomResource):
457
457
  @pulumi.getter
458
458
  def name(self) -> pulumi.Output[str]:
459
459
  """
460
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
460
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
461
461
  """
462
462
  return pulumi.get(self, "name")
463
463
 
@@ -470,7 +470,7 @@ class SecretWithBasicAuthentication(pulumi.CustomResource):
470
470
  @pulumi.getter
471
471
  def schema(self) -> pulumi.Output[str]:
472
472
  """
473
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
473
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
474
474
  """
475
475
  return pulumi.get(self, "schema")
476
476
 
@@ -29,12 +29,12 @@ class SecretWithClientCredentialsArgs:
29
29
  name: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a SecretWithClientCredentials resource.
32
- :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
33
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
32
+ :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
33
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
34
34
  :param pulumi.Input[Sequence[pulumi.Input[str]]] oauth_scopes: Specifies a list of scopes to use when making a request from the OAuth server by a role with USAGE on the integration during the OAuth client credentials flow.
35
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
35
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
36
36
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
37
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
37
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
38
38
  """
39
39
  pulumi.set(__self__, "api_authentication", api_authentication)
40
40
  pulumi.set(__self__, "database", database)
@@ -49,7 +49,7 @@ class SecretWithClientCredentialsArgs:
49
49
  @pulumi.getter(name="apiAuthentication")
50
50
  def api_authentication(self) -> pulumi.Input[str]:
51
51
  """
52
- Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
52
+ Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
53
53
  """
54
54
  return pulumi.get(self, "api_authentication")
55
55
 
@@ -61,7 +61,7 @@ class SecretWithClientCredentialsArgs:
61
61
  @pulumi.getter
62
62
  def database(self) -> pulumi.Input[str]:
63
63
  """
64
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
64
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
65
65
  """
66
66
  return pulumi.get(self, "database")
67
67
 
@@ -85,7 +85,7 @@ class SecretWithClientCredentialsArgs:
85
85
  @pulumi.getter
86
86
  def schema(self) -> pulumi.Input[str]:
87
87
  """
88
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
88
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
89
89
  """
90
90
  return pulumi.get(self, "schema")
91
91
 
@@ -109,7 +109,7 @@ class SecretWithClientCredentialsArgs:
109
109
  @pulumi.getter
110
110
  def name(self) -> Optional[pulumi.Input[str]]:
111
111
  """
112
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
112
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
113
113
  """
114
114
  return pulumi.get(self, "name")
115
115
 
@@ -133,14 +133,14 @@ class _SecretWithClientCredentialsState:
133
133
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['SecretWithClientCredentialsShowOutputArgs']]]] = None):
134
134
  """
135
135
  Input properties used for looking up and filtering SecretWithClientCredentials resources.
136
- :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
136
+ :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
137
137
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
138
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
138
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
139
139
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithClientCredentialsDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
140
140
  :param pulumi.Input[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).
141
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
141
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
142
142
  :param pulumi.Input[Sequence[pulumi.Input[str]]] oauth_scopes: Specifies a list of scopes to use when making a request from the OAuth server by a role with USAGE on the integration during the OAuth client credentials flow.
143
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
143
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
144
144
  :param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
145
145
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithClientCredentialsShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
146
146
  """
@@ -169,7 +169,7 @@ class _SecretWithClientCredentialsState:
169
169
  @pulumi.getter(name="apiAuthentication")
170
170
  def api_authentication(self) -> Optional[pulumi.Input[str]]:
171
171
  """
172
- Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
172
+ Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
173
173
  """
174
174
  return pulumi.get(self, "api_authentication")
175
175
 
@@ -193,7 +193,7 @@ class _SecretWithClientCredentialsState:
193
193
  @pulumi.getter
194
194
  def database(self) -> Optional[pulumi.Input[str]]:
195
195
  """
196
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
196
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
197
197
  """
198
198
  return pulumi.get(self, "database")
199
199
 
@@ -229,7 +229,7 @@ class _SecretWithClientCredentialsState:
229
229
  @pulumi.getter
230
230
  def name(self) -> Optional[pulumi.Input[str]]:
231
231
  """
232
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
232
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
233
233
  """
234
234
  return pulumi.get(self, "name")
235
235
 
@@ -253,7 +253,7 @@ class _SecretWithClientCredentialsState:
253
253
  @pulumi.getter
254
254
  def schema(self) -> Optional[pulumi.Input[str]]:
255
255
  """
256
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
256
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
257
257
  """
258
258
  return pulumi.get(self, "schema")
259
259
 
@@ -307,12 +307,12 @@ class SecretWithClientCredentials(pulumi.CustomResource):
307
307
 
308
308
  :param str resource_name: The name of the resource.
309
309
  :param pulumi.ResourceOptions opts: Options for the resource.
310
- :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
310
+ :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
311
311
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
312
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
313
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
312
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
313
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
314
314
  :param pulumi.Input[Sequence[pulumi.Input[str]]] oauth_scopes: Specifies a list of scopes to use when making a request from the OAuth server by a role with USAGE on the integration during the OAuth client credentials flow.
315
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
315
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
316
316
  """
317
317
  ...
318
318
  @overload
@@ -402,14 +402,14 @@ class SecretWithClientCredentials(pulumi.CustomResource):
402
402
  :param str resource_name: The unique name of the resulting resource.
403
403
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
404
404
  :param pulumi.ResourceOptions opts: Options for the resource.
405
- :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
405
+ :param pulumi.Input[str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
406
406
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
407
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
407
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
408
408
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithClientCredentialsDescribeOutputArgs', 'SecretWithClientCredentialsDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
409
409
  :param pulumi.Input[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).
410
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
410
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
411
411
  :param pulumi.Input[Sequence[pulumi.Input[str]]] oauth_scopes: Specifies a list of scopes to use when making a request from the OAuth server by a role with USAGE on the integration during the OAuth client credentials flow.
412
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
412
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
413
413
  :param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
414
414
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithClientCredentialsShowOutputArgs', 'SecretWithClientCredentialsShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
415
415
  """
@@ -433,7 +433,7 @@ class SecretWithClientCredentials(pulumi.CustomResource):
433
433
  @pulumi.getter(name="apiAuthentication")
434
434
  def api_authentication(self) -> pulumi.Output[str]:
435
435
  """
436
- Specifies the name value of the Snowflake security integration that connects Snowflake to an external service.
436
+ Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
437
437
  """
438
438
  return pulumi.get(self, "api_authentication")
439
439
 
@@ -449,7 +449,7 @@ class SecretWithClientCredentials(pulumi.CustomResource):
449
449
  @pulumi.getter
450
450
  def database(self) -> pulumi.Output[str]:
451
451
  """
452
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
452
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
453
453
  """
454
454
  return pulumi.get(self, "database")
455
455
 
@@ -473,7 +473,7 @@ class SecretWithClientCredentials(pulumi.CustomResource):
473
473
  @pulumi.getter
474
474
  def name(self) -> pulumi.Output[str]:
475
475
  """
476
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
476
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
477
477
  """
478
478
  return pulumi.get(self, "name")
479
479
 
@@ -489,7 +489,7 @@ class SecretWithClientCredentials(pulumi.CustomResource):
489
489
  @pulumi.getter
490
490
  def schema(self) -> pulumi.Output[str]:
491
491
  """
492
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
492
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
493
493
  """
494
494
  return pulumi.get(self, "schema")
495
495
 
@@ -28,10 +28,10 @@ class SecretWithGenericStringArgs:
28
28
  name: Optional[pulumi.Input[str]] = None):
29
29
  """
30
30
  The set of arguments for constructing a SecretWithGenericString resource.
31
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
32
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
31
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
32
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
33
33
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
34
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
34
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
35
35
  """
36
36
  pulumi.set(__self__, "database", database)
37
37
  pulumi.set(__self__, "schema", schema)
@@ -45,7 +45,7 @@ class SecretWithGenericStringArgs:
45
45
  @pulumi.getter
46
46
  def database(self) -> pulumi.Input[str]:
47
47
  """
48
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
48
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
49
49
  """
50
50
  return pulumi.get(self, "database")
51
51
 
@@ -57,7 +57,7 @@ class SecretWithGenericStringArgs:
57
57
  @pulumi.getter
58
58
  def schema(self) -> pulumi.Input[str]:
59
59
  """
60
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
60
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
61
61
  """
62
62
  return pulumi.get(self, "schema")
63
63
 
@@ -90,7 +90,7 @@ class SecretWithGenericStringArgs:
90
90
  @pulumi.getter
91
91
  def name(self) -> Optional[pulumi.Input[str]]:
92
92
  """
93
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
93
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
94
94
  """
95
95
  return pulumi.get(self, "name")
96
96
 
@@ -114,11 +114,11 @@ class _SecretWithGenericStringState:
114
114
  """
115
115
  Input properties used for looking up and filtering SecretWithGenericString resources.
116
116
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
117
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
117
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
118
118
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithGenericStringDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
119
119
  :param pulumi.Input[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).
120
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
121
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
120
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
121
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
122
122
  :param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
123
123
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithGenericStringShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
124
124
  """
@@ -157,7 +157,7 @@ class _SecretWithGenericStringState:
157
157
  @pulumi.getter
158
158
  def database(self) -> Optional[pulumi.Input[str]]:
159
159
  """
160
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
160
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
161
161
  """
162
162
  return pulumi.get(self, "database")
163
163
 
@@ -193,7 +193,7 @@ class _SecretWithGenericStringState:
193
193
  @pulumi.getter
194
194
  def name(self) -> Optional[pulumi.Input[str]]:
195
195
  """
196
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
196
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
197
197
  """
198
198
  return pulumi.get(self, "name")
199
199
 
@@ -205,7 +205,7 @@ class _SecretWithGenericStringState:
205
205
  @pulumi.getter
206
206
  def schema(self) -> Optional[pulumi.Input[str]]:
207
207
  """
208
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
208
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
209
209
  """
210
210
  return pulumi.get(self, "schema")
211
211
 
@@ -268,9 +268,9 @@ class SecretWithGenericString(pulumi.CustomResource):
268
268
  :param str resource_name: The name of the resource.
269
269
  :param pulumi.ResourceOptions opts: Options for the resource.
270
270
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
271
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
272
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
273
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
271
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
272
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
273
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
274
274
  """
275
275
  ...
276
276
  @overload
@@ -358,11 +358,11 @@ class SecretWithGenericString(pulumi.CustomResource):
358
358
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
359
359
  :param pulumi.ResourceOptions opts: Options for the resource.
360
360
  :param pulumi.Input[str] comment: Specifies a comment for the secret.
361
- :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
361
+ :param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
362
362
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithGenericStringDescribeOutputArgs', 'SecretWithGenericStringDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
363
363
  :param pulumi.Input[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).
364
- :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
365
- :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
364
+ :param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
365
+ :param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
366
366
  :param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
367
367
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithGenericStringShowOutputArgs', 'SecretWithGenericStringShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
368
368
  """
@@ -393,7 +393,7 @@ class SecretWithGenericString(pulumi.CustomResource):
393
393
  @pulumi.getter
394
394
  def database(self) -> pulumi.Output[str]:
395
395
  """
396
- The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
396
+ The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
397
397
  """
398
398
  return pulumi.get(self, "database")
399
399
 
@@ -417,7 +417,7 @@ class SecretWithGenericString(pulumi.CustomResource):
417
417
  @pulumi.getter
418
418
  def name(self) -> pulumi.Output[str]:
419
419
  """
420
- String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
420
+ String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
421
421
  """
422
422
  return pulumi.get(self, "name")
423
423
 
@@ -425,7 +425,7 @@ class SecretWithGenericString(pulumi.CustomResource):
425
425
  @pulumi.getter
426
426
  def schema(self) -> pulumi.Output[str]:
427
427
  """
428
- The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
428
+ The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
429
429
  """
430
430
  return pulumi.get(self, "schema")
431
431