pulumi-vault 6.7.0a1743576047__py3-none-any.whl → 6.7.0a1744267302__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. pulumi_vault/__init__.py +1 -0
  2. pulumi_vault/_inputs.py +554 -553
  3. pulumi_vault/ad/__init__.py +1 -0
  4. pulumi_vault/ad/get_access_credentials.py +20 -19
  5. pulumi_vault/ad/secret_backend.py +477 -476
  6. pulumi_vault/ad/secret_library.py +99 -98
  7. pulumi_vault/ad/secret_role.py +85 -84
  8. pulumi_vault/alicloud/__init__.py +1 -0
  9. pulumi_vault/alicloud/auth_backend_role.py +183 -182
  10. pulumi_vault/approle/__init__.py +1 -0
  11. pulumi_vault/approle/auth_backend_login.py +106 -105
  12. pulumi_vault/approle/auth_backend_role.py +239 -238
  13. pulumi_vault/approle/auth_backend_role_secret_id.py +162 -161
  14. pulumi_vault/approle/get_auth_backend_role_id.py +18 -17
  15. pulumi_vault/audit.py +85 -84
  16. pulumi_vault/audit_request_header.py +43 -42
  17. pulumi_vault/auth_backend.py +106 -105
  18. pulumi_vault/aws/__init__.py +1 -0
  19. pulumi_vault/aws/auth_backend_cert.py +71 -70
  20. pulumi_vault/aws/auth_backend_client.py +253 -252
  21. pulumi_vault/aws/auth_backend_config_identity.py +85 -84
  22. pulumi_vault/aws/auth_backend_identity_whitelist.py +57 -56
  23. pulumi_vault/aws/auth_backend_login.py +209 -208
  24. pulumi_vault/aws/auth_backend_role.py +400 -399
  25. pulumi_vault/aws/auth_backend_role_tag.py +127 -126
  26. pulumi_vault/aws/auth_backend_roletag_blacklist.py +57 -56
  27. pulumi_vault/aws/auth_backend_sts_role.py +71 -70
  28. pulumi_vault/aws/get_access_credentials.py +44 -43
  29. pulumi_vault/aws/get_static_access_credentials.py +13 -12
  30. pulumi_vault/aws/secret_backend.py +337 -336
  31. pulumi_vault/aws/secret_backend_role.py +211 -210
  32. pulumi_vault/aws/secret_backend_static_role.py +113 -112
  33. pulumi_vault/azure/__init__.py +1 -0
  34. pulumi_vault/azure/_inputs.py +21 -20
  35. pulumi_vault/azure/auth_backend_config.py +183 -182
  36. pulumi_vault/azure/auth_backend_role.py +253 -252
  37. pulumi_vault/azure/backend.py +239 -238
  38. pulumi_vault/azure/backend_role.py +141 -140
  39. pulumi_vault/azure/get_access_credentials.py +58 -57
  40. pulumi_vault/azure/outputs.py +11 -10
  41. pulumi_vault/cert_auth_backend_role.py +365 -364
  42. pulumi_vault/config/__init__.py +1 -0
  43. pulumi_vault/config/__init__.pyi +1 -0
  44. pulumi_vault/config/_inputs.py +11 -10
  45. pulumi_vault/config/outputs.py +287 -286
  46. pulumi_vault/config/ui_custom_message.py +113 -112
  47. pulumi_vault/config/vars.py +1 -0
  48. pulumi_vault/consul/__init__.py +1 -0
  49. pulumi_vault/consul/secret_backend.py +197 -196
  50. pulumi_vault/consul/secret_backend_role.py +183 -182
  51. pulumi_vault/database/__init__.py +1 -0
  52. pulumi_vault/database/_inputs.py +2525 -2524
  53. pulumi_vault/database/outputs.py +1529 -1528
  54. pulumi_vault/database/secret_backend_connection.py +169 -168
  55. pulumi_vault/database/secret_backend_role.py +169 -168
  56. pulumi_vault/database/secret_backend_static_role.py +179 -178
  57. pulumi_vault/database/secrets_mount.py +267 -266
  58. pulumi_vault/egp_policy.py +71 -70
  59. pulumi_vault/gcp/__init__.py +1 -0
  60. pulumi_vault/gcp/_inputs.py +82 -81
  61. pulumi_vault/gcp/auth_backend.py +260 -259
  62. pulumi_vault/gcp/auth_backend_role.py +281 -280
  63. pulumi_vault/gcp/get_auth_backend_role.py +70 -69
  64. pulumi_vault/gcp/outputs.py +50 -49
  65. pulumi_vault/gcp/secret_backend.py +232 -231
  66. pulumi_vault/gcp/secret_impersonated_account.py +92 -91
  67. pulumi_vault/gcp/secret_roleset.py +92 -91
  68. pulumi_vault/gcp/secret_static_account.py +92 -91
  69. pulumi_vault/generic/__init__.py +1 -0
  70. pulumi_vault/generic/endpoint.py +113 -112
  71. pulumi_vault/generic/get_secret.py +28 -27
  72. pulumi_vault/generic/secret.py +78 -77
  73. pulumi_vault/get_auth_backend.py +19 -18
  74. pulumi_vault/get_auth_backends.py +14 -13
  75. pulumi_vault/get_namespace.py +15 -14
  76. pulumi_vault/get_namespaces.py +8 -7
  77. pulumi_vault/get_nomad_access_token.py +19 -18
  78. pulumi_vault/get_policy_document.py +6 -5
  79. pulumi_vault/get_raft_autopilot_state.py +18 -17
  80. pulumi_vault/github/__init__.py +1 -0
  81. pulumi_vault/github/_inputs.py +42 -41
  82. pulumi_vault/github/auth_backend.py +232 -231
  83. pulumi_vault/github/outputs.py +26 -25
  84. pulumi_vault/github/team.py +57 -56
  85. pulumi_vault/github/user.py +57 -56
  86. pulumi_vault/identity/__init__.py +1 -0
  87. pulumi_vault/identity/entity.py +85 -84
  88. pulumi_vault/identity/entity_alias.py +71 -70
  89. pulumi_vault/identity/entity_policies.py +64 -63
  90. pulumi_vault/identity/get_entity.py +43 -42
  91. pulumi_vault/identity/get_group.py +50 -49
  92. pulumi_vault/identity/get_oidc_client_creds.py +14 -13
  93. pulumi_vault/identity/get_oidc_openid_config.py +24 -23
  94. pulumi_vault/identity/get_oidc_public_keys.py +13 -12
  95. pulumi_vault/identity/group.py +141 -140
  96. pulumi_vault/identity/group_alias.py +57 -56
  97. pulumi_vault/identity/group_member_entity_ids.py +57 -56
  98. pulumi_vault/identity/group_member_group_ids.py +57 -56
  99. pulumi_vault/identity/group_policies.py +64 -63
  100. pulumi_vault/identity/mfa_duo.py +148 -147
  101. pulumi_vault/identity/mfa_login_enforcement.py +120 -119
  102. pulumi_vault/identity/mfa_okta.py +134 -133
  103. pulumi_vault/identity/mfa_pingid.py +127 -126
  104. pulumi_vault/identity/mfa_totp.py +176 -175
  105. pulumi_vault/identity/oidc.py +29 -28
  106. pulumi_vault/identity/oidc_assignment.py +57 -56
  107. pulumi_vault/identity/oidc_client.py +127 -126
  108. pulumi_vault/identity/oidc_key.py +85 -84
  109. pulumi_vault/identity/oidc_key_allowed_client_id.py +43 -42
  110. pulumi_vault/identity/oidc_provider.py +92 -91
  111. pulumi_vault/identity/oidc_role.py +85 -84
  112. pulumi_vault/identity/oidc_scope.py +57 -56
  113. pulumi_vault/identity/outputs.py +32 -31
  114. pulumi_vault/jwt/__init__.py +1 -0
  115. pulumi_vault/jwt/_inputs.py +42 -41
  116. pulumi_vault/jwt/auth_backend.py +288 -287
  117. pulumi_vault/jwt/auth_backend_role.py +407 -406
  118. pulumi_vault/jwt/outputs.py +26 -25
  119. pulumi_vault/kmip/__init__.py +1 -0
  120. pulumi_vault/kmip/secret_backend.py +183 -182
  121. pulumi_vault/kmip/secret_role.py +295 -294
  122. pulumi_vault/kmip/secret_scope.py +57 -56
  123. pulumi_vault/kubernetes/__init__.py +1 -0
  124. pulumi_vault/kubernetes/auth_backend_config.py +141 -140
  125. pulumi_vault/kubernetes/auth_backend_role.py +225 -224
  126. pulumi_vault/kubernetes/get_auth_backend_config.py +47 -46
  127. pulumi_vault/kubernetes/get_auth_backend_role.py +70 -69
  128. pulumi_vault/kubernetes/get_service_account_token.py +38 -37
  129. pulumi_vault/kubernetes/secret_backend.py +316 -315
  130. pulumi_vault/kubernetes/secret_backend_role.py +197 -196
  131. pulumi_vault/kv/__init__.py +1 -0
  132. pulumi_vault/kv/_inputs.py +21 -20
  133. pulumi_vault/kv/get_secret.py +17 -16
  134. pulumi_vault/kv/get_secret_subkeys_v2.py +30 -29
  135. pulumi_vault/kv/get_secret_v2.py +29 -28
  136. pulumi_vault/kv/get_secrets_list.py +13 -12
  137. pulumi_vault/kv/get_secrets_list_v2.py +19 -18
  138. pulumi_vault/kv/outputs.py +13 -12
  139. pulumi_vault/kv/secret.py +50 -49
  140. pulumi_vault/kv/secret_backend_v2.py +71 -70
  141. pulumi_vault/kv/secret_v2.py +134 -133
  142. pulumi_vault/ldap/__init__.py +1 -0
  143. pulumi_vault/ldap/auth_backend.py +588 -587
  144. pulumi_vault/ldap/auth_backend_group.py +57 -56
  145. pulumi_vault/ldap/auth_backend_user.py +71 -70
  146. pulumi_vault/ldap/get_dynamic_credentials.py +17 -16
  147. pulumi_vault/ldap/get_static_credentials.py +18 -17
  148. pulumi_vault/ldap/secret_backend.py +554 -553
  149. pulumi_vault/ldap/secret_backend_dynamic_role.py +127 -126
  150. pulumi_vault/ldap/secret_backend_library_set.py +99 -98
  151. pulumi_vault/ldap/secret_backend_static_role.py +99 -98
  152. pulumi_vault/managed/__init__.py +1 -0
  153. pulumi_vault/managed/_inputs.py +229 -228
  154. pulumi_vault/managed/keys.py +15 -14
  155. pulumi_vault/managed/outputs.py +139 -138
  156. pulumi_vault/mfa_duo.py +113 -112
  157. pulumi_vault/mfa_okta.py +113 -112
  158. pulumi_vault/mfa_pingid.py +120 -119
  159. pulumi_vault/mfa_totp.py +127 -126
  160. pulumi_vault/mongodbatlas/__init__.py +1 -0
  161. pulumi_vault/mongodbatlas/secret_backend.py +64 -63
  162. pulumi_vault/mongodbatlas/secret_role.py +155 -154
  163. pulumi_vault/mount.py +274 -273
  164. pulumi_vault/namespace.py +64 -63
  165. pulumi_vault/nomad_secret_backend.py +211 -210
  166. pulumi_vault/nomad_secret_role.py +85 -84
  167. pulumi_vault/okta/__init__.py +1 -0
  168. pulumi_vault/okta/_inputs.py +26 -25
  169. pulumi_vault/okta/auth_backend.py +274 -273
  170. pulumi_vault/okta/auth_backend_group.py +57 -56
  171. pulumi_vault/okta/auth_backend_user.py +71 -70
  172. pulumi_vault/okta/outputs.py +16 -15
  173. pulumi_vault/outputs.py +56 -55
  174. pulumi_vault/password_policy.py +43 -42
  175. pulumi_vault/pkisecret/__init__.py +1 -0
  176. pulumi_vault/pkisecret/_inputs.py +31 -30
  177. pulumi_vault/pkisecret/backend_acme_eab.py +92 -91
  178. pulumi_vault/pkisecret/backend_config_acme.py +141 -140
  179. pulumi_vault/pkisecret/backend_config_auto_tidy.py +323 -322
  180. pulumi_vault/pkisecret/backend_config_cluster.py +57 -56
  181. pulumi_vault/pkisecret/backend_config_cmpv2.py +106 -105
  182. pulumi_vault/pkisecret/backend_config_est.py +120 -119
  183. pulumi_vault/pkisecret/get_backend_cert_metadata.py +22 -21
  184. pulumi_vault/pkisecret/get_backend_config_cmpv2.py +22 -21
  185. pulumi_vault/pkisecret/get_backend_config_est.py +19 -18
  186. pulumi_vault/pkisecret/get_backend_issuer.py +45 -44
  187. pulumi_vault/pkisecret/get_backend_issuers.py +15 -14
  188. pulumi_vault/pkisecret/get_backend_key.py +20 -19
  189. pulumi_vault/pkisecret/get_backend_keys.py +15 -14
  190. pulumi_vault/pkisecret/outputs.py +28 -27
  191. pulumi_vault/pkisecret/secret_backend_cert.py +337 -336
  192. pulumi_vault/pkisecret/secret_backend_config_ca.py +43 -42
  193. pulumi_vault/pkisecret/secret_backend_config_issuers.py +57 -56
  194. pulumi_vault/pkisecret/secret_backend_config_urls.py +85 -84
  195. pulumi_vault/pkisecret/secret_backend_crl_config.py +197 -196
  196. pulumi_vault/pkisecret/secret_backend_intermediate_cert_request.py +421 -420
  197. pulumi_vault/pkisecret/secret_backend_intermediate_set_signed.py +57 -56
  198. pulumi_vault/pkisecret/secret_backend_issuer.py +232 -231
  199. pulumi_vault/pkisecret/secret_backend_key.py +120 -119
  200. pulumi_vault/pkisecret/secret_backend_role.py +715 -714
  201. pulumi_vault/pkisecret/secret_backend_root_cert.py +554 -553
  202. pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +526 -525
  203. pulumi_vault/pkisecret/secret_backend_sign.py +281 -280
  204. pulumi_vault/plugin.py +127 -126
  205. pulumi_vault/plugin_pinned_version.py +43 -42
  206. pulumi_vault/policy.py +43 -42
  207. pulumi_vault/provider.py +120 -119
  208. pulumi_vault/pulumi-plugin.json +1 -1
  209. pulumi_vault/quota_lease_count.py +85 -84
  210. pulumi_vault/quota_rate_limit.py +113 -112
  211. pulumi_vault/rabbitmq/__init__.py +1 -0
  212. pulumi_vault/rabbitmq/_inputs.py +41 -40
  213. pulumi_vault/rabbitmq/outputs.py +25 -24
  214. pulumi_vault/rabbitmq/secret_backend.py +169 -168
  215. pulumi_vault/rabbitmq/secret_backend_role.py +57 -56
  216. pulumi_vault/raft_autopilot.py +113 -112
  217. pulumi_vault/raft_snapshot_agent_config.py +393 -392
  218. pulumi_vault/rgp_policy.py +57 -56
  219. pulumi_vault/saml/__init__.py +1 -0
  220. pulumi_vault/saml/auth_backend.py +155 -154
  221. pulumi_vault/saml/auth_backend_role.py +239 -238
  222. pulumi_vault/secrets/__init__.py +1 -0
  223. pulumi_vault/secrets/_inputs.py +16 -15
  224. pulumi_vault/secrets/outputs.py +10 -9
  225. pulumi_vault/secrets/sync_association.py +71 -70
  226. pulumi_vault/secrets/sync_aws_destination.py +148 -147
  227. pulumi_vault/secrets/sync_azure_destination.py +148 -147
  228. pulumi_vault/secrets/sync_config.py +43 -42
  229. pulumi_vault/secrets/sync_gcp_destination.py +106 -105
  230. pulumi_vault/secrets/sync_gh_destination.py +134 -133
  231. pulumi_vault/secrets/sync_github_apps.py +64 -63
  232. pulumi_vault/secrets/sync_vercel_destination.py +120 -119
  233. pulumi_vault/ssh/__init__.py +1 -0
  234. pulumi_vault/ssh/_inputs.py +11 -10
  235. pulumi_vault/ssh/get_secret_backend_sign.py +52 -51
  236. pulumi_vault/ssh/outputs.py +7 -6
  237. pulumi_vault/ssh/secret_backend_ca.py +99 -98
  238. pulumi_vault/ssh/secret_backend_role.py +365 -364
  239. pulumi_vault/terraformcloud/__init__.py +1 -0
  240. pulumi_vault/terraformcloud/secret_backend.py +111 -110
  241. pulumi_vault/terraformcloud/secret_creds.py +74 -73
  242. pulumi_vault/terraformcloud/secret_role.py +93 -92
  243. pulumi_vault/token.py +246 -245
  244. pulumi_vault/tokenauth/__init__.py +1 -0
  245. pulumi_vault/tokenauth/auth_backend_role.py +267 -266
  246. pulumi_vault/transform/__init__.py +1 -0
  247. pulumi_vault/transform/alphabet.py +57 -56
  248. pulumi_vault/transform/get_decode.py +47 -46
  249. pulumi_vault/transform/get_encode.py +47 -46
  250. pulumi_vault/transform/role.py +57 -56
  251. pulumi_vault/transform/template.py +113 -112
  252. pulumi_vault/transform/transformation.py +141 -140
  253. pulumi_vault/transit/__init__.py +1 -0
  254. pulumi_vault/transit/get_decrypt.py +18 -17
  255. pulumi_vault/transit/get_encrypt.py +21 -20
  256. pulumi_vault/transit/get_sign.py +54 -53
  257. pulumi_vault/transit/get_verify.py +60 -59
  258. pulumi_vault/transit/secret_backend_key.py +274 -273
  259. pulumi_vault/transit/secret_cache_config.py +43 -42
  260. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/METADATA +1 -1
  261. pulumi_vault-6.7.0a1744267302.dist-info/RECORD +265 -0
  262. pulumi_vault-6.7.0a1743576047.dist-info/RECORD +0 -265
  263. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/WHEEL +0 -0
  264. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,41 +20,41 @@ __all__ = ['EndpointArgs', 'Endpoint']
