pulumi-vault 6.7.0a1743576047__py3-none-any.whl → 6.7.0a1744267302__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 (264) hide show
  1. pulumi_vault/__init__.py +1 -0
  2. pulumi_vault/_inputs.py +554 -553
  3. pulumi_vault/ad/__init__.py +1 -0
  4. pulumi_vault/ad/get_access_credentials.py +20 -19
  5. pulumi_vault/ad/secret_backend.py +477 -476
  6. pulumi_vault/ad/secret_library.py +99 -98
  7. pulumi_vault/ad/secret_role.py +85 -84
  8. pulumi_vault/alicloud/__init__.py +1 -0
  9. pulumi_vault/alicloud/auth_backend_role.py +183 -182
  10. pulumi_vault/approle/__init__.py +1 -0
  11. pulumi_vault/approle/auth_backend_login.py +106 -105
  12. pulumi_vault/approle/auth_backend_role.py +239 -238
  13. pulumi_vault/approle/auth_backend_role_secret_id.py +162 -161
  14. pulumi_vault/approle/get_auth_backend_role_id.py +18 -17
  15. pulumi_vault/audit.py +85 -84
  16. pulumi_vault/audit_request_header.py +43 -42
  17. pulumi_vault/auth_backend.py +106 -105
  18. pulumi_vault/aws/__init__.py +1 -0
  19. pulumi_vault/aws/auth_backend_cert.py +71 -70
  20. pulumi_vault/aws/auth_backend_client.py +253 -252
  21. pulumi_vault/aws/auth_backend_config_identity.py +85 -84
  22. pulumi_vault/aws/auth_backend_identity_whitelist.py +57 -56
  23. pulumi_vault/aws/auth_backend_login.py +209 -208
  24. pulumi_vault/aws/auth_backend_role.py +400 -399
  25. pulumi_vault/aws/auth_backend_role_tag.py +127 -126
  26. pulumi_vault/aws/auth_backend_roletag_blacklist.py +57 -56
  27. pulumi_vault/aws/auth_backend_sts_role.py +71 -70
  28. pulumi_vault/aws/get_access_credentials.py +44 -43
  29. pulumi_vault/aws/get_static_access_credentials.py +13 -12
  30. pulumi_vault/aws/secret_backend.py +337 -336
  31. pulumi_vault/aws/secret_backend_role.py +211 -210
  32. pulumi_vault/aws/secret_backend_static_role.py +113 -112
  33. pulumi_vault/azure/__init__.py +1 -0
  34. pulumi_vault/azure/_inputs.py +21 -20
  35. pulumi_vault/azure/auth_backend_config.py +183 -182
  36. pulumi_vault/azure/auth_backend_role.py +253 -252
  37. pulumi_vault/azure/backend.py +239 -238
  38. pulumi_vault/azure/backend_role.py +141 -140
  39. pulumi_vault/azure/get_access_credentials.py +58 -57
  40. pulumi_vault/azure/outputs.py +11 -10
  41. pulumi_vault/cert_auth_backend_role.py +365 -364
  42. pulumi_vault/config/__init__.py +1 -0
  43. pulumi_vault/config/__init__.pyi +1 -0
  44. pulumi_vault/config/_inputs.py +11 -10
  45. pulumi_vault/config/outputs.py +287 -286
  46. pulumi_vault/config/ui_custom_message.py +113 -112
  47. pulumi_vault/config/vars.py +1 -0
  48. pulumi_vault/consul/__init__.py +1 -0
  49. pulumi_vault/consul/secret_backend.py +197 -196
  50. pulumi_vault/consul/secret_backend_role.py +183 -182
  51. pulumi_vault/database/__init__.py +1 -0
  52. pulumi_vault/database/_inputs.py +2525 -2524
  53. pulumi_vault/database/outputs.py +1529 -1528
  54. pulumi_vault/database/secret_backend_connection.py +169 -168
  55. pulumi_vault/database/secret_backend_role.py +169 -168
  56. pulumi_vault/database/secret_backend_static_role.py +179 -178
  57. pulumi_vault/database/secrets_mount.py +267 -266
  58. pulumi_vault/egp_policy.py +71 -70
  59. pulumi_vault/gcp/__init__.py +1 -0
  60. pulumi_vault/gcp/_inputs.py +82 -81
  61. pulumi_vault/gcp/auth_backend.py +260 -259
  62. pulumi_vault/gcp/auth_backend_role.py +281 -280
  63. pulumi_vault/gcp/get_auth_backend_role.py +70 -69
  64. pulumi_vault/gcp/outputs.py +50 -49
  65. pulumi_vault/gcp/secret_backend.py +232 -231
  66. pulumi_vault/gcp/secret_impersonated_account.py +92 -91
  67. pulumi_vault/gcp/secret_roleset.py +92 -91
  68. pulumi_vault/gcp/secret_static_account.py +92 -91
  69. pulumi_vault/generic/__init__.py +1 -0
  70. pulumi_vault/generic/endpoint.py +113 -112
  71. pulumi_vault/generic/get_secret.py +28 -27
  72. pulumi_vault/generic/secret.py +78 -77
  73. pulumi_vault/get_auth_backend.py +19 -18
  74. pulumi_vault/get_auth_backends.py +14 -13
  75. pulumi_vault/get_namespace.py +15 -14
  76. pulumi_vault/get_namespaces.py +8 -7
  77. pulumi_vault/get_nomad_access_token.py +19 -18
  78. pulumi_vault/get_policy_document.py +6 -5
  79. pulumi_vault/get_raft_autopilot_state.py +18 -17
  80. pulumi_vault/github/__init__.py +1 -0
  81. pulumi_vault/github/_inputs.py +42 -41
  82. pulumi_vault/github/auth_backend.py +232 -231
  83. pulumi_vault/github/outputs.py +26 -25
  84. pulumi_vault/github/team.py +57 -56
  85. pulumi_vault/github/user.py +57 -56
  86. pulumi_vault/identity/__init__.py +1 -0
  87. pulumi_vault/identity/entity.py +85 -84
  88. pulumi_vault/identity/entity_alias.py +71 -70
  89. pulumi_vault/identity/entity_policies.py +64 -63
  90. pulumi_vault/identity/get_entity.py +43 -42
  91. pulumi_vault/identity/get_group.py +50 -49
  92. pulumi_vault/identity/get_oidc_client_creds.py +14 -13
  93. pulumi_vault/identity/get_oidc_openid_config.py +24 -23
  94. pulumi_vault/identity/get_oidc_public_keys.py +13 -12
  95. pulumi_vault/identity/group.py +141 -140
  96. pulumi_vault/identity/group_alias.py +57 -56
  97. pulumi_vault/identity/group_member_entity_ids.py +57 -56
  98. pulumi_vault/identity/group_member_group_ids.py +57 -56
  99. pulumi_vault/identity/group_policies.py +64 -63
  100. pulumi_vault/identity/mfa_duo.py +148 -147
  101. pulumi_vault/identity/mfa_login_enforcement.py +120 -119
  102. pulumi_vault/identity/mfa_okta.py +134 -133
  103. pulumi_vault/identity/mfa_pingid.py +127 -126
  104. pulumi_vault/identity/mfa_totp.py +176 -175
  105. pulumi_vault/identity/oidc.py +29 -28
  106. pulumi_vault/identity/oidc_assignment.py +57 -56
  107. pulumi_vault/identity/oidc_client.py +127 -126
  108. pulumi_vault/identity/oidc_key.py +85 -84
  109. pulumi_vault/identity/oidc_key_allowed_client_id.py +43 -42
  110. pulumi_vault/identity/oidc_provider.py +92 -91
  111. pulumi_vault/identity/oidc_role.py +85 -84
  112. pulumi_vault/identity/oidc_scope.py +57 -56
  113. pulumi_vault/identity/outputs.py +32 -31
  114. pulumi_vault/jwt/__init__.py +1 -0
  115. pulumi_vault/jwt/_inputs.py +42 -41
  116. pulumi_vault/jwt/auth_backend.py +288 -287
  117. pulumi_vault/jwt/auth_backend_role.py +407 -406
  118. pulumi_vault/jwt/outputs.py +26 -25
  119. pulumi_vault/kmip/__init__.py +1 -0
  120. pulumi_vault/kmip/secret_backend.py +183 -182
  121. pulumi_vault/kmip/secret_role.py +295 -294
  122. pulumi_vault/kmip/secret_scope.py +57 -56
  123. pulumi_vault/kubernetes/__init__.py +1 -0
  124. pulumi_vault/kubernetes/auth_backend_config.py +141 -140
  125. pulumi_vault/kubernetes/auth_backend_role.py +225 -224
  126. pulumi_vault/kubernetes/get_auth_backend_config.py +47 -46
  127. pulumi_vault/kubernetes/get_auth_backend_role.py +70 -69
  128. pulumi_vault/kubernetes/get_service_account_token.py +38 -37
  129. pulumi_vault/kubernetes/secret_backend.py +316 -315
  130. pulumi_vault/kubernetes/secret_backend_role.py +197 -196
  131. pulumi_vault/kv/__init__.py +1 -0
  132. pulumi_vault/kv/_inputs.py +21 -20
  133. pulumi_vault/kv/get_secret.py +17 -16
  134. pulumi_vault/kv/get_secret_subkeys_v2.py +30 -29
  135. pulumi_vault/kv/get_secret_v2.py +29 -28
  136. pulumi_vault/kv/get_secrets_list.py +13 -12
  137. pulumi_vault/kv/get_secrets_list_v2.py +19 -18
  138. pulumi_vault/kv/outputs.py +13 -12
  139. pulumi_vault/kv/secret.py +50 -49
  140. pulumi_vault/kv/secret_backend_v2.py +71 -70
  141. pulumi_vault/kv/secret_v2.py +134 -133
  142. pulumi_vault/ldap/__init__.py +1 -0
  143. pulumi_vault/ldap/auth_backend.py +588 -587
  144. pulumi_vault/ldap/auth_backend_group.py +57 -56
  145. pulumi_vault/ldap/auth_backend_user.py +71 -70
  146. pulumi_vault/ldap/get_dynamic_credentials.py +17 -16
  147. pulumi_vault/ldap/get_static_credentials.py +18 -17
  148. pulumi_vault/ldap/secret_backend.py +554 -553
  149. pulumi_vault/ldap/secret_backend_dynamic_role.py +127 -126
  150. pulumi_vault/ldap/secret_backend_library_set.py +99 -98
  151. pulumi_vault/ldap/secret_backend_static_role.py +99 -98
  152. pulumi_vault/managed/__init__.py +1 -0
  153. pulumi_vault/managed/_inputs.py +229 -228
  154. pulumi_vault/managed/keys.py +15 -14
  155. pulumi_vault/managed/outputs.py +139 -138
  156. pulumi_vault/mfa_duo.py +113 -112
  157. pulumi_vault/mfa_okta.py +113 -112
  158. pulumi_vault/mfa_pingid.py +120 -119
  159. pulumi_vault/mfa_totp.py +127 -126
  160. pulumi_vault/mongodbatlas/__init__.py +1 -0
  161. pulumi_vault/mongodbatlas/secret_backend.py +64 -63
  162. pulumi_vault/mongodbatlas/secret_role.py +155 -154
  163. pulumi_vault/mount.py +274 -273
  164. pulumi_vault/namespace.py +64 -63
  165. pulumi_vault/nomad_secret_backend.py +211 -210
  166. pulumi_vault/nomad_secret_role.py +85 -84
  167. pulumi_vault/okta/__init__.py +1 -0
  168. pulumi_vault/okta/_inputs.py +26 -25
  169. pulumi_vault/okta/auth_backend.py +274 -273
  170. pulumi_vault/okta/auth_backend_group.py +57 -56
  171. pulumi_vault/okta/auth_backend_user.py +71 -70
  172. pulumi_vault/okta/outputs.py +16 -15
  173. pulumi_vault/outputs.py +56 -55
  174. pulumi_vault/password_policy.py +43 -42
  175. pulumi_vault/pkisecret/__init__.py +1 -0
  176. pulumi_vault/pkisecret/_inputs.py +31 -30
  177. pulumi_vault/pkisecret/backend_acme_eab.py +92 -91
  178. pulumi_vault/pkisecret/backend_config_acme.py +141 -140
  179. pulumi_vault/pkisecret/backend_config_auto_tidy.py +323 -322
  180. pulumi_vault/pkisecret/backend_config_cluster.py +57 -56
  181. pulumi_vault/pkisecret/backend_config_cmpv2.py +106 -105
  182. pulumi_vault/pkisecret/backend_config_est.py +120 -119
  183. pulumi_vault/pkisecret/get_backend_cert_metadata.py +22 -21
  184. pulumi_vault/pkisecret/get_backend_config_cmpv2.py +22 -21
  185. pulumi_vault/pkisecret/get_backend_config_est.py +19 -18
  186. pulumi_vault/pkisecret/get_backend_issuer.py +45 -44
  187. pulumi_vault/pkisecret/get_backend_issuers.py +15 -14
  188. pulumi_vault/pkisecret/get_backend_key.py +20 -19
  189. pulumi_vault/pkisecret/get_backend_keys.py +15 -14
  190. pulumi_vault/pkisecret/outputs.py +28 -27
  191. pulumi_vault/pkisecret/secret_backend_cert.py +337 -336
  192. pulumi_vault/pkisecret/secret_backend_config_ca.py +43 -42
  193. pulumi_vault/pkisecret/secret_backend_config_issuers.py +57 -56
  194. pulumi_vault/pkisecret/secret_backend_config_urls.py +85 -84
  195. pulumi_vault/pkisecret/secret_backend_crl_config.py +197 -196
  196. pulumi_vault/pkisecret/secret_backend_intermediate_cert_request.py +421 -420
  197. pulumi_vault/pkisecret/secret_backend_intermediate_set_signed.py +57 -56
  198. pulumi_vault/pkisecret/secret_backend_issuer.py +232 -231
  199. pulumi_vault/pkisecret/secret_backend_key.py +120 -119
  200. pulumi_vault/pkisecret/secret_backend_role.py +715 -714
  201. pulumi_vault/pkisecret/secret_backend_root_cert.py +554 -553
  202. pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +526 -525
  203. pulumi_vault/pkisecret/secret_backend_sign.py +281 -280
  204. pulumi_vault/plugin.py +127 -126
  205. pulumi_vault/plugin_pinned_version.py +43 -42
  206. pulumi_vault/policy.py +43 -42
  207. pulumi_vault/provider.py +120 -119
  208. pulumi_vault/pulumi-plugin.json +1 -1
  209. pulumi_vault/quota_lease_count.py +85 -84
  210. pulumi_vault/quota_rate_limit.py +113 -112
  211. pulumi_vault/rabbitmq/__init__.py +1 -0
  212. pulumi_vault/rabbitmq/_inputs.py +41 -40
  213. pulumi_vault/rabbitmq/outputs.py +25 -24
  214. pulumi_vault/rabbitmq/secret_backend.py +169 -168
  215. pulumi_vault/rabbitmq/secret_backend_role.py +57 -56
  216. pulumi_vault/raft_autopilot.py +113 -112
  217. pulumi_vault/raft_snapshot_agent_config.py +393 -392
  218. pulumi_vault/rgp_policy.py +57 -56
  219. pulumi_vault/saml/__init__.py +1 -0
  220. pulumi_vault/saml/auth_backend.py +155 -154
  221. pulumi_vault/saml/auth_backend_role.py +239 -238
  222. pulumi_vault/secrets/__init__.py +1 -0
  223. pulumi_vault/secrets/_inputs.py +16 -15
  224. pulumi_vault/secrets/outputs.py +10 -9
  225. pulumi_vault/secrets/sync_association.py +71 -70
  226. pulumi_vault/secrets/sync_aws_destination.py +148 -147
  227. pulumi_vault/secrets/sync_azure_destination.py +148 -147
  228. pulumi_vault/secrets/sync_config.py +43 -42
  229. pulumi_vault/secrets/sync_gcp_destination.py +106 -105
  230. pulumi_vault/secrets/sync_gh_destination.py +134 -133
  231. pulumi_vault/secrets/sync_github_apps.py +64 -63
  232. pulumi_vault/secrets/sync_vercel_destination.py +120 -119
  233. pulumi_vault/ssh/__init__.py +1 -0
  234. pulumi_vault/ssh/_inputs.py +11 -10
  235. pulumi_vault/ssh/get_secret_backend_sign.py +52 -51
  236. pulumi_vault/ssh/outputs.py +7 -6
  237. pulumi_vault/ssh/secret_backend_ca.py +99 -98
  238. pulumi_vault/ssh/secret_backend_role.py +365 -364
  239. pulumi_vault/terraformcloud/__init__.py +1 -0
  240. pulumi_vault/terraformcloud/secret_backend.py +111 -110
  241. pulumi_vault/terraformcloud/secret_creds.py +74 -73
  242. pulumi_vault/terraformcloud/secret_role.py +93 -92
  243. pulumi_vault/token.py +246 -245
  244. pulumi_vault/tokenauth/__init__.py +1 -0
  245. pulumi_vault/tokenauth/auth_backend_role.py +267 -266
  246. pulumi_vault/transform/__init__.py +1 -0
  247. pulumi_vault/transform/alphabet.py +57 -56
  248. pulumi_vault/transform/get_decode.py +47 -46
  249. pulumi_vault/transform/get_encode.py +47 -46
  250. pulumi_vault/transform/role.py +57 -56
  251. pulumi_vault/transform/template.py +113 -112
  252. pulumi_vault/transform/transformation.py +141 -140
  253. pulumi_vault/transit/__init__.py +1 -0
  254. pulumi_vault/transit/get_decrypt.py +18 -17
  255. pulumi_vault/transit/get_encrypt.py +21 -20
  256. pulumi_vault/transit/get_sign.py +54 -53
  257. pulumi_vault/transit/get_verify.py +60 -59
  258. pulumi_vault/transit/secret_backend_key.py +274 -273
  259. pulumi_vault/transit/secret_cache_config.py +43 -42
  260. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/METADATA +1 -1
  261. pulumi_vault-6.7.0a1744267302.dist-info/RECORD +265 -0
  262. pulumi_vault-6.7.0a1743576047.dist-info/RECORD +0 -265
  263. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/WHEEL +0 -0
  264. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -35,18 +36,18 @@ __all__ = [
35
36
  @pulumi.output_type
36
37
  class UiCustomMessageLink(dict):
37
38
  def __init__(__self__, *,
38
- href: str,
39
- title: str):
39
+ href: builtins.str,
40
+ title: builtins.str):
40
41
  """
41
- :param str href: The URL of the hyperlink
42
- :param str title: The title of the hyperlink
42
+ :param builtins.str href: The URL of the hyperlink
43
+ :param builtins.str title: The title of the hyperlink
43
44
  """
