pulumi-vault 5.19.0a1705621752__py3-none-any.whl → 5.20.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. pulumi_vault/__init__.py +59 -0
  2. pulumi_vault/_inputs.py +380 -0
  3. pulumi_vault/_utilities.py +2 -2
  4. pulumi_vault/aws/secret_backend.py +188 -0
  5. pulumi_vault/aws/secret_backend_static_role.py +2 -2
  6. pulumi_vault/azure/backend.py +7 -21
  7. pulumi_vault/config/__init__.pyi +0 -3
  8. pulumi_vault/config/outputs.py +380 -0
  9. pulumi_vault/config/vars.py +0 -3
  10. pulumi_vault/consul/secret_backend.py +7 -35
  11. pulumi_vault/database/_inputs.py +176 -0
  12. pulumi_vault/database/outputs.py +168 -0
  13. pulumi_vault/get_raft_autopilot_state.py +0 -12
  14. pulumi_vault/identity/group_alias.py +6 -6
  15. pulumi_vault/kubernetes/secret_backend_role.py +8 -4
  16. pulumi_vault/kv/_inputs.py +12 -0
  17. pulumi_vault/kv/outputs.py +12 -0
  18. pulumi_vault/ldap/secret_backend_dynamic_role.py +2 -2
  19. pulumi_vault/ldap/secret_backend_static_role.py +2 -2
  20. pulumi_vault/managed/_inputs.py +12 -0
  21. pulumi_vault/managed/keys.py +20 -0
  22. pulumi_vault/managed/outputs.py +12 -0
  23. pulumi_vault/mongodbatlas/secret_role.py +2 -2
  24. pulumi_vault/namespace.py +46 -14
  25. pulumi_vault/pkisecret/secret_backend_config_issuers.py +0 -6
  26. pulumi_vault/pkisecret/secret_backend_issuer.py +0 -10
  27. pulumi_vault/pkisecret/secret_backend_role.py +7 -7
  28. pulumi_vault/rabbitmq/_inputs.py +36 -0
  29. pulumi_vault/rabbitmq/outputs.py +36 -0
  30. pulumi_vault/saml/auth_backend_role.py +7 -14
  31. pulumi_vault/secrets/__init__.py +14 -0
  32. pulumi_vault/secrets/sync_association.py +464 -0
  33. pulumi_vault/secrets/sync_aws_destination.py +564 -0
  34. pulumi_vault/secrets/sync_azure_destination.py +674 -0
  35. pulumi_vault/secrets/sync_config.py +297 -0
  36. pulumi_vault/secrets/sync_gcp_destination.py +438 -0
  37. pulumi_vault/secrets/sync_gh_destination.py +511 -0
  38. pulumi_vault/secrets/sync_vercel_destination.py +541 -0
  39. pulumi_vault/ssh/secret_backend_role.py +7 -14
  40. {pulumi_vault-5.19.0a1705621752.dist-info → pulumi_vault-5.20.0.dist-info}/METADATA +2 -2
  41. {pulumi_vault-5.19.0a1705621752.dist-info → pulumi_vault-5.20.0.dist-info}/RECORD +43 -35
  42. {pulumi_vault-5.19.0a1705621752.dist-info → pulumi_vault-5.20.0.dist-info}/WHEEL +0 -0
  43. {pulumi_vault-5.19.0a1705621752.dist-info → pulumi_vault-5.20.0.dist-info}/top_level.txt +0 -0
@@ -1962,10 +1962,12 @@ class SecretBackendConnectionMysqlRdsArgs:
1962
1962
  class SecretBackendConnectionOracleArgs:
1963
1963
  def __init__(__self__, *,
1964
1964
  connection_url: Optional[pulumi.Input[str]] = None,
1965
+ disconnect_sessions: Optional[pulumi.Input[bool]] = None,
1965
1966
  max_connection_lifetime: Optional[pulumi.Input[int]] = None,
1966
1967
  max_idle_connections: Optional[pulumi.Input[int]] = None,
1967
1968
  max_open_connections: Optional[pulumi.Input[int]] = None,
1968
1969
  password: Optional[pulumi.Input[str]] = None,
1970
+ split_statements: Optional[pulumi.Input[bool]] = None,
1969
1971
  username: Optional[pulumi.Input[str]] = None,
1970
1972
  username_template: Optional[pulumi.Input[str]] = None):