19
20
  @pulumi.input_type
20
21
  class EndpointArgs:
21
22
  def __init__(__self__, *,
22
- data_json: pulumi.Input[str],
23
- path: pulumi.Input[str],
24
- disable_delete: Optional[pulumi.Input[bool]] = None,
25
- disable_read: Optional[pulumi.Input[bool]] = None,
26
- ignore_absent_fields: Optional[pulumi.Input[bool]] = None,
27
- namespace: Optional[pulumi.Input[str]] = None,
28
- write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
23
+ data_json: pulumi.Input[builtins.str],
24
+ path: pulumi.Input[builtins.str],
25
+ disable_delete: Optional[pulumi.Input[builtins.bool]] = None,
26
+ disable_read: Optional[pulumi.Input[builtins.bool]] = None,
27
+ ignore_absent_fields: Optional[pulumi.Input[builtins.bool]] = None,
28
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
29
+ write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
29
30
  """
30
31
  The set of arguments for constructing a Endpoint resource.
31
- :param pulumi.Input[str] data_json: String containing a JSON-encoded object that will be
32
+ :param pulumi.Input[builtins.str] data_json: String containing a JSON-encoded object that will be
32
33
  written to the given path as the secret data.
33
- :param pulumi.Input[str] path: The full logical path at which to write the given
34
+ :param pulumi.Input[builtins.str] path: The full logical path at which to write the given
34
35
  data. Consult each backend's documentation to see which endpoints
35
36
  support the `PUT` methods and to determine whether they also support
36
37
  `DELETE` and `GET`.
37
- :param pulumi.Input[bool] disable_delete: - (Optional) True/false. Set this to true if your
38
+ :param pulumi.Input[builtins.bool] disable_delete: - (Optional) True/false. Set this to true if your
38
39
  vault authentication is not able to delete the data or if the endpoint
39
40
  does not support the `DELETE` method. Defaults to false.
40
- :param pulumi.Input[bool] disable_read: True/false. Set this to true if your vault
41
+ :param pulumi.Input[builtins.bool] disable_read: True/false. Set this to true if your vault
41
42
  authentication is not able to read the data or if the endpoint does
42
43
  not support the `GET` method. Setting this to `true` will break drift
43
44
  detection. You should set this to `true` for endpoints that are
44
45
  write-only. Defaults to false.
45
- :param pulumi.Input[bool] ignore_absent_fields: - (Optional) True/false. If set to true,
46
+ :param pulumi.Input[builtins.bool] ignore_absent_fields: - (Optional) True/false. If set to true,
46
47
  ignore any fields present when the endpoint is read but that were not
47
48
  in `data_json`. Also, if a field that was written is not returned when
48
49
  the endpoint is read, treat that field as being up to date. You should
49
50
  set this to `true` when writing to endpoint that, when read, returns a
50
51
  different set of fields from the ones you wrote, as is common with
51
52
  many configuration endpoints. Defaults to false.
52
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
53
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
53
54
  The value should not contain leading or trailing forward slashes.
54
55
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
55
56
  *Available only for Vault Enterprise*.
56
- :param pulumi.Input[Sequence[pulumi.Input[str]]] write_fields: - (Optional). A list of fields that should be returned
57
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] write_fields: - (Optional). A list of fields that should be returned
57
58
  in `write_data_json` and `write_data`. If omitted, data returned by
58
59
  the write operation is not available to the resource or included in
59
60
  state. This helps to avoid accidental storage of sensitive values in
@@ -76,7 +77,7 @@ class EndpointArgs:
76
77
 
77
78
  @property
78
79
  @pulumi.getter(name="dataJson")
79
- def data_json(self) -> pulumi.Input[str]:
80
+ def data_json(self) -> pulumi.Input[builtins.str]:
80
81
  """
81
82
  String containing a JSON-encoded object that will be
82
83
  written to the given path as the secret data.
@@ -84,12 +85,12 @@ class EndpointArgs:
84
85
  return pulumi.get(self, "data_json")
85
86
 
86
87
  @data_json.setter
87
- def data_json(self, value: pulumi.Input[str]):
88
+ def data_json(self, value: pulumi.Input[builtins.str]):
88
89
  pulumi.set(self, "data_json", value)
89
90
 
90
91
  @property
91
92
  @pulumi.getter
92
- def path(self) -> pulumi.Input[str]:
93
+ def path(self) -> pulumi.Input[builtins.str]:
93
94
  """
94
95
  The full logical path at which to write the given
95
96
  data. Consult each backend's documentation to see which endpoints
@@ -99,12 +100,12 @@ class EndpointArgs:
99
100
  return pulumi.get(self, "path")
100
101
 
101
102
  @path.setter
102
- def path(self, value: pulumi.Input[str]):
103
+ def path(self, value: pulumi.Input[builtins.str]):
103
104
  pulumi.set(self, "path", value)
104
105
 
105
106
  @property
106
107
  @pulumi.getter(name="disableDelete")
107
- def disable_delete(self) -> Optional[pulumi.Input[bool]]:
108
+ def disable_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
108
109
  """
109
110
  - (Optional) True/false. Set this to true if your
110
111
  vault authentication is not able to delete the data or if the endpoint
@@ -113,12 +114,12 @@ class EndpointArgs:
113
114
  return pulumi.get(self, "disable_delete")
114
115
 
115
116
  @disable_delete.setter
116
- def disable_delete(self, value: Optional[pulumi.Input[bool]]):
117
+ def disable_delete(self, value: Optional[pulumi.Input[builtins.bool]]):
117
118
  pulumi.set(self, "disable_delete", value)
118
119
 
119
120
  @property
120
121
  @pulumi.getter(name="disableRead")
121
- def disable_read(self) -> Optional[pulumi.Input[bool]]:
122
+ def disable_read(self) -> Optional[pulumi.Input[builtins.bool]]:
122
123
  """
123
124
  True/false. Set this to true if your vault
124
125
  authentication is not able to read the data or if the endpoint does
@@ -129,12 +130,12 @@ class EndpointArgs:
129
130
  return pulumi.get(self, "disable_read")
130
131
 
131
132
  @disable_read.setter
132
- def disable_read(self, value: Optional[pulumi.Input[bool]]):
133
+ def disable_read(self, value: Optional[pulumi.Input[builtins.bool]]):
133
134
  pulumi.set(self, "disable_read", value)
134
135
 
135
136
  @property
136
137
  @pulumi.getter(name="ignoreAbsentFields")
137
- def ignore_absent_fields(self) -> Optional[pulumi.Input[bool]]:
138
+ def ignore_absent_fields(self) -> Optional[pulumi.Input[builtins.bool]]:
138
139
  """
139
140
  - (Optional) True/false. If set to true,
140
141
  ignore any fields present when the endpoint is read but that were not
@@ -147,12 +148,12 @@ class EndpointArgs:
147
148
  return pulumi.get(self, "ignore_absent_fields")
148
149
 
149
150
  @ignore_absent_fields.setter
150
- def ignore_absent_fields(self, value: Optional[pulumi.Input[bool]]):
151
+ def ignore_absent_fields(self, value: Optional[pulumi.Input[builtins.bool]]):
151
152
  pulumi.set(self, "ignore_absent_fields", value)
152
153
 
153
154
  @property
154
155
  @pulumi.getter
155
- def namespace(self) -> Optional[pulumi.Input[str]]:
156
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
156
157
  """
157
158
  The namespace to provision the resource in.
158
159
  The value should not contain leading or trailing forward slashes.
@@ -162,12 +163,12 @@ class EndpointArgs:
162
163
  return pulumi.get(self, "namespace")
163
164
 
164
165
  @namespace.setter
165
- def namespace(self, value: Optional[pulumi.Input[str]]):
166
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
166
167
  pulumi.set(self, "namespace", value)
167
168
 
168
169
  @property
169
170
  @pulumi.getter(name="writeFields")
170
- def write_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
171
+ def write_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
171
172
  """
172
173
  - (Optional). A list of fields that should be returned
173
174
  in `write_data_json` and `write_data`. If omitted, data returned by
@@ -180,57 +181,57 @@ class EndpointArgs:
180
181
  return pulumi.get(self, "write_fields")
181
182
 
182
183
  @write_fields.setter
183
- def write_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
184
+ def write_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
184
185
  pulumi.set(self, "write_fields", value)
185
186
 
186
187
 
187
188
  @pulumi.input_type
188
189
  class _EndpointState:
189
190
  def __init__(__self__, *,
190
- data_json: Optional[pulumi.Input[str]] = None,
191
- disable_delete: Optional[pulumi.Input[bool]] = None,
192
- disable_read: Optional[pulumi.Input[bool]] = None,
193
- ignore_absent_fields: Optional[pulumi.Input[bool]] = None,
194
- namespace: Optional[pulumi.Input[str]] = None,
195
- path: Optional[pulumi.Input[str]] = None,
196
- write_data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
197
- write_data_json: Optional[pulumi.Input[str]] = None,
198
- write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
191
+ data_json: Optional[pulumi.Input[builtins.str]] = None,
192
+ disable_delete: Optional[pulumi.Input[builtins.bool]] = None,
193
+ disable_read: Optional[pulumi.Input[builtins.bool]] = None,
194
+ ignore_absent_fields: Optional[pulumi.Input[builtins.bool]] = None,
195
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
196
+ path: Optional[pulumi.Input[builtins.str]] = None,
197
+ write_data: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
198
+ write_data_json: Optional[pulumi.Input[builtins.str]] = None,
199
+ write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
199
200
  """
200
201
  Input properties used for looking up and filtering Endpoint resources.
201
- :param pulumi.Input[str] data_json: String containing a JSON-encoded object that will be
202
+ :param pulumi.Input[builtins.str] data_json: String containing a JSON-encoded object that will be
202
203
  written to the given path as the secret data.
203
- :param pulumi.Input[bool] disable_delete: - (Optional) True/false. Set this to true if your
204
+ :param pulumi.Input[builtins.bool] disable_delete: - (Optional) True/false. Set this to true if your
204
205
  vault authentication is not able to delete the data or if the endpoint
205
206
  does not support the `DELETE` method. Defaults to false.
206
- :param pulumi.Input[bool] disable_read: True/false. Set this to true if your vault
207
+ :param pulumi.Input[builtins.bool] disable_read: True/false. Set this to true if your vault
207
208
  authentication is not able to read the data or if the endpoint does
208
209
  not support the `GET` method. Setting this to `true` will break drift
209
210
  detection. You should set this to `true` for endpoints that are
210
211
  write-only. Defaults to false.
211
- :param pulumi.Input[bool] ignore_absent_fields: - (Optional) True/false. If set to true,
212
+ :param pulumi.Input[builtins.bool] ignore_absent_fields: - (Optional) True/false. If set to true,
212
213
  ignore any fields present when the endpoint is read but that were not
213
214
  in `data_json`. Also, if a field that was written is not returned when
214
215
  the endpoint is read, treat that field as being up to date. You should
215
216
  set this to `true` when writing to endpoint that, when read, returns a
216
217
  different set of fields from the ones you wrote, as is common with
217
218
  many configuration endpoints. Defaults to false.
218
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
219
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
219
220
  The value should not contain leading or trailing forward slashes.
220
221
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
221
222
  *Available only for Vault Enterprise*.
222
- :param pulumi.Input[str] path: The full logical path at which to write the given
223
+ :param pulumi.Input[builtins.str] path: The full logical path at which to write the given
223
224
  data. Consult each backend's documentation to see which endpoints
224
225
  support the `PUT` methods and to determine whether they also support
225
226
  `DELETE` and `GET`.
226
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] write_data: - A map whose keys are the top-level data keys
227
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] write_data: - A map whose keys are the top-level data keys
227
228
  returned from Vault by the write operation and whose values are the
228
229
  corresponding values. This map can only represent string data, so
229
230
  any non-string values returned from Vault are serialized as JSON.
230
231
  Only fields set in `write_fields` are present in the JSON data.
231
- :param pulumi.Input[str] write_data_json: - The JSON data returned by the write operation.
232
+ :param pulumi.Input[builtins.str] write_data_json: - The JSON data returned by the write operation.
232
233
  Only fields set in `write_fields` are present in the JSON data.
233
- :param pulumi.Input[Sequence[pulumi.Input[str]]] write_fields: - (Optional). A list of fields that should be returned
234
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] write_fields: - (Optional). A list of fields that should be returned
234
235
  in `write_data_json` and `write_data`. If omitted, data returned by
235
236
  the write operation is not available to the resource or included in
236
237
  state. This helps to avoid accidental storage of sensitive values in
@@ -259,7 +260,7 @@ class _EndpointState:
259
260
 
260
261
  @property
261
262
  @pulumi.getter(name="dataJson")
262
- def data_json(self) -> Optional[pulumi.Input[str]]:
263
+ def data_json(self) -> Optional[pulumi.Input[builtins.str]]:
263
264
  """
264
265
  String containing a JSON-encoded object that will be
265
266
  written to the given path as the secret data.
@@ -267,12 +268,12 @@ class _EndpointState:
267
268
  return pulumi.get(self, "data_json")
268
269
 
269
270
  @data_json.setter
270
- def data_json(self, value: Optional[pulumi.Input[str]]):
271
+ def data_json(self, value: Optional[pulumi.Input[builtins.str]]):
271
272
  pulumi.set(self, "data_json", value)
272
273
 
273
274
  @property
274
275
  @pulumi.getter(name="disableDelete")
275
- def disable_delete(self) -> Optional[pulumi.Input[bool]]:
276
+ def disable_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
276
277
  """
277
278
  - (Optional) True/false. Set this to true if your
278
279
  vault authentication is not able to delete the data or if the endpoint
@@ -281,12 +282,12 @@ class _EndpointState:
281
282
  return pulumi.get(self, "disable_delete")
282
283
 
283
284
  @disable_delete.setter
284
- def disable_delete(self, value: Optional[pulumi.Input[bool]]):
285
+ def disable_delete(self, value: Optional[pulumi.Input[builtins.bool]]):
285
286
  pulumi.set(self, "disable_delete", value)
286
287
 
287
288
  @property
288
289
  @pulumi.getter(name="disableRead")
289
- def disable_read(self) -> Optional[pulumi.Input[bool]]:
290
+ def disable_read(self) -> Optional[pulumi.Input[builtins.bool]]:
290
291
  """
291
292
  True/false. Set this to true if your vault
292
293
  authentication is not able to read the data or if the endpoint does
@@ -297,12 +298,12 @@ class _EndpointState:
297
298
  return pulumi.get(self, "disable_read")
298
299
 
299
300
  @disable_read.setter
300
- def disable_read(self, value: Optional[pulumi.Input[bool]]):
301
+ def disable_read(self, value: Optional[pulumi.Input[builtins.bool]]):
301
302
  pulumi.set(self, "disable_read", value)
302
303
 
303
304
  @property
304
305
  @pulumi.getter(name="ignoreAbsentFields")
305
- def ignore_absent_fields(self) -> Optional[pulumi.Input[bool]]:
306
+ def ignore_absent_fields(self) -> Optional[pulumi.Input[builtins.bool]]:
306
307
  """
307
308
  - (Optional) True/false. If set to true,
308
309
  ignore any fields present when the endpoint is read but that were not
@@ -315,12 +316,12 @@ class _EndpointState:
315
316
  return pulumi.get(self, "ignore_absent_fields")
316
317
 
317
318
  @ignore_absent_fields.setter
318
- def ignore_absent_fields(self, value: Optional[pulumi.Input[bool]]):
319
+ def ignore_absent_fields(self, value: Optional[pulumi.Input[builtins.bool]]):
319
320
  pulumi.set(self, "ignore_absent_fields", value)
320
321
 
321
322
  @property
322
323
  @pulumi.getter
323
- def namespace(self) -> Optional[pulumi.Input[str]]:
324
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
324
325
  """
325
326
  The namespace to provision the resource in.
326
327
  The value should not contain leading or trailing forward slashes.
@@ -330,12 +331,12 @@ class _EndpointState:
330
331
  return pulumi.get(self, "namespace")
331
332
 
332
333
  @namespace.setter
333
- def namespace(self, value: Optional[pulumi.Input[str]]):
334
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
334
335
  pulumi.set(self, "namespace", value)
335
336
 
336
337
  @property
337
338
  @pulumi.getter
338
- def path(self) -> Optional[pulumi.Input[str]]:
339
+ def path(self) -> Optional[pulumi.Input[builtins.str]]:
339
340
  """
340
341
  The full logical path at which to write the given
341
342
  data. Consult each backend's documentation to see which endpoints
@@ -345,12 +346,12 @@ class _EndpointState:
345
346
  return pulumi.get(self, "path")
346
347
 
347
348
  @path.setter
348
- def path(self, value: Optional[pulumi.Input[str]]):
349
+ def path(self, value: Optional[pulumi.Input[builtins.str]]):
349
350
  pulumi.set(self, "path", value)
350
351
 
351
352
  @property
352
353
  @pulumi.getter(name="writeData")
353
- def write_data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
354
+ def write_data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
354
355
  """
355
356
  - A map whose keys are the top-level data keys
356
357
  returned from Vault by the write operation and whose values are the
@@ -361,12 +362,12 @@ class _EndpointState:
361
362
  return pulumi.get(self, "write_data")
362
363
 
363
364
  @write_data.setter
364
- def write_data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
365
+ def write_data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
365
366
  pulumi.set(self, "write_data", value)
366
367
 
367
368
  @property
368
369
  @pulumi.getter(name="writeDataJson")
369
- def write_data_json(self) -> Optional[pulumi.Input[str]]:
370
+ def write_data_json(self) -> Optional[pulumi.Input[builtins.str]]:
370
371
  """
371
372
  - The JSON data returned by the write operation.
372
373
  Only fields set in `write_fields` are present in the JSON data.
@@ -374,12 +375,12 @@ class _EndpointState:
374
375
  return pulumi.get(self, "write_data_json")
375
376
 
376
377
  @write_data_json.setter
377
- def write_data_json(self, value: Optional[pulumi.Input[str]]):
378
+ def write_data_json(self, value: Optional[pulumi.Input[builtins.str]]):
378
379
  pulumi.set(self, "write_data_json", value)
379
380
 
380
381
  @property
381
382
  @pulumi.getter(name="writeFields")
382
- def write_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
383
+ def write_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
383
384
  """
384
385
  - (Optional). A list of fields that should be returned
385
386
  in `write_data_json` and `write_data`. If omitted, data returned by
@@ -392,7 +393,7 @@ class _EndpointState:
392
393
  return pulumi.get(self, "write_fields")
393
394
 
394
395
  @write_fields.setter
395
- def write_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
396
+ def write_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
396
397
  pulumi.set(self, "write_fields", value)
397
398
 
398
399
 
@@ -401,13 +402,13 @@ class Endpoint(pulumi.CustomResource):
401
402
  def __init__(__self__,
402
403
  resource_name: str,
403
404
  opts: Optional[pulumi.ResourceOptions] = None,
404
- data_json: Optional[pulumi.Input[str]] = None,
405
- disable_delete: Optional[pulumi.Input[bool]] = None,
406
- disable_read: Optional[pulumi.Input[bool]] = None,
407
- ignore_absent_fields: Optional[pulumi.Input[bool]] = None,
408
- namespace: Optional[pulumi.Input[str]] = None,
409
- path: Optional[pulumi.Input[str]] = None,
410
- write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
405
+ data_json: Optional[pulumi.Input[builtins.str]] = None,
406
+ disable_delete: Optional[pulumi.Input[builtins.bool]] = None,
407
+ disable_read: Optional[pulumi.Input[builtins.bool]] = None,
408
+ ignore_absent_fields: Optional[pulumi.Input[builtins.bool]] = None,
409
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
410
+ path: Optional[pulumi.Input[builtins.str]] = None,
411
+ write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
411
412
  __props__=None):
412
413
  """
413
414
  ## Example Usage
@@ -463,32 +464,32 @@ class Endpoint(pulumi.CustomResource):
463
464
 
464
465
  :param str resource_name: The name of the resource.
465
466
  :param pulumi.ResourceOptions opts: Options for the resource.
466
- :param pulumi.Input[str] data_json: String containing a JSON-encoded object that will be
467
+ :param pulumi.Input[builtins.str] data_json: String containing a JSON-encoded object that will be
467
468
  written to the given path as the secret data.
468
- :param pulumi.Input[bool] disable_delete: - (Optional) True/false. Set this to true if your
469
+ :param pulumi.Input[builtins.bool] disable_delete: - (Optional) True/false. Set this to true if your
469
470
  vault authentication is not able to delete the data or if the endpoint
470
471
  does not support the `DELETE` method. Defaults to false.
471
- :param pulumi.Input[bool] disable_read: True/false. Set this to true if your vault
472
+ :param pulumi.Input[builtins.bool] disable_read: True/false. Set this to true if your vault
472
473
  authentication is not able to read the data or if the endpoint does
473
474
  not support the `GET` method. Setting this to `true` will break drift
474
475
  detection. You should set this to `true` for endpoints that are
475
476
  write-only. Defaults to false.
476
- :param pulumi.Input[bool] ignore_absent_fields: - (Optional) True/false. If set to true,
477
+ :param pulumi.Input[builtins.bool] ignore_absent_fields: - (Optional) True/false. If set to true,
477
478
  ignore any fields present when the endpoint is read but that were not
478
479
  in `data_json`. Also, if a field that was written is not returned when
479
480
  the endpoint is read, treat that field as being up to date. You should
480
481
  set this to `true` when writing to endpoint that, when read, returns a
481
482
  different set of fields from the ones you wrote, as is common with
482
483
  many configuration endpoints. Defaults to false.
483
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
484
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
484
485
  The value should not contain leading or trailing forward slashes.
485
486
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
486
487
  *Available only for Vault Enterprise*.
487
- :param pulumi.Input[str] path: The full logical path at which to write the given
488
+ :param pulumi.Input[builtins.str] path: The full logical path at which to write the given
488
489
  data. Consult each backend's documentation to see which endpoints
489
490
  support the `PUT` methods and to determine whether they also support
490
491
  `DELETE` and `GET`.
491
- :param pulumi.Input[Sequence[pulumi.Input[str]]] write_fields: - (Optional). A list of fields that should be returned
492
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] write_fields: - (Optional). A list of fields that should be returned
492
493
  in `write_data_json` and `write_data`. If omitted, data returned by
493
494
  the write operation is not available to the resource or included in
494
495
  state. This helps to avoid accidental storage of sensitive values in
@@ -569,13 +570,13 @@ class Endpoint(pulumi.CustomResource):
569
570
  def _internal_init(__self__,
570
571
  resource_name: str,
571
572
  opts: Optional[pulumi.ResourceOptions] = None,
572
- data_json: Optional[pulumi.Input[str]] = None,
573
- disable_delete: Optional[pulumi.Input[bool]] = None,
574
- disable_read: Optional[pulumi.Input[bool]] = None,
575
- ignore_absent_fields: Optional[pulumi.Input[bool]] = None,
576
- namespace: Optional[pulumi.Input[str]] = None,
577
- path: Optional[pulumi.Input[str]] = None,
578
- write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
573
+ data_json: Optional[pulumi.Input[builtins.str]] = None,
574
+ disable_delete: Optional[pulumi.Input[builtins.bool]] = None,
575
+ disable_read: Optional[pulumi.Input[builtins.bool]] = None,
576
+ ignore_absent_fields: Optional[pulumi.Input[builtins.bool]] = None,
577
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
578
+ path: Optional[pulumi.Input[builtins.str]] = None,
579
+ write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
579
580
  __props__=None):
580
581
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
581
582
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -610,15 +611,15 @@ class Endpoint(pulumi.CustomResource):
610
611
  def get(resource_name: str,
611
612
  id: pulumi.Input[str],
612
613
  opts: Optional[pulumi.ResourceOptions] = None,
613
- data_json: Optional[pulumi.Input[str]] = None,
614
- disable_delete: Optional[pulumi.Input[bool]] = None,
615
- disable_read: Optional[pulumi.Input[bool]] = None,
616
- ignore_absent_fields: Optional[pulumi.Input[bool]] = None,
617
- namespace: Optional[pulumi.Input[str]] = None,
618
- path: Optional[pulumi.Input[str]] = None,
619
- write_data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
620
- write_data_json: Optional[pulumi.Input[str]] = None,
621
- write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'Endpoint':
614
+ data_json: Optional[pulumi.Input[builtins.str]] = None,
615
+ disable_delete: Optional[pulumi.Input[builtins.bool]] = None,
616
+ disable_read: Optional[pulumi.Input[builtins.bool]] = None,
617
+ ignore_absent_fields: Optional[pulumi.Input[builtins.bool]] = None,
618
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
619
+ path: Optional[pulumi.Input[builtins.str]] = None,
620
+ write_data: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
621
+ write_data_json: Optional[pulumi.Input[builtins.str]] = None,
622
+ write_fields: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None) -> 'Endpoint':
622
623
  """
623
624
  Get an existing Endpoint resource's state with the given name, id, and optional extra
624
625
  properties used to qualify the lookup.
@@ -626,39 +627,39 @@ class Endpoint(pulumi.CustomResource):
626
627
  :param str resource_name: The unique name of the resulting resource.
627
628
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
628
629
  :param pulumi.ResourceOptions opts: Options for the resource.
629
- :param pulumi.Input[str] data_json: String containing a JSON-encoded object that will be
630
+ :param pulumi.Input[builtins.str] data_json: String containing a JSON-encoded object that will be
630
631
  written to the given path as the secret data.
631
- :param pulumi.Input[bool] disable_delete: - (Optional) True/false. Set this to true if your
632
+ :param pulumi.Input[builtins.bool] disable_delete: - (Optional) True/false. Set this to true if your
632
633
  vault authentication is not able to delete the data or if the endpoint
633
634
  does not support the `DELETE` method. Defaults to false.
634
- :param pulumi.Input[bool] disable_read: True/false. Set this to true if your vault
635
+ :param pulumi.Input[builtins.bool] disable_read: True/false. Set this to true if your vault
635
636
  authentication is not able to read the data or if the endpoint does
636
637
  not support the `GET` method. Setting this to `true` will break drift
637
638
  detection. You should set this to `true` for endpoints that are
638
639
  write-only. Defaults to false.
639
- :param pulumi.Input[bool] ignore_absent_fields: - (Optional) True/false. If set to true,
640
+ :param pulumi.Input[builtins.bool] ignore_absent_fields: - (Optional) True/false. If set to true,
640
641
  ignore any fields present when the endpoint is read but that were not
641
642
  in `data_json`. Also, if a field that was written is not returned when
642
643
  the endpoint is read, treat that field as being up to date. You should
643
644
  set this to `true` when writing to endpoint that, when read, returns a
644
645
  different set of fields from the ones you wrote, as is common with
645
646
  many configuration endpoints. Defaults to false.
646
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
647
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
647
648
  The value should not contain leading or trailing forward slashes.
648
649
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
649
650
  *Available only for Vault Enterprise*.
650
- :param pulumi.Input[str] path: The full logical path at which to write the given
651
+ :param pulumi.Input[builtins.str] path: The full logical path at which to write the given
651
652
  data. Consult each backend's documentation to see which endpoints
652
653
  support the `PUT` methods and to determine whether they also support
653
654
  `DELETE` and `GET`.
654
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] write_data: - A map whose keys are the top-level data keys
655
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] write_data: - A map whose keys are the top-level data keys
655
656
  returned from Vault by the write operation and whose values are the