44
45
  pulumi.set(__self__, "href", href)
45
46
  pulumi.set(__self__, "title", title)
46
47
 
47
48
  @property
48
49
  @pulumi.getter
49
- def href(self) -> str:
50
+ def href(self) -> builtins.str:
50
51
  """
51
52
  The URL of the hyperlink
52
53
  """
@@ -54,7 +55,7 @@ class UiCustomMessageLink(dict):
54
55
 
55
56
  @property
56
57
  @pulumi.getter
57
- def title(self) -> str:
58
+ def title(self) -> builtins.str:
58
59
  """
59
60
  The title of the hyperlink
60
61
  """
@@ -64,14 +65,14 @@ class UiCustomMessageLink(dict):
64
65
  @pulumi.output_type
65
66
  class AuthLogin(dict):
66
67
  def __init__(__self__, *,
67
- path: str,
68
- method: Optional[str] = None,
69
- namespace: Optional[str] = None,
70
- parameters: Optional[Mapping[str, str]] = None,
71
- use_root_namespace: Optional[bool] = None):
68
+ path: builtins.str,
69
+ method: Optional[builtins.str] = None,
70
+ namespace: Optional[builtins.str] = None,
71
+ parameters: Optional[Mapping[str, builtins.str]] = None,
72
+ use_root_namespace: Optional[builtins.bool] = None):
72
73
  """
73
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
74
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
74
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
75
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
75
76
  """