1971
1973
  """
@@ -1973,6 +1975,7 @@ class SecretBackendConnectionOracleArgs:
1973
1975
  the [Vault
1974
1976
  docs](https://www.vaultproject.io/api-docs/secret/databases/mongodb.html#sample-payload)
1975
1977
  for an example.
1978
+ :param pulumi.Input[bool] disconnect_sessions: Enable the built-in session disconnect mechanism.
1976
1979
  :param pulumi.Input[int] max_connection_lifetime: The maximum number of seconds to keep
1977
1980
  a connection alive for.
1978
1981
  :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
@@ -1980,11 +1983,14 @@ class SecretBackendConnectionOracleArgs:
1980
1983
  :param pulumi.Input[int] max_open_connections: The maximum number of open connections to
1981
1984
  use.
1982
1985
  :param pulumi.Input[str] password: The password to authenticate with.
1986
+ :param pulumi.Input[bool] split_statements: Enable spliting statements after semi-colons.
1983
1987
  :param pulumi.Input[str] username: The username to authenticate with.
1984
1988
  :param pulumi.Input[str] username_template: Template describing how dynamic usernames are generated.
1985
1989
  """
1986
1990
  if connection_url is not None:
1987
1991
  pulumi.set(__self__, "connection_url", connection_url)
1992
+ if disconnect_sessions is not None:
1993
+ pulumi.set(__self__, "disconnect_sessions", disconnect_sessions)
1988
1994
  if max_connection_lifetime is not None:
1989
1995
  pulumi.set(__self__, "max_connection_lifetime", max_connection_lifetime)
1990
1996
  if max_idle_connections is not None:
@@ -1993,6 +1999,8 @@ class SecretBackendConnectionOracleArgs:
1993
1999
  pulumi.set(__self__, "max_open_connections", max_open_connections)
1994
2000
  if password is not None:
1995
2001
  pulumi.set(__self__, "password", password)
2002
+ if split_statements is not None:
2003
+ pulumi.set(__self__, "split_statements", split_statements)
1996
2004
  if username is not None:
1997
2005
  pulumi.set(__self__, "username", username)
1998
2006
  if username_template is not None:
@@ -2013,6 +2021,18 @@ class SecretBackendConnectionOracleArgs:
2013
2021
  def connection_url(self, value: Optional[pulumi.Input[str]]):
2014
2022
  pulumi.set(self, "connection_url", value)
2015
2023
 
2024
+ @property
2025
+ @pulumi.getter(name="disconnectSessions")
2026
+ def disconnect_sessions(self) -> Optional[pulumi.Input[bool]]:
2027
+ """
2028
+ Enable the built-in session disconnect mechanism.
2029
+ """
2030
+ return pulumi.get(self, "disconnect_sessions")
2031
+
2032
+ @disconnect_sessions.setter
2033
+ def disconnect_sessions(self, value: Optional[pulumi.Input[bool]]):
2034
+ pulumi.set(self, "disconnect_sessions", value)
2035
+
2016
2036
  @property
2017
2037
  @pulumi.getter(name="maxConnectionLifetime")
2018
2038
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
@@ -2064,6 +2084,18 @@ class SecretBackendConnectionOracleArgs:
2064
2084
  def password(self, value: Optional[pulumi.Input[str]]):
2065
2085
  pulumi.set(self, "password", value)
2066
2086
 
2087
+ @property
2088
+ @pulumi.getter(name="splitStatements")
2089
+ def split_statements(self) -> Optional[pulumi.Input[bool]]:
2090
+ """
2091
+ Enable spliting statements after semi-colons.
2092
+ """
2093
+ return pulumi.get(self, "split_statements")
2094
+
2095
+ @split_statements.setter
2096
+ def split_statements(self, value: Optional[pulumi.Input[bool]]):
2097
+ pulumi.set(self, "split_statements", value)
2098
+
2067
2099
  @property
2068
2100
  @pulumi.getter
2069
2101
  def username(self) -> Optional[pulumi.Input[str]]:
@@ -2758,6 +2790,7 @@ class SecretsMountCassandraArgs:
2758
2790
  username: Optional[pulumi.Input[str]] = None,
2759
2791
  verify_connection: Optional[pulumi.Input[bool]] = None):
