pulumi-vault 6.1.0a1712222735__py3-none-any.whl → 6.1.1__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.
Files changed (184) hide show
  1. pulumi_vault/_inputs.py +0 -20
  2. pulumi_vault/ad/secret_backend.py +2 -6
  3. pulumi_vault/ad/secret_library.py +2 -4
  4. pulumi_vault/ad/secret_role.py +0 -4
  5. pulumi_vault/alicloud/auth_backend_role.py +69 -192
  6. pulumi_vault/approle/auth_backend_login.py +0 -4
  7. pulumi_vault/approle/auth_backend_role.py +63 -186
  8. pulumi_vault/approle/auth_backend_role_secret_id.py +0 -4
  9. pulumi_vault/approle/get_auth_backend_role_id.py +0 -4
  10. pulumi_vault/audit.py +12 -20
  11. pulumi_vault/audit_request_header.py +6 -6
  12. pulumi_vault/aws/auth_backend_client.py +6 -10
  13. pulumi_vault/aws/auth_backend_config_identity.py +0 -4
  14. pulumi_vault/aws/auth_backend_identity_whitelist.py +6 -10
  15. pulumi_vault/aws/auth_backend_login.py +0 -8
  16. pulumi_vault/aws/auth_backend_role.py +63 -186
  17. pulumi_vault/aws/auth_backend_roletag_blacklist.py +6 -10
  18. pulumi_vault/aws/auth_backend_sts_role.py +0 -4
  19. pulumi_vault/aws/secret_backend.py +63 -0
  20. pulumi_vault/aws/secret_backend_role.py +2 -4
  21. pulumi_vault/aws/secret_backend_static_role.py +2 -4
  22. pulumi_vault/azure/auth_backend_config.py +6 -10
  23. pulumi_vault/azure/auth_backend_role.py +63 -186
  24. pulumi_vault/azure/backend.py +16 -24
  25. pulumi_vault/azure/backend_role.py +14 -18
  26. pulumi_vault/azure/get_access_credentials.py +0 -4
  27. pulumi_vault/cert_auth_backend_role.py +75 -208
  28. pulumi_vault/consul/secret_backend.py +10 -18
  29. pulumi_vault/consul/secret_backend_role.py +2 -4
  30. pulumi_vault/database/_inputs.py +522 -784
  31. pulumi_vault/database/outputs.py +522 -784
  32. pulumi_vault/database/secret_backend_connection.py +2 -4
  33. pulumi_vault/database/secret_backend_role.py +4 -4
  34. pulumi_vault/database/secret_backend_static_role.py +10 -8
  35. pulumi_vault/database/secrets_mount.py +4 -4
  36. pulumi_vault/egp_policy.py +4 -8
  37. pulumi_vault/gcp/auth_backend.py +0 -36
  38. pulumi_vault/gcp/auth_backend_role.py +63 -264
  39. pulumi_vault/gcp/get_auth_backend_role.py +0 -4
  40. pulumi_vault/gcp/secret_backend.py +4 -6
  41. pulumi_vault/gcp/secret_impersonated_account.py +12 -14
  42. pulumi_vault/gcp/secret_roleset.py +4 -6
  43. pulumi_vault/gcp/secret_static_account.py +14 -16
  44. pulumi_vault/generic/endpoint.py +4 -8
  45. pulumi_vault/generic/get_secret.py +40 -4
  46. pulumi_vault/get_auth_backend.py +0 -4
  47. pulumi_vault/get_auth_backends.py +0 -8
  48. pulumi_vault/get_namespace.py +0 -12
  49. pulumi_vault/get_namespaces.py +4 -12
  50. pulumi_vault/get_nomad_access_token.py +0 -4
  51. pulumi_vault/get_policy_document.py +8 -8
  52. pulumi_vault/get_raft_autopilot_state.py +0 -4
  53. pulumi_vault/github/auth_backend.py +0 -4
  54. pulumi_vault/github/team.py +2 -6
  55. pulumi_vault/github/user.py +2 -6
  56. pulumi_vault/identity/entity.py +6 -8
  57. pulumi_vault/identity/entity_alias.py +6 -8
  58. pulumi_vault/identity/entity_policies.py +12 -12
  59. pulumi_vault/identity/get_entity.py +0 -4
  60. pulumi_vault/identity/get_group.py +0 -4
  61. pulumi_vault/identity/get_oidc_client_creds.py +2 -4
  62. pulumi_vault/identity/get_oidc_openid_config.py +10 -6
  63. pulumi_vault/identity/get_oidc_public_keys.py +10 -6
  64. pulumi_vault/identity/group.py +38 -42
  65. pulumi_vault/identity/group_alias.py +2 -4
  66. pulumi_vault/identity/group_member_entity_ids.py +12 -16
  67. pulumi_vault/identity/group_member_group_ids.py +24 -20
  68. pulumi_vault/identity/group_policies.py +4 -8
  69. pulumi_vault/identity/mfa_duo.py +4 -8
  70. pulumi_vault/identity/mfa_login_enforcement.py +8 -8
  71. pulumi_vault/identity/mfa_okta.py +4 -8
  72. pulumi_vault/identity/mfa_pingid.py +0 -4
  73. pulumi_vault/identity/mfa_totp.py +0 -4
  74. pulumi_vault/identity/oidc.py +0 -4
  75. pulumi_vault/identity/oidc_assignment.py +10 -6
  76. pulumi_vault/identity/oidc_client.py +10 -10
  77. pulumi_vault/identity/oidc_key.py +16 -12
  78. pulumi_vault/identity/oidc_key_allowed_client_id.py +16 -12
  79. pulumi_vault/identity/oidc_provider.py +22 -16
  80. pulumi_vault/identity/oidc_role.py +28 -20
  81. pulumi_vault/identity/oidc_scope.py +6 -8
  82. pulumi_vault/jwt/auth_backend.py +20 -32
  83. pulumi_vault/jwt/auth_backend_role.py +63 -190
  84. pulumi_vault/kmip/secret_backend.py +10 -14
  85. pulumi_vault/kmip/secret_role.py +0 -4
  86. pulumi_vault/kmip/secret_scope.py +0 -4
  87. pulumi_vault/kubernetes/auth_backend_config.py +0 -4
  88. pulumi_vault/kubernetes/auth_backend_role.py +56 -172
  89. pulumi_vault/kubernetes/get_service_account_token.py +8 -8
  90. pulumi_vault/kubernetes/secret_backend.py +6 -8
  91. pulumi_vault/kubernetes/secret_backend_role.py +24 -24
  92. pulumi_vault/kv/get_secret.py +0 -4
  93. pulumi_vault/kv/get_secret_subkeys_v2.py +4 -6
  94. pulumi_vault/kv/get_secret_v2.py +58 -0
  95. pulumi_vault/kv/get_secrets_list.py +4 -8
  96. pulumi_vault/kv/get_secrets_list_v2.py +14 -12
  97. pulumi_vault/kv/secret.py +0 -4
  98. pulumi_vault/kv/secret_backend_v2.py +0 -4
  99. pulumi_vault/kv/secret_v2.py +2 -4
  100. pulumi_vault/ldap/auth_backend.py +66 -161
  101. pulumi_vault/ldap/auth_backend_group.py +0 -4
  102. pulumi_vault/ldap/auth_backend_user.py +0 -4
  103. pulumi_vault/ldap/secret_backend.py +4 -8
  104. pulumi_vault/ldap/secret_backend_dynamic_role.py +0 -4
  105. pulumi_vault/ldap/secret_backend_library_set.py +2 -4
  106. pulumi_vault/ldap/secret_backend_static_role.py +0 -4
  107. pulumi_vault/managed/_inputs.py +84 -132
  108. pulumi_vault/managed/keys.py +7 -28
  109. pulumi_vault/managed/outputs.py +84 -132
  110. pulumi_vault/mfa_duo.py +4 -6
  111. pulumi_vault/mfa_okta.py +4 -6
  112. pulumi_vault/mfa_pingid.py +4 -6
  113. pulumi_vault/mfa_totp.py +10 -12
  114. pulumi_vault/mongodbatlas/secret_backend.py +0 -4
  115. pulumi_vault/mongodbatlas/secret_role.py +2 -4
  116. pulumi_vault/mount.py +26 -42
  117. pulumi_vault/nomad_secret_backend.py +4 -8
  118. pulumi_vault/nomad_secret_role.py +0 -4
  119. pulumi_vault/okta/_inputs.py +8 -8
  120. pulumi_vault/okta/auth_backend.py +6 -10
  121. pulumi_vault/okta/auth_backend_group.py +0 -4
  122. pulumi_vault/okta/auth_backend_user.py +0 -4
  123. pulumi_vault/okta/outputs.py +8 -8
  124. pulumi_vault/outputs.py +0 -20
  125. pulumi_vault/password_policy.py +6 -8
  126. pulumi_vault/pkisecret/backend_config_cluster.py +0 -4
  127. pulumi_vault/pkisecret/get_backend_issuer.py +36 -0
  128. pulumi_vault/pkisecret/get_backend_issuers.py +0 -4
  129. pulumi_vault/pkisecret/get_backend_key.py +2 -6
  130. pulumi_vault/pkisecret/get_backend_keys.py +0 -4
  131. pulumi_vault/pkisecret/secret_backend_cert.py +6 -8
  132. pulumi_vault/pkisecret/secret_backend_config_ca.py +4 -8
  133. pulumi_vault/pkisecret/secret_backend_config_issuers.py +0 -4
  134. pulumi_vault/pkisecret/secret_backend_config_urls.py +0 -4
  135. pulumi_vault/pkisecret/secret_backend_crl_config.py +2 -6
  136. pulumi_vault/pkisecret/secret_backend_intermediate_cert_request.py +4 -8
  137. pulumi_vault/pkisecret/secret_backend_intermediate_set_signed.py +10 -14
  138. pulumi_vault/pkisecret/secret_backend_issuer.py +0 -4
  139. pulumi_vault/pkisecret/secret_backend_role.py +2 -4
  140. pulumi_vault/pkisecret/secret_backend_root_cert.py +4 -8
  141. pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +6 -10
  142. pulumi_vault/pkisecret/secret_backend_sign.py +6 -8
  143. pulumi_vault/provider.py +0 -8
  144. pulumi_vault/pulumi-plugin.json +2 -1
  145. pulumi_vault/quota_lease_count.py +6 -8
  146. pulumi_vault/quota_rate_limit.py +2 -4
  147. pulumi_vault/rabbitmq/secret_backend.py +4 -8
  148. pulumi_vault/rabbitmq/secret_backend_role.py +2 -4
  149. pulumi_vault/raft_autopilot.py +0 -4
  150. pulumi_vault/raft_snapshot_agent_config.py +109 -304
  151. pulumi_vault/rgp_policy.py +2 -6
  152. pulumi_vault/saml/auth_backend.py +8 -12
  153. pulumi_vault/saml/auth_backend_role.py +64 -178
  154. pulumi_vault/secrets/sync_association.py +12 -10
  155. pulumi_vault/secrets/sync_aws_destination.py +6 -8
  156. pulumi_vault/secrets/sync_azure_destination.py +10 -12
  157. pulumi_vault/secrets/sync_config.py +2 -6
  158. pulumi_vault/secrets/sync_gcp_destination.py +6 -6
  159. pulumi_vault/secrets/sync_gh_destination.py +6 -8
  160. pulumi_vault/secrets/sync_github_apps.py +8 -8
  161. pulumi_vault/secrets/sync_vercel_destination.py +6 -8
  162. pulumi_vault/ssh/_inputs.py +6 -32
  163. pulumi_vault/ssh/outputs.py +6 -32
  164. pulumi_vault/ssh/secret_backend_ca.py +0 -4
  165. pulumi_vault/ssh/secret_backend_role.py +4 -4
  166. pulumi_vault/terraformcloud/secret_backend.py +0 -56
  167. pulumi_vault/terraformcloud/secret_creds.py +2 -17
  168. pulumi_vault/terraformcloud/secret_role.py +2 -69
  169. pulumi_vault/token.py +14 -18
  170. pulumi_vault/tokenauth/auth_backend_role.py +64 -180
  171. pulumi_vault/transform/alphabet.py +4 -6
  172. pulumi_vault/transform/get_decode.py +4 -4
  173. pulumi_vault/transform/get_encode.py +4 -4
  174. pulumi_vault/transform/role.py +4 -6
  175. pulumi_vault/transform/template.py +4 -4
  176. pulumi_vault/transit/get_decrypt.py +4 -20
  177. pulumi_vault/transit/get_encrypt.py +0 -14
  178. pulumi_vault/transit/secret_backend_key.py +6 -6
  179. pulumi_vault/transit/secret_cache_config.py +0 -4
  180. {pulumi_vault-6.1.0a1712222735.dist-info → pulumi_vault-6.1.1.dist-info}/METADATA +1 -1
  181. pulumi_vault-6.1.1.dist-info/RECORD +252 -0
  182. pulumi_vault-6.1.0a1712222735.dist-info/RECORD +0 -252
  183. {pulumi_vault-6.1.0a1712222735.dist-info → pulumi_vault-6.1.1.dist-info}/WHEEL +0 -0
  184. {pulumi_vault-6.1.0a1712222735.dist-info → pulumi_vault-6.1.1.dist-info}/top_level.txt +0 -0
@@ -62,20 +62,16 @@ class SecretBackendConnectionCassandraArgs:
62
62
  tls: Optional[pulumi.Input[bool]] = None,
63
63
  username: Optional[pulumi.Input[str]] = None):
64
64
  """
65
- :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection
66
- timeout.
67
- :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: The hosts to connect to.
68
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
69
- certificate when using TLS.
70
- :param pulumi.Input[str] password: The password to authenticate with.
71
- :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks configuring the certificate
72
- chain.
73
- :param pulumi.Input[str] pem_json: A JSON structure configuring the certificate chain.
74
- :param pulumi.Input[int] port: The default port to connect to if no port is specified as
75
- part of the host.
65
+ :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection timeout.
66
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: Cassandra hosts to connect to.
67
+ :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server certificate when using TLS.
68
+ :param pulumi.Input[str] password: The password to use when authenticating with Cassandra.
69
+ :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
70
+ :param pulumi.Input[str] pem_json: Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
71
+ :param pulumi.Input[int] port: The transport port to use to connect to Cassandra.
76
72
  :param pulumi.Input[int] protocol_version: The CQL protocol version to use.
77
73
  :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
78
- :param pulumi.Input[str] username: The username to authenticate with.
74
+ :param pulumi.Input[str] username: The username to use when authenticating with Cassandra.
79
75
  """
80
76
  if connect_timeout is not None:
81
77
  pulumi.set(__self__, "connect_timeout", connect_timeout)
@@ -102,8 +98,7 @@ class SecretBackendConnectionCassandraArgs:
102
98
  @pulumi.getter(name="connectTimeout")
103
99
  def connect_timeout(self) -> Optional[pulumi.Input[int]]:
104
100
  """
105
- The number of seconds to use as a connection
106
- timeout.
101
+ The number of seconds to use as a connection timeout.
107
102
  """
108
103
  return pulumi.get(self, "connect_timeout")
109
104
 
@@ -115,7 +110,7 @@ class SecretBackendConnectionCassandraArgs:
115
110
  @pulumi.getter
116
111
  def hosts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
117
112
  """
118
- The hosts to connect to.
113
+ Cassandra hosts to connect to.
119
114
  """
120
115
  return pulumi.get(self, "hosts")
121
116
 
@@ -127,8 +122,7 @@ class SecretBackendConnectionCassandraArgs:
127
122
  @pulumi.getter(name="insecureTls")
128
123
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
129
124
  """
130
- Whether to skip verification of the server
131
- certificate when using TLS.
125
+ Whether to skip verification of the server certificate when using TLS.
132
126
  """
133
127
  return pulumi.get(self, "insecure_tls")
134
128
 
@@ -140,7 +134,7 @@ class SecretBackendConnectionCassandraArgs:
140
134
  @pulumi.getter
141
135
  def password(self) -> Optional[pulumi.Input[str]]:
142
136
  """
143
- The password to authenticate with.
137
+ The password to use when authenticating with Cassandra.
144
138
  """
145
139
  return pulumi.get(self, "password")
146
140
 
@@ -152,8 +146,7 @@ class SecretBackendConnectionCassandraArgs:
152
146
  @pulumi.getter(name="pemBundle")
153
147
  def pem_bundle(self) -> Optional[pulumi.Input[str]]:
154
148
  """
155
- Concatenated PEM blocks configuring the certificate
156
- chain.
149
+ Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
157
150
  """
158
151
  return pulumi.get(self, "pem_bundle")
159
152
 
@@ -165,7 +158,7 @@ class SecretBackendConnectionCassandraArgs:
165
158
  @pulumi.getter(name="pemJson")
166
159
  def pem_json(self) -> Optional[pulumi.Input[str]]:
167
160
  """
168
- A JSON structure configuring the certificate chain.
161
+ Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
169
162
  """
170
163
  return pulumi.get(self, "pem_json")
171
164
 
@@ -177,8 +170,7 @@ class SecretBackendConnectionCassandraArgs:
177
170
  @pulumi.getter
178
171
  def port(self) -> Optional[pulumi.Input[int]]:
179
172
  """
180
- The default port to connect to if no port is specified as
181
- part of the host.
173
+ The transport port to use to connect to Cassandra.
182
174
  """
183
175
  return pulumi.get(self, "port")
184
176
 
@@ -214,7 +206,7 @@ class SecretBackendConnectionCassandraArgs:
214
206
  @pulumi.getter
215
207
  def username(self) -> Optional[pulumi.Input[str]]:
216
208
  """
217
- The username to authenticate with.
209
+ The username to use when authenticating with Cassandra.
218
210
  """
219
211
  return pulumi.get(self, "username")
220
212
 
@@ -235,14 +227,13 @@ class SecretBackendConnectionCouchbaseArgs:
235
227
  tls: Optional[pulumi.Input[bool]] = None,
236
228
  username_template: Optional[pulumi.Input[str]] = None):
237
229
  """
238
- :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: The hosts to connect to.
239
- :param pulumi.Input[str] password: The password to authenticate with.
240
- :param pulumi.Input[str] username: The username to authenticate with.
230
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: A set of Couchbase URIs to connect to. Must use `couchbases://` scheme if `tls` is `true`.
231
+ :param pulumi.Input[str] password: Specifies the password corresponding to the given username.
232
+ :param pulumi.Input[str] username: Specifies the username for Vault to use.
241
233
  :param pulumi.Input[str] base64_pem: Required if `tls` is `true`. Specifies the certificate authority of the Couchbase server, as a PEM certificate that has been base64 encoded.
242
234
  :param pulumi.Input[str] bucket_name: Required for Couchbase versions prior to 6.5.0. This is only used to verify vault's connection to the server.
243
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
244
- certificate when using TLS.
245
- :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
235
+ :param pulumi.Input[bool] insecure_tls: Specifies whether to skip verification of the server certificate when using TLS.
236
+ :param pulumi.Input[bool] tls: Specifies whether to use TLS when connecting to Couchbase.
246
237
  :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
247
238
  """
248
239
  pulumi.set(__self__, "hosts", hosts)
@@ -263,7 +254,7 @@ class SecretBackendConnectionCouchbaseArgs:
263
254
  @pulumi.getter