76
77
  pulumi.set(__self__, "path", path)
77
78
  if method is not None:
@@ -85,17 +86,17 @@ class AuthLogin(dict):
85
86
 
86
87
  @property
87
88
  @pulumi.getter
88
- def path(self) -> str:
89
+ def path(self) -> builtins.str:
89
90
  return pulumi.get(self, "path")
90
91
 
91
92
  @property
92
93
  @pulumi.getter
93
- def method(self) -> Optional[str]:
94
+ def method(self) -> Optional[builtins.str]:
94
95
  return pulumi.get(self, "method")
95
96
 
96
97
  @property
97
98
  @pulumi.getter
98
- def namespace(self) -> Optional[str]:
99
+ def namespace(self) -> Optional[builtins.str]:
99
100
  """
100
101
  The authentication engine's namespace. Conflicts with use_root_namespace
101
102
  """
@@ -103,12 +104,12 @@ class AuthLogin(dict):
103
104
 
104
105
  @property
105
106
  @pulumi.getter
106
- def parameters(self) -> Optional[Mapping[str, str]]:
107
+ def parameters(self) -> Optional[Mapping[str, builtins.str]]:
107
108
  return pulumi.get(self, "parameters")
108
109
 
109
110
  @property
110
111
  @pulumi.getter(name="useRootNamespace")
111
- def use_root_namespace(self) -> Optional[bool]:
112
+ def use_root_namespace(self) -> Optional[builtins.bool]:
112
113
  """
113
114
  Authenticate to the root Vault namespace. Conflicts with namespace
114
115
  """
@@ -118,39 +119,39 @@ class AuthLogin(dict):
118
119
  @pulumi.output_type
119
120
  class AuthLoginAws(dict):
120
121
  def __init__(__self__, *,
121
- role: str,
122
- aws_access_key_id: Optional[str] = None,
123
- aws_iam_endpoint: Optional[str] = None,
124
- aws_profile: Optional[str] = None,
125
- aws_region: Optional[str] = None,
126
- aws_role_arn: Optional[str] = None,
127
- aws_role_session_name: Optional[str] = None,
128
- aws_secret_access_key: Optional[str] = None,
129
- aws_session_token: Optional[str] = None,
130
- aws_shared_credentials_file: Optional[str] = None,
131
- aws_sts_endpoint: Optional[str] = None,
132
- aws_web_identity_token_file: Optional[str] = None,
133
- header_value: Optional[str] = None,
134
- mount: Optional[str] = None,
135
- namespace: Optional[str] = None,
136
- use_root_namespace: Optional[bool] = None):
137
- """
138
- :param str role: The Vault role to use when logging into Vault.
139
- :param str aws_access_key_id: The AWS access key ID.
140
- :param str aws_iam_endpoint: The IAM endpoint URL.
141
- :param str aws_profile: The name of the AWS profile.
142
- :param str aws_region: The AWS region.
143
- :param str aws_role_arn: The ARN of the AWS Role to assume.Used during STS AssumeRole
144
- :param str aws_role_session_name: Specifies the name to attach to the AWS role session. Used during STS AssumeRole
145
- :param str aws_secret_access_key: The AWS secret access key.
146
- :param str aws_session_token: The AWS session token.
147
- :param str aws_shared_credentials_file: Path to the AWS shared credentials file.
148
- :param str aws_sts_endpoint: The STS endpoint URL.
149
- :param str aws_web_identity_token_file: Path to the file containing an OAuth 2.0 access token or OpenID Connect ID token.
150
- :param str header_value: The Vault header value to include in the STS signing request.
151
- :param str mount: The path where the authentication engine is mounted.
152
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
153
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
122
+ role: builtins.str,
123
+ aws_access_key_id: Optional[builtins.str] = None,
124
+ aws_iam_endpoint: Optional[builtins.str] = None,
125
+ aws_profile: Optional[builtins.str] = None,
126
+ aws_region: Optional[builtins.str] = None,
127
+ aws_role_arn: Optional[builtins.str] = None,
128
+ aws_role_session_name: Optional[builtins.str] = None,
129
+ aws_secret_access_key: Optional[builtins.str] = None,
130
+ aws_session_token: Optional[builtins.str] = None,
131
+ aws_shared_credentials_file: Optional[builtins.str] = None,
132
+ aws_sts_endpoint: Optional[builtins.str] = None,
133
+ aws_web_identity_token_file: Optional[builtins.str] = None,
134
+ header_value: Optional[builtins.str] = None,
135
+ mount: Optional[builtins.str] = None,
136
+ namespace: Optional[builtins.str] = None,
137
+ use_root_namespace: Optional[builtins.bool] = None):
138
+ """
139
+ :param builtins.str role: The Vault role to use when logging into Vault.
140
+ :param builtins.str aws_access_key_id: The AWS access key ID.
141
+ :param builtins.str aws_iam_endpoint: The IAM endpoint URL.
142
+ :param builtins.str aws_profile: The name of the AWS profile.
143
+ :param builtins.str aws_region: The AWS region.
144
+ :param builtins.str aws_role_arn: The ARN of the AWS Role to assume.Used during STS AssumeRole
145
+ :param builtins.str aws_role_session_name: Specifies the name to attach to the AWS role session. Used during STS AssumeRole
146
+ :param builtins.str aws_secret_access_key: The AWS secret access key.
147
+ :param builtins.str aws_session_token: The AWS session token.
148
+ :param builtins.str aws_shared_credentials_file: Path to the AWS shared credentials file.
149
+ :param builtins.str aws_sts_endpoint: The STS endpoint URL.
150
+ :param builtins.str aws_web_identity_token_file: Path to the file containing an OAuth 2.0 access token or OpenID Connect ID token.
151
+ :param builtins.str header_value: The Vault header value to include in the STS signing request.
152
+ :param builtins.str mount: The path where the authentication engine is mounted.
153
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
154
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
154
155
  """
155
156
  pulumi.set(__self__, "role", role)
156
157
  if aws_access_key_id is not None:
@@ -186,7 +187,7 @@ class AuthLoginAws(dict):
186
187
 
187
188
  @property
188
189
  @pulumi.getter
189
- def role(self) -> str:
190
+ def role(self) -> builtins.str:
190
191
  """
191
192
  The Vault role to use when logging into Vault.
192
193
  """
@@ -194,7 +195,7 @@ class AuthLoginAws(dict):
194
195
 
195
196
  @property
196
197
  @pulumi.getter(name="awsAccessKeyId")
197
- def aws_access_key_id(self) -> Optional[str]:
198
+ def aws_access_key_id(self) -> Optional[builtins.str]:
198
199
  """
199
200
  The AWS access key ID.
200
201
  """
@@ -202,7 +203,7 @@ class AuthLoginAws(dict):
202
203
 
203
204
  @property
204
205
  @pulumi.getter(name="awsIamEndpoint")
205
- def aws_iam_endpoint(self) -> Optional[str]:
206
+ def aws_iam_endpoint(self) -> Optional[builtins.str]:
206
207
  """
207
208
  The IAM endpoint URL.
208
209
  """
@@ -210,7 +211,7 @@ class AuthLoginAws(dict):
210
211
 
211
212
  @property
212
213
  @pulumi.getter(name="awsProfile")
213
- def aws_profile(self) -> Optional[str]:
214
+ def aws_profile(self) -> Optional[builtins.str]:
214
215
  """
215
216
  The name of the AWS profile.
216
217
  """
@@ -218,7 +219,7 @@ class AuthLoginAws(dict):
218
219
 
219
220
  @property
220
221
  @pulumi.getter(name="awsRegion")
221
- def aws_region(self) -> Optional[str]:
222
+ def aws_region(self) -> Optional[builtins.str]:
222
223
  """
223
224
  The AWS region.
224
225
  """
@@ -226,7 +227,7 @@ class AuthLoginAws(dict):
226
227
 
227
228
  @property
228
229
  @pulumi.getter(name="awsRoleArn")
229
- def aws_role_arn(self) -> Optional[str]:
230
+ def aws_role_arn(self) -> Optional[builtins.str]:
230
231
  """
231
232
  The ARN of the AWS Role to assume.Used during STS AssumeRole