656
657
  corresponding values. This map can only represent string data, so
657
658
  any non-string values returned from Vault are serialized as JSON.
658
659
  Only fields set in `write_fields` are present in the JSON data.
659
- :param pulumi.Input[str] write_data_json: - The JSON data returned by the write operation.
660
+ :param pulumi.Input[builtins.str] write_data_json: - The JSON data returned by the write operation.
660
661
  Only fields set in `write_fields` are present in the JSON data.
661
- :param pulumi.Input[Sequence[pulumi.Input[str]]] write_fields: - (Optional). A list of fields that should be returned
662
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] write_fields: - (Optional). A list of fields that should be returned
662
663
  in `write_data_json` and `write_data`. If omitted, data returned by
663
664
  the write operation is not available to the resource or included in
664
665
  state. This helps to avoid accidental storage of sensitive values in
@@ -683,7 +684,7 @@ class Endpoint(pulumi.CustomResource):
683
684
 
684
685
  @property
685
686
  @pulumi.getter(name="dataJson")
686
- def data_json(self) -> pulumi.Output[str]:
687
+ def data_json(self) -> pulumi.Output[builtins.str]:
687
688
  """
688
689
  String containing a JSON-encoded object that will be
689
690
  written to the given path as the secret data.
@@ -692,7 +693,7 @@ class Endpoint(pulumi.CustomResource):
692
693
 
693
694
  @property
694
695
  @pulumi.getter(name="disableDelete")
695
- def disable_delete(self) -> pulumi.Output[Optional[bool]]:
696
+ def disable_delete(self) -> pulumi.Output[Optional[builtins.bool]]:
696
697
  """