264
255
  def hosts(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
265
256
  """
266
- The hosts to connect to.
257
+ A set of Couchbase URIs to connect to. Must use `couchbases://` scheme if `tls` is `true`.
267
258
  """
268
259
  return pulumi.get(self, "hosts")
269
260
 
@@ -275,7 +266,7 @@ class SecretBackendConnectionCouchbaseArgs:
275
266
  @pulumi.getter
276
267
  def password(self) -> pulumi.Input[str]:
277
268
  """
278
- The password to authenticate with.
269
+ Specifies the password corresponding to the given username.
279
270
  """
280
271
  return pulumi.get(self, "password")
281
272
 
@@ -287,7 +278,7 @@ class SecretBackendConnectionCouchbaseArgs:
287
278
  @pulumi.getter
288
279
  def username(self) -> pulumi.Input[str]:
289
280
  """
290
- The username to authenticate with.
281
+ Specifies the username for Vault to use.
291
282
  """
292
283
  return pulumi.get(self, "username")
293
284
 
@@ -323,8 +314,7 @@ class SecretBackendConnectionCouchbaseArgs:
323
314
  @pulumi.getter(name="insecureTls")
324
315
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
325
316
  """
326
- Whether to skip verification of the server
327
- certificate when using TLS.
317
+ Specifies whether to skip verification of the server certificate when using TLS.
328
318
  """
329
319
  return pulumi.get(self, "insecure_tls")
330
320
 
@@ -336,7 +326,7 @@ class SecretBackendConnectionCouchbaseArgs:
336
326
  @pulumi.getter
337
327
  def tls(self) -> Optional[pulumi.Input[bool]]:
338
328
  """
339
- Whether to use TLS when connecting to Cassandra.
329
+ Specifies whether to use TLS when connecting to Couchbase.
340
330
  """
341
331
  return pulumi.get(self, "tls")
342
332
 
@@ -371,16 +361,15 @@ class SecretBackendConnectionElasticsearchArgs:
371
361
  tls_server_name: Optional[pulumi.Input[str]] = None,
372
362
  username_template: Optional[pulumi.Input[str]] = None):
373
363
  """
374
- :param pulumi.Input[str] password: The password to authenticate with.
375
- :param pulumi.Input[str] url: The URL for Elasticsearch's API. https requires certificate
376
- by trusted CA if used.
377
- :param pulumi.Input[str] username: The username to authenticate with.
378
- :param pulumi.Input[str] ca_cert: The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
379
- :param pulumi.Input[str] ca_path: The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity.
380
- :param pulumi.Input[str] client_cert: The path to the certificate for the Elasticsearch client to present for communication.
381
- :param pulumi.Input[str] client_key: The path to the key for the Elasticsearch client to use for communication.
382
- :param pulumi.Input[bool] insecure: Whether to disable certificate verification.
383
- :param pulumi.Input[str] tls_server_name: This, if set, is used to set the SNI host when connecting via TLS.
364
+ :param pulumi.Input[str] password: The password to be used in the connection URL
365
+ :param pulumi.Input[str] url: The URL for Elasticsearch's API
366
+ :param pulumi.Input[str] username: The username to be used in the connection URL
367
+ :param pulumi.Input[str] ca_cert: The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity
368
+ :param pulumi.Input[str] ca_path: The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity
369
+ :param pulumi.Input[str] client_cert: The path to the certificate for the Elasticsearch client to present for communication
370
+ :param pulumi.Input[str] client_key: The path to the key for the Elasticsearch client to use for communication
371
+ :param pulumi.Input[bool] insecure: Whether to disable certificate verification
372
+ :param pulumi.Input[str] tls_server_name: This, if set, is used to set the SNI host when connecting via TLS
384
373
  :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
385
374
  """
386
375
  pulumi.set(__self__, "password", password)
@@ -405,7 +394,7 @@ class SecretBackendConnectionElasticsearchArgs:
405
394
  @pulumi.getter
406
395
  def password(self) -> pulumi.Input[str]:
407
396
  """
408
- The password to authenticate with.
397
+ The password to be used in the connection URL
409
398
  """
410
399
  return pulumi.get(self, "password")
411
400
 
@@ -417,8 +406,7 @@ class SecretBackendConnectionElasticsearchArgs:
417
406
  @pulumi.getter
418
407
  def url(self) -> pulumi.Input[str]:
419
408
  """
420
- The URL for Elasticsearch's API. https requires certificate
421
- by trusted CA if used.
409
+ The URL for Elasticsearch's API
422
410
  """
423
411
  return pulumi.get(self, "url")
424
412
 
@@ -430,7 +418,7 @@ class SecretBackendConnectionElasticsearchArgs:
430
418
  @pulumi.getter
431
419
  def username(self) -> pulumi.Input[str]:
432
420
  """
433
- The username to authenticate with.
421
+ The username to be used in the connection URL
434
422
  """
435
423
  return pulumi.get(self, "username")
436
424
 
@@ -442,7 +430,7 @@ class SecretBackendConnectionElasticsearchArgs:
442
430
  @pulumi.getter(name="caCert")
443
431
  def ca_cert(self) -> Optional[pulumi.Input[str]]:
444
432
  """
445
- The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
433
+ The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity
446
434
  """
447
435
  return pulumi.get(self, "ca_cert")
448
436
 
@@ -454,7 +442,7 @@ class SecretBackendConnectionElasticsearchArgs:
454
442
  @pulumi.getter(name="caPath")
455
443
  def ca_path(self) -> Optional[pulumi.Input[str]]:
456
444
  """
457
- The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity.
445
+ The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity
458
446
  """
459
447
  return pulumi.get(self, "ca_path")
460
448
 
@@ -466,7 +454,7 @@ class SecretBackendConnectionElasticsearchArgs:
466
454
  @pulumi.getter(name="clientCert")
467
455
  def client_cert(self) -> Optional[pulumi.Input[str]]:
468
456
  """
469
- The path to the certificate for the Elasticsearch client to present for communication.
457
+ The path to the certificate for the Elasticsearch client to present for communication
470
458
  """
471
459
  return pulumi.get(self, "client_cert")
472
460
 
@@ -478,7 +466,7 @@ class SecretBackendConnectionElasticsearchArgs:
478
466
  @pulumi.getter(name="clientKey")
479
467
  def client_key(self) -> Optional[pulumi.Input[str]]:
480
468
  """
481
- The path to the key for the Elasticsearch client to use for communication.
469
+ The path to the key for the Elasticsearch client to use for communication
482
470
  """
483
471
  return pulumi.get(self, "client_key")
484
472
 
@@ -490,7 +478,7 @@ class SecretBackendConnectionElasticsearchArgs:
490
478
  @pulumi.getter
491
479
  def insecure(self) -> Optional[pulumi.Input[bool]]:
492
480
  """
493
- Whether to disable certificate verification.
481
+ Whether to disable certificate verification
494
482
  """
495
483
  return pulumi.get(self, "insecure")
496
484
 
@@ -502,7 +490,7 @@ class SecretBackendConnectionElasticsearchArgs:
502
490
  @pulumi.getter(name="tlsServerName")
503
491
  def tls_server_name(self) -> Optional[pulumi.Input[str]]:
504
492
  """
505
- This, if set, is used to set the SNI host when connecting via TLS.
493
+ This, if set, is used to set the SNI host when connecting via TLS
506
494
  """
507
495
  return pulumi.get(self, "tls_server_name")
508
496
 
@@ -534,19 +522,13 @@ class SecretBackendConnectionHanaArgs:
534
522
  password: Optional[pulumi.Input[str]] = None,
535
523
  username: Optional[pulumi.Input[str]] = None):
536
524
  """
537
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
538
- the [Vault
539
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
540
- for an example.
541
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
542
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
543
- a connection alive for.
544
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
545
- maintain.
546
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
547
- use.
548
- :param pulumi.Input[str] password: The password to authenticate with.
549
- :param pulumi.Input[str] username: The username to authenticate with.
525
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
526
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
527
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
528
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
529
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
530
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
531
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
550
532
  """
551
533
  if connection_url is not None:
552
534
  pulumi.set(__self__, "connection_url", connection_url)
@@ -567,10 +549,7 @@ class SecretBackendConnectionHanaArgs:
567
549
  @pulumi.getter(name="connectionUrl")
568
550
  def connection_url(self) -> Optional[pulumi.Input[str]]:
569
551
  """
570
- A URL containing connection information. See
571
- the [Vault
572
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
573
- for an example.
552
+ Connection string to use to connect to the database.
574
553
  """
575
554
  return pulumi.get(self, "connection_url")
576
555
 
@@ -582,7 +561,7 @@ class SecretBackendConnectionHanaArgs:
582
561
  @pulumi.getter(name="disableEscaping")
583
562
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
584
563
  """
585
- Disable special character escaping in username and password.
564
+ Disable special character escaping in username and password
586
565
  """
587
566
  return pulumi.get(self, "disable_escaping")
588
567
 
@@ -594,8 +573,7 @@ class SecretBackendConnectionHanaArgs:
594
573
  @pulumi.getter(name="maxConnectionLifetime")
595
574
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
596
575
  """
597
- The maximum number of seconds to keep
598
- a connection alive for.
576
+ Maximum number of seconds a connection may be reused.
599
577
  """
600
578
  return pulumi.get(self, "max_connection_lifetime")
601
579
 
@@ -607,8 +585,7 @@ class SecretBackendConnectionHanaArgs:
607
585
  @pulumi.getter(name="maxIdleConnections")
608
586
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
609
587
  """
610
- The maximum number of idle connections to
611
- maintain.
588
+ Maximum number of idle connections to the database.
612
589
  """
613
590
  return pulumi.get(self, "max_idle_connections")
614
591
 
@@ -620,8 +597,7 @@ class SecretBackendConnectionHanaArgs:
620
597
  @pulumi.getter(name="maxOpenConnections")
621
598
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
622
599
  """
623
- The maximum number of open connections to
624
- use.
600
+ Maximum number of open connections to the database.
625
601
  """
626
602
  return pulumi.get(self, "max_open_connections")
627
603
 
@@ -633,7 +609,7 @@ class SecretBackendConnectionHanaArgs:
633
609
  @pulumi.getter
634
610
  def password(self) -> Optional[pulumi.Input[str]]:
635
611
  """
636
- The password to authenticate with.
612
+ The root credential password used in the connection URL
637
613
  """
638
614
  return pulumi.get(self, "password")
639
615
 
@@ -645,7 +621,7 @@ class SecretBackendConnectionHanaArgs:
645
621
  @pulumi.getter
646
622
  def username(self) -> Optional[pulumi.Input[str]]:
647
623
  """
648
- The username to authenticate with.
624
+ The root credential username used in the connection URL
649
625
  """
650
626
  return pulumi.get(self, "username")
651
627
 
@@ -668,19 +644,15 @@ class SecretBackendConnectionInfluxdbArgs:
668
644
  tls: Optional[pulumi.Input[bool]] = None,
669
645
  username_template: Optional[pulumi.Input[str]] = None):
670
646
  """
671
- :param pulumi.Input[str] host: The host to connect to.
672
- :param pulumi.Input[str] password: The password to authenticate with.
673
- :param pulumi.Input[str] username: The username to authenticate with.
674
- :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection
675
- timeout.
676
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
677
- certificate when using TLS.
678
- :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks configuring the certificate
679
- chain.
680
- :param pulumi.Input[str] pem_json: A JSON structure configuring the certificate chain.
681
- :param pulumi.Input[int] port: The default port to connect to if no port is specified as
682
- part of the host.
683
- :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
647
+ :param pulumi.Input[str] host: Influxdb host to connect to.
648
+ :param pulumi.Input[str] password: Specifies the password corresponding to the given username.
649
+ :param pulumi.Input[str] username: Specifies the username to use for superuser access.
650
+ :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection timeout.
651
+ :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server certificate when using TLS.
652
+ :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
653
+ :param pulumi.Input[str] pem_json: Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
654
+ :param pulumi.Input[int] port: The transport port to use to connect to Influxdb.
655
+ :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Influxdb.
684
656
  :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
685
657
  """
686
658
  pulumi.set(__self__, "host", host)
@@ -705,7 +677,7 @@ class SecretBackendConnectionInfluxdbArgs:
705
677
  @pulumi.getter
706
678
  def host(self) -> pulumi.Input[str]:
707
679
  """
708
- The host to connect to.
680
+ Influxdb host to connect to.
709
681
  """
710
682
  return pulumi.get(self, "host")
711
683
 
@@ -717,7 +689,7 @@ class SecretBackendConnectionInfluxdbArgs:
717
689
  @pulumi.getter
718
690
  def password(self) -> pulumi.Input[str]:
719
691
  """
720
- The password to authenticate with.
692
+ Specifies the password corresponding to the given username.
721
693
  """
722
694
  return pulumi.get(self, "password")
723
695
 
@@ -729,7 +701,7 @@ class SecretBackendConnectionInfluxdbArgs:
729
701
  @pulumi.getter
730
702
  def username(self) -> pulumi.Input[str]:
731
703
  """
732
- The username to authenticate with.
704
+ Specifies the username to use for superuser access.
733
705
  """
734
706
  return pulumi.get(self, "username")
735
707
 
@@ -741,8 +713,7 @@ class SecretBackendConnectionInfluxdbArgs:
741
713
  @pulumi.getter(name="connectTimeout")
742
714
  def connect_timeout(self) -> Optional[pulumi.Input[int]]:
743
715
  """
744
- The number of seconds to use as a connection
745
- timeout.
716
+ The number of seconds to use as a connection timeout.
746
717
  """
747
718
  return pulumi.get(self, "connect_timeout")
748
719
 
@@ -754,8 +725,7 @@ class SecretBackendConnectionInfluxdbArgs:
754
725
  @pulumi.getter(name="insecureTls")
755
726
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
756
727
  """
757
- Whether to skip verification of the server
758
- certificate when using TLS.
728
+ Whether to skip verification of the server certificate when using TLS.
759
729
  """
760
730
  return pulumi.get(self, "insecure_tls")
761
731
 
@@ -767,8 +737,7 @@ class SecretBackendConnectionInfluxdbArgs:
767
737
  @pulumi.getter(name="pemBundle")
768
738
  def pem_bundle(self) -> Optional[pulumi.Input[str]]:
769
739
  """
770
- Concatenated PEM blocks configuring the certificate
771
- chain.
740
+ Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
772
741
  """
773
742
  return pulumi.get(self, "pem_bundle")
774
743
 
@@ -780,7 +749,7 @@ class SecretBackendConnectionInfluxdbArgs:
780
749
  @pulumi.getter(name="pemJson")
781
750
  def pem_json(self) -> Optional[pulumi.Input[str]]:
782
751
  """
783
- A JSON structure configuring the certificate chain.
752
+ Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
784
753
  """
785
754
  return pulumi.get(self, "pem_json")
786
755
 
@@ -792,8 +761,7 @@ class SecretBackendConnectionInfluxdbArgs:
792
761
  @pulumi.getter
793
762
  def port(self) -> Optional[pulumi.Input[int]]:
794
763
  """
795
- The default port to connect to if no port is specified as
796
- part of the host.
764
+ The transport port to use to connect to Influxdb.
797
765
  """
798
766
  return pulumi.get(self, "port")
799
767
 
@@ -805,7 +773,7 @@ class SecretBackendConnectionInfluxdbArgs:
805
773
  @pulumi.getter
806
774
  def tls(self) -> Optional[pulumi.Input[bool]]:
807
775
  """
808
- Whether to use TLS when connecting to Cassandra.
776
+ Whether to use TLS when connecting to Influxdb.
809
777
  """
810
778
  return pulumi.get(self, "tls")
811
779
 
@@ -837,19 +805,13 @@ class SecretBackendConnectionMongodbArgs:
837
805
  username: Optional[pulumi.Input[str]] = None,
838
806
  username_template: Optional[pulumi.Input[str]] = None):
839
807
  """
840
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
841
- the [Vault
842
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
843
- for an example.
844
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
845
- a connection alive for.
846
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
847
- maintain.
848
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
849
- use.
850
- :param pulumi.Input[str] password: The password to authenticate with.
851
- :param pulumi.Input[str] username: The username to authenticate with.
852
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
808
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
809
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
810
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
811
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
812
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
813
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
814
+ :param pulumi.Input[str] username_template: Username generation template.
853
815
  """
854
816
  if connection_url is not None:
855
817
  pulumi.set(__self__, "connection_url", connection_url)
@@ -870,10 +832,7 @@ class SecretBackendConnectionMongodbArgs:
870
832
  @pulumi.getter(name="connectionUrl")
871
833
  def connection_url(self) -> Optional[pulumi.Input[str]]:
872
834
  """
873
- A URL containing connection information. See
874
- the [Vault
875
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
876
- for an example.
835
+ Connection string to use to connect to the database.
877
836
  """
878
837
  return pulumi.get(self, "connection_url")
879
838
 
@@ -885,8 +844,7 @@ class SecretBackendConnectionMongodbArgs:
885
844
  @pulumi.getter(name="maxConnectionLifetime")
886
845
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
887
846
  """
888
- The maximum number of seconds to keep
889
- a connection alive for.
847
+ Maximum number of seconds a connection may be reused.
890
848
  """
891
849
  return pulumi.get(self, "max_connection_lifetime")
892
850
 
@@ -898,8 +856,7 @@ class SecretBackendConnectionMongodbArgs:
898
856
  @pulumi.getter(name="maxIdleConnections")
899
857
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
900
858
  """
901
- The maximum number of idle connections to
902
- maintain.
859
+ Maximum number of idle connections to the database.
903
860
  """
904
861
  return pulumi.get(self, "max_idle_connections")
905
862
 
@@ -911,8 +868,7 @@ class SecretBackendConnectionMongodbArgs:
911
868
  @pulumi.getter(name="maxOpenConnections")
912
869
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
913
870
  """
914
- The maximum number of open connections to
915
- use.
871
+ Maximum number of open connections to the database.
916
872
  """
917
873
  return pulumi.get(self, "max_open_connections")
918
874
 
@@ -924,7 +880,7 @@ class SecretBackendConnectionMongodbArgs:
924
880
  @pulumi.getter
925
881
  def password(self) -> Optional[pulumi.Input[str]]:
926
882
  """
927
- The password to authenticate with.
883
+ The root credential password used in the connection URL
928
884
  """
929
885
  return pulumi.get(self, "password")
930
886
 
@@ -936,7 +892,7 @@ class SecretBackendConnectionMongodbArgs:
936
892
  @pulumi.getter
937
893
  def username(self) -> Optional[pulumi.Input[str]]:
938
894
  """
939
- The username to authenticate with.
895
+ The root credential username used in the connection URL
940
896
  """
941
897
  return pulumi.get(self, "username")
942
898
 
@@ -948,7 +904,7 @@ class SecretBackendConnectionMongodbArgs:
948
904
  @pulumi.getter(name="usernameTemplate")
949
905
  def username_template(self) -> Optional[pulumi.Input[str]]:
950
906
  """
951
- Template describing how dynamic usernames are generated.
907
+ Username generation template.
952
908
  """
953
909
  return pulumi.get(self, "username_template")
954
910
 
@@ -1022,24 +978,15 @@ class SecretBackendConnectionMssqlArgs:
1022
978
  username: Optional[pulumi.Input[str]] = None,
1023
979
  username_template: Optional[pulumi.Input[str]] = None):
1024
980
  """
1025
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
1026
- the [Vault
1027
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1028
- for an example.
1029
- :param pulumi.Input[bool] contained_db: For Vault v1.9+. Set to true when the target is a
1030
- Contained Database, e.g. AzureSQL.
1031
- See the [Vault
1032
- docs](https://www.vaultproject.io/api/secret/databases/mssql#contained_db)
1033
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
1034
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1035
- a connection alive for.
1036
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
1037
- maintain.
1038
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1039
- use.
1040
- :param pulumi.Input[str] password: The password to authenticate with.
1041
- :param pulumi.Input[str] username: The username to authenticate with.
1042
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
981
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
982
+ :param pulumi.Input[bool] contained_db: Set to true when the target is a Contained Database, e.g. AzureSQL.
983
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
984
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
985
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
986
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
987
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
988
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
989
+ :param pulumi.Input[str] username_template: Username generation template.
1043
990
  """
1044
991
  if connection_url is not None:
1045
992
  pulumi.set(__self__, "connection_url", connection_url)
@@ -1064,10 +1011,7 @@ class SecretBackendConnectionMssqlArgs:
1064
1011
  @pulumi.getter(name="connectionUrl")
1065
1012
  def connection_url(self) -> Optional[pulumi.Input[str]]:
1066
1013
  """
1067
- A URL containing connection information. See
1068
- the [Vault
1069
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1070
- for an example.
1014
+ Connection string to use to connect to the database.
1071
1015
  """
1072
1016
  return pulumi.get(self, "connection_url")
1073
1017
 
@@ -1079,10 +1023,7 @@ class SecretBackendConnectionMssqlArgs:
1079
1023
  @pulumi.getter(name="containedDb")
1080
1024
  def contained_db(self) -> Optional[pulumi.Input[bool]]:
1081
1025
  """
1082
- For Vault v1.9+. Set to true when the target is a
1083
- Contained Database, e.g. AzureSQL.
1084
- See the [Vault
1085
- docs](https://www.vaultproject.io/api/secret/databases/mssql#contained_db)
1026
+ Set to true when the target is a Contained Database, e.g. AzureSQL.
1086
1027
  """
1087
1028
  return pulumi.get(self, "contained_db")
1088
1029
 
@@ -1094,7 +1035,7 @@ class SecretBackendConnectionMssqlArgs:
1094
1035
  @pulumi.getter(name="disableEscaping")
1095
1036
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
1096
1037
  """
1097
- Disable special character escaping in username and password.
1038
+ Disable special character escaping in username and password
1098
1039
  """
1099
1040
  return pulumi.get(self, "disable_escaping")
1100
1041
 
@@ -1106,8 +1047,7 @@ class SecretBackendConnectionMssqlArgs:
1106
1047
  @pulumi.getter(name="maxConnectionLifetime")
1107
1048
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
1108
1049
  """
1109
- The maximum number of seconds to keep
1110
- a connection alive for.
1050
+ Maximum number of seconds a connection may be reused.
1111
1051
  """
1112
1052
  return pulumi.get(self, "max_connection_lifetime")
1113
1053
 
@@ -1119,8 +1059,7 @@ class SecretBackendConnectionMssqlArgs:
1119
1059
  @pulumi.getter(name="maxIdleConnections")
1120
1060
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
1121
1061
  """
1122
- The maximum number of idle connections to
1123
- maintain.
1062
+ Maximum number of idle connections to the database.
1124
1063
  """
1125
1064
  return pulumi.get(self, "max_idle_connections")
1126
1065
 
@@ -1132,8 +1071,7 @@ class SecretBackendConnectionMssqlArgs:
1132
1071
  @pulumi.getter(name="maxOpenConnections")
1133
1072
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
1134
1073
  """
1135
- The maximum number of open connections to
1136
- use.
1074
+ Maximum number of open connections to the database.
1137
1075
  """
1138
1076
  return pulumi.get(self, "max_open_connections")
1139
1077
 
@@ -1145,7 +1083,7 @@ class SecretBackendConnectionMssqlArgs:
1145
1083
  @pulumi.getter
1146
1084
  def password(self) -> Optional[pulumi.Input[str]]:
1147
1085
  """
1148
- The password to authenticate with.
1086
+ The root credential password used in the connection URL
1149
1087
  """
1150
1088
  return pulumi.get(self, "password")
1151
1089
 
@@ -1157,7 +1095,7 @@ class SecretBackendConnectionMssqlArgs:
1157
1095
  @pulumi.getter
1158
1096
  def username(self) -> Optional[pulumi.Input[str]]:
1159
1097
  """
1160
- The username to authenticate with.
1098
+ The root credential username used in the connection URL
1161
1099
  """
1162
1100
  return pulumi.get(self, "username")
1163
1101
 
@@ -1169,7 +1107,7 @@ class SecretBackendConnectionMssqlArgs:
1169
1107
  @pulumi.getter(name="usernameTemplate")
1170
1108
  def username_template(self) -> Optional[pulumi.Input[str]]:
1171
1109
  """
1172
- Template describing how dynamic usernames are generated.
1110
+ Username generation template.
1173
1111
  """
1174
1112
  return pulumi.get(self, "username_template")
1175
1113
 
@@ -1193,23 +1131,17 @@ class SecretBackendConnectionMysqlArgs:
1193
1131
  username: Optional[pulumi.Input[str]] = None,
1194
1132
  username_template: Optional[pulumi.Input[str]] = None):
1195
1133
  """
1196
- :param pulumi.Input[str] auth_type: Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1197
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
1198
- the [Vault
1199
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1200
- for an example.
1201
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1202
- a connection alive for.
1203
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
1204
- maintain.
1205
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1206
- use.
1207
- :param pulumi.Input[str] password: The password to authenticate with.
1208
- :param pulumi.Input[str] service_account_json: JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1134
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1135
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
1136
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
1137
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
1138
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
1139
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
1140
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
1209
1141
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
1210
1142
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
1211
- :param pulumi.Input[str] username: The username to authenticate with.
1212
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
1143
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
1144
+ :param pulumi.Input[str] username_template: Username generation template.
1213
1145
  """
1214
1146
  if auth_type is not None:
1215
1147
  pulumi.set(__self__, "auth_type", auth_type)
@@ -1238,7 +1170,7 @@ class SecretBackendConnectionMysqlArgs:
1238
1170
  @pulumi.getter(name="authType")
1239
1171
  def auth_type(self) -> Optional[pulumi.Input[str]]:
1240
1172
  """
1241
- Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1173
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1242
1174
  """
1243
1175
  return pulumi.get(self, "auth_type")
1244
1176
 
@@ -1250,10 +1182,7 @@ class SecretBackendConnectionMysqlArgs:
1250
1182
  @pulumi.getter(name="connectionUrl")
1251
1183
  def connection_url(self) -> Optional[pulumi.Input[str]]:
1252
1184
  """
1253
- A URL containing connection information. See
1254
- the [Vault
1255
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1256
- for an example.
1185
+ Connection string to use to connect to the database.
1257
1186
  """
1258
1187
  return pulumi.get(self, "connection_url")
1259
1188
 
@@ -1265,8 +1194,7 @@ class SecretBackendConnectionMysqlArgs:
1265
1194
  @pulumi.getter(name="maxConnectionLifetime")
1266
1195
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
1267
1196
  """
1268
- The maximum number of seconds to keep
1269
- a connection alive for.
1197
+ Maximum number of seconds a connection may be reused.
1270
1198
  """
1271
1199
  return pulumi.get(self, "max_connection_lifetime")
1272
1200
 
@@ -1278,8 +1206,7 @@ class SecretBackendConnectionMysqlArgs:
1278
1206
  @pulumi.getter(name="maxIdleConnections")
1279
1207
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
1280
1208
  """
1281
- The maximum number of idle connections to
1282
- maintain.
1209
+ Maximum number of idle connections to the database.
1283
1210
  """
1284
1211
  return pulumi.get(self, "max_idle_connections")
1285
1212
 
@@ -1291,8 +1218,7 @@ class SecretBackendConnectionMysqlArgs:
1291
1218
  @pulumi.getter(name="maxOpenConnections")
1292
1219
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
1293
1220
  """
1294
- The maximum number of open connections to
1295
- use.
1221
+ Maximum number of open connections to the database.
1296
1222
  """
1297
1223
  return pulumi.get(self, "max_open_connections")
1298
1224
 
@@ -1304,7 +1230,7 @@ class SecretBackendConnectionMysqlArgs:
1304
1230
  @pulumi.getter
1305
1231
  def password(self) -> Optional[pulumi.Input[str]]:
1306
1232
  """
1307
- The password to authenticate with.
1233
+ The root credential password used in the connection URL
1308
1234
  """
1309
1235
  return pulumi.get(self, "password")
1310
1236
 
@@ -1316,7 +1242,7 @@ class SecretBackendConnectionMysqlArgs:
1316
1242
  @pulumi.getter(name="serviceAccountJson")
1317
1243
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
1318
1244
  """
1319
- JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1245
+ A JSON encoded credential for use with IAM authorization
1320
1246
  """
1321
1247
  return pulumi.get(self, "service_account_json")
1322
1248
 
@@ -1352,7 +1278,7 @@ class SecretBackendConnectionMysqlArgs:
1352
1278
  @pulumi.getter
1353
1279
  def username(self) -> Optional[pulumi.Input[str]]:
1354
1280
  """
1355
- The username to authenticate with.
1281
+ The root credential username used in the connection URL
1356
1282
  """
1357
1283
  return pulumi.get(self, "username")
1358
1284
 
@@ -1364,7 +1290,7 @@ class SecretBackendConnectionMysqlArgs:
1364
1290
  @pulumi.getter(name="usernameTemplate")
1365
1291
  def username_template(self) -> Optional[pulumi.Input[str]]:
1366
1292
  """
1367
- Template describing how dynamic usernames are generated.
1293
+ Username generation template.
1368
1294
  """
1369
1295
  return pulumi.get(self, "username_template")
1370
1296
 
@@ -1388,23 +1314,17 @@ class SecretBackendConnectionMysqlAuroraArgs:
1388
1314
  username: Optional[pulumi.Input[str]] = None,
1389
1315
  username_template: Optional[pulumi.Input[str]] = None):
1390
1316
  """
1391
- :param pulumi.Input[str] auth_type: Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1392
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
1393
- the [Vault
1394
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1395
- for an example.
1396
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1397
- a connection alive for.
1398
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
1399
- maintain.
1400
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1401
- use.
1402
- :param pulumi.Input[str] password: The password to authenticate with.
1403
- :param pulumi.Input[str] service_account_json: JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1317
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1318
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
1319
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
1320
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
1321
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
1322
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
1323
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
1404
1324
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
1405
1325
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
1406
- :param pulumi.Input[str] username: The username to authenticate with.
1407
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
1326
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
1327
+ :param pulumi.Input[str] username_template: Username generation template.
1408
1328
  """
1409
1329
  if auth_type is not None:
1410
1330
  pulumi.set(__self__, "auth_type", auth_type)
@@ -1433,7 +1353,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1433
1353
  @pulumi.getter(name="authType")
1434
1354
  def auth_type(self) -> Optional[pulumi.Input[str]]:
1435
1355
  """
1436
- Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1356
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1437
1357
  """
1438
1358
  return pulumi.get(self, "auth_type")
1439
1359
 
@@ -1445,10 +1365,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1445
1365
  @pulumi.getter(name="connectionUrl")
1446
1366
  def connection_url(self) -> Optional[pulumi.Input[str]]:
1447
1367
  """
1448
- A URL containing connection information. See
1449
- the [Vault
1450
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1451
- for an example.
1368
+ Connection string to use to connect to the database.
1452
1369
  """
1453
1370
  return pulumi.get(self, "connection_url")
1454
1371
 
@@ -1460,8 +1377,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1460
1377
  @pulumi.getter(name="maxConnectionLifetime")
1461
1378
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
1462
1379
  """
1463
- The maximum number of seconds to keep
1464
- a connection alive for.
1380
+ Maximum number of seconds a connection may be reused.
1465
1381
  """
1466
1382
  return pulumi.get(self, "max_connection_lifetime")
1467
1383
 
@@ -1473,8 +1389,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1473
1389
  @pulumi.getter(name="maxIdleConnections")
1474
1390
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
1475
1391
  """
1476
- The maximum number of idle connections to
1477
- maintain.
1392
+ Maximum number of idle connections to the database.
1478
1393
  """
1479
1394
  return pulumi.get(self, "max_idle_connections")
1480
1395
 
@@ -1486,8 +1401,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1486
1401
  @pulumi.getter(name="maxOpenConnections")
1487
1402
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
1488
1403
  """
1489
- The maximum number of open connections to
1490
- use.
1404
+ Maximum number of open connections to the database.
1491
1405
  """
1492
1406
  return pulumi.get(self, "max_open_connections")
1493
1407
 
@@ -1499,7 +1413,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1499
1413
  @pulumi.getter
1500
1414
  def password(self) -> Optional[pulumi.Input[str]]:
1501
1415
  """
1502
- The password to authenticate with.
1416
+ The root credential password used in the connection URL
1503
1417
  """
1504
1418
  return pulumi.get(self, "password")
1505
1419
 
@@ -1511,7 +1425,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1511
1425
  @pulumi.getter(name="serviceAccountJson")
1512
1426
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
1513
1427
  """
1514
- JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1428
+ A JSON encoded credential for use with IAM authorization
1515
1429
  """
1516
1430
  return pulumi.get(self, "service_account_json")
1517
1431
 
@@ -1547,7 +1461,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1547
1461
  @pulumi.getter
1548
1462
  def username(self) -> Optional[pulumi.Input[str]]:
1549
1463
  """
1550
- The username to authenticate with.
1464
+ The root credential username used in the connection URL
1551
1465
  """
1552
1466
  return pulumi.get(self, "username")
1553
1467
 
@@ -1559,7 +1473,7 @@ class SecretBackendConnectionMysqlAuroraArgs:
1559
1473
  @pulumi.getter(name="usernameTemplate")
1560
1474
  def username_template(self) -> Optional[pulumi.Input[str]]:
1561
1475
  """
1562
- Template describing how dynamic usernames are generated.
1476
+ Username generation template.
1563
1477
  """
1564
1478
  return pulumi.get(self, "username_template")
1565
1479
 
@@ -1583,23 +1497,17 @@ class SecretBackendConnectionMysqlLegacyArgs:
1583
1497
  username: Optional[pulumi.Input[str]] = None,
1584
1498
  username_template: Optional[pulumi.Input[str]] = None):
1585
1499
  """
1586
- :param pulumi.Input[str] auth_type: Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1587
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
1588
- the [Vault
1589
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1590
- for an example.
1591
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1592
- a connection alive for.
1593
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
1594
- maintain.
1595
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1596
- use.
1597
- :param pulumi.Input[str] password: The password to authenticate with.
1598
- :param pulumi.Input[str] service_account_json: JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1500
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1501
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
1502
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
1503
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
1504
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
1505
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
1506
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
1599
1507
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
1600
1508
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
1601
- :param pulumi.Input[str] username: The username to authenticate with.
1602
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
1509
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
1510
+ :param pulumi.Input[str] username_template: Username generation template.
1603
1511
  """
1604
1512
  if auth_type is not None:
1605
1513
  pulumi.set(__self__, "auth_type", auth_type)
@@ -1628,7 +1536,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1628
1536
  @pulumi.getter(name="authType")
1629
1537
  def auth_type(self) -> Optional[pulumi.Input[str]]:
1630
1538
  """
1631
- Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1539
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1632
1540
  """
1633
1541
  return pulumi.get(self, "auth_type")
1634
1542
 
@@ -1640,10 +1548,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1640
1548
  @pulumi.getter(name="connectionUrl")
1641
1549
  def connection_url(self) -> Optional[pulumi.Input[str]]:
1642
1550
  """
1643
- A URL containing connection information. See
1644
- the [Vault
1645
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1646
- for an example.
1551
+ Connection string to use to connect to the database.
1647
1552
  """
1648
1553
  return pulumi.get(self, "connection_url")
1649
1554
 
@@ -1655,8 +1560,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1655
1560
  @pulumi.getter(name="maxConnectionLifetime")
1656
1561
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
1657
1562
  """
1658
- The maximum number of seconds to keep
1659
- a connection alive for.
1563
+ Maximum number of seconds a connection may be reused.
1660
1564
  """
1661
1565
  return pulumi.get(self, "max_connection_lifetime")
1662
1566
 
@@ -1668,8 +1572,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1668
1572
  @pulumi.getter(name="maxIdleConnections")
1669
1573
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
1670
1574
  """
1671
- The maximum number of idle connections to
1672
- maintain.
1575
+ Maximum number of idle connections to the database.
1673
1576
  """
1674
1577
  return pulumi.get(self, "max_idle_connections")
1675
1578
 
@@ -1681,8 +1584,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1681
1584
  @pulumi.getter(name="maxOpenConnections")
1682
1585
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
1683
1586
  """
1684
- The maximum number of open connections to
1685
- use.
1587
+ Maximum number of open connections to the database.
1686
1588
  """
1687
1589
  return pulumi.get(self, "max_open_connections")
1688
1590
 
@@ -1694,7 +1596,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1694
1596
  @pulumi.getter
1695
1597
  def password(self) -> Optional[pulumi.Input[str]]:
1696
1598
  """
1697
- The password to authenticate with.
1599
+ The root credential password used in the connection URL
1698
1600
  """
1699
1601
  return pulumi.get(self, "password")
1700
1602
 
@@ -1706,7 +1608,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1706
1608
  @pulumi.getter(name="serviceAccountJson")
1707
1609
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
1708
1610
  """
1709
- JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1611
+ A JSON encoded credential for use with IAM authorization
1710
1612
  """
1711
1613
  return pulumi.get(self, "service_account_json")
1712
1614
 
@@ -1742,7 +1644,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1742
1644
  @pulumi.getter
1743
1645
  def username(self) -> Optional[pulumi.Input[str]]:
1744
1646
  """
1745
- The username to authenticate with.
1647
+ The root credential username used in the connection URL
1746
1648
  """
1747
1649
  return pulumi.get(self, "username")
1748
1650
 
@@ -1754,7 +1656,7 @@ class SecretBackendConnectionMysqlLegacyArgs:
1754
1656
  @pulumi.getter(name="usernameTemplate")
1755
1657
  def username_template(self) -> Optional[pulumi.Input[str]]:
1756
1658
  """
1757
- Template describing how dynamic usernames are generated.
1659
+ Username generation template.
1758
1660
  """
1759
1661
  return pulumi.get(self, "username_template")
1760
1662
 
@@ -1778,23 +1680,17 @@ class SecretBackendConnectionMysqlRdsArgs:
1778
1680
  username: Optional[pulumi.Input[str]] = None,
1779
1681
  username_template: Optional[pulumi.Input[str]] = None):
1780
1682
  """
1781
- :param pulumi.Input[str] auth_type: Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1782
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
1783
- the [Vault
1784
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1785
- for an example.
1786
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1787
- a connection alive for.
1788
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
1789
- maintain.
1790
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1791
- use.
1792
- :param pulumi.Input[str] password: The password to authenticate with.
1793
- :param pulumi.Input[str] service_account_json: JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1683
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1684
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
1685
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
1686
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
1687
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
1688
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
1689
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
1794
1690
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
1795
1691
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
1796
- :param pulumi.Input[str] username: The username to authenticate with.
1797
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
1692
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
1693
+ :param pulumi.Input[str] username_template: Username generation template.
1798
1694
  """
1799
1695
  if auth_type is not None:
1800
1696
  pulumi.set(__self__, "auth_type", auth_type)
@@ -1823,7 +1719,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1823
1719
  @pulumi.getter(name="authType")
1824
1720
  def auth_type(self) -> Optional[pulumi.Input[str]]:
1825
1721
  """
1826
- Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
1722
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
1827
1723
  """
1828
1724
  return pulumi.get(self, "auth_type")
1829
1725
 
@@ -1835,10 +1731,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1835
1731
  @pulumi.getter(name="connectionUrl")
1836
1732
  def connection_url(self) -> Optional[pulumi.Input[str]]:
1837
1733
  """
1838
- A URL containing connection information. See
1839
- the [Vault
1840
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1841
- for an example.
1734
+ Connection string to use to connect to the database.
1842
1735
  """
1843
1736
  return pulumi.get(self, "connection_url")
1844
1737
 
@@ -1850,8 +1743,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1850
1743
  @pulumi.getter(name="maxConnectionLifetime")
1851
1744
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
1852
1745
  """
1853
- The maximum number of seconds to keep
1854
- a connection alive for.
1746
+ Maximum number of seconds a connection may be reused.
1855
1747
  """
1856
1748
  return pulumi.get(self, "max_connection_lifetime")
1857
1749
 
@@ -1863,8 +1755,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1863
1755
  @pulumi.getter(name="maxIdleConnections")
1864
1756
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
1865
1757
  """
1866
- The maximum number of idle connections to
1867
- maintain.
1758
+ Maximum number of idle connections to the database.
1868
1759
  """
1869
1760
  return pulumi.get(self, "max_idle_connections")
1870
1761
 
@@ -1876,8 +1767,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1876
1767
  @pulumi.getter(name="maxOpenConnections")
