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