697
698
  - (Optional) True/false. Set this to true if your
698
699
  vault authentication is not able to delete the data or if the endpoint
@@ -702,7 +703,7 @@ class Endpoint(pulumi.CustomResource):
702
703
 
703
704
  @property
704
705
  @pulumi.getter(name="disableRead")
705
- def disable_read(self) -> pulumi.Output[Optional[bool]]:
706
+ def disable_read(self) -> pulumi.Output[Optional[builtins.bool]]:
706
707
  """
707
708
  True/false. Set this to true if your vault
708
709
  authentication is not able to read the data or if the endpoint does
@@ -714,7 +715,7 @@ class Endpoint(pulumi.CustomResource):
714
715
 
715
716
  @property
716
717
  @pulumi.getter(name="ignoreAbsentFields")
717
- def ignore_absent_fields(self) -> pulumi.Output[Optional[bool]]:
718
+ def ignore_absent_fields(self) -> pulumi.Output[Optional[builtins.bool]]:
718
719
  """
719
720
  - (Optional) True/false. If set to true,
720
721
  ignore any fields present when the endpoint is read but that were not
@@ -728,7 +729,7 @@ class Endpoint(pulumi.CustomResource):
728
729
 
729
730
  @property
730
731
  @pulumi.getter
731
- def namespace(self) -> pulumi.Output[Optional[str]]:
732
+ def namespace(self) -> pulumi.Output[Optional[builtins.str]]:
732
733
  """
733
734
  The namespace to provision the resource in.
734
735
  The value should not contain leading or trailing forward slashes.
@@ -739,7 +740,7 @@ class Endpoint(pulumi.CustomResource):
739
740
 
740
741
  @property
741
742
  @pulumi.getter
742
- def path(self) -> pulumi.Output[str]:
743
+ def path(self) -> pulumi.Output[builtins.str]:
743
744
  """