1877
1768
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
1878
1769
  """
1879
- The maximum number of open connections to
1880
- use.
1770
+ Maximum number of open connections to the database.
1881
1771
  """
1882
1772
  return pulumi.get(self, "max_open_connections")
1883
1773
 
@@ -1889,7 +1779,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1889
1779
  @pulumi.getter
1890
1780
  def password(self) -> Optional[pulumi.Input[str]]:
1891
1781
  """
1892
- The password to authenticate with.
1782
+ The root credential password used in the connection URL
1893
1783
  """
1894
1784
  return pulumi.get(self, "password")
1895
1785
 
@@ -1901,7 +1791,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1901
1791
  @pulumi.getter(name="serviceAccountJson")
1902
1792
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
1903
1793
  """
1904
- JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
1794
+ A JSON encoded credential for use with IAM authorization
1905
1795
  """
1906
1796
  return pulumi.get(self, "service_account_json")
1907
1797
 
@@ -1937,7 +1827,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1937
1827
  @pulumi.getter
1938
1828
  def username(self) -> Optional[pulumi.Input[str]]:
1939
1829
  """
1940
- The username to authenticate with.
1830
+ The root credential username used in the connection URL
1941
1831
  """
1942
1832
  return pulumi.get(self, "username")
1943
1833
 
@@ -1949,7 +1839,7 @@ class SecretBackendConnectionMysqlRdsArgs:
1949
1839
  @pulumi.getter(name="usernameTemplate")
1950
1840
  def username_template(self) -> Optional[pulumi.Input[str]]:
1951
1841
  """
1952
- Template describing how dynamic usernames are generated.
1842
+ Username generation template.
1953
1843
  """
1954
1844
  return pulumi.get(self, "username_template")
1955
1845
 
@@ -1971,21 +1861,15 @@ class SecretBackendConnectionOracleArgs:
1971
1861
  username: Optional[pulumi.Input[str]] = None,
1972
1862
  username_template: Optional[pulumi.Input[str]] = None):
1973
1863
  """
1974
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
1975
- the [Vault
1976
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1977
- for an example.
1978
- :param pulumi.Input[bool] disconnect_sessions: Enable the built-in session disconnect mechanism.
1979
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1980
- a connection alive for.
1981
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
1982
- maintain.
1983
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1984
- use.
1985
- :param pulumi.Input[str] password: The password to authenticate with.
1986
- :param pulumi.Input[bool] split_statements: Enable spliting statements after semi-colons.
1987
- :param pulumi.Input[str] username: The username to authenticate with.
1988
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
1864
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
1865
+ :param pulumi.Input[bool] disconnect_sessions: Set to true to disconnect any open sessions prior to running the revocation statements.
1866
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
1867
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
1868
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
1869
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
1870
+ :param pulumi.Input[bool] split_statements: Set to true in order to split statements after semi-colons.
1871
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
1872
+ :param pulumi.Input[str] username_template: Username generation template.
1989
1873
  """
1990
1874
  if connection_url is not None:
1991
1875
  pulumi.set(__self__, "connection_url", connection_url)
@@ -2010,10 +1894,7 @@ class SecretBackendConnectionOracleArgs:
2010
1894
  @pulumi.getter(name="connectionUrl")
2011
1895
  def connection_url(self) -> Optional[pulumi.Input[str]]:
2012
1896
  """
2013
- A URL containing connection information. See
2014
- the [Vault
2015
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2016
- for an example.
1897
+ Connection string to use to connect to the database.
2017
1898
  """
2018
1899
  return pulumi.get(self, "connection_url")
2019
1900
 
@@ -2025,7 +1906,7 @@ class SecretBackendConnectionOracleArgs:
2025
1906
  @pulumi.getter(name="disconnectSessions")
2026
1907
  def disconnect_sessions(self) -> Optional[pulumi.Input[bool]]:
2027
1908
  """
2028
- Enable the built-in session disconnect mechanism.
1909
+ Set to true to disconnect any open sessions prior to running the revocation statements.
2029
1910
  """
2030
1911
  return pulumi.get(self, "disconnect_sessions")
2031
1912
 
@@ -2037,8 +1918,7 @@ class SecretBackendConnectionOracleArgs:
2037
1918
  @pulumi.getter(name="maxConnectionLifetime")
2038
1919
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
2039
1920
  """
2040
- The maximum number of seconds to keep
2041
- a connection alive for.
1921
+ Maximum number of seconds a connection may be reused.
2042
1922
  """
2043
1923
  return pulumi.get(self, "max_connection_lifetime")
2044
1924
 
@@ -2050,8 +1930,7 @@ class SecretBackendConnectionOracleArgs:
2050
1930
  @pulumi.getter(name="maxIdleConnections")
2051
1931
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
2052
1932
  """
2053
- The maximum number of idle connections to
2054
- maintain.
1933
+ Maximum number of idle connections to the database.
2055
1934
  """
2056
1935
  return pulumi.get(self, "max_idle_connections")
2057
1936
 
@@ -2063,8 +1942,7 @@ class SecretBackendConnectionOracleArgs:
2063
1942
  @pulumi.getter(name="maxOpenConnections")
2064
1943
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
2065
1944
  """
2066
- The maximum number of open connections to
2067
- use.
1945
+ Maximum number of open connections to the database.
2068
1946
  """
2069
1947
  return pulumi.get(self, "max_open_connections")
2070
1948
 
@@ -2076,7 +1954,7 @@ class SecretBackendConnectionOracleArgs:
2076
1954
  @pulumi.getter
2077
1955
  def password(self) -> Optional[pulumi.Input[str]]:
2078
1956
  """
2079
- The password to authenticate with.
1957
+ The root credential password used in the connection URL
2080
1958
  """
2081
1959
  return pulumi.get(self, "password")
2082
1960
 
@@ -2088,7 +1966,7 @@ class SecretBackendConnectionOracleArgs:
2088
1966
  @pulumi.getter(name="splitStatements")
2089
1967
  def split_statements(self) -> Optional[pulumi.Input[bool]]:
2090
1968
  """
2091
- Enable spliting statements after semi-colons.
1969
+ Set to true in order to split statements after semi-colons.
2092
1970
  """
2093
1971
  return pulumi.get(self, "split_statements")
2094
1972
 
@@ -2100,7 +1978,7 @@ class SecretBackendConnectionOracleArgs:
2100
1978
  @pulumi.getter
2101
1979
  def username(self) -> Optional[pulumi.Input[str]]:
2102
1980
  """
2103
- The username to authenticate with.
1981
+ The root credential username used in the connection URL
2104
1982
  """
2105
1983
  return pulumi.get(self, "username")
2106
1984
 
@@ -2112,7 +1990,7 @@ class SecretBackendConnectionOracleArgs:
2112
1990
  @pulumi.getter(name="usernameTemplate")
2113
1991
  def username_template(self) -> Optional[pulumi.Input[str]]:
2114
1992
  """
2115
- Template describing how dynamic usernames are generated.
1993
+ Username generation template.
2116
1994
  """
2117
1995
  return pulumi.get(self, "username_template")
2118
1996
 
@@ -2135,22 +2013,16 @@ class SecretBackendConnectionPostgresqlArgs:
2135
2013
  username: Optional[pulumi.Input[str]] = None,
2136
2014
  username_template: Optional[pulumi.Input[str]] = None):
2137
2015
  """
2138
- :param pulumi.Input[str] auth_type: Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
2139
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
2140
- the [Vault
2141
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2142
- for an example.
2143
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
2144
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
2145
- a connection alive for.
2146
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
2147
- maintain.
2148
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
2149
- use.
2150
- :param pulumi.Input[str] password: The password to authenticate with.
2151
- :param pulumi.Input[str] service_account_json: JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
2152
- :param pulumi.Input[str] username: The username to authenticate with.
2153
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
2016
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
2017
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
2018
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
2019
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
2020
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
2021
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
2022
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
2023
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
2024
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
2025
+ :param pulumi.Input[str] username_template: Username generation template.
2154
2026
  """
2155
2027
  if auth_type is not None:
2156
2028
  pulumi.set(__self__, "auth_type", auth_type)
@@ -2177,7 +2049,7 @@ class SecretBackendConnectionPostgresqlArgs:
2177
2049
  @pulumi.getter(name="authType")
2178
2050
  def auth_type(self) -> Optional[pulumi.Input[str]]:
2179
2051
  """
2180
- Enable IAM authentication to a Google Cloud instance when set to `gcp_iam`
2052
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
2181
2053
  """
2182
2054
  return pulumi.get(self, "auth_type")
2183
2055
 
@@ -2189,10 +2061,7 @@ class SecretBackendConnectionPostgresqlArgs:
2189
2061
  @pulumi.getter(name="connectionUrl")
2190
2062
  def connection_url(self) -> Optional[pulumi.Input[str]]:
2191
2063
  """
2192
- A URL containing connection information. See
2193
- the [Vault
2194
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2195
- for an example.
2064
+ Connection string to use to connect to the database.
2196
2065
  """
2197
2066
  return pulumi.get(self, "connection_url")
2198
2067
 
@@ -2204,7 +2073,7 @@ class SecretBackendConnectionPostgresqlArgs:
2204
2073
  @pulumi.getter(name="disableEscaping")
2205
2074
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
2206
2075
  """
2207
- Disable special character escaping in username and password.
2076
+ Disable special character escaping in username and password
2208
2077
  """
2209
2078
  return pulumi.get(self, "disable_escaping")
2210
2079
 
@@ -2216,8 +2085,7 @@ class SecretBackendConnectionPostgresqlArgs:
2216
2085
  @pulumi.getter(name="maxConnectionLifetime")
2217
2086
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
2218
2087
  """
2219
- The maximum number of seconds to keep
2220
- a connection alive for.
2088
+ Maximum number of seconds a connection may be reused.
2221
2089
  """
2222
2090
  return pulumi.get(self, "max_connection_lifetime")
2223
2091
 
@@ -2229,8 +2097,7 @@ class SecretBackendConnectionPostgresqlArgs:
2229
2097
  @pulumi.getter(name="maxIdleConnections")
2230
2098
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
2231
2099
  """
2232
- The maximum number of idle connections to
2233
- maintain.
2100
+ Maximum number of idle connections to the database.
2234
2101
  """
2235
2102
  return pulumi.get(self, "max_idle_connections")
2236
2103
 
@@ -2242,8 +2109,7 @@ class SecretBackendConnectionPostgresqlArgs:
2242
2109
  @pulumi.getter(name="maxOpenConnections")
2243
2110
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
2244
2111
  """
2245
- The maximum number of open connections to
2246
- use.
2112
+ Maximum number of open connections to the database.
2247
2113
  """
2248
2114
  return pulumi.get(self, "max_open_connections")
2249
2115
 
@@ -2255,7 +2121,7 @@ class SecretBackendConnectionPostgresqlArgs:
2255
2121
  @pulumi.getter
2256
2122
  def password(self) -> Optional[pulumi.Input[str]]:
2257
2123
  """
2258
- The password to authenticate with.
2124
+ The root credential password used in the connection URL
2259
2125
  """
2260
2126
  return pulumi.get(self, "password")
2261
2127
 
@@ -2267,7 +2133,7 @@ class SecretBackendConnectionPostgresqlArgs:
2267
2133
  @pulumi.getter(name="serviceAccountJson")
2268
2134
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
2269
2135
  """
2270
- JSON encoding of an IAM access key. Requires `auth_type` to be `gcp_iam`.
2136
+ A JSON encoded credential for use with IAM authorization
2271
2137
  """
2272
2138
  return pulumi.get(self, "service_account_json")
2273
2139
 
@@ -2279,7 +2145,7 @@ class SecretBackendConnectionPostgresqlArgs:
2279
2145
  @pulumi.getter
2280
2146
  def username(self) -> Optional[pulumi.Input[str]]:
2281
2147
  """
2282
- The username to authenticate with.
2148
+ The root credential username used in the connection URL
2283
2149
  """
2284
2150
  return pulumi.get(self, "username")
2285
2151
 
@@ -2291,7 +2157,7 @@ class SecretBackendConnectionPostgresqlArgs:
2291
2157
  @pulumi.getter(name="usernameTemplate")
2292
2158
  def username_template(self) -> Optional[pulumi.Input[str]]:
2293
2159
  """
2294
- Template describing how dynamic usernames are generated.
2160
+ Username generation template.
2295
2161
  """
2296
2162
  return pulumi.get(self, "username_template")
2297
2163
 
@@ -2311,15 +2177,13 @@ class SecretBackendConnectionRedisArgs:
2311
2177
  port: Optional[pulumi.Input[int]] = None,
2312
2178
  tls: Optional[pulumi.Input[bool]] = None):
2313
2179
  """
2314
- :param pulumi.Input[str] host: The host to connect to.
2315
- :param pulumi.Input[str] password: The password to authenticate with.
2316
- :param pulumi.Input[str] username: The username to authenticate with.
2317
- :param pulumi.Input[str] ca_cert: The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
2318
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
2319
- certificate when using TLS.
2320
- :param pulumi.Input[int] port: The default port to connect to if no port is specified as
2321
- part of the host.
2322
- :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
2180
+ :param pulumi.Input[str] host: Specifies the host to connect to
2181
+ :param pulumi.Input[str] password: Specifies the password corresponding to the given username.
2182
+ :param pulumi.Input[str] username: Specifies the username for Vault to use.
2183
+ :param pulumi.Input[str] ca_cert: The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.
2184
+ :param pulumi.Input[bool] insecure_tls: Specifies whether to skip verification of the server certificate when using TLS.
2185
+ :param pulumi.Input[int] port: The transport port to use to connect to Redis.
2186
+ :param pulumi.Input[bool] tls: Specifies whether to use TLS when connecting to Redis.
2323
2187
  """
2324
2188
  pulumi.set(__self__, "host", host)
2325
2189
  pulumi.set(__self__, "password", password)
@@ -2337,7 +2201,7 @@ class SecretBackendConnectionRedisArgs:
2337
2201
  @pulumi.getter
2338
2202
  def host(self) -> pulumi.Input[str]:
2339
2203
  """
2340
- The host to connect to.
2204
+ Specifies the host to connect to
2341
2205
  """
2342
2206
  return pulumi.get(self, "host")
2343
2207
 
@@ -2349,7 +2213,7 @@ class SecretBackendConnectionRedisArgs:
2349
2213
  @pulumi.getter
2350
2214
  def password(self) -> pulumi.Input[str]:
2351
2215
  """
2352
- The password to authenticate with.
2216
+ Specifies the password corresponding to the given username.
2353
2217
  """
2354
2218
  return pulumi.get(self, "password")
2355
2219
 
@@ -2361,7 +2225,7 @@ class SecretBackendConnectionRedisArgs:
2361
2225
  @pulumi.getter
2362
2226
  def username(self) -> pulumi.Input[str]:
2363
2227
  """
2364
- The username to authenticate with.
2228
+ Specifies the username for Vault to use.
2365
2229
  """
2366
2230
  return pulumi.get(self, "username")
2367
2231
 
@@ -2373,7 +2237,7 @@ class SecretBackendConnectionRedisArgs:
2373
2237
  @pulumi.getter(name="caCert")
2374
2238
  def ca_cert(self) -> Optional[pulumi.Input[str]]:
2375
2239
  """
2376
- The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
2240
+ The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.
2377
2241
  """
2378
2242
  return pulumi.get(self, "ca_cert")
2379
2243
 
@@ -2385,8 +2249,7 @@ class SecretBackendConnectionRedisArgs:
2385
2249
  @pulumi.getter(name="insecureTls")
2386
2250
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
2387
2251
  """
2388
- Whether to skip verification of the server
2389
- certificate when using TLS.
2252
+ Specifies whether to skip verification of the server certificate when using TLS.
2390
2253
  """
2391
2254
  return pulumi.get(self, "insecure_tls")
2392
2255
 
@@ -2398,8 +2261,7 @@ class SecretBackendConnectionRedisArgs:
2398
2261
  @pulumi.getter
2399
2262
  def port(self) -> Optional[pulumi.Input[int]]:
2400
2263
  """
2401
- The default port to connect to if no port is specified as
2402
- part of the host.
2264
+ The transport port to use to connect to Redis.
2403
2265
  """
2404
2266
  return pulumi.get(self, "port")
2405
2267
 
@@ -2411,7 +2273,7 @@ class SecretBackendConnectionRedisArgs:
2411
2273
  @pulumi.getter
2412
2274
  def tls(self) -> Optional[pulumi.Input[bool]]:
2413
2275
  """
2414
- Whether to use TLS when connecting to Cassandra.
2276
+ Specifies whether to use TLS when connecting to Redis.
2415
2277
  """
2416
2278
  return pulumi.get(self, "tls")
2417
2279
 
@@ -2428,11 +2290,10 @@ class SecretBackendConnectionRedisElasticacheArgs:
2428
2290
  region: Optional[pulumi.Input[str]] = None,
2429
2291
  username: Optional[pulumi.Input[str]] = None):
2430
2292
  """
2431
- :param pulumi.Input[str] url: The URL for Elasticsearch's API. https requires certificate
2432
- by trusted CA if used.
2433
- :param pulumi.Input[str] password: The password to authenticate with.
2434
- :param pulumi.Input[str] region: The region where the ElastiCache cluster is hosted. If omitted Vault tries to infer from the environment instead.
2435
- :param pulumi.Input[str] username: The username to authenticate with.
2293
+ :param pulumi.Input[str] url: The configuration endpoint for the ElastiCache cluster to connect to.
2294
+ :param pulumi.Input[str] password: The AWS secret key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
2295
+ :param pulumi.Input[str] region: The AWS region where the ElastiCache cluster is hosted. If omitted the plugin tries to infer the region from the environment.
2296
+ :param pulumi.Input[str] username: The AWS access key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
2436
2297
  """
2437
2298
  pulumi.set(__self__, "url", url)
2438
2299
  if password is not None:
@@ -2446,8 +2307,7 @@ class SecretBackendConnectionRedisElasticacheArgs:
2446
2307
  @pulumi.getter
2447
2308
  def url(self) -> pulumi.Input[str]:
2448
2309
  """
2449
- The URL for Elasticsearch's API. https requires certificate
2450
- by trusted CA if used.
2310
+ The configuration endpoint for the ElastiCache cluster to connect to.
2451
2311
  """
2452
2312
  return pulumi.get(self, "url")
2453
2313
 
@@ -2459,7 +2319,7 @@ class SecretBackendConnectionRedisElasticacheArgs:
2459
2319
  @pulumi.getter
2460
2320
  def password(self) -> Optional[pulumi.Input[str]]:
2461
2321
  """
2462
- The password to authenticate with.
2322
+ The AWS secret key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
2463
2323
  """
2464
2324
  return pulumi.get(self, "password")
2465
2325
 
@@ -2471,7 +2331,7 @@ class SecretBackendConnectionRedisElasticacheArgs:
2471
2331
  @pulumi.getter
2472
2332
  def region(self) -> Optional[pulumi.Input[str]]:
2473
2333
  """
2474
- The region where the ElastiCache cluster is hosted. If omitted Vault tries to infer from the environment instead.
2334
+ The AWS region where the ElastiCache cluster is hosted. If omitted the plugin tries to infer the region from the environment.
2475
2335
  """
2476
2336
  return pulumi.get(self, "region")
2477
2337
 
@@ -2483,7 +2343,7 @@ class SecretBackendConnectionRedisElasticacheArgs:
2483
2343
  @pulumi.getter
2484
2344
  def username(self) -> Optional[pulumi.Input[str]]:
2485
2345
  """
2486
- The username to authenticate with.
2346
+ The AWS access key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
2487
2347
  """
2488
2348
  return pulumi.get(self, "username")
2489
2349
 
@@ -2504,20 +2364,14 @@ class SecretBackendConnectionRedshiftArgs:
2504
2364
  username: Optional[pulumi.Input[str]] = None,
2505
2365
  username_template: Optional[pulumi.Input[str]] = None):