2760
2792
  """
2793
+ :param pulumi.Input[str] name: Name of the database connection.
2761
2794
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
2762
2795
  connection.
2763
2796
  :param pulumi.Input[int] connect_timeout: The number of seconds to use as a connection
@@ -2817,6 +2850,9 @@ class SecretsMountCassandraArgs:
2817
2850
  @property
2818
2851
  @pulumi.getter
2819
2852
  def name(self) -> pulumi.Input[str]:
2853
+ """
2854
+ Name of the database connection.
2855
+ """
2820
2856
  return pulumi.get(self, "name")
2821
2857
 
2822
2858
  @name.setter
@@ -3031,6 +3067,7 @@ class SecretsMountCouchbaseArgs:
3031
3067
  verify_connection: Optional[pulumi.Input[bool]] = None):
3032
3068
  """
3033
3069
  :param pulumi.Input[Sequence[pulumi.Input[str]]] hosts: The hosts to connect to.
3070
+ :param pulumi.Input[str] name: Name of the database connection.
3034
3071
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
3035
3072
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
3036
3073
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
@@ -3089,6 +3126,9 @@ class SecretsMountCouchbaseArgs:
3089
3126
  @property
3090
3127
  @pulumi.getter
3091
3128
  def name(self) -> pulumi.Input[str]:
3129
+ """
3130
+ Name of the database connection.
3131
+ """
3092
3132
  return pulumi.get(self, "name")
3093
3133
 
3094
3134
  @name.setter
@@ -3265,6 +3305,7 @@ class SecretsMountElasticsearchArgs:
3265
3305
  username_template: Optional[pulumi.Input[str]] = None,
3266
3306
  verify_connection: Optional[pulumi.Input[bool]] = None):
3267
3307
  """
3308
+ :param pulumi.Input[str] name: Name of the database connection.
3268
3309
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
3269
3310
  :param pulumi.Input[str] url: The URL for Elasticsearch's API. https requires certificate
3270
3311
  by trusted CA if used.
@@ -3318,6 +3359,9 @@ class SecretsMountElasticsearchArgs:
3318
3359
  @property
3319
3360
  @pulumi.getter
3320
3361
  def name(self) -> pulumi.Input[str]:
3362
+ """
3363
+ Name of the database connection.
3364
+ """
3321
3365
  return pulumi.get(self, "name")
3322
3366
 
3323
3367
  @name.setter
@@ -3527,6 +3571,7 @@ class SecretsMountHanaArgs:
3527
3571
  username: Optional[pulumi.Input[str]] = None,
3528
3572
  verify_connection: Optional[pulumi.Input[bool]] = None):
3529
3573
  """
3574
+ :param pulumi.Input[str] name: Name of the database connection.
3530
3575
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
3531
3576
  connection.
3532
3577
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
@@ -3576,6 +3621,9 @@ class SecretsMountHanaArgs:
3576
3621
  @property
3577
3622
  @pulumi.getter
3578
3623
  def name(self) -> pulumi.Input[str]:
3624
+ """
3625
+ Name of the database connection.
3626
+ """
3579
3627
  return pulumi.get(self, "name")
3580
3628
 
3581
3629
  @name.setter
@@ -3755,6 +3803,7 @@ class SecretsMountInfluxdbArgs:
3755
3803
  verify_connection: Optional[pulumi.Input[bool]] = None):
3756
3804
  """
3757
3805
  :param pulumi.Input[str] host: The host to connect to.
3806
+ :param pulumi.Input[str] name: Name of the database connection.
3758
3807
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
3759
3808
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
3760
3809
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
@@ -3822,6 +3871,9 @@ class SecretsMountInfluxdbArgs:
3822
3871
  @property
3823
3872
  @pulumi.getter
3824
3873
  def name(self) -> pulumi.Input[str]:
3874
+ """
3875
+ Name of the database connection.
3876
+ """
3825
3877
  return pulumi.get(self, "name")
3826
3878
 
3827
3879
  @name.setter
@@ -4022,6 +4074,7 @@ class SecretsMountMongodbArgs:
4022
4074
  username_template: Optional[pulumi.Input[str]] = None,
4023
4075
  verify_connection: Optional[pulumi.Input[bool]] = None):
4024
4076
  """
4077
+ :param pulumi.Input[str] name: Name of the database connection.
4025
4078
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4026
4079
  connection.
4027
4080
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
@@ -4071,6 +4124,9 @@ class SecretsMountMongodbArgs:
4071
4124
  @property