744
745
  The full logical path at which to write the given
745
746
  data. Consult each backend's documentation to see which endpoints
@@ -750,7 +751,7 @@ class Endpoint(pulumi.CustomResource):
750
751
 
751
752
  @property
752
753
  @pulumi.getter(name="writeData")
753
- def write_data(self) -> pulumi.Output[Mapping[str, str]]:
754
+ def write_data(self) -> pulumi.Output[Mapping[str, builtins.str]]:
754
755
  """
755
756
  - A map whose keys are the top-level data keys
756
757
  returned from Vault by the write operation and whose values are the
@@ -762,7 +763,7 @@ class Endpoint(pulumi.CustomResource):
762
763
 
763
764
  @property
764
765
  @pulumi.getter(name="writeDataJson")
765
- def write_data_json(self) -> pulumi.Output[str]:
766
+ def write_data_json(self) -> pulumi.Output[builtins.str]:
766
767
  """
767
768
  - The JSON data returned by the write operation.
768
769
  Only fields set in `write_fields` are present in the JSON data.
@@ -771,7 +772,7 @@ class Endpoint(pulumi.CustomResource):
771
772
 
772
773
  @property
773
774
  @pulumi.getter(name="writeFields")
774
- def write_fields(self) -> pulumi.Output[Optional[Sequence[str]]]:
775
+ def write_fields(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
775
776
  """
776
777
  - (Optional). A list of fields that should be returned
777
778
  in `write_data_json` and `write_data`. If omitted, data returned by