232
233
  """
@@ -234,7 +235,7 @@ class AuthLoginAws(dict):
234
235
 
235
236
  @property
236
237
  @pulumi.getter(name="awsRoleSessionName")
237
- def aws_role_session_name(self) -> Optional[str]:
238
+ def aws_role_session_name(self) -> Optional[builtins.str]:
238
239
  """
239
240
  Specifies the name to attach to the AWS role session. Used during STS AssumeRole
240
241
  """
@@ -242,7 +243,7 @@ class AuthLoginAws(dict):
242
243
 
243
244
  @property
244
245
  @pulumi.getter(name="awsSecretAccessKey")
245
- def aws_secret_access_key(self) -> Optional[str]:
246
+ def aws_secret_access_key(self) -> Optional[builtins.str]:
246
247
  """
247
248
  The AWS secret access key.
248
249
  """
@@ -250,7 +251,7 @@ class AuthLoginAws(dict):
250
251
 
251
252
  @property
252
253
  @pulumi.getter(name="awsSessionToken")
253
- def aws_session_token(self) -> Optional[str]:
254
+ def aws_session_token(self) -> Optional[builtins.str]:
254
255
  """
255
256
  The AWS session token.
256
257
  """
@@ -258,7 +259,7 @@ class AuthLoginAws(dict):
258
259
 
259
260
  @property
260
261
  @pulumi.getter(name="awsSharedCredentialsFile")
261
- def aws_shared_credentials_file(self) -> Optional[str]:
262
+ def aws_shared_credentials_file(self) -> Optional[builtins.str]:
262
263
  """
263
264
  Path to the AWS shared credentials file.
264
265
  """
@@ -266,7 +267,7 @@ class AuthLoginAws(dict):
266
267
 
267
268
  @property
268
269
  @pulumi.getter(name="awsStsEndpoint")
269
- def aws_sts_endpoint(self) -> Optional[str]:
270
+ def aws_sts_endpoint(self) -> Optional[builtins.str]:
270
271
  """
271
272
  The STS endpoint URL.
272
273
  """
@@ -274,7 +275,7 @@ class AuthLoginAws(dict):
274
275
 
275
276
  @property
276
277
  @pulumi.getter(name="awsWebIdentityTokenFile")
277
- def aws_web_identity_token_file(self) -> Optional[str]:
278
+ def aws_web_identity_token_file(self) -> Optional[builtins.str]:
278
279
  """
279
280
  Path to the file containing an OAuth 2.0 access token or OpenID Connect ID token.
280
281
  """
@@ -282,7 +283,7 @@ class AuthLoginAws(dict):
282
283
 
283
284
  @property
284
285
  @pulumi.getter(name="headerValue")
285
- def header_value(self) -> Optional[str]:
286
+ def header_value(self) -> Optional[builtins.str]:
286
287
  """
287
288
  The Vault header value to include in the STS signing request.
288
289
  """
@@ -290,7 +291,7 @@ class AuthLoginAws(dict):
290
291
 
291
292
  @property
292
293
  @pulumi.getter
293
- def mount(self) -> Optional[str]:
294
+ def mount(self) -> Optional[builtins.str]:
294
295
  """
295
296
  The path where the authentication engine is mounted.
296
297
  """
@@ -298,7 +299,7 @@ class AuthLoginAws(dict):
298
299
 
299
300
  @property
300
301
  @pulumi.getter
301
- def namespace(self) -> Optional[str]:
302
+ def namespace(self) -> Optional[builtins.str]:
302
303
  """
303
304
  The authentication engine's namespace. Conflicts with use_root_namespace
304
305
  """
@@ -306,7 +307,7 @@ class AuthLoginAws(dict):
306
307
 
307
308
  @property
308
309
  @pulumi.getter(name="useRootNamespace")
309
- def use_root_namespace(self) -> Optional[bool]:
310
+ def use_root_namespace(self) -> Optional[builtins.bool]:
310
311
  """
311
312
  Authenticate to the root Vault namespace. Conflicts with namespace
312
313
  """
@@ -316,31 +317,31 @@ class AuthLoginAws(dict):
316
317
  @pulumi.output_type
317
318
  class AuthLoginAzure(dict):
318
319
  def __init__(__self__, *,
319
- resource_group_name: str,
320
- role: str,
321
- subscription_id: str,
322
- client_id: Optional[str] = None,
323
- jwt: Optional[str] = None,
324
- mount: Optional[str] = None,
325
- namespace: Optional[str] = None,
326
- scope: Optional[str] = None,
327
- tenant_id: Optional[str] = None,
328
- use_root_namespace: Optional[bool] = None,
329
- vm_name: Optional[str] = None,
330
- vmss_name: Optional[str] = None):
331
- """
332
- :param str resource_group_name: The resource group for the machine that generated the MSI token. This information can be obtained through instance metadata.
333
- :param str role: Name of the login role.
334
- :param str subscription_id: The subscription ID for the machine that generated the MSI token. This information can be obtained through instance metadata.
335
- :param str client_id: The identity's client ID.
336
- :param str jwt: A signed JSON Web Token. If not specified on will be created automatically
337
- :param str mount: The path where the authentication engine is mounted.
338
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
339
- :param str scope: The scopes to include in the token request.
340
- :param str tenant_id: Provides the tenant ID to use in a multi-tenant authentication scenario.
341
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
342
- :param str vm_name: The virtual machine name for the machine that generated the MSI token. This information can be obtained through instance metadata.
343
- :param str vmss_name: The virtual machine scale set name for the machine that generated the MSI token. This information can be obtained through instance metadata.
320
+ resource_group_name: builtins.str,
321
+ role: builtins.str,
322
+ subscription_id: builtins.str,
323
+ client_id: Optional[builtins.str] = None,
324
+ jwt: Optional[builtins.str] = None,
325
+ mount: Optional[builtins.str] = None,
326
+ namespace: Optional[builtins.str] = None,
327
+ scope: Optional[builtins.str] = None,
328
+ tenant_id: Optional[builtins.str] = None,
329
+ use_root_namespace: Optional[builtins.bool] = None,
330
+ vm_name: Optional[builtins.str] = None,
331
+ vmss_name: Optional[builtins.str] = None):
332
+ """
333
+ :param builtins.str resource_group_name: The resource group for the machine that generated the MSI token. This information can be obtained through instance metadata.
334
+ :param builtins.str role: Name of the login role.
335
+ :param builtins.str subscription_id: The subscription ID for the machine that generated the MSI token. This information can be obtained through instance metadata.
336
+ :param builtins.str client_id: The identity's client ID.
337
+ :param builtins.str jwt: A signed JSON Web Token. If not specified on will be created automatically
338
+ :param builtins.str mount: The path where the authentication engine is mounted.
339
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
340
+ :param builtins.str scope: The scopes to include in the token request.
341
+ :param builtins.str tenant_id: Provides the tenant ID to use in a multi-tenant authentication scenario.
342
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
343
+ :param builtins.str vm_name: The virtual machine name for the machine that generated the MSI token. This information can be obtained through instance metadata.
344
+ :param builtins.str vmss_name: The virtual machine scale set name for the machine that generated the MSI token. This information can be obtained through instance metadata.
344
345
  """
345
346
  pulumi.set(__self__, "resource_group_name", resource_group_name)
346
347
  pulumi.set(__self__, "role", role)
@@ -366,7 +367,7 @@ class AuthLoginAzure(dict):
366
367
 
367
368
  @property
368
369
  @pulumi.getter(name="resourceGroupName")
369
- def resource_group_name(self) -> str:
370
+ def resource_group_name(self) -> builtins.str:
370
371
  """
371
372
  The resource group for the machine that generated the MSI token. This information can be obtained through instance metadata.
372
373
  """
@@ -374,7 +375,7 @@ class AuthLoginAzure(dict):
374
375
 
375
376
  @property
376
377
  @pulumi.getter
377
- def role(self) -> str:
378
+ def role(self) -> builtins.str:
378
379
  """
379
380
  Name of the login role.
380
381
  """
@@ -382,7 +383,7 @@ class AuthLoginAzure(dict):
382
383
 
383
384
  @property
384
385
  @pulumi.getter(name="subscriptionId")
385
- def subscription_id(self) -> str:
386
+ def subscription_id(self) -> builtins.str:
386
387
  """
387
388
  The subscription ID for the machine that generated the MSI token. This information can be obtained through instance metadata.
388
389
  """
@@ -390,7 +391,7 @@ class AuthLoginAzure(dict):
390
391
 
391
392
  @property
392
393
  @pulumi.getter(name="clientId")
393
- def client_id(self) -> Optional[str]:
394
+ def client_id(self) -> Optional[builtins.str]:
394
395
  """
395
396
  The identity's client ID.
396
397
  """
@@ -398,7 +399,7 @@ class AuthLoginAzure(dict):
398
399
 
399
400
  @property
400
401
  @pulumi.getter
401
- def jwt(self) -> Optional[str]:
402
+ def jwt(self) -> Optional[builtins.str]:
402
403
  """
403
404
  A signed JSON Web Token. If not specified on will be created automatically
404
405
  """
@@ -406,7 +407,7 @@ class AuthLoginAzure(dict):
406
407
 
407
408
  @property
408
409
  @pulumi.getter
409
- def mount(self) -> Optional[str]:
410
+ def mount(self) -> Optional[builtins.str]:
410
411
  """
411
412
  The path where the authentication engine is mounted.
412
413
  """
@@ -414,7 +415,7 @@ class AuthLoginAzure(dict):
414
415
 
415
416
  @property
416
417
  @pulumi.getter
417
- def namespace(self) -> Optional[str]:
418
+ def namespace(self) -> Optional[builtins.str]:
418
419
  """
419
420
  The authentication engine's namespace. Conflicts with use_root_namespace
420
421
  """