4072
4125
  @pulumi.getter
4073
4126
  def name(self) -> pulumi.Input[str]:
4127
+ """
4128
+ Name of the database connection.
4129
+ """
4074
4130
  return pulumi.get(self, "name")
4075
4131
 
4076
4132
  @name.setter
@@ -4242,6 +4298,7 @@ class SecretsMountMongodbatlaArgs:
4242
4298
  root_rotation_statements: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4243
4299
  verify_connection: Optional[pulumi.Input[bool]] = None):
4244
4300
  """
4301
+ :param pulumi.Input[str] name: Name of the database connection.
4245
4302
  :param pulumi.Input[str] private_key: The Private Programmatic API Key used to connect with MongoDB Atlas API.
4246
4303
  :param pulumi.Input[str] project_id: The Project ID the Database User should be created within.
4247
4304
  :param pulumi.Input[str] public_key: The Public Programmatic API Key used to authenticate with the MongoDB Atlas API.
@@ -4273,6 +4330,9 @@ class SecretsMountMongodbatlaArgs:
4273
4330
  @property
4274
4331
  @pulumi.getter
4275
4332
  def name(self) -> pulumi.Input[str]:
4333
+ """
4334
+ Name of the database connection.
4335
+ """
4276
4336
  return pulumi.get(self, "name")
4277
4337
 
4278
4338
  @name.setter
@@ -4399,6 +4459,7 @@ class SecretsMountMssqlArgs:
4399
4459
  username_template: Optional[pulumi.Input[str]] = None,
4400
4460
  verify_connection: Optional[pulumi.Input[bool]] = None):
4401
4461
  """
4462
+ :param pulumi.Input[str] name: Name of the database connection.
4402
4463
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4403
4464
  connection.
4404
4465
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
@@ -4456,6 +4517,9 @@ class SecretsMountMssqlArgs:
4456
4517
  @property
4457
4518
  @pulumi.getter
4458
4519
  def name(self) -> pulumi.Input[str]:
4520
+ """
4521
+ Name of the database connection.
4522
+ """
4459
4523
  return pulumi.get(self, "name")
4460
4524
 
4461
4525
  @name.setter
@@ -4661,8 +4725,10 @@ class SecretsMountMysqlArgs:
4661
4725
  username_template: Optional[pulumi.Input[str]] = None,
4662
4726
  verify_connection: Optional[pulumi.Input[bool]] = None):
4663
4727
  """
4728
+ :param pulumi.Input[str] name: Name of the database connection.
4664
4729
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4665
4730
  connection.
4731
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
4666
4732
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
4667
4733
  See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4668
4734
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
@@ -4676,6 +4742,7 @@ class SecretsMountMysqlArgs:
4676
4742
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
4677
4743
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
4678
4744
  :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
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
4679
4746
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
4680
4747
  :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.
4681
4748
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
@@ -4720,6 +4787,9 @@ class SecretsMountMysqlArgs:
4720
4787
  @property
4721
4788
  @pulumi.getter
4722
4789
  def name(self) -> pulumi.Input[str]:
4790
+ """
4791
+ Name of the database connection.
4792
+ """
4723
4793
  return pulumi.get(self, "name")
4724
4794
 
4725
4795
  @name.setter
@@ -4742,6 +4812,9 @@ class SecretsMountMysqlArgs:
4742
4812
  @property
4743
4813
  @pulumi.getter(name="authType")
4744
4814
  def auth_type(self) -> Optional[pulumi.Input[str]]:
4815
+ """
4816
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
4817
+ """
4745
4818
  return pulumi.get(self, "auth_type")
4746
4819
 
4747
4820
  @auth_type.setter
@@ -4852,6 +4925,9 @@ class SecretsMountMysqlArgs:
4852
4925
  @property
4853
4926
  @pulumi.getter(name="serviceAccountJson")
4854
4927
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
4928
+ """
4929
+ A JSON encoded credential for use with IAM authorization
4930
+ """
4855
4931
  return pulumi.get(self, "service_account_json")
4856
4932
 
4857
4933
  @service_account_json.setter
@@ -4941,8 +5017,10 @@ class SecretsMountMysqlAuroraArgs:
4941
5017
  username_template: Optional[pulumi.Input[str]] = None,
4942
5018
  verify_connection: Optional[pulumi.Input[bool]] = None):
4943
5019
  """