2506
2366
  """
2507
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
2508
- the [Vault
2509
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2510
- for an example.
2511
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
2512
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
2513
- a connection alive for.
2514
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
2515
- maintain.
2516
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
2517
- use.
2518
- :param pulumi.Input[str] password: The password to authenticate with.
2519
- :param pulumi.Input[str] username: The username to authenticate with.
2520
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
2367
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
2368
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
2369
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
2370
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
2371
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
2372
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
2373
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
2374
+ :param pulumi.Input[str] username_template: Username generation template.
2521
2375
  """
2522
2376
  if connection_url is not None:
2523
2377
  pulumi.set(__self__, "connection_url", connection_url)
@@ -2540,10 +2394,7 @@ class SecretBackendConnectionRedshiftArgs:
2540
2394
  @pulumi.getter(name="connectionUrl")
2541
2395
  def connection_url(self) -> Optional[pulumi.Input[str]]:
2542
2396
  """
2543
- A URL containing connection information. See
2544
- the [Vault
2545
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2546
- for an example.
2397
+ Connection string to use to connect to the database.
2547
2398
  """
2548
2399
  return pulumi.get(self, "connection_url")
2549
2400
 
@@ -2555,7 +2406,7 @@ class SecretBackendConnectionRedshiftArgs:
2555
2406
  @pulumi.getter(name="disableEscaping")
2556
2407
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
2557
2408
  """
2558
- Disable special character escaping in username and password.
2409
+ Disable special character escaping in username and password
2559
2410
  """
2560
2411
  return pulumi.get(self, "disable_escaping")
2561
2412
 
@@ -2567,8 +2418,7 @@ class SecretBackendConnectionRedshiftArgs:
2567
2418
  @pulumi.getter(name="maxConnectionLifetime")
2568
2419
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
2569
2420
  """
2570
- The maximum number of seconds to keep
2571
- a connection alive for.
2421
+ Maximum number of seconds a connection may be reused.
2572
2422
  """
2573
2423
  return pulumi.get(self, "max_connection_lifetime")
2574
2424
 
@@ -2580,8 +2430,7 @@ class SecretBackendConnectionRedshiftArgs:
2580
2430
  @pulumi.getter(name="maxIdleConnections")
2581
2431
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
2582
2432
  """
2583
- The maximum number of idle connections to
2584
- maintain.
2433
+ Maximum number of idle connections to the database.
2585
2434
  """
2586
2435
  return pulumi.get(self, "max_idle_connections")
2587
2436
 
@@ -2593,8 +2442,7 @@ class SecretBackendConnectionRedshiftArgs:
2593
2442
  @pulumi.getter(name="maxOpenConnections")
2594
2443
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
2595
2444
  """
2596
- The maximum number of open connections to
2597
- use.
2445
+ Maximum number of open connections to the database.
2598
2446
  """
2599
2447
  return pulumi.get(self, "max_open_connections")
2600
2448
 
@@ -2606,7 +2454,7 @@ class SecretBackendConnectionRedshiftArgs:
2606
2454
  @pulumi.getter
2607
2455
  def password(self) -> Optional[pulumi.Input[str]]:
2608
2456
  """
2609
- The password to authenticate with.
2457
+ The root credential password used in the connection URL
2610
2458
  """
2611
2459
  return pulumi.get(self, "password")
2612
2460
 
@@ -2618,7 +2466,7 @@ class SecretBackendConnectionRedshiftArgs:
2618
2466
  @pulumi.getter
2619
2467
  def username(self) -> Optional[pulumi.Input[str]]:
2620
2468
  """
2621
- The username to authenticate with.
2469
+ The root credential username used in the connection URL
2622
2470
  """
2623
2471
  return pulumi.get(self, "username")
2624
2472
 
@@ -2630,7 +2478,7 @@ class SecretBackendConnectionRedshiftArgs:
2630
2478
  @pulumi.getter(name="usernameTemplate")
2631
2479
  def username_template(self) -> Optional[pulumi.Input[str]]:
2632
2480
  """
2633
- Template describing how dynamic usernames are generated.
2481
+ Username generation template.
2634
2482
  """
2635
2483
  return pulumi.get(self, "username_template")
2636
2484
 
@@ -2650,19 +2498,13 @@ class SecretBackendConnectionSnowflakeArgs:
2650
2498
  username: Optional[pulumi.Input[str]] = None,
2651
2499
  username_template: Optional[pulumi.Input[str]] = None):
2652
2500
  """
2653
- :param pulumi.Input[str] connection_url: A URL containing connection information. See
2654
- the [Vault
2655
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2656
- for an example.
2657
- :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
2658
- a connection alive for.
2659
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
2660
- maintain.
2661
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
2662
- use.
2663
- :param pulumi.Input[str] password: The password to authenticate with.
2664
- :param pulumi.Input[str] username: The username to authenticate with.
2665
- :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
2501
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
2502
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
2503
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
2504
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
2505
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
2506
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
2507
+ :param pulumi.Input[str] username_template: Username generation template.
2666
2508
  """
2667
2509
  if connection_url is not None:
2668
2510
  pulumi.set(__self__, "connection_url", connection_url)
@@ -2683,10 +2525,7 @@ class SecretBackendConnectionSnowflakeArgs:
2683
2525
  @pulumi.getter(name="connectionUrl")
2684
2526
  def connection_url(self) -> Optional[pulumi.Input[str]]:
2685
2527
  """
2686
- A URL containing connection information. See
2687
- the [Vault
2688
- docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
2689
- for an example.
2528
+ Connection string to use to connect to the database.
2690
2529
  """
2691
2530
  return pulumi.get(self, "connection_url")
2692
2531
 
@@ -2698,8 +2537,7 @@ class SecretBackendConnectionSnowflakeArgs:
2698
2537
  @pulumi.getter(name="maxConnectionLifetime")
2699
2538
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
2700
2539
  """
2701
- The maximum number of seconds to keep
2702
- a connection alive for.
2540
+ Maximum number of seconds a connection may be reused.
2703
2541
  """
2704
2542
  return pulumi.get(self, "max_connection_lifetime")
2705
2543
 
@@ -2711,8 +2549,7 @@ class SecretBackendConnectionSnowflakeArgs:
2711
2549
  @pulumi.getter(name="maxIdleConnections")
2712
2550
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
2713
2551
  """
2714
- The maximum number of idle connections to
2715
- maintain.
2552
+ Maximum number of idle connections to the database.
2716
2553
  """
2717
2554
  return pulumi.get(self, "max_idle_connections")
2718
2555
 
@@ -2724,8 +2561,7 @@ class SecretBackendConnectionSnowflakeArgs:
2724
2561
  @pulumi.getter(name="maxOpenConnections")
2725
2562
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
2726
2563
  """
2727
- The maximum number of open connections to
2728
- use.
2564
+ Maximum number of open connections to the database.
2729
2565
  """
2730
2566
  return pulumi.get(self, "max_open_connections")
2731
2567
 
@@ -2737,7 +2573,7 @@ class SecretBackendConnectionSnowflakeArgs:
2737
2573
  @pulumi.getter
2738
2574
  def password(self) -> Optional[pulumi.Input[str]]:
2739
2575
  """
2740
- The password to authenticate with.
2576
+ The root credential password used in the connection URL
2741
2577
  """
2742
2578
  return pulumi.get(self, "password")
2743
2579
 
@@ -2749,7 +2585,7 @@ class SecretBackendConnectionSnowflakeArgs:
2749
2585
  @pulumi.getter
2750
2586
  def username(self) -> Optional[pulumi.Input[str]]:
2751
2587
  """
2752
- The username to authenticate with.
2588
+ The root credential username used in the connection URL
2753
2589
  """
2754
2590
  return pulumi.get(self, "username")
2755
2591
 
@@ -2761,7 +2597,7 @@ class SecretBackendConnectionSnowflakeArgs:
2761
2597
  @pulumi.getter(name="usernameTemplate")
2762
2598
  def username_template(self) -> Optional[pulumi.Input[str]]:
2763
2599
  """
2764
- Template describing how dynamic usernames are generated.
2600
+ Username generation template.
2765
2601
  """
2766
2602
  return pulumi.get(self, "username_template")
2767
2603
 
@@ -2793,25 +2629,21 @@ class SecretsMountCassandraArgs:
2793
2629
  :param pulumi.Input[str] name: Name of the database connection.
2794
2630
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
2795
2631
  connection.
2796
- :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection
2797
- timeout.
2632
+ :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection timeout.
2798
2633
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
2799
2634
 
2800
2635
  Supported list of database secrets engines that can be configured:
2801
- :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: The hosts to connect to.
2802
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
2803
- certificate when using TLS.
2804
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
2805
- :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks configuring the certificate
2806
- chain.
2807
- :param pulumi.Input[str] pem_json: A JSON structure configuring the certificate chain.
2636
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: Cassandra hosts to connect to.
2637
+ :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server certificate when using TLS.
2638
+ :param pulumi.Input[str] password: The password to use when authenticating with Cassandra.
2639
+ :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
2640
+ :param pulumi.Input[str] pem_json: Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
2808
2641
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
2809
- :param pulumi.Input[int] port: The default port to connect to if no port is specified as
2810
- part of the host.
2642
+ :param pulumi.Input[int] port: The transport port to use to connect to Cassandra.
2811
2643
  :param pulumi.Input[int] protocol_version: The CQL protocol version to use.
2812
2644
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
2813
2645
  :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
2814
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
2646
+ :param pulumi.Input[str] username: The username to use when authenticating with Cassandra.
2815
2647
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
2816
2648
  initial configuration or not.
2817
2649
  """
@@ -2876,8 +2708,7 @@ class SecretsMountCassandraArgs:
2876
2708
  @pulumi.getter(name="connectTimeout")
2877
2709
  def connect_timeout(self) -> Optional[pulumi.Input[int]]:
2878
2710
  """
2879
- The number of seconds to use as a connection
2880
- timeout.
2711
+ The number of seconds to use as a connection timeout.
2881
2712
  """
2882
2713
  return pulumi.get(self, "connect_timeout")
2883
2714
 
@@ -2903,7 +2734,7 @@ class SecretsMountCassandraArgs:
2903
2734
  @pulumi.getter
2904
2735
  def hosts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2905
2736
  """
2906
- The hosts to connect to.
2737
+ Cassandra hosts to connect to.
2907
2738
  """
2908
2739
  return pulumi.get(self, "hosts")
2909
2740
 
@@ -2915,8 +2746,7 @@ class SecretsMountCassandraArgs:
2915
2746
  @pulumi.getter(name="insecureTls")
2916
2747
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
2917
2748
  """
2918
- Whether to skip verification of the server
2919
- certificate when using TLS.
2749
+ Whether to skip verification of the server certificate when using TLS.
2920
2750
  """
2921
2751
  return pulumi.get(self, "insecure_tls")
2922
2752
 
@@ -2928,7 +2758,7 @@ class SecretsMountCassandraArgs:
2928
2758
  @pulumi.getter
2929
2759
  def password(self) -> Optional[pulumi.Input[str]]:
2930
2760
  """
2931
- The root credential password used in the connection URL.
2761
+ The password to use when authenticating with Cassandra.
2932
2762
  """
2933
2763
  return pulumi.get(self, "password")
2934
2764
 
@@ -2940,8 +2770,7 @@ class SecretsMountCassandraArgs:
2940
2770
  @pulumi.getter(name="pemBundle")
2941
2771
  def pem_bundle(self) -> Optional[pulumi.Input[str]]:
2942
2772
  """
2943
- Concatenated PEM blocks configuring the certificate
2944
- chain.
2773
+ Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
2945
2774
  """
2946
2775
  return pulumi.get(self, "pem_bundle")
2947
2776
 
@@ -2953,7 +2782,7 @@ class SecretsMountCassandraArgs:
2953
2782
  @pulumi.getter(name="pemJson")
2954
2783
  def pem_json(self) -> Optional[pulumi.Input[str]]:
2955
2784
  """
2956
- A JSON structure configuring the certificate chain.
2785
+ Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
2957
2786
  """
2958
2787
  return pulumi.get(self, "pem_json")
2959
2788
 
@@ -2977,8 +2806,7 @@ class SecretsMountCassandraArgs:
2977
2806
  @pulumi.getter
2978
2807
  def port(self) -> Optional[pulumi.Input[int]]:
2979
2808
  """
2980
- The default port to connect to if no port is specified as
2981
- part of the host.
2809
+ The transport port to use to connect to Cassandra.
2982
2810
  """
2983
2811
  return pulumi.get(self, "port")
2984
2812
 
@@ -3026,7 +2854,7 @@ class SecretsMountCassandraArgs:
3026
2854
  @pulumi.getter
3027
2855
  def username(self) -> Optional[pulumi.Input[str]]:
3028
2856
  """
3029
- The root credential username used in the connection URL.
2857
+ The username to use when authenticating with Cassandra.
3030
2858
  """
3031
2859
  return pulumi.get(self, "username")
3032
2860
 
@@ -3066,10 +2894,10 @@ class SecretsMountCouchbaseArgs:
3066
2894
  username_template: Optional[pulumi.Input[str]] = None,
3067
2895
  verify_connection: Optional[pulumi.Input[bool]] = None):
3068
2896
  """
3069
- :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: The hosts to connect to.
2897
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: A set of Couchbase URIs to connect to. Must use `couchbases://` scheme if `tls` is `true`.
3070
2898
  :param pulumi.Input[str] name: Name of the database connection.
3071
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
3072
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
2899
+ :param pulumi.Input[str] password: Specifies the password corresponding to the given username.
2900
+ :param pulumi.Input[str] username: Specifies the username for Vault to use.
3073
2901
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
3074
2902
  connection.
3075
2903
  :param pulumi.Input[str] base64_pem: Required if `tls` is `true`. Specifies the certificate authority of the Couchbase server, as a PEM certificate that has been base64 encoded.
@@ -3077,12 +2905,11 @@ class SecretsMountCouchbaseArgs:
3077
2905
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
3078
2906
 
3079
2907
  Supported list of database secrets engines that can be configured:
3080
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
3081
- certificate when using TLS.
2908
+ :param pulumi.Input[bool] insecure_tls: Specifies whether to skip verification of the server certificate when using TLS.
3082
2909
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
3083
2910
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
3084
- :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
3085
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
2911
+ :param pulumi.Input[bool] tls: Specifies whether to use TLS when connecting to Couchbase.
2912
+ :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
3086
2913
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
3087
2914
  initial configuration or not.
3088
2915
  """
@@ -3115,7 +2942,7 @@ class SecretsMountCouchbaseArgs:
3115
2942
  @pulumi.getter
3116
2943
  def hosts(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3117
2944
  """
3118
- The hosts to connect to.
2945
+ A set of Couchbase URIs to connect to. Must use `couchbases://` scheme if `tls` is `true`.
3119
2946
  """
3120
2947
  return pulumi.get(self, "hosts")
3121
2948
 
@@ -3139,7 +2966,7 @@ class SecretsMountCouchbaseArgs:
3139
2966
  @pulumi.getter
3140
2967
  def password(self) -> pulumi.Input[str]:
3141
2968
  """
3142
- The root credential password used in the connection URL.
2969
+ Specifies the password corresponding to the given username.
3143
2970
  """
3144
2971
  return pulumi.get(self, "password")
3145
2972
 
@@ -3151,7 +2978,7 @@ class SecretsMountCouchbaseArgs:
3151
2978
  @pulumi.getter
3152
2979
  def username(self) -> pulumi.Input[str]:
3153
2980
  """
3154
- The root credential username used in the connection URL.
2981
+ Specifies the username for Vault to use.
3155
2982
  """
3156
2983
  return pulumi.get(self, "username")
3157
2984
 
@@ -3214,8 +3041,7 @@ class SecretsMountCouchbaseArgs:
3214
3041
  @pulumi.getter(name="insecureTls")
3215
3042
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
3216
3043
  """
3217
- Whether to skip verification of the server
3218
- certificate when using TLS.
3044
+ Specifies whether to skip verification of the server certificate when using TLS.
3219
3045
  """
3220
3046
  return pulumi.get(self, "insecure_tls")
3221
3047
 
@@ -3251,7 +3077,7 @@ class SecretsMountCouchbaseArgs:
3251
3077
  @pulumi.getter
3252
3078
  def tls(self) -> Optional[pulumi.Input[bool]]:
3253
3079
  """
3254
- Whether to use TLS when connecting to Cassandra.
3080
+ Specifies whether to use TLS when connecting to Couchbase.
3255
3081
  """
3256
3082
  return pulumi.get(self, "tls")
3257
3083
 
@@ -3263,7 +3089,7 @@ class SecretsMountCouchbaseArgs:
3263
3089
  @pulumi.getter(name="usernameTemplate")
3264
3090
  def username_template(self) -> Optional[pulumi.Input[str]]:
3265
3091
  """
3266
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
3092
+ Template describing how dynamic usernames are generated.
3267
3093
  """
3268
3094
  return pulumi.get(self, "username_template")
3269
3095
 
@@ -3306,24 +3132,23 @@ class SecretsMountElasticsearchArgs:
3306
3132
  verify_connection: Optional[pulumi.Input[bool]] = None):
3307
3133
  """
3308
3134
  :param pulumi.Input[str] name: Name of the database connection.
3309
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
3310
- :param pulumi.Input[str] url: The URL for Elasticsearch's API. https requires certificate
3311
- by trusted CA if used.
3312
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
3135
+ :param pulumi.Input[str] password: The password to be used in the connection URL
3136
+ :param pulumi.Input[str] url: The URL for Elasticsearch's API
3137
+ :param pulumi.Input[str] username: The username to be used in the connection URL
3313
3138
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
3314
3139
  connection.
3315
- :param pulumi.Input[str] ca_cert: The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
3316
- :param pulumi.Input[str] ca_path: The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity.
3317
- :param pulumi.Input[str] client_cert: The path to the certificate for the Elasticsearch client to present for communication.
3318
- :param pulumi.Input[str] client_key: The path to the key for the Elasticsearch client to use for communication.
3140
+ :param pulumi.Input[str] ca_cert: The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity
3141
+ :param pulumi.Input[str] ca_path: The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity
3142
+ :param pulumi.Input[str] client_cert: The path to the certificate for the Elasticsearch client to present for communication
3143
+ :param pulumi.Input[str] client_key: The path to the key for the Elasticsearch client to use for communication
3319
3144
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
3320
3145
 
3321
3146
  Supported list of database secrets engines that can be configured:
3322
- :param pulumi.Input[bool] insecure: Whether to disable certificate verification.
3147
+ :param pulumi.Input[bool] insecure: Whether to disable certificate verification
3323
3148
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
3324
3149
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
3325
- :param pulumi.Input[str] tls_server_name: This, if set, is used to set the SNI host when connecting via TLS.
3326
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
3150
+ :param pulumi.Input[str] tls_server_name: This, if set, is used to set the SNI host when connecting via TLS
3151
+ :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
3327
3152
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
3328
3153
  initial configuration or not.
3329
3154
  """
@@ -3372,7 +3197,7 @@ class SecretsMountElasticsearchArgs:
3372
3197
  @pulumi.getter
3373
3198
  def password(self) -> pulumi.Input[str]:
3374
3199
  """
3375
- The root credential password used in the connection URL.
3200
+ The password to be used in the connection URL
3376
3201
  """
3377
3202
  return pulumi.get(self, "password")
3378
3203
 
@@ -3384,8 +3209,7 @@ class SecretsMountElasticsearchArgs:
3384
3209
  @pulumi.getter
3385
3210
  def url(self) -> pulumi.Input[str]:
3386
3211
  """
3387
- The URL for Elasticsearch's API. https requires certificate
3388
- by trusted CA if used.
3212
+ The URL for Elasticsearch's API
3389
3213
  """
3390
3214
  return pulumi.get(self, "url")
3391
3215
 
@@ -3397,7 +3221,7 @@ class SecretsMountElasticsearchArgs:
3397
3221
  @pulumi.getter
3398
3222
  def username(self) -> pulumi.Input[str]:
3399
3223
  """
