pulumi-vault 6.7.0a1743576047__py3-none-any.whl → 6.7.0a1744183682__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.0a1744183682.dist-info}/METADATA +1 -1
  261. pulumi_vault-6.7.0a1744183682.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.0a1744183682.dist-info}/WHEEL +0 -0
  264. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744183682.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
@@ -60,7 +61,7 @@ class GetAuthBackendResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def accessor(self) -> str:
64
+ def accessor(self) -> builtins.str:
64
65
  """
65
66
  The accessor for this auth method.
66
67
  """
@@ -68,7 +69,7 @@ class GetAuthBackendResult:
68
69
 
69
70
  @property
70
71
  @pulumi.getter(name="defaultLeaseTtlSeconds")
71
- def default_lease_ttl_seconds(self) -> int:
72
+ def default_lease_ttl_seconds(self) -> builtins.int:
72
73
  """
73
74
  The default lease duration in seconds.
74
75
  """
@@ -76,7 +77,7 @@ class GetAuthBackendResult:
76
77
 
77
78
  @property
78
79
  @pulumi.getter
79
- def description(self) -> str:
80
+ def description(self) -> builtins.str:
80
81
  """
81
82
  A description of the auth method.
82
83
  """
@@ -84,7 +85,7 @@ class GetAuthBackendResult:
84
85
 
85
86
  @property
86
87
  @pulumi.getter
87
- def id(self) -> str:
88
+ def id(self) -> builtins.str:
88
89
  """
89
90
  The provider-assigned unique ID for this managed resource.
90
91
  """
@@ -92,7 +93,7 @@ class GetAuthBackendResult:
92
93
 
93
94
  @property
94
95
  @pulumi.getter(name="listingVisibility")
95
- def listing_visibility(self) -> str:
96
+ def listing_visibility(self) -> builtins.str:
96
97
  """
97
98
  Specifies whether to show this mount in the UI-specific listing endpoint.
98
99
  """
@@ -100,7 +101,7 @@ class GetAuthBackendResult:
100
101
 
101
102
  @property
102
103
  @pulumi.getter
103
- def local(self) -> bool:
104
+ def local(self) -> builtins.bool:
104
105
  """
105
106
  Specifies if the auth method is local only.
106
107
  """
@@ -108,7 +109,7 @@ class GetAuthBackendResult:
108
109
 
109
110
  @property
110
111
  @pulumi.getter(name="maxLeaseTtlSeconds")
111
- def max_lease_ttl_seconds(self) -> int:
112
+ def max_lease_ttl_seconds(self) -> builtins.int:
112
113
  """
113
114
  The maximum lease duration in seconds.
114
115
  """
@@ -116,17 +117,17 @@ class GetAuthBackendResult:
116
117
 
117
118
  @property
118
119
  @pulumi.getter
119
- def namespace(self) -> Optional[str]:
120
+ def namespace(self) -> Optional[builtins.str]:
120
121
  return pulumi.get(self, "namespace")
121
122
 
122
123
  @property
123
124
  @pulumi.getter
124
- def path(self) -> str:
125
+ def path(self) -> builtins.str:
125
126
  return pulumi.get(self, "path")
126
127
 
127
128
  @property
128
129
  @pulumi.getter
129
- def type(self) -> str:
130
+ def type(self) -> builtins.str:
130
131
  """
131
132
  The name of the auth method type.
132
133
  """
@@ -151,8 +152,8 @@ class AwaitableGetAuthBackendResult(GetAuthBackendResult):
151
152
  type=self.type)
152
153
 
153
154
 