5020
+ :param pulumi.Input[str] name: Name of the database connection.
4944
5021
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
4945
5022
  connection.
5023
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
4946
5024
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
4947
5025
  See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
4948
5026
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
@@ -4956,6 +5034,7 @@ class SecretsMountMysqlAuroraArgs:
4956
5034
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
4957
5035
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
4958
5036
  :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
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
4959
5038
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
4960
5039
  :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.
4961
5040
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
@@ -5000,6 +5079,9 @@ class SecretsMountMysqlAuroraArgs:
5000
5079
  @property
5001
5080
  @pulumi.getter
5002
5081
  def name(self) -> pulumi.Input[str]:
5082
+ """
5083
+ Name of the database connection.
5084
+ """
5003
5085
  return pulumi.get(self, "name")
5004
5086
 
5005
5087
  @name.setter
@@ -5022,6 +5104,9 @@ class SecretsMountMysqlAuroraArgs:
5022
5104
  @property
5023
5105
  @pulumi.getter(name="authType")
5024
5106
  def auth_type(self) -> Optional[pulumi.Input[str]]:
5107
+ """
5108
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5109
+ """
5025
5110
  return pulumi.get(self, "auth_type")
5026
5111
 
5027
5112
  @auth_type.setter
@@ -5132,6 +5217,9 @@ class SecretsMountMysqlAuroraArgs:
5132
5217
  @property
5133
5218
  @pulumi.getter(name="serviceAccountJson")
5134
5219
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
5220
+ """
5221
+ A JSON encoded credential for use with IAM authorization
5222
+ """
5135
5223
  return pulumi.get(self, "service_account_json")
5136
5224
 
5137
5225
  @service_account_json.setter
@@ -5221,8 +5309,10 @@ class SecretsMountMysqlLegacyArgs:
5221
5309
  username_template: Optional[pulumi.Input[str]] = None,
5222
5310
  verify_connection: Optional[pulumi.Input[bool]] = None):
5223
5311
  """
5312
+ :param pulumi.Input[str] name: Name of the database connection.
5224
5313
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5225
5314
  connection.
5315
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5226
5316
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
5227
5317
  See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5228
5318
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
@@ -5236,6 +5326,7 @@ class SecretsMountMysqlLegacyArgs:
5236
5326
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
5237
5327
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5238
5328
  :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
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
5239
5330
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
5240
5331
  :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.
5241
5332
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
@@ -5280,6 +5371,9 @@ class SecretsMountMysqlLegacyArgs:
5280
5371
  @property
5281
5372
  @pulumi.getter
5282
5373
  def name(self) -> pulumi.Input[str]:
5374
+ """
5375
+ Name of the database connection.
5376
+ """
5283
5377
  return pulumi.get(self, "name")
5284
5378
 
5285
5379
  @name.setter
@@ -5302,6 +5396,9 @@ class SecretsMountMysqlLegacyArgs:
5302
5396
  @property
5303
5397
  @pulumi.getter(name="authType")
5304
5398
  def auth_type(self) -> Optional[pulumi.Input[str]]:
5399
+ """
5400
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5401
+ """
5305
5402
  return pulumi.get(self, "auth_type")
5306
5403
 
5307
5404
  @auth_type.setter
@@ -5412,6 +5509,9 @@ class SecretsMountMysqlLegacyArgs:
5412
5509
  @property
5413
5510
  @pulumi.getter(name="serviceAccountJson")
5414
5511
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
5512
+ """
5513
+ A JSON encoded credential for use with IAM authorization
5514
+ """
5415
5515
  return pulumi.get(self, "service_account_json")
5416
5516
 
5417
5517
  @service_account_json.setter
@@ -5501,8 +5601,10 @@ class SecretsMountMysqlRdArgs:
5501
5601
  username_template: Optional[pulumi.Input[str]] = None,
5502
5602
  verify_connection: Optional[pulumi.Input[bool]] = None):
5503
5603
  """
5604
+ :param pulumi.Input[str] name: Name of the database connection.
5504
5605
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5505
5606
  connection.
5607
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5506
5608
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
5507
5609
  See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
5508
5610
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
@@ -5516,6 +5618,7 @@ class SecretsMountMysqlRdArgs:
5516
5618
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
5517
5619
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5518
5620
  :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
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
5519
5622
  :param pulumi.Input[str] tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