3400
- The root credential username used in the connection URL.
3224
+ The username to be used in the connection URL
3401
3225
  """
3402
3226
  return pulumi.get(self, "username")
3403
3227
 
@@ -3422,7 +3246,7 @@ class SecretsMountElasticsearchArgs:
3422
3246
  @pulumi.getter(name="caCert")
3423
3247
  def ca_cert(self) -> Optional[pulumi.Input[str]]:
3424
3248
  """
3425
- The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
3249
+ The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity
3426
3250
  """
3427
3251
  return pulumi.get(self, "ca_cert")
3428
3252
 
@@ -3434,7 +3258,7 @@ class SecretsMountElasticsearchArgs:
3434
3258
  @pulumi.getter(name="caPath")
3435
3259
  def ca_path(self) -> Optional[pulumi.Input[str]]:
3436
3260
  """
3437
- The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity.
3261
+ The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity
3438
3262
  """
3439
3263
  return pulumi.get(self, "ca_path")
3440
3264
 
@@ -3446,7 +3270,7 @@ class SecretsMountElasticsearchArgs:
3446
3270
  @pulumi.getter(name="clientCert")
3447
3271
  def client_cert(self) -> Optional[pulumi.Input[str]]:
3448
3272
  """
3449
- The path to the certificate for the Elasticsearch client to present for communication.
3273
+ The path to the certificate for the Elasticsearch client to present for communication
3450
3274
  """
3451
3275
  return pulumi.get(self, "client_cert")
3452
3276
 
@@ -3458,7 +3282,7 @@ class SecretsMountElasticsearchArgs:
3458
3282
  @pulumi.getter(name="clientKey")
3459
3283
  def client_key(self) -> Optional[pulumi.Input[str]]:
3460
3284
  """
3461
- The path to the key for the Elasticsearch client to use for communication.
3285
+ The path to the key for the Elasticsearch client to use for communication
3462
3286
  """
3463
3287
  return pulumi.get(self, "client_key")
3464
3288
 
@@ -3484,7 +3308,7 @@ class SecretsMountElasticsearchArgs:
3484
3308
  @pulumi.getter
3485
3309
  def insecure(self) -> Optional[pulumi.Input[bool]]:
3486
3310
  """
3487
- Whether to disable certificate verification.
3311
+ Whether to disable certificate verification
3488
3312
  """
3489
3313
  return pulumi.get(self, "insecure")
3490
3314
 
@@ -3520,7 +3344,7 @@ class SecretsMountElasticsearchArgs:
3520
3344
  @pulumi.getter(name="tlsServerName")
3521
3345
  def tls_server_name(self) -> Optional[pulumi.Input[str]]:
3522
3346
  """
3523
- This, if set, is used to set the SNI host when connecting via TLS.
3347
+ This, if set, is used to set the SNI host when connecting via TLS
3524
3348
  """
3525
3349
  return pulumi.get(self, "tls_server_name")
3526
3350
 
@@ -3532,7 +3356,7 @@ class SecretsMountElasticsearchArgs:
3532
3356
  @pulumi.getter(name="usernameTemplate")
3533
3357
  def username_template(self) -> Optional[pulumi.Input[str]]:
3534
3358
  """
3535
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
3359
+ Template describing how dynamic usernames are generated.
3536
3360
  """
3537
3361
  return pulumi.get(self, "username_template")
3538
3362
 
@@ -3574,21 +3398,18 @@ class SecretsMountHanaArgs:
3574
3398
  :param pulumi.Input[str] name: Name of the database connection.
3575
3399
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
3576
3400
  connection.
3577
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
3578
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
3401
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
3579
3402
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
3580
3403
 
3581
3404
  Supported list of database secrets engines that can be configured:
3582
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
3583
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
3584
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
3585
- the database.
3586
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
3587
- the database.
3588
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
3405
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
3406
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
3407
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
3408
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
3409
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
3589
3410
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
3590
3411
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
3591
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
3412
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
3592
3413
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
3593
3414
  initial configuration or not.
3594
3415
  """
@@ -3647,8 +3468,7 @@ class SecretsMountHanaArgs:
3647
3468
  @pulumi.getter(name="connectionUrl")
3648
3469
  def connection_url(self) -> Optional[pulumi.Input[str]]:
3649
3470
  """
3650
- Specifies the Redshift DSN.
3651
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
3471
+ Connection string to use to connect to the database.
3652
3472
  """
3653
3473
  return pulumi.get(self, "connection_url")
3654
3474
 
@@ -3674,7 +3494,7 @@ class SecretsMountHanaArgs:
3674
3494
  @pulumi.getter(name="disableEscaping")
3675
3495
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
3676
3496
  """
3677
- Disable special character escaping in username and password.
3497
+ Disable special character escaping in username and password
3678
3498
  """
3679
3499
  return pulumi.get(self, "disable_escaping")
3680
3500
 
@@ -3686,7 +3506,7 @@ class SecretsMountHanaArgs:
3686
3506
  @pulumi.getter(name="maxConnectionLifetime")
3687
3507
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
3688
3508
  """
3689
- The maximum amount of time a connection may be reused.
3509
+ Maximum number of seconds a connection may be reused.
3690
3510
  """
3691
3511
  return pulumi.get(self, "max_connection_lifetime")
3692
3512
 
@@ -3698,8 +3518,7 @@ class SecretsMountHanaArgs:
3698
3518
  @pulumi.getter(name="maxIdleConnections")
3699
3519
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
3700
3520
  """
3701
- The maximum number of idle connections to
3702
- the database.
3521
+ Maximum number of idle connections to the database.
3703
3522
  """
3704
3523
  return pulumi.get(self, "max_idle_connections")
3705
3524
 
@@ -3711,8 +3530,7 @@ class SecretsMountHanaArgs:
3711
3530
  @pulumi.getter(name="maxOpenConnections")
3712
3531
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
3713
3532
  """
3714
- The maximum number of open connections to
3715
- the database.
3533
+ Maximum number of open connections to the database.
3716
3534
  """
3717
3535
  return pulumi.get(self, "max_open_connections")
3718
3536
 
@@ -3724,7 +3542,7 @@ class SecretsMountHanaArgs:
3724
3542
  @pulumi.getter
3725
3543
  def password(self) -> Optional[pulumi.Input[str]]:
3726
3544
  """
3727
- The root credential password used in the connection URL.
3545
+ The root credential password used in the connection URL
3728
3546
  """
3729
3547
  return pulumi.get(self, "password")
3730
3548
 
@@ -3760,7 +3578,7 @@ class SecretsMountHanaArgs:
3760
3578
  @pulumi.getter
3761
3579
  def username(self) -> Optional[pulumi.Input[str]]:
3762
3580
  """
3763
- The root credential username used in the connection URL.
3581
+ The root credential username used in the connection URL
3764
3582
  """
3765
3583
  return pulumi.get(self, "username")
3766
3584
 
@@ -3802,28 +3620,24 @@ class SecretsMountInfluxdbArgs:
3802
3620
  username_template: Optional[pulumi.Input[str]] = None,
3803
3621
  verify_connection: Optional[pulumi.Input[bool]] = None):
3804
3622
  """
3805
- :param pulumi.Input[str] host: The host to connect to.
3623
+ :param pulumi.Input[str] host: Influxdb host to connect to.
3806
3624
  :param pulumi.Input[str] name: Name of the database connection.
3807
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
3808
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
3625
+ :param pulumi.Input[str] password: Specifies the password corresponding to the given username.
3626
+ :param pulumi.Input[str] username: Specifies the username to use for superuser access.
3809
3627
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
3810
3628
  connection.
3811
- :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection
3812
- timeout.
3629
+ :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection timeout.
3813
3630
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
3814
3631
 
3815
3632
  Supported list of database secrets engines that can be configured:
3816
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
3817
- certificate when using TLS.
3818
- :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks configuring the certificate
3819
- chain.
3820
- :param pulumi.Input[str] pem_json: A JSON structure configuring the certificate chain.
3633
+ :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server certificate when using TLS.
3634
+ :param pulumi.Input[str] pem_bundle: Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
3635
+ :param pulumi.Input[str] pem_json: Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
3821
3636
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
3822
- :param pulumi.Input[int] port: The default port to connect to if no port is specified as
3823
- part of the host.
3637
+ :param pulumi.Input[int] port: The transport port to use to connect to Influxdb.
3824
3638
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
3825
- :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
3826
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
3639
+ :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Influxdb.
3640
+ :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
3827
3641
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
3828
3642
  initial configuration or not.
3829
3643
  """
@@ -3860,7 +3674,7 @@ class SecretsMountInfluxdbArgs:
3860
3674
  @pulumi.getter
3861
3675
  def host(self) -> pulumi.Input[str]:
3862
3676
  """
3863
- The host to connect to.
3677
+ Influxdb host to connect to.
3864
3678
  """
3865
3679
  return pulumi.get(self, "host")
3866
3680
 
@@ -3884,7 +3698,7 @@ class SecretsMountInfluxdbArgs:
3884
3698
  @pulumi.getter
3885
3699
  def password(self) -> pulumi.Input[str]:
3886
3700
  """
3887
- The root credential password used in the connection URL.
3701
+ Specifies the password corresponding to the given username.
3888
3702
  """
3889
3703
  return pulumi.get(self, "password")
3890
3704
 
@@ -3896,7 +3710,7 @@ class SecretsMountInfluxdbArgs:
3896
3710
  @pulumi.getter
3897
3711
  def username(self) -> pulumi.Input[str]:
3898
3712
  """
3899
- The root credential username used in the connection URL.
3713
+ Specifies the username to use for superuser access.
3900
3714
  """
3901
3715
  return pulumi.get(self, "username")
3902
3716
 
@@ -3921,8 +3735,7 @@ class SecretsMountInfluxdbArgs:
3921
3735
  @pulumi.getter(name="connectTimeout")
3922
3736
  def connect_timeout(self) -> Optional[pulumi.Input[int]]:
3923
3737
  """
3924
- The number of seconds to use as a connection
3925
- timeout.
3738
+ The number of seconds to use as a connection timeout.
3926
3739
  """
3927
3740
  return pulumi.get(self, "connect_timeout")
3928
3741
 
@@ -3948,8 +3761,7 @@ class SecretsMountInfluxdbArgs:
3948
3761
  @pulumi.getter(name="insecureTls")
3949
3762
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
3950
3763
  """
3951
- Whether to skip verification of the server
3952
- certificate when using TLS.
3764
+ Whether to skip verification of the server certificate when using TLS.
3953
3765
  """
3954
3766
  return pulumi.get(self, "insecure_tls")
3955
3767
 
@@ -3961,8 +3773,7 @@ class SecretsMountInfluxdbArgs:
3961
3773
  @pulumi.getter(name="pemBundle")
3962
3774
  def pem_bundle(self) -> Optional[pulumi.Input[str]]:
3963
3775
  """
3964
- Concatenated PEM blocks configuring the certificate
3965
- chain.
3776
+ Concatenated PEM blocks containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
3966
3777
  """
3967
3778
  return pulumi.get(self, "pem_bundle")
3968
3779
 
@@ -3974,7 +3785,7 @@ class SecretsMountInfluxdbArgs:
3974
3785
  @pulumi.getter(name="pemJson")
3975
3786
  def pem_json(self) -> Optional[pulumi.Input[str]]:
3976
3787
  """
3977
- A JSON structure configuring the certificate chain.
3788
+ Specifies JSON containing a certificate and private key; a certificate, private key, and issuing CA certificate; or just a CA certificate.
3978
3789
  """
3979
3790
  return pulumi.get(self, "pem_json")
3980
3791
 
@@ -3998,8 +3809,7 @@ class SecretsMountInfluxdbArgs:
3998
3809
  @pulumi.getter
3999
3810
  def port(self) -> Optional[pulumi.Input[int]]:
4000
3811
  """
4001
- The default port to connect to if no port is specified as
4002
- part of the host.
3812
+ The transport port to use to connect to Influxdb.
4003
3813
  """
4004
3814
  return pulumi.get(self, "port")
4005
3815
 
@@ -4023,7 +3833,7 @@ class SecretsMountInfluxdbArgs:
4023
3833
  @pulumi.getter
4024
3834
  def tls(self) -> Optional[pulumi.Input[bool]]:
4025
3835
  """
4026
- Whether to use TLS when connecting to Cassandra.
3836
+ Whether to use TLS when connecting to Influxdb.
4027
3837
  """
4028
3838
  return pulumi.get(self, "tls")
4029
3839
 
@@ -4035,7 +3845,7 @@ class SecretsMountInfluxdbArgs:
4035
3845
  @pulumi.getter(name="usernameTemplate")
4036
3846
  def username_template(self) -> Optional[pulumi.Input[str]]:
4037
3847
  """
4038
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
3848
+ Template describing how dynamic usernames are generated.
4039
3849
  """
4040
3850
  return pulumi.get(self, "username_template")
4041
3851
 
@@ -4077,21 +3887,18 @@ class SecretsMountMongodbArgs:
4077
3887
  :param pulumi.Input[str] name: Name of the database connection.
4078
3888
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4079
3889
  connection.
4080
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
4081
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
3890
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
4082
3891
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
4083
3892
 
4084
3893
  Supported list of database secrets engines that can be configured:
4085
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
4086
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
4087
- the database.
4088
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
4089
- the database.
4090
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
3894
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
3895
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
3896
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
3897
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
4091
3898
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
4092
3899
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
4093
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
4094
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
3900
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
3901
+ :param pulumi.Input[str] username_template: Username generation template.
4095
3902
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
4096
3903
  initial configuration or not.
4097
3904
  """
@@ -4150,8 +3957,7 @@ class SecretsMountMongodbArgs:
4150
3957
  @pulumi.getter(name="connectionUrl")
4151
3958
  def connection_url(self) -> Optional[pulumi.Input[str]]:
4152
3959
  """
4153
- Specifies the Redshift DSN.
4154
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
3960
+ Connection string to use to connect to the database.
4155
3961
  """
4156
3962
  return pulumi.get(self, "connection_url")
4157
3963
 
@@ -4177,7 +3983,7 @@ class SecretsMountMongodbArgs:
4177
3983
  @pulumi.getter(name="maxConnectionLifetime")
4178
3984
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
4179
3985
  """
4180
- The maximum amount of time a connection may be reused.
3986
+ Maximum number of seconds a connection may be reused.
4181
3987
  """
4182
3988
  return pulumi.get(self, "max_connection_lifetime")
4183
3989
 
@@ -4189,8 +3995,7 @@ class SecretsMountMongodbArgs:
4189
3995
  @pulumi.getter(name="maxIdleConnections")
4190
3996
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
4191
3997
  """
4192
- The maximum number of idle connections to
4193
- the database.
3998
+ Maximum number of idle connections to the database.
4194
3999
  """
4195
4000
  return pulumi.get(self, "max_idle_connections")
4196
4001
 
@@ -4202,8 +4007,7 @@ class SecretsMountMongodbArgs:
4202
4007
  @pulumi.getter(name="maxOpenConnections")
4203
4008
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
4204
4009
  """
4205
- The maximum number of open connections to
4206
- the database.
4010
+ Maximum number of open connections to the database.
4207
4011
  """
4208
4012
  return pulumi.get(self, "max_open_connections")
4209
4013
 
@@ -4215,7 +4019,7 @@ class SecretsMountMongodbArgs:
4215
4019
  @pulumi.getter
4216
4020
  def password(self) -> Optional[pulumi.Input[str]]:
4217
4021
  """
4218
- The root credential password used in the connection URL.
4022
+ The root credential password used in the connection URL
4219
4023
  """
4220
4024
  return pulumi.get(self, "password")
4221
4025
 
@@ -4251,7 +4055,7 @@ class SecretsMountMongodbArgs:
4251
4055
  @pulumi.getter
4252
4056
  def username(self) -> Optional[pulumi.Input[str]]:
4253
4057
  """
4254
- The root credential username used in the connection URL.
4058
+ The root credential username used in the connection URL
4255
4059
  """
4256
4060
  return pulumi.get(self, "username")
4257
4061
 
@@ -4263,7 +4067,7 @@ class SecretsMountMongodbArgs:
4263
4067
  @pulumi.getter(name="usernameTemplate")
4264
4068
  def username_template(self) -> Optional[pulumi.Input[str]]:
4265
4069
  """
4266
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
4070
+ Username generation template.
4267
4071
  """
4268
4072
  return pulumi.get(self, "username_template")
4269
4073
 
@@ -4462,25 +4266,20 @@ class SecretsMountMssqlArgs:
4462
4266
  :param pulumi.Input[str] name: Name of the database connection.
4463
4267
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4464
4268
  connection.
4465
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
4466
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4467
- :param pulumi.Input[bool] contained_db: For Vault v1.9+. Set to true when the target is a
4468
- Contained Database, e.g. AzureSQL.
4469
- See [Vault docs](https://www.vaultproject.io/api/secret/databases/mssql#contained_db)
4269
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
4270
+ :param pulumi.Input[bool] contained_db: Set to true when the target is a Contained Database, e.g. AzureSQL.
4470
4271
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
4471
4272
 
4472
4273
  Supported list of database secrets engines that can be configured:
4473
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
4474
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
4475
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
4476
- the database.
4477
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
4478
- the database.
4479
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
4274
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
4275
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
4276
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
4277
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
4278
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
4480
4279
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
4481
4280
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
4482
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
4483
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
4281
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
4282
+ :param pulumi.Input[str] username_template: Username generation template.
4484
4283
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
4485
4284
  initial configuration or not.
4486
4285
  """
@@ -4543,8 +4342,7 @@ class SecretsMountMssqlArgs:
4543
4342
  @pulumi.getter(name="connectionUrl")
4544
4343
  def connection_url(self) -> Optional[pulumi.Input[str]]:
4545
4344
  """
4546
- Specifies the Redshift DSN.
4547
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4345
+ Connection string to use to connect to the database.
4548
4346
  """
4549
4347
  return pulumi.get(self, "connection_url")
4550
4348
 
@@ -4556,9 +4354,7 @@ class SecretsMountMssqlArgs:
4556
4354
  @pulumi.getter(name="containedDb")
4557
4355
  def contained_db(self) -> Optional[pulumi.Input[bool]]:
4558
4356
  """
4559
- For Vault v1.9+. Set to true when the target is a
4560
- Contained Database, e.g. AzureSQL.
4561
- See [Vault docs](https://www.vaultproject.io/api/secret/databases/mssql#contained_db)
4357
+ Set to true when the target is a Contained Database, e.g. AzureSQL.
4562
4358
  """
4563
4359
  return pulumi.get(self, "contained_db")
4564
4360
 
@@ -4584,7 +4380,7 @@ class SecretsMountMssqlArgs:
4584
4380
  @pulumi.getter(name="disableEscaping")
4585
4381
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
4586
4382
  """
4587
- Disable special character escaping in username and password.
4383
+ Disable special character escaping in username and password
4588
4384
  """
4589
4385
  return pulumi.get(self, "disable_escaping")
4590
4386
 
@@ -4596,7 +4392,7 @@ class SecretsMountMssqlArgs:
4596
4392
  @pulumi.getter(name="maxConnectionLifetime")
4597
4393
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
4598
4394
  """
4599
- The maximum amount of time a connection may be reused.
4395
+ Maximum number of seconds a connection may be reused.
4600
4396
  """
4601
4397
  return pulumi.get(self, "max_connection_lifetime")
4602
4398
 
@@ -4608,8 +4404,7 @@ class SecretsMountMssqlArgs:
4608
4404
  @pulumi.getter(name="maxIdleConnections")
4609
4405
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
4610
4406
  """
4611
- The maximum number of idle connections to
4612
- the database.
4407
+ Maximum number of idle connections to the database.
4613
4408
  """
4614
4409
  return pulumi.get(self, "max_idle_connections")
4615
4410
 
@@ -4621,8 +4416,7 @@ class SecretsMountMssqlArgs:
4621
4416
  @pulumi.getter(name="maxOpenConnections")