@@ -422,7 +423,7 @@ class AuthLoginAzure(dict):
422
423
 
423
424
  @property
424
425
  @pulumi.getter
425
- def scope(self) -> Optional[str]:
426
+ def scope(self) -> Optional[builtins.str]:
426
427
  """
427
428
  The scopes to include in the token request.
428
429
  """
@@ -430,7 +431,7 @@ class AuthLoginAzure(dict):
430
431
 
431
432
  @property
432
433
  @pulumi.getter(name="tenantId")
433
- def tenant_id(self) -> Optional[str]:
434
+ def tenant_id(self) -> Optional[builtins.str]:
434
435
  """
435
436
  Provides the tenant ID to use in a multi-tenant authentication scenario.
436
437
  """
@@ -438,7 +439,7 @@ class AuthLoginAzure(dict):
438
439
 
439
440
  @property
440
441
  @pulumi.getter(name="useRootNamespace")
441
- def use_root_namespace(self) -> Optional[bool]:
442
+ def use_root_namespace(self) -> Optional[builtins.bool]:
442
443
  """
443
444
  Authenticate to the root Vault namespace. Conflicts with namespace
444
445
  """
@@ -446,7 +447,7 @@ class AuthLoginAzure(dict):
446
447
 
447
448
  @property
448
449
  @pulumi.getter(name="vmName")
449
- def vm_name(self) -> Optional[str]:
450
+ def vm_name(self) -> Optional[builtins.str]:
450
451
  """
451
452
  The virtual machine name for the machine that generated the MSI token. This information can be obtained through instance metadata.
452
453
  """
@@ -454,7 +455,7 @@ class AuthLoginAzure(dict):
454
455
 
455
456
  @property
456
457
  @pulumi.getter(name="vmssName")
457
- def vmss_name(self) -> Optional[str]:
458
+ def vmss_name(self) -> Optional[builtins.str]:
458
459
  """
459
460
  The virtual machine scale set name for the machine that generated the MSI token. This information can be obtained through instance metadata.
460
461
  """
@@ -464,19 +465,19 @@ class AuthLoginAzure(dict):
464
465
  @pulumi.output_type
465
466
  class AuthLoginCert(dict):
466
467
  def __init__(__self__, *,
467
- cert_file: str,
468
- key_file: str,
469
- mount: Optional[str] = None,
470
- name: Optional[str] = None,
471
- namespace: Optional[str] = None,
472
- use_root_namespace: Optional[bool] = None):
473
- """
474
- :param str cert_file: Path to a file containing the client certificate.
475
- :param str key_file: Path to a file containing the private key that the certificate was issued for.
476
- :param str mount: The path where the authentication engine is mounted.
477
- :param str name: Name of the certificate's role
478
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
479
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
468
+ cert_file: builtins.str,
469
+ key_file: builtins.str,
470
+ mount: Optional[builtins.str] = None,
471
+ name: Optional[builtins.str] = None,
472
+ namespace: Optional[builtins.str] = None,
473
+ use_root_namespace: Optional[builtins.bool] = None):
474
+ """
475
+ :param builtins.str cert_file: Path to a file containing the client certificate.
476
+ :param builtins.str key_file: Path to a file containing the private key that the certificate was issued for.
477
+ :param builtins.str mount: The path where the authentication engine is mounted.
478
+ :param builtins.str name: Name of the certificate's role
479
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
480
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
480
481
  """
481
482
  pulumi.set(__self__, "cert_file", cert_file)
482
483
  pulumi.set(__self__, "key_file", key_file)
@@ -491,7 +492,7 @@ class AuthLoginCert(dict):
491
492
 
492
493
  @property
493
494
  @pulumi.getter(name="certFile")
494
- def cert_file(self) -> str:
495
+ def cert_file(self) -> builtins.str:
495
496
  """
496
497
  Path to a file containing the client certificate.
497
498
  """
@@ -499,7 +500,7 @@ class AuthLoginCert(dict):
499
500
 
500
501
  @property
501
502
  @pulumi.getter(name="keyFile")
502
- def key_file(self) -> str:
503
+ def key_file(self) -> builtins.str:
503
504
  """
504
505
  Path to a file containing the private key that the certificate was issued for.
505
506
  """
@@ -507,7 +508,7 @@ class AuthLoginCert(dict):
507
508
 
508
509
  @property
509
510
  @pulumi.getter
510
- def mount(self) -> Optional[str]:
511
+ def mount(self) -> Optional[builtins.str]:
511
512
  """
512
513
  The path where the authentication engine is mounted.
513
514
  """
@@ -515,7 +516,7 @@ class AuthLoginCert(dict):
515
516
 
516
517
  @property
517
518
  @pulumi.getter
518
- def name(self) -> Optional[str]:
519
+ def name(self) -> Optional[builtins.str]:
519
520
  """
520
521
  Name of the certificate's role
521
522
  """
@@ -523,7 +524,7 @@ class AuthLoginCert(dict):
523
524
 
524
525
  @property
525
526
  @pulumi.getter
526
- def namespace(self) -> Optional[str]:
527
+ def namespace(self) -> Optional[builtins.str]:
527
528
  """
528
529
  The authentication engine's namespace. Conflicts with use_root_namespace
529
530
  """
@@ -531,7 +532,7 @@ class AuthLoginCert(dict):
531
532
 
532
533
  @property
533
534
  @pulumi.getter(name="useRootNamespace")
534
- def use_root_namespace(self) -> Optional[bool]:
535
+ def use_root_namespace(self) -> Optional[builtins.bool]:
535
536
  """
536
537
  Authenticate to the root Vault namespace. Conflicts with namespace
537
538
  """
@@ -541,21 +542,21 @@ class AuthLoginCert(dict):
541
542
  @pulumi.output_type
542
543
  class AuthLoginGcp(dict):
543
544
  def __init__(__self__, *,
544
- role: str,
545
- credentials: Optional[str] = None,
546
- jwt: Optional[str] = None,
547
- mount: Optional[str] = None,
548
- namespace: Optional[str] = None,
549
- service_account: Optional[str] = None,
550
- use_root_namespace: Optional[bool] = None):
551
- """
552
- :param str role: Name of the login role.
553
- :param str credentials: Path to the Google Cloud credentials file.
554
- :param str jwt: A signed JSON Web Token.
555
- :param str mount: The path where the authentication engine is mounted.
556
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
557
- :param str service_account: IAM service account.
558
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
545
+ role: builtins.str,
546
+ credentials: Optional[builtins.str] = None,
547
+ jwt: Optional[builtins.str] = None,
548
+ mount: Optional[builtins.str] = None,
549
+ namespace: Optional[builtins.str] = None,
550
+ service_account: Optional[builtins.str] = None,
551
+ use_root_namespace: Optional[builtins.bool] = None):
552
+ """
553
+ :param builtins.str role: Name of the login role.
554
+ :param builtins.str credentials: Path to the Google Cloud credentials file.
555
+ :param builtins.str jwt: A signed JSON Web Token.
556
+ :param builtins.str mount: The path where the authentication engine is mounted.
557
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
558
+ :param builtins.str service_account: IAM service account.
559
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
559
560
  """
560
561
  pulumi.set(__self__, "role", role)
561
562
  if credentials is not None:
@@ -573,7 +574,7 @@ class AuthLoginGcp(dict):
573
574
 
574
575
  @property
575
576
  @pulumi.getter
576
- def role(self) -> str:
577
+ def role(self) -> builtins.str:
577
578
  """
578
579
  Name of the login role.
579
580
  """
@@ -581,7 +582,7 @@ class AuthLoginGcp(dict):
581
582
 
582
583
  @property
583
584
  @pulumi.getter
584
- def credentials(self) -> Optional[str]:
585
+ def credentials(self) -> Optional[builtins.str]:
585
586
  """
586
587
  Path to the Google Cloud credentials file.
587
588
  """
@@ -589,7 +590,7 @@ class AuthLoginGcp(dict):
589
590
 
590
591
  @property
591
592
  @pulumi.getter
592
- def jwt(self) -> Optional[str]:
593
+ def jwt(self) -> Optional[builtins.str]:
593
594
  """
594
595
  A signed JSON Web Token.
595
596
  """
@@ -597,7 +598,7 @@ class AuthLoginGcp(dict):
597
598
 
598
599
  @property
599
600
  @pulumi.getter
600
- def mount(self) -> Optional[str]:
601
+ def mount(self) -> Optional[builtins.str]:
601
602
  """
602
603
  The path where the authentication engine is mounted.
603
604
  """
@@ -605,7 +606,7 @@ class AuthLoginGcp(dict):
605
606
 
606
607
  @property
607
608
  @pulumi.getter
608
- def namespace(self) -> Optional[str]:
609
+ def namespace(self) -> Optional[builtins.str]:
609
610
  """
610
611
  The authentication engine's namespace. Conflicts with use_root_namespace
611
612
  """
@@ -613,7 +614,7 @@ class AuthLoginGcp(dict):
613
614
 
614
615
  @property
615
616
  @pulumi.getter(name="serviceAccount")
616
- def service_account(self) -> Optional[str]:
617
+ def service_account(self) -> Optional[builtins.str]:
617
618
  """
618
619
  IAM service account.
619
620
  """
@@ -621,7 +622,7 @@ class AuthLoginGcp(dict):
621
622
 
622
623
  @property
623
624
  @pulumi.getter(name="useRootNamespace")