5520
5623
  :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.
5521
5624
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
@@ -5560,6 +5663,9 @@ class SecretsMountMysqlRdArgs:
5560
5663
  @property
5561
5664
  @pulumi.getter
5562
5665
  def name(self) -> pulumi.Input[str]:
5666
+ """
5667
+ Name of the database connection.
5668
+ """
5563
5669
  return pulumi.get(self, "name")
5564
5670
 
5565
5671
  @name.setter
@@ -5582,6 +5688,9 @@ class SecretsMountMysqlRdArgs:
5582
5688
  @property
5583
5689
  @pulumi.getter(name="authType")
5584
5690
  def auth_type(self) -> Optional[pulumi.Input[str]]:
5691
+ """
5692
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
5693
+ """
5585
5694
  return pulumi.get(self, "auth_type")
5586
5695
 
5587
5696
  @auth_type.setter
@@ -5692,6 +5801,9 @@ class SecretsMountMysqlRdArgs:
5692
5801
  @property
5693
5802
  @pulumi.getter(name="serviceAccountJson")
5694
5803
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
5804
+ """
5805
+ A JSON encoded credential for use with IAM authorization
5806
+ """
5695
5807
  return pulumi.get(self, "service_account_json")
5696
5808
 
5697
5809
  @service_account_json.setter
@@ -5767,16 +5879,19 @@ class SecretsMountOracleArgs:
5767
5879
  allowed_roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
5768
5880
  connection_url: Optional[pulumi.Input[str]] = None,
5769
5881
  data: Optional[pulumi.Input[Mapping[str, Any]]] = None,
5882
+ disconnect_sessions: Optional[pulumi.Input[bool]] = None,
5770
5883
  max_connection_lifetime: Optional[pulumi.Input[int]] = None,
5771
5884
  max_idle_connections: Optional[pulumi.Input[int]] = None,
5772
5885
  max_open_connections: Optional[pulumi.Input[int]] = None,
5773
5886
  password: Optional[pulumi.Input[str]] = None,
5774
5887
  plugin_name: Optional[pulumi.Input[str]] = None,
5775
5888
  root_rotation_statements: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
5889
+ split_statements: Optional[pulumi.Input[bool]] = None,
5776
5890
  username: Optional[pulumi.Input[str]] = None,
5777
5891
  username_template: Optional[pulumi.Input[str]] = None,
5778
5892
  verify_connection: Optional[pulumi.Input[bool]] = None):