4622
4417
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
4623
4418
  """
4624
- The maximum number of open connections to
4625
- the database.
4419
+ Maximum number of open connections to the database.
4626
4420
  """
4627
4421
  return pulumi.get(self, "max_open_connections")
4628
4422
 
@@ -4634,7 +4428,7 @@ class SecretsMountMssqlArgs:
4634
4428
  @pulumi.getter
4635
4429
  def password(self) -> Optional[pulumi.Input[str]]:
4636
4430
  """
4637
- The root credential password used in the connection URL.
4431
+ The root credential password used in the connection URL
4638
4432
  """
4639
4433
  return pulumi.get(self, "password")
4640
4434
 
@@ -4670,7 +4464,7 @@ class SecretsMountMssqlArgs:
4670
4464
  @pulumi.getter
4671
4465
  def username(self) -> Optional[pulumi.Input[str]]:
4672
4466
  """
4673
- The root credential username used in the connection URL.
4467
+ The root credential username used in the connection URL
4674
4468
  """
4675
4469
  return pulumi.get(self, "username")
4676
4470
 
@@ -4682,7 +4476,7 @@ class SecretsMountMssqlArgs:
4682
4476
  @pulumi.getter(name="usernameTemplate")
4683
4477
  def username_template(self) -> Optional[pulumi.Input[str]]:
4684
4478
  """
4685
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
4479
+ Username generation template.
4686
4480
  """
4687
4481
  return pulumi.get(self, "username_template")
4688
4482
 
@@ -4729,24 +4523,21 @@ class SecretsMountMysqlArgs:
4729
4523
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4730
4524
  connection.
4731
4525
  :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
4732
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
4733
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4526
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
4734
4527
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
4735
4528
 
4736
4529
  Supported list of database secrets engines that can be configured:
4737
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
4738
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
4739
- the database.
4740
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
4741
- the database.
4742
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
4530
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
4531
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
4532
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
4533
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
4743
4534
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
4744
4535
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
4745
4536
  :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
4746
4537
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
4747
4538
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
4748
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
4749
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
4539
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
4540
+ :param pulumi.Input[str] username_template: Username generation template.
4750
4541
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
4751
4542
  initial configuration or not.
4752
4543
  """
@@ -4825,8 +4616,7 @@ class SecretsMountMysqlArgs:
4825
4616
  @pulumi.getter(name="connectionUrl")
4826
4617
  def connection_url(self) -> Optional[pulumi.Input[str]]:
4827
4618
  """
4828
- Specifies the Redshift DSN.
4829
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4619
+ Connection string to use to connect to the database.
4830
4620
  """
4831
4621
  return pulumi.get(self, "connection_url")
4832
4622
 
@@ -4852,7 +4642,7 @@ class SecretsMountMysqlArgs:
4852
4642
  @pulumi.getter(name="maxConnectionLifetime")
4853
4643
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
4854
4644
  """
4855
- The maximum amount of time a connection may be reused.
4645
+ Maximum number of seconds a connection may be reused.
4856
4646
  """
4857
4647
  return pulumi.get(self, "max_connection_lifetime")
4858
4648
 
@@ -4864,8 +4654,7 @@ class SecretsMountMysqlArgs:
4864
4654
  @pulumi.getter(name="maxIdleConnections")
4865
4655
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
4866
4656
  """
4867
- The maximum number of idle connections to
4868
- the database.
4657
+ Maximum number of idle connections to the database.
4869
4658
  """
4870
4659
  return pulumi.get(self, "max_idle_connections")
4871
4660
 
@@ -4877,8 +4666,7 @@ class SecretsMountMysqlArgs:
4877
4666
  @pulumi.getter(name="maxOpenConnections")
4878
4667
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
4879
4668
  """
4880
- The maximum number of open connections to
4881
- the database.
4669
+ Maximum number of open connections to the database.
4882
4670
  """
4883
4671
  return pulumi.get(self, "max_open_connections")
4884
4672
 
@@ -4890,7 +4678,7 @@ class SecretsMountMysqlArgs:
4890
4678
  @pulumi.getter
4891
4679
  def password(self) -> Optional[pulumi.Input[str]]:
4892
4680
  """
4893
- The root credential password used in the connection URL.
4681
+ The root credential password used in the connection URL
4894
4682
  """
4895
4683
  return pulumi.get(self, "password")
4896
4684
 
@@ -4962,7 +4750,7 @@ class SecretsMountMysqlArgs:
4962
4750
  @pulumi.getter
4963
4751
  def username(self) -> Optional[pulumi.Input[str]]:
4964
4752
  """
4965
- The root credential username used in the connection URL.
4753
+ The root credential username used in the connection URL
4966
4754
  """
4967
4755
  return pulumi.get(self, "username")
4968
4756
 
@@ -4974,7 +4762,7 @@ class SecretsMountMysqlArgs:
4974
4762
  @pulumi.getter(name="usernameTemplate")
4975
4763
  def username_template(self) -> Optional[pulumi.Input[str]]:
4976
4764
  """
4977
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
4765
+ Username generation template.
4978
4766
  """
4979
4767
  return pulumi.get(self, "username_template")
4980
4768
 
@@ -5021,24 +4809,21 @@ class SecretsMountMysqlAuroraArgs:
5021
4809
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5022
4810
  connection.
5023
4811
  :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5024
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
5025
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4812
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
5026
4813
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
5027
4814
 
5028
4815
  Supported list of database secrets engines that can be configured:
5029
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
5030
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
5031
- the database.
5032
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
5033
- the database.
5034
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
4816
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
4817
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
4818
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
4819
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
5035
4820
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5036
4821
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
5037
4822
  :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
5038
4823
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
5039
4824
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
5040
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
5041
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
4825
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
4826
+ :param pulumi.Input[str] username_template: Username generation template.
5042
4827
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
5043
4828
  initial configuration or not.
5044
4829
  """
@@ -5117,8 +4902,7 @@ class SecretsMountMysqlAuroraArgs:
5117
4902
  @pulumi.getter(name="connectionUrl")
5118
4903
  def connection_url(self) -> Optional[pulumi.Input[str]]:
5119
4904
  """
5120
- Specifies the Redshift DSN.
5121
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4905
+ Connection string to use to connect to the database.
5122
4906
  """
5123
4907
  return pulumi.get(self, "connection_url")
5124
4908
 
@@ -5144,7 +4928,7 @@ class SecretsMountMysqlAuroraArgs:
5144
4928
  @pulumi.getter(name="maxConnectionLifetime")
5145
4929
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
5146
4930
  """
5147
- The maximum amount of time a connection may be reused.
4931
+ Maximum number of seconds a connection may be reused.
5148
4932
  """
5149
4933
  return pulumi.get(self, "max_connection_lifetime")
5150
4934
 
@@ -5156,8 +4940,7 @@ class SecretsMountMysqlAuroraArgs:
5156
4940
  @pulumi.getter(name="maxIdleConnections")
5157
4941
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
5158
4942
  """
5159
- The maximum number of idle connections to
5160
- the database.
4943
+ Maximum number of idle connections to the database.
5161
4944
  """
5162
4945
  return pulumi.get(self, "max_idle_connections")
5163
4946
 
@@ -5169,8 +4952,7 @@ class SecretsMountMysqlAuroraArgs:
5169
4952
  @pulumi.getter(name="maxOpenConnections")
5170
4953
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
5171
4954
  """
5172
- The maximum number of open connections to
5173
- the database.
4955
+ Maximum number of open connections to the database.
5174
4956
  """
5175
4957
  return pulumi.get(self, "max_open_connections")
5176
4958
 
@@ -5182,7 +4964,7 @@ class SecretsMountMysqlAuroraArgs:
5182
4964
  @pulumi.getter
5183
4965
  def password(self) -> Optional[pulumi.Input[str]]:
5184
4966
  """
5185
- The root credential password used in the connection URL.
4967
+ The root credential password used in the connection URL
5186
4968
  """
5187
4969
  return pulumi.get(self, "password")
5188
4970
 
@@ -5254,7 +5036,7 @@ class SecretsMountMysqlAuroraArgs:
5254
5036
  @pulumi.getter
5255
5037
  def username(self) -> Optional[pulumi.Input[str]]:
5256
5038
  """
5257
- The root credential username used in the connection URL.
5039
+ The root credential username used in the connection URL
5258
5040
  """
5259
5041
  return pulumi.get(self, "username")
5260
5042
 
@@ -5266,7 +5048,7 @@ class SecretsMountMysqlAuroraArgs:
5266
5048
  @pulumi.getter(name="usernameTemplate")
5267
5049
  def username_template(self) -> Optional[pulumi.Input[str]]:
5268
5050
  """
5269
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5051
+ Username generation template.
5270
5052
  """
5271
5053
  return pulumi.get(self, "username_template")
5272
5054
 
@@ -5313,24 +5095,21 @@ class SecretsMountMysqlLegacyArgs:
5313
5095
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5314
5096
  connection.
5315
5097
  :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5316
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
5317
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5098
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
5318
5099
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
5319
5100
 
5320
5101
  Supported list of database secrets engines that can be configured:
5321
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
5322
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
5323
- the database.
5324
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
5325
- the database.
5326
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
5102
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
5103
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
5104
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
5105
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
5327
5106
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5328
5107
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
5329
5108
  :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
5330
5109
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
5331
5110
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
5332
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
5333
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5111
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
5112
+ :param pulumi.Input[str] username_template: Username generation template.
5334
5113
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
5335
5114
  initial configuration or not.
5336
5115
  """
@@ -5409,8 +5188,7 @@ class SecretsMountMysqlLegacyArgs:
5409
5188
  @pulumi.getter(name="connectionUrl")
5410
5189
  def connection_url(self) -> Optional[pulumi.Input[str]]:
5411
5190
  """
5412
- Specifies the Redshift DSN.
5413
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5191
+ Connection string to use to connect to the database.
5414
5192
  """
5415
5193
  return pulumi.get(self, "connection_url")
5416
5194
 
@@ -5436,7 +5214,7 @@ class SecretsMountMysqlLegacyArgs:
5436
5214
  @pulumi.getter(name="maxConnectionLifetime")
5437
5215
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
5438
5216
  """
5439
- The maximum amount of time a connection may be reused.
5217
+ Maximum number of seconds a connection may be reused.
5440
5218
  """
5441
5219
  return pulumi.get(self, "max_connection_lifetime")
5442
5220
 
@@ -5448,8 +5226,7 @@ class SecretsMountMysqlLegacyArgs:
5448
5226
  @pulumi.getter(name="maxIdleConnections")
5449
5227
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
5450
5228
  """
5451
- The maximum number of idle connections to
5452
- the database.
5229
+ Maximum number of idle connections to the database.
5453
5230
  """
5454
5231
  return pulumi.get(self, "max_idle_connections")
5455
5232
 
@@ -5461,8 +5238,7 @@ class SecretsMountMysqlLegacyArgs:
5461
5238
  @pulumi.getter(name="maxOpenConnections")
5462
5239
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
5463
5240
  """
5464
- The maximum number of open connections to
5465
- the database.
5241
+ Maximum number of open connections to the database.
5466
5242
  """
5467
5243
  return pulumi.get(self, "max_open_connections")
5468
5244
 
@@ -5474,7 +5250,7 @@ class SecretsMountMysqlLegacyArgs:
5474
5250
  @pulumi.getter
5475
5251
  def password(self) -> Optional[pulumi.Input[str]]:
5476
5252
  """
5477
- The root credential password used in the connection URL.
5253
+ The root credential password used in the connection URL
5478
5254
  """
5479
5255
  return pulumi.get(self, "password")
5480
5256
 
@@ -5546,7 +5322,7 @@ class SecretsMountMysqlLegacyArgs:
5546
5322
  @pulumi.getter
5547
5323
  def username(self) -> Optional[pulumi.Input[str]]:
5548
5324
  """
5549
- The root credential username used in the connection URL.
5325
+ The root credential username used in the connection URL
5550
5326
  """
5551
5327
  return pulumi.get(self, "username")
5552
5328
 
@@ -5558,7 +5334,7 @@ class SecretsMountMysqlLegacyArgs:
5558
5334
  @pulumi.getter(name="usernameTemplate")
5559
5335
  def username_template(self) -> Optional[pulumi.Input[str]]:
5560
5336
  """
5561
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5337
+ Username generation template.
5562
5338
  """
5563
5339
  return pulumi.get(self, "username_template")
5564
5340
 
@@ -5605,24 +5381,21 @@ class SecretsMountMysqlRdArgs:
5605
5381
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5606
5382
  connection.
5607
5383
  :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5608
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
5609
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5384
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
5610
5385
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
5611
5386
 
5612
5387
  Supported list of database secrets engines that can be configured:
5613
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
5614
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
5615
- the database.
5616
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
5617
- the database.
5618
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
5388
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
5389
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
5390
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
5391
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
5619
5392
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5620
5393
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
5621
5394
  :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
5622
5395
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
5623
5396
  :param pulumi.Input[str] tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
5624
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
5625
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5397
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
5398
+ :param pulumi.Input[str] username_template: Username generation template.
5626
5399
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
5627
5400
  initial configuration or not.
5628
5401
  """
@@ -5701,8 +5474,7 @@ class SecretsMountMysqlRdArgs:
5701
5474
  @pulumi.getter(name="connectionUrl")
5702
5475
  def connection_url(self) -> Optional[pulumi.Input[str]]:
5703
5476
  """
5704
- Specifies the Redshift DSN.
5705
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5477
+ Connection string to use to connect to the database.
5706
5478
  """
5707
5479
  return pulumi.get(self, "connection_url")
5708
5480
 
@@ -5728,7 +5500,7 @@ class SecretsMountMysqlRdArgs:
5728
5500
  @pulumi.getter(name="maxConnectionLifetime")
5729
5501
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
5730
5502
  """
5731
- The maximum amount of time a connection may be reused.
5503
+ Maximum number of seconds a connection may be reused.
5732
5504
  """
5733
5505
  return pulumi.get(self, "max_connection_lifetime")
5734
5506
 
@@ -5740,8 +5512,7 @@ class SecretsMountMysqlRdArgs:
5740
5512
  @pulumi.getter(name="maxIdleConnections")
5741
5513
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
5742
5514
  """
5743
- The maximum number of idle connections to
5744
- the database.
5515
+ Maximum number of idle connections to the database.
5745
5516
  """
5746
5517
  return pulumi.get(self, "max_idle_connections")
5747
5518
 
@@ -5753,8 +5524,7 @@ class SecretsMountMysqlRdArgs:
5753
5524
  @pulumi.getter(name="maxOpenConnections")
5754
5525
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
5755
5526
  """
5756
- The maximum number of open connections to
5757
- the database.
5527
+ Maximum number of open connections to the database.
5758
5528
  """
5759
5529
  return pulumi.get(self, "max_open_connections")
5760
5530
 
@@ -5766,7 +5536,7 @@ class SecretsMountMysqlRdArgs:
5766
5536
  @pulumi.getter
5767
5537
  def password(self) -> Optional[pulumi.Input[str]]:
5768
5538
  """
5769
- The root credential password used in the connection URL.
5539
+ The root credential password used in the connection URL
5770
5540
  """
5771
5541
  return pulumi.get(self, "password")
5772
5542
 
@@ -5838,7 +5608,7 @@ class SecretsMountMysqlRdArgs:
5838
5608
  @pulumi.getter
5839
5609
  def username(self) -> Optional[pulumi.Input[str]]:
5840
5610
  """
5841
- The root credential username used in the connection URL.
5611
+ The root credential username used in the connection URL
5842
5612
  """
5843
5613
  return pulumi.get(self, "username")
5844
5614
 
@@ -5850,7 +5620,7 @@ class SecretsMountMysqlRdArgs:
5850
5620
  @pulumi.getter(name="usernameTemplate")
5851
5621
  def username_template(self) -> Optional[pulumi.Input[str]]:
5852
5622
  """
5853
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5623
+ Username generation template.
5854
5624
  """
5855
5625
  return pulumi.get(self, "username_template")
5856
5626
 
@@ -5894,23 +5664,20 @@ class SecretsMountOracleArgs:
5894
5664
  :param pulumi.Input[str] name: Name of the database connection.
5895
5665
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5896
5666
  connection.
5897
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
5898
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5667
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
5899
5668
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
5900
5669
 
5901
5670
  Supported list of database secrets engines that can be configured:
5902
5671
  :param pulumi.Input[bool] disconnect_sessions: Set to true to disconnect any open sessions prior to running the revocation statements.
5903
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
5904
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
5905
- the database.
5906
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
5907
- the database.
5908
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
5672
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
5673
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
5674
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
5675
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
5909
5676
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5910
5677
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
5911
5678
  :param pulumi.Input[bool] split_statements: Set to true in order to split statements after semi-colons.
5912
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
5913
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5679
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
5680
+ :param pulumi.Input[str] username_template: Username generation template.
5914
5681
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
5915
5682
  initial configuration or not.
5916
5683
  """
@@ -5973,8 +5740,7 @@ class SecretsMountOracleArgs:
5973
5740
  @pulumi.getter(name="connectionUrl")
5974
5741
  def connection_url(self) -> Optional[pulumi.Input[str]]:
5975
5742
  """
5976
- Specifies the Redshift DSN.
5977
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5743
+ Connection string to use to connect to the database.
5978
5744
  """
5979
5745
  return pulumi.get(self, "connection_url")
5980
5746
 
@@ -6012,7 +5778,7 @@ class SecretsMountOracleArgs:
6012
5778
  @pulumi.getter(name="maxConnectionLifetime")
6013
5779
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
6014
5780
  """
6015
- The maximum amount of time a connection may be reused.
5781
+ Maximum number of seconds a connection may be reused.
6016
5782
  """
6017
5783
  return pulumi.get(self, "max_connection_lifetime")
6018
5784
 
@@ -6024,8 +5790,7 @@ class SecretsMountOracleArgs:
6024
5790
  @pulumi.getter(name="maxIdleConnections")
6025
5791
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
6026
5792
  """
6027
- The maximum number of idle connections to
6028
- the database.
5793
+ Maximum number of idle connections to the database.
6029
5794
  """
6030
5795
  return pulumi.get(self, "max_idle_connections")
6031
5796
 
@@ -6037,8 +5802,7 @@ class SecretsMountOracleArgs:
6037
5802
  @pulumi.getter(name="maxOpenConnections")
6038
5803
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
6039
5804
  """
6040
- The maximum number of open connections to
6041
- the database.
5805
+ Maximum number of open connections to the database.
6042
5806
  """
6043
5807
  return pulumi.get(self, "max_open_connections")
6044
5808
 
@@ -6050,7 +5814,7 @@ class SecretsMountOracleArgs:
6050
5814
  @pulumi.getter
6051
5815
  def password(self) -> Optional[pulumi.Input[str]]:
6052
5816
  """
6053
- The root credential password used in the connection URL.
5817
+ The root credential password used in the connection URL
6054
5818
  """
6055
5819
  return pulumi.get(self, "password")
6056
5820
 
@@ -6098,7 +5862,7 @@ class SecretsMountOracleArgs:
6098
5862
  @pulumi.getter
6099
5863
  def username(self) -> Optional[pulumi.Input[str]]:
6100
5864
  """
6101
- The root credential username used in the connection URL.
5865
+ The root credential username used in the connection URL
6102
5866
  """
6103
5867
  return pulumi.get(self, "username")
6104
5868
 
@@ -6110,7 +5874,7 @@ class SecretsMountOracleArgs:
6110
5874
  @pulumi.getter(name="usernameTemplate")
6111
5875
  def username_template(self) -> Optional[pulumi.Input[str]]:
6112
5876
  """