624
- def use_root_namespace(self) -> Optional[bool]:
625
+ def use_root_namespace(self) -> Optional[builtins.bool]:
625
626
  """
626
627
  Authenticate to the root Vault namespace. Conflicts with namespace
627
628
  """
@@ -631,17 +632,17 @@ class AuthLoginGcp(dict):
631
632
  @pulumi.output_type
632
633
  class AuthLoginJwt(dict):
633
634
  def __init__(__self__, *,
634
- jwt: str,
635
- role: str,
636
- mount: Optional[str] = None,
637
- namespace: Optional[str] = None,
638
- use_root_namespace: Optional[bool] = None):
639
- """
640
- :param str jwt: A signed JSON Web Token.
641
- :param str role: Name of the login role.
642
- :param str mount: The path where the authentication engine is mounted.
643
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
644
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
635
+ jwt: builtins.str,
636
+ role: builtins.str,
637
+ mount: Optional[builtins.str] = None,
638
+ namespace: Optional[builtins.str] = None,
639
+ use_root_namespace: Optional[builtins.bool] = None):
640
+ """
641
+ :param builtins.str jwt: A signed JSON Web Token.
642
+ :param builtins.str role: Name of the login role.
643
+ :param builtins.str mount: The path where the authentication engine is mounted.
644
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
645
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
645
646
  """
646
647
  pulumi.set(__self__, "jwt", jwt)
647
648
  pulumi.set(__self__, "role", role)
@@ -654,7 +655,7 @@ class AuthLoginJwt(dict):
654
655
 
655
656
  @property
656
657
  @pulumi.getter
657
- def jwt(self) -> str:
658
+ def jwt(self) -> builtins.str:
658
659
  """
659
660
  A signed JSON Web Token.
660
661
  """
@@ -662,7 +663,7 @@ class AuthLoginJwt(dict):
662
663
 
663
664
  @property
664
665
  @pulumi.getter
665
- def role(self) -> str:
666
+ def role(self) -> builtins.str:
666
667
  """
667
668
  Name of the login role.
668
669
  """
@@ -670,7 +671,7 @@ class AuthLoginJwt(dict):
670
671
 
671
672
  @property
672
673
  @pulumi.getter
673
- def mount(self) -> Optional[str]:
674
+ def mount(self) -> Optional[builtins.str]:
674
675
  """
675
676
  The path where the authentication engine is mounted.
676
677
  """
@@ -678,7 +679,7 @@ class AuthLoginJwt(dict):
678
679
 
679
680
  @property
680
681
  @pulumi.getter
681
- def namespace(self) -> Optional[str]:
682
+ def namespace(self) -> Optional[builtins.str]:
682
683
  """
683
684
  The authentication engine's namespace. Conflicts with use_root_namespace
684
685
  """
@@ -686,7 +687,7 @@ class AuthLoginJwt(dict):
686
687
 
687
688
  @property
688
689
  @pulumi.getter(name="useRootNamespace")
689
- def use_root_namespace(self) -> Optional[bool]:
690
+ def use_root_namespace(self) -> Optional[builtins.bool]:
690
691
  """
691
692
  Authenticate to the root Vault namespace. Conflicts with namespace
692
693
  """
@@ -696,29 +697,29 @@ class AuthLoginJwt(dict):
696
697
  @pulumi.output_type
697
698
  class AuthLoginKerberos(dict):
698
699
  def __init__(__self__, *,
699
- disable_fast_negotiation: Optional[bool] = None,
700
- keytab_path: Optional[str] = None,
701
- krb5conf_path: Optional[str] = None,
702
- mount: Optional[str] = None,
703
- namespace: Optional[str] = None,
704
- realm: Optional[str] = None,
705
- remove_instance_name: Optional[bool] = None,
706
- service: Optional[str] = None,
707
- token: Optional[str] = None,
708
- use_root_namespace: Optional[bool] = None,
709
- username: Optional[str] = None):
710
- """
711
- :param bool disable_fast_negotiation: Disable the Kerberos FAST negotiation.
712
- :param str keytab_path: The Kerberos keytab file containing the entry of the login entity.
713
- :param str krb5conf_path: A valid Kerberos configuration file e.g. /etc/krb5.conf.
714
- :param str mount: The path where the authentication engine is mounted.
715
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
716
- :param str realm: The Kerberos server's authoritative authentication domain
717
- :param bool remove_instance_name: Strip the host from the username found in the keytab.
718
- :param str service: The service principle name.
719
- :param str token: Simple and Protected GSSAPI Negotiation Mechanism (SPNEGO) token
720
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
721
- :param str username: The username to login into Kerberos with.
700
+ disable_fast_negotiation: Optional[builtins.bool] = None,
701
+ keytab_path: Optional[builtins.str] = None,
702
+ krb5conf_path: Optional[builtins.str] = None,
703
+ mount: Optional[builtins.str] = None,
704
+ namespace: Optional[builtins.str] = None,
705
+ realm: Optional[builtins.str] = None,
706
+ remove_instance_name: Optional[builtins.bool] = None,
707
+ service: Optional[builtins.str] = None,
708
+ token: Optional[builtins.str] = None,
709
+ use_root_namespace: Optional[builtins.bool] = None,
710
+ username: Optional[builtins.str] = None):
711
+ """
712
+ :param builtins.bool disable_fast_negotiation: Disable the Kerberos FAST negotiation.
713
+ :param builtins.str keytab_path: The Kerberos keytab file containing the entry of the login entity.
714
+ :param builtins.str krb5conf_path: A valid Kerberos configuration file e.g. /etc/krb5.conf.
715
+ :param builtins.str mount: The path where the authentication engine is mounted.
716
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
717
+ :param builtins.str realm: The Kerberos server's authoritative authentication domain
718
+ :param builtins.bool remove_instance_name: Strip the host from the username found in the keytab.
719
+ :param builtins.str service: The service principle name.
720
+ :param builtins.str token: Simple and Protected GSSAPI Negotiation Mechanism (SPNEGO) token
721
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
722
+ :param builtins.str username: The username to login into Kerberos with.
722
723
  """
723
724
  if disable_fast_negotiation is not None:
724
725
  pulumi.set(__self__, "disable_fast_negotiation", disable_fast_negotiation)
@@ -745,7 +746,7 @@ class AuthLoginKerberos(dict):
745
746
 
746
747
  @property
747
748
  @pulumi.getter(name="disableFastNegotiation")
748
- def disable_fast_negotiation(self) -> Optional[bool]:
749
+ def disable_fast_negotiation(self) -> Optional[builtins.bool]:
749
750
  """
750
751
  Disable the Kerberos FAST negotiation.
751
752
  """
@@ -753,7 +754,7 @@ class AuthLoginKerberos(dict):
753
754
 
754
755
  @property
755
756
  @pulumi.getter(name="keytabPath")
756
- def keytab_path(self) -> Optional[str]:
757
+ def keytab_path(self) -> Optional[builtins.str]:
757
758
  """
758
759
  The Kerberos keytab file containing the entry of the login entity.
759
760
  """
@@ -761,7 +762,7 @@ class AuthLoginKerberos(dict):
761
762
 
762
763
  @property
763
764
  @pulumi.getter(name="krb5confPath")
764
- def krb5conf_path(self) -> Optional[str]:
765
+ def krb5conf_path(self) -> Optional[builtins.str]:
765
766
  """
766
767
  A valid Kerberos configuration file e.g. /etc/krb5.conf.
767
768
  """
@@ -769,7 +770,7 @@ class AuthLoginKerberos(dict):
769
770
 
770
771
  @property
771
772
  @pulumi.getter
772
- def mount(self) -> Optional[str]:
773
+ def mount(self) -> Optional[builtins.str]:
773
774
  """
774
775
  The path where the authentication engine is mounted.
775
776
  """
@@ -777,7 +778,7 @@ class AuthLoginKerberos(dict):
777
778
 
778
779
  @property
779
780
  @pulumi.getter
780
- def namespace(self) -> Optional[str]:
781
+ def namespace(self) -> Optional[builtins.str]:
781
782
  """
782
783
  The authentication engine's namespace. Conflicts with use_root_namespace
783
784
  """
@@ -785,7 +786,7 @@ class AuthLoginKerberos(dict):
785
786
 
786
787
  @property
787
788
  @pulumi.getter
788
- def realm(self) -> Optional[str]:
789
+ def realm(self) -> Optional[builtins.str]:
789
790
  """
790
791
  The Kerberos server's authoritative authentication domain
791
792
  """
@@ -793,7 +794,7 @@ class AuthLoginKerberos(dict):
793
794
 
794
795
  @property
795
796
  @pulumi.getter(name="removeInstanceName")
796
- def remove_instance_name(self) -> Optional[bool]:
797
+ def remove_instance_name(self) -> Optional[builtins.bool]:
797
798
  """
798
799
  Strip the host from the username found in the keytab.
799
800
  """
@@ -801,7 +802,7 @@ class AuthLoginKerberos(dict):
801
802
 
802
803
  @property
803
804
  @pulumi.getter
804
- def service(self) -> Optional[str]:
805
+ def service(self) -> Optional[builtins.str]:
805
806
  """
806
807
  The service principle name.
807
808
  """
@@ -809,7 +810,7 @@ class AuthLoginKerberos(dict):
809
810
 
810
811
  @property
811
812
  @pulumi.getter
812
- def token(self) -> Optional[str]:
813
+ def token(self) -> Optional[builtins.str]:
813
814
  """
814
815
  Simple and Protected GSSAPI Negotiation Mechanism (SPNEGO) token
815
816
  """
@@ -817,7 +818,7 @@ class AuthLoginKerberos(dict):
817
818
 