5779
5893
  """
5894
+ :param pulumi.Input[str] name: Name of the database connection.
5780
5895
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
5781
5896
  connection.
5782
5897
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
@@ -5784,6 +5899,7 @@ class SecretsMountOracleArgs:
5784
5899
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
5785
5900
 
5786
5901
  Supported list of database secrets engines that can be configured:
5902
+ :param pulumi.Input[bool] disconnect_sessions: Set to true to disconnect any open sessions prior to running the revocation statements.
5787
5903
  :param pulumi.Input[int] max_connection_lifetime: The maximum amount of time a connection may be reused.
5788
5904
  :param pulumi.Input[int] max_idle_connections: The maximum number of idle connections to
5789
5905
  the database.
@@ -5792,6 +5908,7 @@ class SecretsMountOracleArgs:
5792
5908
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
5793
5909
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
5794
5910
  :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
+ :param pulumi.Input[bool] split_statements: Set to true in order to split statements after semi-colons.
5795
5912
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
5796
5913
  :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
5797
5914
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
@@ -5804,6 +5921,8 @@ class SecretsMountOracleArgs:
5804
5921
  pulumi.set(__self__, "connection_url", connection_url)
5805
5922
  if data is not None:
5806
5923
  pulumi.set(__self__, "data", data)
5924
+ if disconnect_sessions is not None:
5925
+ pulumi.set(__self__, "disconnect_sessions", disconnect_sessions)
5807
5926
  if max_connection_lifetime is not None:
5808
5927
  pulumi.set(__self__, "max_connection_lifetime", max_connection_lifetime)
5809
5928
  if max_idle_connections is not None:
@@ -5816,6 +5935,8 @@ class SecretsMountOracleArgs:
5816
5935
  pulumi.set(__self__, "plugin_name", plugin_name)
5817
5936
  if root_rotation_statements is not None:
5818
5937
  pulumi.set(__self__, "root_rotation_statements", root_rotation_statements)
5938
+ if split_statements is not None:
5939
+ pulumi.set(__self__, "split_statements", split_statements)
5819
5940
  if username is not None:
5820
5941
  pulumi.set(__self__, "username", username)
5821
5942
  if username_template is not None:
@@ -5826,6 +5947,9 @@ class SecretsMountOracleArgs:
5826
5947
  @property
5827
5948
  @pulumi.getter
5828
5949
  def name(self) -> pulumi.Input[str]:
5950
+ """
5951
+ Name of the database connection.
5952
+ """
5829
5953
  return pulumi.get(self, "name")
5830
5954
 
5831
5955
  @name.setter
@@ -5872,6 +5996,18 @@ class SecretsMountOracleArgs:
5872
5996
  def data(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
5873
5997
  pulumi.set(self, "data", value)
5874
5998
 
5999
+ @property
6000
+ @pulumi.getter(name="disconnectSessions")
6001
+ def disconnect_sessions(self) -> Optional[pulumi.Input[bool]]:
6002
+ """
6003
+ Set to true to disconnect any open sessions prior to running the revocation statements.
6004
+ """
6005
+ return pulumi.get(self, "disconnect_sessions")
6006
+
6007
+ @disconnect_sessions.setter
6008
+ def disconnect_sessions(self, value: Optional[pulumi.Input[bool]]):
6009
+ pulumi.set(self, "disconnect_sessions", value)
6010
+
5875
6011
  @property
5876
6012
  @pulumi.getter(name="maxConnectionLifetime")
5877
6013
  def max_connection_lifetime(self) -> Optional[pulumi.Input[int]]:
@@ -5946,6 +6082,18 @@ class SecretsMountOracleArgs:
5946
6082
  def root_rotation_statements(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
5947
6083
  pulumi.set(self, "root_rotation_statements", value)
5948
6084
 
6085
+ @property
6086
+ @pulumi.getter(name="splitStatements")
6087
+ def split_statements(self) -> Optional[pulumi.Input[bool]]:
6088
+ """
6089
+ Set to true in order to split statements after semi-colons.
6090
+ """
6091
+ return pulumi.get(self, "split_statements")
6092
+
6093
+ @split_statements.setter
6094
+ def split_statements(self, value: Optional[pulumi.Input[bool]]):
6095
+ pulumi.set(self, "split_statements", value)
6096
+
5949
6097
  @property
5950
6098
  @pulumi.getter
5951
6099
  def username(self) -> Optional[pulumi.Input[str]]:
@@ -6004,8 +6152,10 @@ class SecretsMountPostgresqlArgs:
6004
6152
  username_template: Optional[pulumi.Input[str]] = None,
6005
6153
  verify_connection: Optional[pulumi.Input[bool]] = None):
6006
6154
  """
6155
+ :param pulumi.Input[str] name: Name of the database connection.
6007
6156
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6008
6157
  connection.