6113
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5877
+ Username generation template.
6114
5878
  """
6115
5879
  return pulumi.get(self, "username_template")
6116
5880
 
@@ -6156,23 +5920,20 @@ class SecretsMountPostgresqlArgs:
6156
5920
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6157
5921
  connection.
6158
5922
  :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
6159
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
6160
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5923
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
6161
5924
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
6162
5925
 
6163
5926
  Supported list of database secrets engines that can be configured:
6164
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
6165
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
6166
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
6167
- the database.
6168
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
6169
- the database.
6170
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
5927
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
5928
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
5929
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
5930
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
5931
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
6171
5932
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
6172
5933
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
6173
5934
  :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
6174
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
6175
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5935
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
5936
+ :param pulumi.Input[str] username_template: Username generation template.
6176
5937
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
6177
5938
  initial configuration or not.
6178
5939
  """
@@ -6249,8 +6010,7 @@ class SecretsMountPostgresqlArgs:
6249
6010
  @pulumi.getter(name="connectionUrl")
6250
6011
  def connection_url(self) -> Optional[pulumi.Input[str]]:
6251
6012
  """
6252
- Specifies the Redshift DSN.
6253
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
6013
+ Connection string to use to connect to the database.
6254
6014
  """
6255
6015
  return pulumi.get(self, "connection_url")
6256
6016
 
@@ -6276,7 +6036,7 @@ class SecretsMountPostgresqlArgs:
6276
6036
  @pulumi.getter(name="disableEscaping")
6277
6037
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
6278
6038
  """
6279
- Disable special character escaping in username and password.
6039
+ Disable special character escaping in username and password
6280
6040
  """
6281
6041
  return pulumi.get(self, "disable_escaping")
6282
6042
 
@@ -6288,7 +6048,7 @@ class SecretsMountPostgresqlArgs:
6288
6048
  @pulumi.getter(name="maxConnectionLifetime")
6289
6049
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
6290
6050
  """
6291
- The maximum amount of time a connection may be reused.
6051
+ Maximum number of seconds a connection may be reused.
6292
6052
  """
6293
6053
  return pulumi.get(self, "max_connection_lifetime")
6294
6054
 
@@ -6300,8 +6060,7 @@ class SecretsMountPostgresqlArgs:
6300
6060
  @pulumi.getter(name="maxIdleConnections")
6301
6061
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
6302
6062
  """
6303
- The maximum number of idle connections to
6304
- the database.
6063
+ Maximum number of idle connections to the database.
6305
6064
  """
6306
6065
  return pulumi.get(self, "max_idle_connections")
6307
6066
 
@@ -6313,8 +6072,7 @@ class SecretsMountPostgresqlArgs:
6313
6072
  @pulumi.getter(name="maxOpenConnections")
6314
6073
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
6315
6074
  """
6316
- The maximum number of open connections to
6317
- the database.
6075
+ Maximum number of open connections to the database.
6318
6076
  """
6319
6077
  return pulumi.get(self, "max_open_connections")
6320
6078
 
@@ -6326,7 +6084,7 @@ class SecretsMountPostgresqlArgs:
6326
6084
  @pulumi.getter
6327
6085
  def password(self) -> Optional[pulumi.Input[str]]:
6328
6086
  """
6329
- The root credential password used in the connection URL.
6087
+ The root credential password used in the connection URL
6330
6088
  """
6331
6089
  return pulumi.get(self, "password")
6332
6090
 
@@ -6374,7 +6132,7 @@ class SecretsMountPostgresqlArgs:
6374
6132
  @pulumi.getter
6375
6133
  def username(self) -> Optional[pulumi.Input[str]]:
6376
6134
  """
6377
- The root credential username used in the connection URL.
6135
+ The root credential username used in the connection URL
6378
6136
  """
6379
6137
  return pulumi.get(self, "username")
6380
6138
 
@@ -6386,7 +6144,7 @@ class SecretsMountPostgresqlArgs:
6386
6144
  @pulumi.getter(name="usernameTemplate")
6387
6145
  def username_template(self) -> Optional[pulumi.Input[str]]:
6388
6146
  """
6389
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
6147
+ Username generation template.
6390
6148
  """
6391
6149
  return pulumi.get(self, "username_template")
6392
6150
 
@@ -6425,23 +6183,21 @@ class SecretsMountRediArgs:
6425
6183
  tls: Optional[pulumi.Input[bool]] = None,
6426
6184
  verify_connection: Optional[pulumi.Input[bool]] = None):
6427
6185
  """
6428
- :param pulumi.Input[str] host: The host to connect to.
6186
+ :param pulumi.Input[str] host: Specifies the host to connect to
6429
6187
  :param pulumi.Input[str] name: Name of the database connection.
6430
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
6431
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
6188
+ :param pulumi.Input[str] password: Specifies the password corresponding to the given username.
6189
+ :param pulumi.Input[str] username: Specifies the username for Vault to use.
6432
6190
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6433
6191
  connection.
6434
- :param pulumi.Input[str] ca_cert: The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
6192
+ :param pulumi.Input[str] ca_cert: The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.
6435
6193
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
6436
6194
 
6437
6195
  Supported list of database secrets engines that can be configured:
6438
- :param pulumi.Input[bool] insecure_tls: Whether to skip verification of the server
6439
- certificate when using TLS.
6196
+ :param pulumi.Input[bool] insecure_tls: Specifies whether to skip verification of the server certificate when using TLS.
6440
6197
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
6441
- :param pulumi.Input[int] port: The default port to connect to if no port is specified as
6442
- part of the host.
6198
+ :param pulumi.Input[int] port: The transport port to use to connect to Redis.
6443
6199
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
6444
- :param pulumi.Input[bool] tls: Whether to use TLS when connecting to Cassandra.
6200
+ :param pulumi.Input[bool] tls: Specifies whether to use TLS when connecting to Redis.
6445
6201
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
6446
6202
  initial configuration or not.
6447
6203
  """
@@ -6472,7 +6228,7 @@ class SecretsMountRediArgs:
6472
6228
  @pulumi.getter
6473
6229
  def host(self) -> pulumi.Input[str]:
6474
6230
  """
6475
- The host to connect to.
6231
+ Specifies the host to connect to
6476
6232
  """
6477
6233
  return pulumi.get(self, "host")
6478
6234
 
@@ -6496,7 +6252,7 @@ class SecretsMountRediArgs:
6496
6252
  @pulumi.getter
6497
6253
  def password(self) -> pulumi.Input[str]:
6498
6254
  """
6499
- The root credential password used in the connection URL.
6255
+ Specifies the password corresponding to the given username.
6500
6256
  """
6501
6257
  return pulumi.get(self, "password")
6502
6258
 
@@ -6508,7 +6264,7 @@ class SecretsMountRediArgs:
6508
6264
  @pulumi.getter
6509
6265
  def username(self) -> pulumi.Input[str]:
6510
6266
  """
6511
- The root credential username used in the connection URL.
6267
+ Specifies the username for Vault to use.
6512
6268
  """
6513
6269
  return pulumi.get(self, "username")
6514
6270
 
@@ -6533,7 +6289,7 @@ class SecretsMountRediArgs:
6533
6289
  @pulumi.getter(name="caCert")
6534
6290
  def ca_cert(self) -> Optional[pulumi.Input[str]]:
6535
6291
  """
6536
- The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.
6292
+ The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.
6537
6293
  """
6538
6294
  return pulumi.get(self, "ca_cert")
6539
6295
 
@@ -6559,8 +6315,7 @@ class SecretsMountRediArgs:
6559
6315
  @pulumi.getter(name="insecureTls")
6560
6316
  def insecure_tls(self) -> Optional[pulumi.Input[bool]]:
6561
6317
  """
6562
- Whether to skip verification of the server
6563
- certificate when using TLS.
6318
+ Specifies whether to skip verification of the server certificate when using TLS.
6564
6319
  """
6565
6320
  return pulumi.get(self, "insecure_tls")
6566
6321
 
@@ -6584,8 +6339,7 @@ class SecretsMountRediArgs:
6584
6339
  @pulumi.getter
6585
6340
  def port(self) -> Optional[pulumi.Input[int]]:
6586
6341
  """
6587
- The default port to connect to if no port is specified as
6588
- part of the host.
6342
+ The transport port to use to connect to Redis.
6589
6343
  """
6590
6344
  return pulumi.get(self, "port")
6591
6345
 
@@ -6609,7 +6363,7 @@ class SecretsMountRediArgs:
6609
6363
  @pulumi.getter
6610
6364
  def tls(self) -> Optional[pulumi.Input[bool]]:
6611
6365
  """
6612
- Whether to use TLS when connecting to Cassandra.
6366
+ Specifies whether to use TLS when connecting to Redis.
6613
6367
  """
6614
6368
  return pulumi.get(self, "tls")
6615
6369
 
@@ -6646,19 +6400,17 @@ class SecretsMountRedisElasticachArgs:
6646
6400
  verify_connection: Optional[pulumi.Input[bool]] = None):
6647
6401
  """
6648
6402
  :param pulumi.Input[str] name: Name of the database connection.
6649
- :param pulumi.Input[str] url: The URL for Elasticsearch's API. https requires certificate
6650
- by trusted CA if used.
6403
+ :param pulumi.Input[str] url: The configuration endpoint for the ElastiCache cluster to connect to.
6651
6404
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6652
6405
  connection.
6653
6406
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
6654
6407
 
6655
6408
  Supported list of database secrets engines that can be configured:
6656
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
6409
+ :param pulumi.Input[str] password: The AWS secret key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
6657
6410
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
6658
- :param pulumi.Input[str] region: The AWS region where the ElastiCache cluster is hosted.
6659
- If omitted the plugin tries to infer the region from the environment.
6411
+ :param pulumi.Input[str] region: The AWS region where the ElastiCache cluster is hosted. If omitted the plugin tries to infer the region from the environment.
6660
6412
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
6661
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
6413
+ :param pulumi.Input[str] username: The AWS access key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
6662
6414
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
6663
6415
  initial configuration or not.
6664
6416
  """
@@ -6697,8 +6449,7 @@ class SecretsMountRedisElasticachArgs:
6697
6449
  @pulumi.getter
6698
6450
  def url(self) -> pulumi.Input[str]:
6699
6451
  """
6700
- The URL for Elasticsearch's API. https requires certificate
6701
- by trusted CA if used.
6452
+ The configuration endpoint for the ElastiCache cluster to connect to.
6702
6453
  """
6703
6454
  return pulumi.get(self, "url")
6704
6455
 
@@ -6737,7 +6488,7 @@ class SecretsMountRedisElasticachArgs:
6737
6488
  @pulumi.getter
6738
6489
  def password(self) -> Optional[pulumi.Input[str]]:
6739
6490
  """
6740
- The root credential password used in the connection URL.
6491
+ The AWS secret key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
6741
6492
  """
6742
6493
  return pulumi.get(self, "password")
6743
6494
 
@@ -6761,8 +6512,7 @@ class SecretsMountRedisElasticachArgs:
6761
6512
  @pulumi.getter
6762
6513
  def region(self) -> Optional[pulumi.Input[str]]:
6763
6514
  """
6764
- The AWS region where the ElastiCache cluster is hosted.
6765
- If omitted the plugin tries to infer the region from the environment.
6515
+ The AWS region where the ElastiCache cluster is hosted. If omitted the plugin tries to infer the region from the environment.
6766
6516
  """
6767
6517
  return pulumi.get(self, "region")
6768
6518
 
@@ -6786,7 +6536,7 @@ class SecretsMountRedisElasticachArgs:
6786
6536
  @pulumi.getter
6787
6537
  def username(self) -> Optional[pulumi.Input[str]]:
6788
6538
  """
6789
- The root credential username used in the connection URL.
6539
+ The AWS access key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
6790
6540
  """
6791
6541
  return pulumi.get(self, "username")
6792
6542
 
@@ -6829,22 +6579,19 @@ class SecretsMountRedshiftArgs:
6829
6579
  :param pulumi.Input[str] name: Name of the database connection.
6830
6580
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6831
6581
  connection.
6832
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
6833
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
6582
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
6834
6583
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
6835
6584
 
6836
6585
  Supported list of database secrets engines that can be configured:
6837
- :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password.
6838
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
6839
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
6840
- the database.
6841
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
6842
- the database.
6843
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
6586
+ :param pulumi.Input[bool] disable_escaping: Disable special character escaping in username and password
6587
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
6588
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
6589
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
6590
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
6844
6591
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
6845
6592
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
6846
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
6847
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
6593
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
6594
+ :param pulumi.Input[str] username_template: Username generation template.
6848
6595
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
6849
6596
  initial configuration or not.
6850
6597
  """
@@ -6905,8 +6652,7 @@ class SecretsMountRedshiftArgs:
6905
6652
  @pulumi.getter(name="connectionUrl")
6906
6653
  def connection_url(self) -> Optional[pulumi.Input[str]]:
6907
6654
  """
6908
- Specifies the Redshift DSN.
6909
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
6655
+ Connection string to use to connect to the database.
6910
6656
  """
6911
6657
  return pulumi.get(self, "connection_url")
6912
6658
 
@@ -6932,7 +6678,7 @@ class SecretsMountRedshiftArgs:
6932
6678
  @pulumi.getter(name="disableEscaping")
6933
6679
  def disable_escaping(self) -> Optional[pulumi.Input[bool]]:
6934
6680
  """
6935
- Disable special character escaping in username and password.
6681
+ Disable special character escaping in username and password
6936
6682
  """
6937
6683
  return pulumi.get(self, "disable_escaping")
6938
6684
 
@@ -6944,7 +6690,7 @@ class SecretsMountRedshiftArgs:
6944
6690
  @pulumi.getter(name="maxConnectionLifetime")
6945
6691
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
6946
6692
  """
6947
- The maximum amount of time a connection may be reused.
6693
+ Maximum number of seconds a connection may be reused.
6948
6694
  """
6949
6695
  return pulumi.get(self, "max_connection_lifetime")
6950
6696
 
@@ -6956,8 +6702,7 @@ class SecretsMountRedshiftArgs:
6956
6702
  @pulumi.getter(name="maxIdleConnections")
6957
6703
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
6958
6704
  """
6959
- The maximum number of idle connections to
6960
- the database.
6705
+ Maximum number of idle connections to the database.
6961
6706
  """
6962
6707
  return pulumi.get(self, "max_idle_connections")
6963
6708
 
@@ -6969,8 +6714,7 @@ class SecretsMountRedshiftArgs:
6969
6714
  @pulumi.getter(name="maxOpenConnections")
6970
6715
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
6971
6716
  """
6972
- The maximum number of open connections to
6973
- the database.
6717
+ Maximum number of open connections to the database.
6974
6718
  """
6975
6719
  return pulumi.get(self, "max_open_connections")
6976
6720
 
@@ -6982,7 +6726,7 @@ class SecretsMountRedshiftArgs:
6982
6726
  @pulumi.getter
6983
6727
  def password(self) -> Optional[pulumi.Input[str]]:
6984
6728
  """
6985
- The root credential password used in the connection URL.
6729
+ The root credential password used in the connection URL
6986
6730
  """
6987
6731
  return pulumi.get(self, "password")
6988
6732
 
@@ -7018,7 +6762,7 @@ class SecretsMountRedshiftArgs:
7018
6762
  @pulumi.getter
7019
6763
  def username(self) -> Optional[pulumi.Input[str]]:
7020
6764
  """
7021
- The root credential username used in the connection URL.
6765
+ The root credential username used in the connection URL
7022
6766
  """
7023
6767
  return pulumi.get(self, "username")
7024
6768
 
@@ -7030,7 +6774,7 @@ class SecretsMountRedshiftArgs:
7030
6774
  @pulumi.getter(name="usernameTemplate")
7031
6775
  def username_template(self) -> Optional[pulumi.Input[str]]:
7032
6776
  """
7033
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
6777
+ Username generation template.
7034
6778
  """
7035
6779
  return pulumi.get(self, "username_template")
7036
6780
 
@@ -7072,21 +6816,18 @@ class SecretsMountSnowflakeArgs:
7072
6816
  :param pulumi.Input[str] name: Name of the database connection.
7073
6817
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
7074
6818
  connection.
7075
- :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
7076
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
6819
+ :param pulumi.Input[str] connection_url: Connection string to use to connect to the database.
7077
6820
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
7078
6821
 
7079
6822
  Supported list of database secrets engines that can be configured:
7080
- :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
7081
- :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
7082
- the database.
7083
- :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
7084
- the database.
7085
- :param pulumi.Input[str] password: The root credential password used in the connection URL.
6823
+ :param pulumi.Input[int] max_connection_lifetime: Maximum number of seconds a connection may be reused.
6824
+ :param pulumi.Input[int] max_idle_connections: Maximum number of idle connections to the database.
6825
+ :param pulumi.Input[int] max_open_connections: Maximum number of open connections to the database.
6826
+ :param pulumi.Input[str] password: The root credential password used in the connection URL
7086
6827
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
7087
6828
  :param pulumi.Input[Sequence[pulumi.Input[str]]] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
7088
- :param pulumi.Input[str] username: The root credential username used in the connection URL.
7089
- :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
6829
+ :param pulumi.Input[str] username: The root credential username used in the connection URL
6830
+ :param pulumi.Input[str] username_template: Username generation template.
7090
6831
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
7091
6832
  initial configuration or not.
7092
6833
  """
@@ -7145,8 +6886,7 @@ class SecretsMountSnowflakeArgs:
7145
6886
  @pulumi.getter(name="connectionUrl")
7146
6887
  def connection_url(self) -> Optional[pulumi.Input[str]]:
7147
6888
  """
7148
- Specifies the Redshift DSN.
7149
- See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
6889
+ Connection string to use to connect to the database.
7150
6890
  """
7151
6891
  return pulumi.get(self, "connection_url")
7152
6892
 
@@ -7172,7 +6912,7 @@ class SecretsMountSnowflakeArgs:
7172
6912
  @pulumi.getter(name="maxConnectionLifetime")
7173
6913
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
7174
6914
  """
7175
- The maximum amount of time a connection may be reused.
6915
+ Maximum number of seconds a connection may be reused.
7176
6916
  """
7177
6917
  return pulumi.get(self, "max_connection_lifetime")
7178
6918
 
@@ -7184,8 +6924,7 @@ class SecretsMountSnowflakeArgs:
7184
6924
  @pulumi.getter(name="maxIdleConnections")
7185
6925
  def max_idle_connections(self) -> Optional[pulumi.Input[int]]:
7186
6926
  """
7187
- The maximum number of idle connections to
7188
- the database.
6927
+ Maximum number of idle connections to the database.
7189
6928
  """
7190
6929
  return pulumi.get(self, "max_idle_connections")
7191
6930
 
@@ -7197,8 +6936,7 @@ class SecretsMountSnowflakeArgs:
7197
6936
  @pulumi.getter(name="maxOpenConnections")
7198
6937
  def max_open_connections(self) -> Optional[pulumi.Input[int]]:
7199
6938
  """
7200
- The maximum number of open connections to
7201
- the database.
6939
+ Maximum number of open connections to the database.
7202
6940
  """
7203
6941
  return pulumi.get(self, "max_open_connections")
7204
6942
 
@@ -7210,7 +6948,7 @@ class SecretsMountSnowflakeArgs:
7210
6948
  @pulumi.getter
7211
6949
  def password(self) -> Optional[pulumi.Input[str]]:
7212
6950
  """
7213
- The root credential password used in the connection URL.
6951
+ The root credential password used in the connection URL
7214
6952
  """
7215
6953
  return pulumi.get(self, "password")
7216
6954
 
@@ -7246,7 +6984,7 @@ class SecretsMountSnowflakeArgs:
7246
6984
  @pulumi.getter
7247
6985
  def username(self) -> Optional[pulumi.Input[str]]:
7248
6986
  """
7249
- The root credential username used in the connection URL.
6987
+ The root credential username used in the connection URL
7250
6988
  """
7251
6989
  return pulumi.get(self, "username")
7252
6990
 
@@ -7258,7 +6996,7 @@ class SecretsMountSnowflakeArgs:
7258
6996
  @pulumi.getter(name="usernameTemplate")
7259
6997
  def username_template(self) -> Optional[pulumi.Input[str]]:
7260
6998
  """
7261
- [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
6999
+ Username generation template.
7262
7000
  """
7263
7001
  return pulumi.get(self, "username_template")
7264
7002