154
- def get_auth_backend(namespace: Optional[str] = None,
155
- path: Optional[str] = None,
155
+ def get_auth_backend(namespace: Optional[builtins.str] = None,
156
+ path: Optional[builtins.str] = None,
156
157
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthBackendResult:
157
158
  """
158
159
  ## Example Usage
@@ -165,11 +166,11 @@ def get_auth_backend(namespace: Optional[str] = None,
165
166
  ```
166
167
 
167
168
 
168
- :param str namespace: The namespace of the target resource.
169
+ :param builtins.str namespace: The namespace of the target resource.
169
170
  The value should not contain leading or trailing forward slashes.
170
171
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
171
172
  *Available only for Vault Enterprise*.
172
- :param str path: The auth backend mount point.
173
+ :param builtins.str path: The auth backend mount point.
173
174
  """
174
175
  __args__ = dict()
175
176
  __args__['namespace'] = namespace
@@ -188,8 +189,8 @@ def get_auth_backend(namespace: Optional[str] = None,
188
189
  namespace=pulumi.get(__ret__, 'namespace'),
189
190
  path=pulumi.get(__ret__, 'path'),
190
191
  type=pulumi.get(__ret__, 'type'))
191
- def get_auth_backend_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
192
- path: Optional[pulumi.Input[str]] = None,
192
+ def get_auth_backend_output(namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
193
+ path: Optional[pulumi.Input[builtins.str]] = None,
193
194
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAuthBackendResult]:
194
195
  """
195
196
  ## Example Usage
@@ -202,11 +203,11 @@ def get_auth_backend_output(namespace: Optional[pulumi.Input[Optional[str]]] = N
202
203
  ```
203
204
 
204
205
 
205
- :param str namespace: The namespace of the target resource.
206
+ :param builtins.str namespace: The namespace of the target resource.
206
207
  The value should not contain leading or trailing forward slashes.
207
208
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
208
209
  *Available only for Vault Enterprise*.
209
- :param str path: The auth backend mount point.
210
+ :param builtins.str path: The auth backend mount point.
210
211
  """
211
212
  __args__ = dict()
212
213
  __args__['namespace'] = namespace
@@ -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
@@ -45,7 +46,7 @@ class GetAuthBackendsResult:
45
46
 
46
47
  @property
47
48
  @pulumi.getter
48
- def accessors(self) -> Sequence[str]:
49
+ def accessors(self) -> Sequence[builtins.str]:
49
50
  """
50
51
  The accessor IDs for the auth methods.
51
52
  """
@@ -53,7 +54,7 @@ class GetAuthBackendsResult:
53
54
 
54
55
  @property
55
56
  @pulumi.getter
56
- def id(self) -> str:
57
+ def id(self) -> builtins.str:
57
58
  """
58
59
  The provider-assigned unique ID for this managed resource.
59
60
  """
@@ -61,12 +62,12 @@ class GetAuthBackendsResult:
61
62
 
62
63
  @property
63
64
  @pulumi.getter
64
- def namespace(self) -> Optional[str]:
65
+ def namespace(self) -> Optional[builtins.str]:
65
66
  return pulumi.get(self, "namespace")
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def paths(self) -> Sequence[str]:
70
+ def paths(self) -> Sequence[builtins.str]:
70
71
  """
71
72
  List of auth backend mount points.
72
73
  """
@@ -74,7 +75,7 @@ class GetAuthBackendsResult:
74
75
 
75
76
  @property
76
77
  @pulumi.getter
77
- def type(self) -> Optional[str]:
78
+ def type(self) -> Optional[builtins.str]:
78
79
  return pulumi.get(self, "type")
79
80
 
80
81
 
@@ -91,8 +92,8 @@ class AwaitableGetAuthBackendsResult(GetAuthBackendsResult):
91
92
  type=self.type)
92
93
 
93
94
 
94
- def get_auth_backends(namespace: Optional[str] = None,
95
- type: Optional[str] = None,
95
+ def get_auth_backends(namespace: Optional[builtins.str] = None,
96
+ type: Optional[builtins.str] = None,
96
97
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthBackendsResult:
97
98
  """
98
99
  ## Example Usage
@@ -112,11 +113,11 @@ def get_auth_backends(namespace: Optional[str] = None,
112
113
  ```
113
114
 
114
115
 
115
- :param str namespace: The namespace of the target resource.
116
+ :param builtins.str namespace: The namespace of the target resource.
116
117
  The value should not contain leading or trailing forward slashes.
117
118
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
118
119
  *Available only for Vault Enterprise*.
119
- :param str type: The name of the auth method type. Allows filtering of backends returned by type.
120
+ :param builtins.str type: The name of the auth method type. Allows filtering of backends returned by type.
120
121
  """
121
122
  __args__ = dict()
122
123
  __args__['namespace'] = namespace
@@ -130,8 +131,8 @@ def get_auth_backends(namespace: Optional[str] = None,
130
131
  namespace=pulumi.get(__ret__, 'namespace'),
131
132
  paths=pulumi.get(__ret__, 'paths'),
132
133
  type=pulumi.get(__ret__, 'type'))
133
- def get_auth_backends_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
134
- type: Optional[pulumi.Input[Optional[str]]] = None,
134
+ def get_auth_backends_output(namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
135
+ type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
135
136
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAuthBackendsResult]:
136
137
  """
137
138
  ## Example Usage
@@ -151,11 +152,11 @@ def get_auth_backends_output(namespace: Optional[pulumi.Input[Optional[str]]] =
151
152
  ```
152
153
 
153
154
 
154
- :param str namespace: The namespace of the target resource.
155
+ :param builtins.str namespace: The namespace of the target resource.
155
156
  The value should not contain leading or trailing forward slashes.
156
157
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
157
158
  *Available only for Vault Enterprise*.
158
- :param str type: The name of the auth method type. Allows filtering of backends returned by type.
159
+ :param builtins.str type: The name of the auth method type. Allows filtering of backends returned by type.
159
160
  """
160
161
  __args__ = dict()
161
162
  __args__['namespace'] = namespace
@@ -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
@@ -48,7 +49,7 @@ class GetNamespaceResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter(name="customMetadata")
51
- def custom_metadata(self) -> Mapping[str, str]:
52
+ def custom_metadata(self) -> Mapping[str, builtins.str]:
52
53
  """
53
54
  (Optional) A map of strings containing arbitrary metadata for the namespace.
54
55
  Only fetched if `path` is specified.
@@ -58,7 +59,7 @@ class GetNamespaceResult:
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def id(self) -> str:
62
+ def id(self) -> builtins.str:
62
63
  """
63
64
  The provider-assigned unique ID for this managed resource.
64
65
  """
@@ -66,12 +67,12 @@ class GetNamespaceResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def namespace(self) -> Optional[str]:
70
+ def namespace(self) -> Optional[builtins.str]:
70
71
  return pulumi.get(self, "namespace")
71
72
 
72
73
  @property
73
74
  @pulumi.getter(name="namespaceId")
74
- def namespace_id(self) -> str:
75
+ def namespace_id(self) -> builtins.str:
75
76
  """
76
77
  Vault server's internal ID of the namespace.
77
78
  Only fetched if `path` is specified.
@@ -80,12 +81,12 @@ class GetNamespaceResult:
80
81
 
81
82
  @property
82
83
  @pulumi.getter
83
- def path(self) -> Optional[str]:
84
+ def path(self) -> Optional[builtins.str]:
84
85
  return pulumi.get(self, "path")
85
86
 
86
87
  @property
87
88
  @pulumi.getter(name="pathFq")
88
- def path_fq(self) -> str:
89
+ def path_fq(self) -> builtins.str:
89
90
  """
90
91
  The fully qualified path to the namespace. Useful when provisioning resources in a child `namespace`.
91
92
  The path is relative to the provider's `namespace` argument.
@@ -107,8 +108,8 @@ class AwaitableGetNamespaceResult(GetNamespaceResult):
107
108
  path_fq=self.path_fq)
108
109
 
109
110
 
110
- def get_namespace(namespace: Optional[str] = None,
111
- path: Optional[str] = None,
111
+ def get_namespace(namespace: Optional[builtins.str] = None,
112
+ path: Optional[builtins.str] = None,
112
113
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamespaceResult:
113
114
  """
114
115
  ## Example Usage
@@ -145,10 +146,10 @@ def get_namespace(namespace: Optional[str] = None,
145
146
  ```
146
147
 
147
148
 
148
- :param str namespace: The namespace to provision the resource in.
149
+ :param builtins.str namespace: The namespace to provision the resource in.
149
150
  The value should not contain leading or trailing forward slashes.
150
151
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
151
- :param str path: The path of the namespace. Must not have a trailing `/`.
152
+ :param builtins.str path: The path of the namespace. Must not have a trailing `/`.
152
153
  If not specified or empty, path attributes are set for the current namespace
153
154
  based on the `namespace` arguments of the provider and this data source.
154
155
  Other path related attributes will be empty in this case.
@@ -166,8 +167,8 @@ def get_namespace(namespace: Optional[str] = None,
166
167
  namespace_id=pulumi.get(__ret__, 'namespace_id'),
167
168
  path=pulumi.get(__ret__, 'path'),
168
169
  path_fq=pulumi.get(__ret__, 'path_fq'))
169
- def get_namespace_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
170
- path: Optional[pulumi.Input[Optional[str]]] = None,
170
+ def get_namespace_output(namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
171
+ path: Optional[pulumi.Input[Optional[builtins.str]]] = None,
171
172
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNamespaceResult]:
172
173
  """
173
174
  ## Example Usage
@@ -204,10 +205,10 @@ def get_namespace_output(namespace: Optional[pulumi.Input[Optional[str]]] = None
204
205
  ```
205
206
 
206
207
 
207
- :param str namespace: The namespace to provision the resource in.
208
+ :param builtins.str namespace: The namespace to provision the resource in.
208
209
  The value should not contain leading or trailing forward slashes.
209
210
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
210
- :param str path: The path of the namespace. Must not have a trailing `/`.
211
+ :param builtins.str path: The path of the namespace. Must not have a trailing `/`.
211
212
  If not specified or empty, path attributes are set for the current namespace
212
213
  based on the `namespace` arguments of the provider and this data source.
213
214
  Other path related attributes will be empty in this case.
@@ -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
@@ -39,7 +40,7 @@ class GetNamespacesResult:
39
40
 
40
41
  @property
41
42
  @pulumi.getter
42
- def id(self) -> str:
43
+ def id(self) -> builtins.str:
43
44
  """
44
45
  The provider-assigned unique ID for this managed resource.
45
46
  """
@@ -47,12 +48,12 @@ class GetNamespacesResult:
47
48
 
48
49
  @property
49
50
  @pulumi.getter
50
- def namespace(self) -> Optional[str]:
51
+ def namespace(self) -> Optional[builtins.str]:
51
52
  return pulumi.get(self, "namespace")
52
53
 
53
54
  @property
54
55
  @pulumi.getter
55
- def paths(self) -> Sequence[str]:
56
+ def paths(self) -> Sequence[builtins.str]:
56
57
  """
57
58
  Set of the paths of direct child namespaces.
58
59
  """
@@ -70,7 +71,7 @@ class AwaitableGetNamespacesResult(GetNamespacesResult):
70
71
  paths=self.paths)
71
72
 
72
73
 
73
- def get_namespaces(namespace: Optional[str] = None,
74
+ def get_namespaces(namespace: Optional[builtins.str] = None,
74
75
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamespacesResult:
75
76
  """
76
77
  ## Example Usage
@@ -98,7 +99,7 @@ def get_namespaces(namespace: Optional[str] = None,
98
99
  ```
99
100
 
100
101
 
101
- :param str namespace: The namespace to provision the resource in.
102
+ :param builtins.str namespace: The namespace to provision the resource in.
102
103
  The value should not contain leading or trailing forward slashes.
103
104
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
104
105
  """
@@ -111,7 +112,7 @@ def get_namespaces(namespace: Optional[str] = None,
111
112
  id=pulumi.get(__ret__, 'id'),
112
113
  namespace=pulumi.get(__ret__, 'namespace'),
113
114
  paths=pulumi.get(__ret__, 'paths'))
114
- def get_namespaces_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
115
+ def get_namespaces_output(namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
115
116
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNamespacesResult]:
116
117
  """
117
118
  ## Example Usage
@@ -139,7 +140,7 @@ def get_namespaces_output(namespace: Optional[pulumi.Input[Optional[str]]] = Non
139
140
  ```
140
141
 
141
142
 
142
- :param str namespace: The namespace to provision the resource in.
143
+ :param builtins.str namespace: The namespace to provision the resource in.
143
144
  The value should not contain leading or trailing forward slashes.
144
145
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
145
146
  """
@@ -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
@@ -48,7 +49,7 @@ class GetNomadAccessTokenResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter(name="accessorId")
51
- def accessor_id(self) -> str:
52
+ def accessor_id(self) -> builtins.str:
52
53
  """
53
54
  The public identifier for a specific token. It can be used
54
55
  to look up information about a token or to revoke a token.
@@ -57,12 +58,12 @@ class GetNomadAccessTokenResult:
57
58
 
58
59
  @property
59
60
  @pulumi.getter
60
- def backend(self) -> str:
61
+ def backend(self) -> builtins.str:
61
62
  return pulumi.get(self, "backend")
62
63
 
63
64
  @property
64
65
  @pulumi.getter
65
- def id(self) -> str:
66
+ def id(self) -> builtins.str:
66
67
  """
67
68
  The provider-assigned unique ID for this managed resource.
68
69
  """
@@ -70,17 +71,17 @@ class GetNomadAccessTokenResult:
70
71
 
71
72
  @property
72
73
  @pulumi.getter
73
- def namespace(self) -> Optional[str]:
74
+ def namespace(self) -> Optional[builtins.str]:
74
75
  return pulumi.get(self, "namespace")
75
76
 
76
77
  @property
77
78
  @pulumi.getter
78
- def role(self) -> str:
79
+ def role(self) -> builtins.str:
79
80
  return pulumi.get(self, "role")
80
81
 
81
82
  @property
82
83
  @pulumi.getter(name="secretId")
83
- def secret_id(self) -> str:
84
+ def secret_id(self) -> builtins.str:
84
85
  """
85
86
  The token to be used when making requests to Nomad and should be kept private.
86
87
  """
@@ -101,9 +102,9 @@ class AwaitableGetNomadAccessTokenResult(GetNomadAccessTokenResult):
101
102
  secret_id=self.secret_id)
102
103
 
103
104
 
104
- def get_nomad_access_token(backend: Optional[str] = None,
105
- namespace: Optional[str] = None,
106
- role: Optional[str] = None,
105
+ def get_nomad_access_token(backend: Optional[builtins.str] = None,
106
+ namespace: Optional[builtins.str] = None,
107
+ role: Optional[builtins.str] = None,
107
108
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNomadAccessTokenResult:
108
109
  """
109
110
  ## Example Usage
@@ -132,13 +133,13 @@ def get_nomad_access_token(backend: Optional[str] = None,
132
133
  ```
133
134
 
134
135
 
135
- :param str backend: The path to the Nomad secret backend to
136
+ :param builtins.str backend: The path to the Nomad secret backend to
136
137
  read credentials from, with no leading or trailing `/`s.
137
- :param str namespace: The namespace of the target resource.
138
+ :param builtins.str namespace: The namespace of the target resource.
138
139
  The value should not contain leading or trailing forward slashes.
139
140
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
140
141
  *Available only for Vault Enterprise*.
141
- :param str role: The name of the Nomad secret backend role to generate
142
+ :param builtins.str role: The name of the Nomad secret backend role to generate
142
143
  a token for, with no leading or trailing `/`s.
143
144
  """
144
145
  __args__ = dict()
@@ -155,9 +156,9 @@ def get_nomad_access_token(backend: Optional[str] = None,
155
156
  namespace=pulumi.get(__ret__, 'namespace'),
156
157
  role=pulumi.get(__ret__, 'role'),
157
158
  secret_id=pulumi.get(__ret__, 'secret_id'))
158
- def get_nomad_access_token_output(backend: Optional[pulumi.Input[str]] = None,
159
- namespace: Optional[pulumi.Input[Optional[str]]] = None,
160
- role: Optional[pulumi.Input[str]] = None,
159
+ def get_nomad_access_token_output(backend: Optional[pulumi.Input[builtins.str]] = None,
160
+ namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
161
+ role: Optional[pulumi.Input[builtins.str]] = None,
161
162
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNomadAccessTokenResult]:
162
163
  """
163
164
  ## Example Usage
@@ -186,13 +187,13 @@ def get_nomad_access_token_output(backend: Optional[pulumi.Input[str]] = None,
186
187
  ```
187
188
 
188
189
 
189
- :param str backend: The path to the Nomad secret backend to
190
+ :param builtins.str backend: The path to the Nomad secret backend to
190
191
  read credentials from, with no leading or trailing `/`s.
191
- :param str namespace: The namespace of the target resource.
192
+ :param builtins.str namespace: The namespace of the target resource.
192
193
  The value should not contain leading or trailing forward slashes.
193
194
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
194
195
  *Available only for Vault Enterprise*.
195
- :param str role: The name of the Nomad secret backend role to generate
196
+ :param builtins.str role: The name of the Nomad secret backend role to generate
196
197
  a token for, with no leading or trailing `/`s.
197
198
  """
198
199
  __args__ = dict()
@@ -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
@@ -44,7 +45,7 @@ class GetPolicyDocumentResult:
44
45
 
45
46
  @property
46
47
  @pulumi.getter
47
- def hcl(self) -> str:
48
+ def hcl(self) -> builtins.str:
48
49
  """
49
50
  The above arguments serialized as a standard Vault HCL policy document.
50
51
  """
@@ -52,7 +53,7 @@ class GetPolicyDocumentResult:
52
53
 
53
54
  @property
54
55
  @pulumi.getter
55
- def id(self) -> str:
56
+ def id(self) -> builtins.str:
56
57
  """
57
58
  The provider-assigned unique ID for this managed resource.
58
59
  """
@@ -60,7 +61,7 @@ class GetPolicyDocumentResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def namespace(self) -> Optional[str]:
64
+ def namespace(self) -> Optional[builtins.str]:
64
65
  return pulumi.get(self, "namespace")
65
66
 
66
67
  @property
@@ -81,7 +82,7 @@ class AwaitableGetPolicyDocumentResult(GetPolicyDocumentResult):
81
82
  rules=self.rules)
82
83
 
83
84
 
84
- def get_policy_document(namespace: Optional[str] = None,
85
+ def get_policy_document(namespace: Optional[builtins.str] = None,
85
86
  rules: Optional[Sequence[Union['GetPolicyDocumentRuleArgs', 'GetPolicyDocumentRuleArgsDict']]] = None,
86
87
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPolicyDocumentResult:
87
88
  """
@@ -120,7 +121,7 @@ def get_policy_document(namespace: Optional[str] = None,
120
121
  id=pulumi.get(__ret__, 'id'),
121
122
  namespace=pulumi.get(__ret__, 'namespace'),
122
123
  rules=pulumi.get(__ret__, 'rules'))
123
- def get_policy_document_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
124
+ def get_policy_document_output(namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
124
125
  rules: Optional[pulumi.Input[Optional[Sequence[Union['GetPolicyDocumentRuleArgs', 'GetPolicyDocumentRuleArgsDict']]]]] = None,
125
126
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPolicyDocumentResult]:
126
127
  """