6158
+ :param pulumi.Input[str] auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
6009
6159
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
6010
6160
  See [Vault docs](https://www.vaultproject.io/api-docs/secret/databases/redshift#sample-payload)
6011
6161
  :param pulumi.Input[Mapping[str, Any]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
@@ -6020,6 +6170,7 @@ class SecretsMountPostgresqlArgs:
6020
6170
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
6021
6171
  :param pulumi.Input[str] plugin_name: Specifies the name of the plugin to use.
6022
6172
  :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
+ :param pulumi.Input[str] service_account_json: A JSON encoded credential for use with IAM authorization
6023
6174
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
6024
6175
  :param pulumi.Input[str] username_template: [Template](https://www.vaultproject.io/docs/concepts/username-templating) describing how dynamic usernames are generated.
6025
6176
  :param pulumi.Input[bool] verify_connection: Whether the connection should be verified on
@@ -6060,6 +6211,9 @@ class SecretsMountPostgresqlArgs:
6060
6211
  @property
6061
6212
  @pulumi.getter
6062
6213
  def name(self) -> pulumi.Input[str]:
6214
+ """
6215
+ Name of the database connection.
6216
+ """
6063
6217
  return pulumi.get(self, "name")
6064
6218
 
6065
6219
  @name.setter
@@ -6082,6 +6236,9 @@ class SecretsMountPostgresqlArgs:
6082
6236
  @property
6083
6237
  @pulumi.getter(name="authType")
6084
6238
  def auth_type(self) -> Optional[pulumi.Input[str]]:
6239
+ """
6240
+ Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
6241
+ """
6085
6242
  return pulumi.get(self, "auth_type")
6086
6243
 
6087
6244
  @auth_type.setter
@@ -6204,6 +6361,9 @@ class SecretsMountPostgresqlArgs:
6204
6361
  @property
6205
6362
  @pulumi.getter(name="serviceAccountJson")
6206
6363
  def service_account_json(self) -> Optional[pulumi.Input[str]]:
6364
+ """
6365
+ A JSON encoded credential for use with IAM authorization
6366
+ """
6207
6367
  return pulumi.get(self, "service_account_json")
6208
6368
 
6209
6369
  @service_account_json.setter
@@ -6266,6 +6426,7 @@ class SecretsMountRediArgs:
6266
6426
  verify_connection: Optional[pulumi.Input[bool]] = None):
6267
6427
  """
6268
6428
  :param pulumi.Input[str] host: The host to connect to.
6429
+ :param pulumi.Input[str] name: Name of the database connection.
6269
6430
  :param pulumi.Input[str] password: The root credential password used in the connection URL.
6270
6431
  :param pulumi.Input[str] username: The root credential username used in the connection URL.
6271
6432
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
@@ -6322,6 +6483,9 @@ class SecretsMountRediArgs:
6322
6483
  @property
6323
6484
  @pulumi.getter
6324
6485
  def name(self) -> pulumi.Input[str]:
6486
+ """
6487
+ Name of the database connection.
6488
+ """
6325
6489
  return pulumi.get(self, "name")
6326
6490
 
6327
6491
  @name.setter
@@ -6481,6 +6645,7 @@ class SecretsMountRedisElasticachArgs:
6481
6645
  username: Optional[pulumi.Input[str]] = None,
6482
6646
  verify_connection: Optional[pulumi.Input[bool]] = None):
6483
6647
  """
6648
+ :param pulumi.Input[str] name: Name of the database connection.
6484
6649
  :param pulumi.Input[str] url: The URL for Elasticsearch's API. https requires certificate
6485
6650
  by trusted CA if used.
6486
6651
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
@@ -6519,6 +6684,9 @@ class SecretsMountRedisElasticachArgs:
6519
6684
  @property
6520
6685
  @pulumi.getter
6521
6686
  def name(self) -> pulumi.Input[str]:
6687
+ """
6688
+ Name of the database connection.
6689
+ """
6522
6690
  return pulumi.get(self, "name")
6523
6691
 
6524
6692
  @name.setter
@@ -6658,6 +6826,7 @@ class SecretsMountRedshiftArgs:
6658
6826
  username_template: Optional[pulumi.Input[str]] = None,
6659
6827
  verify_connection: Optional[pulumi.Input[bool]] = None):
6660
6828
  """
6829
+ :param pulumi.Input[str] name: Name of the database connection.
6661
6830
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6662
6831
  connection.
6663
6832
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
@@ -6710,6 +6879,9 @@ class SecretsMountRedshiftArgs:
6710
6879
  @property
6711
6880
  @pulumi.getter
6712
6881
  def name(self) -> pulumi.Input[str]:
6882
+ """
6883
+ Name of the database connection.
6884
+ """
6713
6885
  return pulumi.get(self, "name")
6714
6886
 
6715
6887
  @name.setter
@@ -6897,6 +7069,7 @@ class SecretsMountSnowflakeArgs:
6897
7069
  username_template: Optional[pulumi.Input[str]] = None,
6898
7070
  verify_connection: Optional[pulumi.Input[bool]] = None):
6899
7071
  """
7072
+ :param pulumi.Input[str] name: Name of the database connection.
6900
7073
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_roles: A list of roles that are allowed to use this
6901
7074
  connection.
6902
7075
  :param pulumi.Input[str] connection_url: Specifies the Redshift DSN.
@@ -6946,6 +7119,9 @@ class SecretsMountSnowflakeArgs:
6946
7119
  @property
6947
7120
  @pulumi.getter
6948
7121
  def name(self) -> pulumi.Input[str]:
7122
+ """
7123
+ Name of the database connection.
7124
+ """
6949
7125
  return pulumi.get(self, "name")
6950
7126
 
6951
7127
  @name.setter