818
819
  @property
819
820
  @pulumi.getter(name="useRootNamespace")
820
- def use_root_namespace(self) -> Optional[bool]:
821
+ def use_root_namespace(self) -> Optional[builtins.bool]:
821
822
  """
822
823
  Authenticate to the root Vault namespace. Conflicts with namespace
823
824
  """
@@ -825,7 +826,7 @@ class AuthLoginKerberos(dict):
825
826
 
826
827
  @property
827
828
  @pulumi.getter
828
- def username(self) -> Optional[str]:
829
+ def username(self) -> Optional[builtins.str]:
829
830
  """
830
831
  The username to login into Kerberos with.
831
832
  """
@@ -835,17 +836,17 @@ class AuthLoginKerberos(dict):
835
836
  @pulumi.output_type
836
837
  class AuthLoginOci(dict):
837
838
  def __init__(__self__, *,
838
- auth_type: str,
839
- role: str,
840
- mount: Optional[str] = None,
841
- namespace: Optional[str] = None,
842
- use_root_namespace: Optional[bool] = None):
843
- """
844
- :param str auth_type: Authentication type to use when getting OCI credentials.
845
- :param str role: Name of the login role.
846
- :param str mount: The path where the authentication engine is mounted.
847
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
848
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
839
+ auth_type: builtins.str,
840
+ role: builtins.str,
841
+ mount: Optional[builtins.str] = None,
842
+ namespace: Optional[builtins.str] = None,
843
+ use_root_namespace: Optional[builtins.bool] = None):
844
+ """
845
+ :param builtins.str auth_type: Authentication type to use when getting OCI credentials.
846
+ :param builtins.str role: Name of the login role.
847
+ :param builtins.str mount: The path where the authentication engine is mounted.
848
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
849
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
849
850
  """
850
851
  pulumi.set(__self__, "auth_type", auth_type)
851
852
  pulumi.set(__self__, "role", role)
@@ -858,7 +859,7 @@ class AuthLoginOci(dict):
858
859
 
859
860
  @property
860
861
  @pulumi.getter(name="authType")
861
- def auth_type(self) -> str:
862
+ def auth_type(self) -> builtins.str:
862
863
  """
863
864
  Authentication type to use when getting OCI credentials.
864
865
  """
@@ -866,7 +867,7 @@ class AuthLoginOci(dict):
866
867
 
867
868
  @property
868
869
  @pulumi.getter
869
- def role(self) -> str:
870
+ def role(self) -> builtins.str:
870
871
  """
871
872
  Name of the login role.
872
873
  """
@@ -874,7 +875,7 @@ class AuthLoginOci(dict):
874
875
 
875
876
  @property
876
877
  @pulumi.getter
877
- def mount(self) -> Optional[str]:
878
+ def mount(self) -> Optional[builtins.str]:
878
879
  """
879
880
  The path where the authentication engine is mounted.
880
881
  """
@@ -882,7 +883,7 @@ class AuthLoginOci(dict):
882
883
 
883
884
  @property
884
885
  @pulumi.getter
885
- def namespace(self) -> Optional[str]:
886
+ def namespace(self) -> Optional[builtins.str]:
886
887
  """
887
888
  The authentication engine's namespace. Conflicts with use_root_namespace
888
889
  """
@@ -890,7 +891,7 @@ class AuthLoginOci(dict):
890
891
 
891
892
  @property
892
893
  @pulumi.getter(name="useRootNamespace")
893
- def use_root_namespace(self) -> Optional[bool]:
894
+ def use_root_namespace(self) -> Optional[builtins.bool]:
894
895
  """
895
896
  Authenticate to the root Vault namespace. Conflicts with namespace
896
897
  """
@@ -900,19 +901,19 @@ class AuthLoginOci(dict):
900
901
  @pulumi.output_type
901
902
  class AuthLoginOidc(dict):
902
903
  def __init__(__self__, *,
903
- role: str,
904
- callback_address: Optional[str] = None,
905
- callback_listener_address: Optional[str] = None,
906
- mount: Optional[str] = None,
907
- namespace: Optional[str] = None,
908
- use_root_namespace: Optional[bool] = None):
909
- """
910
- :param str role: Name of the login role.
911
- :param str callback_address: The callback address. Must be a valid URI without the path.
912
- :param str callback_listener_address: The callback listener's address. Must be a valid URI without the path.
913
- :param str mount: The path where the authentication engine is mounted.
914
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
915
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
904
+ role: builtins.str,
905
+ callback_address: Optional[builtins.str] = None,
906
+ callback_listener_address: Optional[builtins.str] = None,
907
+ mount: Optional[builtins.str] = None,
908
+ namespace: Optional[builtins.str] = None,
909
+ use_root_namespace: Optional[builtins.bool] = None):
910
+ """
911
+ :param builtins.str role: Name of the login role.
912
+ :param builtins.str callback_address: The callback address. Must be a valid URI without the path.
913
+ :param builtins.str callback_listener_address: The callback listener's address. Must be a valid URI without the path.
914
+ :param builtins.str mount: The path where the authentication engine is mounted.
915
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
916
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
916
917
  """
917
918
  pulumi.set(__self__, "role", role)
918
919
  if callback_address is not None:
@@ -928,7 +929,7 @@ class AuthLoginOidc(dict):
928
929
 
929
930
  @property
930
931
  @pulumi.getter
931
- def role(self) -> str:
932
+ def role(self) -> builtins.str:
932
933
  """
933
934
  Name of the login role.
934
935
  """
@@ -936,7 +937,7 @@ class AuthLoginOidc(dict):
936
937
 
937
938
  @property
938
939
  @pulumi.getter(name="callbackAddress")
939
- def callback_address(self) -> Optional[str]:
940
+ def callback_address(self) -> Optional[builtins.str]:
940
941
  """
941
942
  The callback address. Must be a valid URI without the path.
942
943
  """
@@ -944,7 +945,7 @@ class AuthLoginOidc(dict):
944
945
 
945
946
  @property
946
947
  @pulumi.getter(name="callbackListenerAddress")
947
- def callback_listener_address(self) -> Optional[str]:
948
+ def callback_listener_address(self) -> Optional[builtins.str]:
948
949
  """
949
950
  The callback listener's address. Must be a valid URI without the path.
950
951
  """
@@ -952,7 +953,7 @@ class AuthLoginOidc(dict):
952
953
 
953
954
  @property
954
955
  @pulumi.getter
955
- def mount(self) -> Optional[str]:
956
+ def mount(self) -> Optional[builtins.str]:
956
957
  """
957
958
  The path where the authentication engine is mounted.
958
959
  """
@@ -960,7 +961,7 @@ class AuthLoginOidc(dict):
960
961
 
961
962
  @property
962
963
  @pulumi.getter
963
- def namespace(self) -> Optional[str]:
964
+ def namespace(self) -> Optional[builtins.str]:
964
965
  """
965
966
  The authentication engine's namespace. Conflicts with use_root_namespace
966
967
  """
@@ -968,7 +969,7 @@ class AuthLoginOidc(dict):
968
969
 
969
970
  @property
970
971
  @pulumi.getter(name="useRootNamespace")
971
- def use_root_namespace(self) -> Optional[bool]:
972
+ def use_root_namespace(self) -> Optional[builtins.bool]:
972
973
  """
973
974
  Authenticate to the root Vault namespace. Conflicts with namespace
974
975
  """
@@ -978,17 +979,17 @@ class AuthLoginOidc(dict):
978
979
  @pulumi.output_type
979
980
  class AuthLoginRadius(dict):
980
981
  def __init__(__self__, *,
981
- password: str,
982
- username: str,
983
- mount: Optional[str] = None,
984
- namespace: Optional[str] = None,
985
- use_root_namespace: Optional[bool] = None):
986
- """
987
- :param str password: The Radius password for username.
988
- :param str username: The Radius username.
989
- :param str mount: The path where the authentication engine is mounted.
990
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
991
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
982
+ password: builtins.str,
983
+ username: builtins.str,
984
+ mount: Optional[builtins.str] = None,
985
+ namespace: Optional[builtins.str] = None,
986
+ use_root_namespace: Optional[builtins.bool] = None):
987
+ """
988
+ :param builtins.str password: The Radius password for username.
989
+ :param builtins.str username: The Radius username.
990
+ :param builtins.str mount: The path where the authentication engine is mounted.
991
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
992
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
992
993
  """
993
994
  pulumi.set(__self__, "password", password)
994
995
  pulumi.set(__self__, "username", username)
@@ -1001,7 +1002,7 @@ class AuthLoginRadius(dict):
1001
1002
 
1002
1003
  @property
1003
1004
  @pulumi.getter
1004
- def password(self) -> str:
1005
+ def password(self) -> builtins.str:
1005
1006
  """
1006
1007
  The Radius password for username.
1007
1008
  """
@@ -1009,7 +1010,7 @@ class AuthLoginRadius(dict):
1009
1010
 
1010
1011
  @property
1011
1012
  @pulumi.getter
1012
- def username(self) -> str:
1013
+ def username(self) -> builtins.str:
1013
1014
  """
1014
1015
  The Radius username.
1015
1016
  """
@@ -1017,7 +1018,7 @@ class AuthLoginRadius(dict):
1017
1018
 
1018
1019
  @property
1019
1020
  @pulumi.getter
1020
- def mount(self) -> Optional[str]:
1021
+ def mount(self) -> Optional[builtins.str]:
1021
1022
  """
1022
1023
  The path where the authentication engine is mounted.
1023
1024
  """
@@ -1025,7 +1026,7 @@ class AuthLoginRadius(dict):
1025
1026
 
1026
1027
  @property
1027
1028
  @pulumi.getter
1028
- def namespace(self) -> Optional[str]:
1029
+ def namespace(self) -> Optional[builtins.str]:
1029
1030
  """
1030
1031
  The authentication engine's namespace. Conflicts with use_root_namespace
1031
1032
  """
@@ -1033,7 +1034,7 @@ class AuthLoginRadius(dict):
1033
1034
 
1034
1035
  @property
1035
1036
  @pulumi.getter(name="useRootNamespace")
1036
- def use_root_namespace(self) -> Optional[bool]:
1037
+ def use_root_namespace(self) -> Optional[builtins.bool]:
1037
1038
  """
1038
1039
  Authenticate to the root Vault namespace. Conflicts with namespace
1039
1040
  """
@@ -1043,13 +1044,13 @@ class AuthLoginRadius(dict):
1043
1044
  @pulumi.output_type
1044
1045
  class AuthLoginTokenFile(dict):
1045
1046
  def __init__(__self__, *,
1046
- filename: str,
1047
- namespace: Optional[str] = None,
1048
- use_root_namespace: Optional[bool] = None):
1047
+ filename: builtins.str,
1048
+ namespace: Optional[builtins.str] = None,
1049
+ use_root_namespace: Optional[builtins.bool] = None):
1049
1050
  """
1050
- :param str filename: The name of a file containing a single line that is a valid Vault token
1051
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
1052
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
1051
+ :param builtins.str filename: The name of a file containing a single line that is a valid Vault token
1052
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
1053
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
1053
1054
  """
1054
1055
  pulumi.set(__self__, "filename", filename)
1055
1056
  if namespace is not None:
@@ -1059,7 +1060,7 @@ class AuthLoginTokenFile(dict):
1059
1060
 
1060
1061
  @property
1061
1062
  @pulumi.getter
1062
- def filename(self) -> str:
1063
+ def filename(self) -> builtins.str:
1063
1064
  """
1064
1065
  The name of a file containing a single line that is a valid Vault token
1065
1066
  """
@@ -1067,7 +1068,7 @@ class AuthLoginTokenFile(dict):
1067
1068
 
1068
1069
  @property
1069
1070
  @pulumi.getter
1070
- def namespace(self) -> Optional[str]:
1071
+ def namespace(self) -> Optional[builtins.str]:
1071
1072
  """
1072
1073
  The authentication engine's namespace. Conflicts with use_root_namespace
1073
1074
  """
@@ -1075,7 +1076,7 @@ class AuthLoginTokenFile(dict):
1075
1076
 
1076
1077
  @property
1077
1078
  @pulumi.getter(name="useRootNamespace")
1078
- def use_root_namespace(self) -> Optional[bool]:
1079
+ def use_root_namespace(self) -> Optional[builtins.bool]:
1079
1080
  """
1080
1081
  Authenticate to the root Vault namespace. Conflicts with namespace
1081
1082
  """
@@ -1085,19 +1086,19 @@ class AuthLoginTokenFile(dict):
1085
1086
  @pulumi.output_type
1086
1087
  class AuthLoginUserpass(dict):
1087
1088
  def __init__(__self__, *,
1088
- username: str,
1089
- mount: Optional[str] = None,
1090
- namespace: Optional[str] = None,
1091
- password: Optional[str] = None,
1092
- password_file: Optional[str] = None,
1093
- use_root_namespace: Optional[bool] = None):
1094
- """
1095
- :param str username: Login with username
1096
- :param str mount: The path where the authentication engine is mounted.
1097
- :param str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
1098
- :param str password: Login with password
1099
- :param str password_file: Login with password from a file
1100
- :param bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
1089
+ username: builtins.str,
1090
+ mount: Optional[builtins.str] = None,
1091
+ namespace: Optional[builtins.str] = None,
1092
+ password: Optional[builtins.str] = None,
1093
+ password_file: Optional[builtins.str] = None,
1094
+ use_root_namespace: Optional[builtins.bool] = None):
1095
+ """
1096
+ :param builtins.str username: Login with username
1097
+ :param builtins.str mount: The path where the authentication engine is mounted.
1098
+ :param builtins.str namespace: The authentication engine's namespace. Conflicts with use_root_namespace
1099
+ :param builtins.str password: Login with password
1100
+ :param builtins.str password_file: Login with password from a file
1101
+ :param builtins.bool use_root_namespace: Authenticate to the root Vault namespace. Conflicts with namespace
1101
1102
  """
1102
1103
  pulumi.set(__self__, "username", username)
1103
1104
  if mount is not None:
@@ -1113,7 +1114,7 @@ class AuthLoginUserpass(dict):
1113
1114
 
1114
1115
  @property
1115
1116
  @pulumi.getter
1116
- def username(self) -> str:
1117
+ def username(self) -> builtins.str:
1117
1118
  """
1118
1119
  Login with username
1119
1120
  """
@@ -1121,7 +1122,7 @@ class AuthLoginUserpass(dict):
1121
1122
 
1122
1123
  @property
1123
1124
  @pulumi.getter
1124
- def mount(self) -> Optional[str]:
1125
+ def mount(self) -> Optional[builtins.str]:
1125
1126
  """
1126
1127
  The path where the authentication engine is mounted.
1127
1128
  """
@@ -1129,7 +1130,7 @@ class AuthLoginUserpass(dict):
1129
1130
 
1130
1131
  @property
1131
1132
  @pulumi.getter
1132
- def namespace(self) -> Optional[str]:
1133
+ def namespace(self) -> Optional[builtins.str]:
1133
1134
  """
1134
1135
  The authentication engine's namespace. Conflicts with use_root_namespace
1135
1136
  """
@@ -1137,7 +1138,7 @@ class AuthLoginUserpass(dict):
1137
1138
 
1138
1139
  @property
1139
1140
  @pulumi.getter
1140
- def password(self) -> Optional[str]:
1141
+ def password(self) -> Optional[builtins.str]:
1141
1142
  """
1142
1143
  Login with password
1143
1144
  """
@@ -1145,7 +1146,7 @@ class AuthLoginUserpass(dict):
1145
1146
 
1146
1147
  @property
1147
1148
  @pulumi.getter(name="passwordFile")
1148
- def password_file(self) -> Optional[str]:
1149
+ def password_file(self) -> Optional[builtins.str]:
1149
1150
  """
1150
1151
  Login with password from a file
1151
1152
  """
@@ -1153,7 +1154,7 @@ class AuthLoginUserpass(dict):
1153
1154
 
1154
1155
  @property
1155
1156
  @pulumi.getter(name="useRootNamespace")
1156
- def use_root_namespace(self) -> Optional[bool]:
1157
+ def use_root_namespace(self) -> Optional[builtins.bool]:
1157
1158
  """
1158
1159
  Authenticate to the root Vault namespace. Conflicts with namespace
1159
1160
  """
@@ -1163,18 +1164,18 @@ class AuthLoginUserpass(dict):
1163
1164
  @pulumi.output_type
1164
1165
  class ClientAuth(dict):
1165
1166
  def __init__(__self__, *,
1166
- cert_file: str,
1167
- key_file: str):
1167
+ cert_file: builtins.str,
1168
+ key_file: builtins.str):
1168
1169
  """
1169
- :param str cert_file: Path to a file containing the client certificate.
1170
- :param str key_file: Path to a file containing the private key that the certificate was issued for.
1170
+ :param builtins.str cert_file: Path to a file containing the client certificate.
1171
+ :param builtins.str key_file: Path to a file containing the private key that the certificate was issued for.
1171
1172
  """
1172
1173
  pulumi.set(__self__, "cert_file", cert_file)
1173
1174
  pulumi.set(__self__, "key_file", key_file)
1174
1175
 
1175
1176
  @property
1176
1177
  @pulumi.getter(name="certFile")
1177
- def cert_file(self) -> str:
1178
+ def cert_file(self) -> builtins.str:
1178
1179
  """
1179
1180
  Path to a file containing the client certificate.
1180
1181
  """
@@ -1182,7 +1183,7 @@ class ClientAuth(dict):
1182
1183
 
1183
1184
  @property
1184
1185
  @pulumi.getter(name="keyFile")
1185
- def key_file(self) -> str:
1186
+ def key_file(self) -> builtins.str:
1186
1187
  """
1187
1188
  Path to a file containing the private key that the certificate was issued for.
1188
1189
  """
@@ -1192,18 +1193,18 @@ class ClientAuth(dict):
1192
1193
  @pulumi.output_type
1193
1194
  class Headers(dict):
1194
1195
  def __init__(__self__, *,
1195
- name: str,
1196
- value: str):
1196
+ name: builtins.str,
1197
+ value: builtins.str):
1197
1198
  """
1198
- :param str name: The header name
1199
- :param str value: The header value
1199
+ :param builtins.str name: The header name
1200
+ :param builtins.str value: The header value
1200
1201
  """
1201
1202
  pulumi.set(__self__, "name", name)
1202
1203
  pulumi.set(__self__, "value", value)
1203
1204
 
1204
1205
  @property
1205
1206
  @pulumi.getter
1206
- def name(self) -> str:
1207
+ def name(self) -> builtins.str:
1207
1208
  """
1208
1209
  The header name
1209
1210
  """
@@ -1211,7 +1212,7 @@ class Headers(dict):
1211
1212
 
1212
1213
  @property
1213
1214
  @pulumi.getter
1214
- def value(self) -> str:
1215
+ def value(self) -> builtins.str:
1215
1216
  """
1216
1217
  The header value
1217
1218
  """