pulumi-vault 6.4.0a1723454543__py3-none-any.whl → 6.4.0a1724220732__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 (48) hide show
  1. pulumi_vault/aws/auth_backend_login.py +7 -7
  2. pulumi_vault/config/ui_custom_message.py +14 -14
  3. pulumi_vault/database/_inputs.py +72 -72
  4. pulumi_vault/database/outputs.py +54 -54
  5. pulumi_vault/database/secret_backend_connection.py +14 -14
  6. pulumi_vault/database/secret_backend_role.py +14 -14
  7. pulumi_vault/database/secrets_mount.py +14 -14
  8. pulumi_vault/generic/get_secret.py +1 -1
  9. pulumi_vault/generic/secret.py +7 -7
  10. pulumi_vault/get_namespace.py +1 -1
  11. pulumi_vault/get_nomad_access_token.py +10 -4
  12. pulumi_vault/get_raft_autopilot_state.py +3 -3
  13. pulumi_vault/identity/get_entity.py +1 -1
  14. pulumi_vault/identity/get_group.py +2 -2
  15. pulumi_vault/identity/get_oidc_public_keys.py +1 -1
  16. pulumi_vault/identity/outputs.py +3 -3
  17. pulumi_vault/jwt/auth_backend_role.py +28 -28
  18. pulumi_vault/kubernetes/secret_backend.py +14 -14
  19. pulumi_vault/kv/_inputs.py +4 -4
  20. pulumi_vault/kv/get_secret.py +1 -1
  21. pulumi_vault/kv/get_secret_subkeys_v2.py +1 -1
  22. pulumi_vault/kv/get_secret_v2.py +2 -2
  23. pulumi_vault/kv/outputs.py +3 -3
  24. pulumi_vault/kv/secret.py +7 -7
  25. pulumi_vault/kv/secret_v2.py +28 -28
  26. pulumi_vault/ldap/secret_backend.py +14 -14
  27. pulumi_vault/mount.py +16 -16
  28. pulumi_vault/namespace.py +14 -14
  29. pulumi_vault/pkisecret/_inputs.py +8 -8
  30. pulumi_vault/pkisecret/backend_config_est.py +14 -14
  31. pulumi_vault/pkisecret/get_backend_config_est.py +1 -1
  32. pulumi_vault/pkisecret/get_backend_issuers.py +1 -1
  33. pulumi_vault/pkisecret/get_backend_keys.py +1 -1
  34. pulumi_vault/pkisecret/outputs.py +12 -12
  35. pulumi_vault/pulumi-plugin.json +1 -1
  36. pulumi_vault/saml/auth_backend_role.py +14 -14
  37. pulumi_vault/secrets/sync_aws_destination.py +14 -14
  38. pulumi_vault/secrets/sync_azure_destination.py +14 -14
  39. pulumi_vault/secrets/sync_gcp_destination.py +14 -14
  40. pulumi_vault/ssh/secret_backend_role.py +28 -28
  41. pulumi_vault/transform/get_decode.py +10 -10
  42. pulumi_vault/transform/get_encode.py +10 -10
  43. pulumi_vault/transform/template.py +14 -14
  44. pulumi_vault/transit/secret_backend_key.py +7 -7
  45. {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/METADATA +1 -1
  46. {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/RECORD +48 -48
  47. {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/WHEEL +1 -1
  48. {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/top_level.txt +0 -0
@@ -19,10 +19,10 @@ class AuthBackendRoleArgs:
19
19
  allowed_redirect_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
20
20
  backend: Optional[pulumi.Input[str]] = None,
21
21
  bound_audiences: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
22
- bound_claims: Optional[pulumi.Input[Mapping[str, Any]]] = None,
22
+ bound_claims: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
23
23
  bound_claims_type: Optional[pulumi.Input[str]] = None,
24
24
  bound_subject: Optional[pulumi.Input[str]] = None,
25
- claim_mappings: Optional[pulumi.Input[Mapping[str, Any]]] = None,
25
+ claim_mappings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
26
26
  clock_skew_leeway: Optional[pulumi.Input[int]] = None,
27
27
  disable_bound_claims_parsing: Optional[pulumi.Input[bool]] = None,
28
28
  expiration_leeway: Optional[pulumi.Input[int]] = None,
@@ -55,7 +55,7 @@ class AuthBackendRoleArgs:
55
55
  Defaults to `jwt`.
56
56
  :param pulumi.Input[Sequence[pulumi.Input[str]]] bound_audiences: (Required for roles of type `jwt`, optional for roles of
57
57
  type `oidc`) List of `aud` claims to match against. Any match is sufficient.
58
- :param pulumi.Input[Mapping[str, Any]] bound_claims: If set, a map of claims to values to match against.
58
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] bound_claims: If set, a map of claims to values to match against.
59
59
  A claim's value must be a string, which may contain one value or multiple
60
60
  comma-separated values, e.g. `"red"` or `"red,green,blue"`.
61
61
  :param pulumi.Input[str] bound_claims_type: How to interpret values in the claims/values
@@ -63,7 +63,7 @@ class AuthBackendRoleArgs:
63
63
  match). Requires Vault 1.4.0 or above.
64
64
  :param pulumi.Input[str] bound_subject: If set, requires that the `sub` claim matches
65
65
  this value.
66
- :param pulumi.Input[Mapping[str, Any]] claim_mappings: If set, a map of claims (keys) to be copied
66
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] claim_mappings: If set, a map of claims (keys) to be copied
67
67
  to specified metadata fields (values).
68
68
  :param pulumi.Input[int] clock_skew_leeway: The amount of leeway to add to all claims to account for clock skew, in
69
69
  seconds. Defaults to `60` seconds if set to `0` and can be disabled if set to `-1`.
@@ -229,7 +229,7 @@ class AuthBackendRoleArgs:
229
229
 
230
230
  @property
231
231
  @pulumi.getter(name="boundClaims")
232
- def bound_claims(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
232
+ def bound_claims(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
233
233
  """
234
234
  If set, a map of claims to values to match against.
235
235
  A claim's value must be a string, which may contain one value or multiple
@@ -238,7 +238,7 @@ class AuthBackendRoleArgs:
238
238
  return pulumi.get(self, "bound_claims")
239
239
 
240
240
  @bound_claims.setter
241
- def bound_claims(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
241
+ def bound_claims(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
242
242
  pulumi.set(self, "bound_claims", value)
243
243
 
244
244
  @property
@@ -270,7 +270,7 @@ class AuthBackendRoleArgs:
270
270
 
271
271
  @property
272
272
  @pulumi.getter(name="claimMappings")
273
- def claim_mappings(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
273
+ def claim_mappings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
274
274
  """
275
275
  If set, a map of claims (keys) to be copied
276
276
  to specified metadata fields (values).
@@ -278,7 +278,7 @@ class AuthBackendRoleArgs:
278
278
  return pulumi.get(self, "claim_mappings")
279
279
 
280
280
  @claim_mappings.setter
281
- def claim_mappings(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
281
+ def claim_mappings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
282
282
  pulumi.set(self, "claim_mappings", value)
283
283
 
284
284
  @property
@@ -547,10 +547,10 @@ class _AuthBackendRoleState:
547
547
  allowed_redirect_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
548
548
  backend: Optional[pulumi.Input[str]] = None,
549
549
  bound_audiences: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
550
- bound_claims: Optional[pulumi.Input[Mapping[str, Any]]] = None,
550
+ bound_claims: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
551
551
  bound_claims_type: Optional[pulumi.Input[str]] = None,
552
552
  bound_subject: Optional[pulumi.Input[str]] = None,
553
- claim_mappings: Optional[pulumi.Input[Mapping[str, Any]]] = None,
553
+ claim_mappings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
554
554
  clock_skew_leeway: Optional[pulumi.Input[int]] = None,
555
555
  disable_bound_claims_parsing: Optional[pulumi.Input[bool]] = None,
556
556
  expiration_leeway: Optional[pulumi.Input[int]] = None,
@@ -581,7 +581,7 @@ class _AuthBackendRoleState:
581
581
  Defaults to `jwt`.
582
582
  :param pulumi.Input[Sequence[pulumi.Input[str]]] bound_audiences: (Required for roles of type `jwt`, optional for roles of
583
583
  type `oidc`) List of `aud` claims to match against. Any match is sufficient.
584
- :param pulumi.Input[Mapping[str, Any]] bound_claims: If set, a map of claims to values to match against.
584
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] bound_claims: If set, a map of claims to values to match against.
585
585
  A claim's value must be a string, which may contain one value or multiple
586
586
  comma-separated values, e.g. `"red"` or `"red,green,blue"`.
587
587
  :param pulumi.Input[str] bound_claims_type: How to interpret values in the claims/values
@@ -589,7 +589,7 @@ class _AuthBackendRoleState:
589
589
  match). Requires Vault 1.4.0 or above.
590
590
  :param pulumi.Input[str] bound_subject: If set, requires that the `sub` claim matches
591
591
  this value.
592
- :param pulumi.Input[Mapping[str, Any]] claim_mappings: If set, a map of claims (keys) to be copied
592
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] claim_mappings: If set, a map of claims (keys) to be copied
593
593
  to specified metadata fields (values).
594
594
  :param pulumi.Input[int] clock_skew_leeway: The amount of leeway to add to all claims to account for clock skew, in
595
595
  seconds. Defaults to `60` seconds if set to `0` and can be disabled if set to `-1`.
@@ -735,7 +735,7 @@ class _AuthBackendRoleState:
735
735
 
736
736
  @property
737
737
  @pulumi.getter(name="boundClaims")
738
- def bound_claims(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
738
+ def bound_claims(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
739
739
  """
740
740
  If set, a map of claims to values to match against.
741
741
  A claim's value must be a string, which may contain one value or multiple
@@ -744,7 +744,7 @@ class _AuthBackendRoleState:
744
744
  return pulumi.get(self, "bound_claims")
745
745
 
746
746
  @bound_claims.setter
747
- def bound_claims(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
747
+ def bound_claims(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
748
748
  pulumi.set(self, "bound_claims", value)
749
749
 
750
750
  @property
@@ -776,7 +776,7 @@ class _AuthBackendRoleState:
776
776
 
777
777
  @property
778
778
  @pulumi.getter(name="claimMappings")
779
- def claim_mappings(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
779
+ def claim_mappings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
780
780
  """
781
781
  If set, a map of claims (keys) to be copied
782
782
  to specified metadata fields (values).
@@ -784,7 +784,7 @@ class _AuthBackendRoleState:
784
784
  return pulumi.get(self, "claim_mappings")
785
785
 
786
786
  @claim_mappings.setter
787
- def claim_mappings(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
787
+ def claim_mappings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
788
788
  pulumi.set(self, "claim_mappings", value)
789
789
 
790
790
  @property
@@ -1081,10 +1081,10 @@ class AuthBackendRole(pulumi.CustomResource):
1081
1081
  allowed_redirect_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1082
1082
  backend: Optional[pulumi.Input[str]] = None,
1083
1083
  bound_audiences: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1084
- bound_claims: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1084
+ bound_claims: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1085
1085
  bound_claims_type: Optional[pulumi.Input[str]] = None,
1086
1086
  bound_subject: Optional[pulumi.Input[str]] = None,
1087
- claim_mappings: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1087
+ claim_mappings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1088
1088
  clock_skew_leeway: Optional[pulumi.Input[int]] = None,
1089
1089
  disable_bound_claims_parsing: Optional[pulumi.Input[bool]] = None,
1090
1090
  expiration_leeway: Optional[pulumi.Input[int]] = None,
@@ -1176,7 +1176,7 @@ class AuthBackendRole(pulumi.CustomResource):
1176
1176
  Defaults to `jwt`.
1177
1177
  :param pulumi.Input[Sequence[pulumi.Input[str]]] bound_audiences: (Required for roles of type `jwt`, optional for roles of
1178
1178
  type `oidc`) List of `aud` claims to match against. Any match is sufficient.
1179
- :param pulumi.Input[Mapping[str, Any]] bound_claims: If set, a map of claims to values to match against.
1179
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] bound_claims: If set, a map of claims to values to match against.
1180
1180
  A claim's value must be a string, which may contain one value or multiple
1181
1181
  comma-separated values, e.g. `"red"` or `"red,green,blue"`.
1182
1182
  :param pulumi.Input[str] bound_claims_type: How to interpret values in the claims/values
@@ -1184,7 +1184,7 @@ class AuthBackendRole(pulumi.CustomResource):
1184
1184
  match). Requires Vault 1.4.0 or above.
1185
1185
  :param pulumi.Input[str] bound_subject: If set, requires that the `sub` claim matches
1186
1186
  this value.
1187
- :param pulumi.Input[Mapping[str, Any]] claim_mappings: If set, a map of claims (keys) to be copied
1187
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] claim_mappings: If set, a map of claims (keys) to be copied
1188
1188
  to specified metadata fields (values).
1189
1189
  :param pulumi.Input[int] clock_skew_leeway: The amount of leeway to add to all claims to account for clock skew, in
1190
1190
  seconds. Defaults to `60` seconds if set to `0` and can be disabled if set to `-1`.
@@ -1314,10 +1314,10 @@ class AuthBackendRole(pulumi.CustomResource):
1314
1314
  allowed_redirect_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1315
1315
  backend: Optional[pulumi.Input[str]] = None,
1316
1316
  bound_audiences: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1317
- bound_claims: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1317
+ bound_claims: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1318
1318
  bound_claims_type: Optional[pulumi.Input[str]] = None,
1319
1319
  bound_subject: Optional[pulumi.Input[str]] = None,
1320
- claim_mappings: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1320
+ claim_mappings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1321
1321
  clock_skew_leeway: Optional[pulumi.Input[int]] = None,
1322
1322
  disable_bound_claims_parsing: Optional[pulumi.Input[bool]] = None,
1323
1323
  expiration_leeway: Optional[pulumi.Input[int]] = None,
@@ -1395,10 +1395,10 @@ class AuthBackendRole(pulumi.CustomResource):
1395
1395
  allowed_redirect_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1396
1396
  backend: Optional[pulumi.Input[str]] = None,
1397
1397
  bound_audiences: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1398
- bound_claims: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1398
+ bound_claims: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1399
1399
  bound_claims_type: Optional[pulumi.Input[str]] = None,
1400
1400
  bound_subject: Optional[pulumi.Input[str]] = None,
1401
- claim_mappings: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1401
+ claim_mappings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1402
1402
  clock_skew_leeway: Optional[pulumi.Input[int]] = None,
1403
1403
  disable_bound_claims_parsing: Optional[pulumi.Input[bool]] = None,
1404
1404
  expiration_leeway: Optional[pulumi.Input[int]] = None,
@@ -1434,7 +1434,7 @@ class AuthBackendRole(pulumi.CustomResource):
1434
1434
  Defaults to `jwt`.
1435
1435
  :param pulumi.Input[Sequence[pulumi.Input[str]]] bound_audiences: (Required for roles of type `jwt`, optional for roles of
1436
1436
  type `oidc`) List of `aud` claims to match against. Any match is sufficient.
1437
- :param pulumi.Input[Mapping[str, Any]] bound_claims: If set, a map of claims to values to match against.
1437
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] bound_claims: If set, a map of claims to values to match against.
1438
1438
  A claim's value must be a string, which may contain one value or multiple
1439
1439
  comma-separated values, e.g. `"red"` or `"red,green,blue"`.
1440
1440
  :param pulumi.Input[str] bound_claims_type: How to interpret values in the claims/values
@@ -1442,7 +1442,7 @@ class AuthBackendRole(pulumi.CustomResource):
1442
1442
  match). Requires Vault 1.4.0 or above.
1443
1443
  :param pulumi.Input[str] bound_subject: If set, requires that the `sub` claim matches
1444
1444
  this value.
1445
- :param pulumi.Input[Mapping[str, Any]] claim_mappings: If set, a map of claims (keys) to be copied
1445
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] claim_mappings: If set, a map of claims (keys) to be copied
1446
1446
  to specified metadata fields (values).
1447
1447
  :param pulumi.Input[int] clock_skew_leeway: The amount of leeway to add to all claims to account for clock skew, in
1448
1448
  seconds. Defaults to `60` seconds if set to `0` and can be disabled if set to `-1`.
@@ -1552,7 +1552,7 @@ class AuthBackendRole(pulumi.CustomResource):
1552
1552
 
1553
1553
  @property
1554
1554
  @pulumi.getter(name="boundClaims")
1555
- def bound_claims(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
1555
+ def bound_claims(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1556
1556
  """
1557
1557
  If set, a map of claims to values to match against.
1558
1558
  A claim's value must be a string, which may contain one value or multiple
@@ -1581,7 +1581,7 @@ class AuthBackendRole(pulumi.CustomResource):
1581
1581
 
1582
1582
  @property
1583
1583
  @pulumi.getter(name="claimMappings")
1584
- def claim_mappings(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
1584
+ def claim_mappings(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1585
1585
  """
1586
1586
  If set, a map of claims (keys) to be copied
1587
1587
  to specified metadata fields (values).
@@ -31,7 +31,7 @@ class SecretBackendArgs:
31
31
  local: Optional[pulumi.Input[bool]] = None,
32
32
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
33
33
  namespace: Optional[pulumi.Input[str]] = None,
34
- options: Optional[pulumi.Input[Mapping[str, Any]]] = None,
34
+ options: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
35
35
  passthrough_request_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
36
36
  plugin_version: Optional[pulumi.Input[str]] = None,
37
37
  seal_wrap: Optional[pulumi.Input[bool]] = None,
@@ -64,7 +64,7 @@ class SecretBackendArgs:
64
64
  The value should not contain leading or trailing forward slashes.
65
65
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
66
66
  *Available only for Vault Enterprise*.
67
- :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
67
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Specifies mount type specific options that are passed to the backend
68
68
  :param pulumi.Input[Sequence[pulumi.Input[str]]] passthrough_request_headers: List of headers to allow and pass from the request to the plugin
69
69
  :param pulumi.Input[str] plugin_version: Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
70
70
  :param pulumi.Input[bool] seal_wrap: Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
@@ -331,14 +331,14 @@ class SecretBackendArgs:
331
331
 
332
332
  @property
333
333
  @pulumi.getter
334
- def options(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
334
+ def options(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
335
335
  """
336
336
  Specifies mount type specific options that are passed to the backend
337
337
  """
338
338
  return pulumi.get(self, "options")
339
339
 
340
340
  @options.setter
341
- def options(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
341
+ def options(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
342
342
  pulumi.set(self, "options", value)
343
343
 
344
344
  @property
@@ -412,7 +412,7 @@ class _SecretBackendState:
412
412
  local: Optional[pulumi.Input[bool]] = None,
413
413
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
414
414
  namespace: Optional[pulumi.Input[str]] = None,
415
- options: Optional[pulumi.Input[Mapping[str, Any]]] = None,
415
+ options: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
416
416
  passthrough_request_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
417
417
  path: Optional[pulumi.Input[str]] = None,
418
418
  plugin_version: Optional[pulumi.Input[str]] = None,
@@ -446,7 +446,7 @@ class _SecretBackendState:
446
446
  The value should not contain leading or trailing forward slashes.
447
447
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
448
448
  *Available only for Vault Enterprise*.
449
- :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
449
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Specifies mount type specific options that are passed to the backend
450
450
  :param pulumi.Input[Sequence[pulumi.Input[str]]] passthrough_request_headers: List of headers to allow and pass from the request to the plugin
451
451
  :param pulumi.Input[str] path: Where the secret backend will be mounted
452
452
  :param pulumi.Input[str] plugin_version: Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
@@ -717,14 +717,14 @@ class _SecretBackendState:
717
717
 
718
718
  @property
719
719
  @pulumi.getter
720
- def options(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
720
+ def options(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
721
721
  """
722
722
  Specifies mount type specific options that are passed to the backend
723
723
  """
724
724
  return pulumi.get(self, "options")
725
725
 
726
726
  @options.setter
727
- def options(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
727
+ def options(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
728
728
  pulumi.set(self, "options", value)
729
729
 
730
730
  @property
@@ -811,7 +811,7 @@ class SecretBackend(pulumi.CustomResource):
811
811
  local: Optional[pulumi.Input[bool]] = None,
812
812
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
813
813
  namespace: Optional[pulumi.Input[str]] = None,
814
- options: Optional[pulumi.Input[Mapping[str, Any]]] = None,
814
+ options: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
815
815
  passthrough_request_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
816
816
  path: Optional[pulumi.Input[str]] = None,
817
817
  plugin_version: Optional[pulumi.Input[str]] = None,
@@ -872,7 +872,7 @@ class SecretBackend(pulumi.CustomResource):
872
872
  The value should not contain leading or trailing forward slashes.
873
873
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
874
874
  *Available only for Vault Enterprise*.
875
- :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
875
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Specifies mount type specific options that are passed to the backend
876
876
  :param pulumi.Input[Sequence[pulumi.Input[str]]] passthrough_request_headers: List of headers to allow and pass from the request to the plugin
877
877
  :param pulumi.Input[str] path: Where the secret backend will be mounted
878
878
  :param pulumi.Input[str] plugin_version: Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
@@ -945,7 +945,7 @@ class SecretBackend(pulumi.CustomResource):
945
945
  local: Optional[pulumi.Input[bool]] = None,
946
946
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
947
947
  namespace: Optional[pulumi.Input[str]] = None,
948
- options: Optional[pulumi.Input[Mapping[str, Any]]] = None,
948
+ options: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
949
949
  passthrough_request_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
950
950
  path: Optional[pulumi.Input[str]] = None,
951
951
  plugin_version: Optional[pulumi.Input[str]] = None,
@@ -1014,7 +1014,7 @@ class SecretBackend(pulumi.CustomResource):
1014
1014
  local: Optional[pulumi.Input[bool]] = None,
1015
1015
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
1016
1016
  namespace: Optional[pulumi.Input[str]] = None,
1017
- options: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1017
+ options: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1018
1018
  passthrough_request_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1019
1019
  path: Optional[pulumi.Input[str]] = None,
1020
1020
  plugin_version: Optional[pulumi.Input[str]] = None,
@@ -1053,7 +1053,7 @@ class SecretBackend(pulumi.CustomResource):
1053
1053
  The value should not contain leading or trailing forward slashes.
1054
1054
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1055
1055
  *Available only for Vault Enterprise*.
1056
- :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
1056
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Specifies mount type specific options that are passed to the backend
1057
1057
  :param pulumi.Input[Sequence[pulumi.Input[str]]] passthrough_request_headers: List of headers to allow and pass from the request to the plugin
1058
1058
  :param pulumi.Input[str] path: Where the secret backend will be mounted
1059
1059
  :param pulumi.Input[str] plugin_version: Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
@@ -1238,7 +1238,7 @@ class SecretBackend(pulumi.CustomResource):
1238
1238
 
1239
1239
  @property
1240
1240
  @pulumi.getter
1241
- def options(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
1241
+ def options(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1242
1242
  """
1243
1243
  Specifies mount type specific options that are passed to the backend
1244
1244
  """
@@ -17,12 +17,12 @@ __all__ = [
17
17
  class SecretV2CustomMetadataArgs:
18
18
  def __init__(__self__, *,
19
19
  cas_required: Optional[pulumi.Input[bool]] = None,
20
- data: Optional[pulumi.Input[Mapping[str, Any]]] = None,
20
+ data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
21
21
  delete_version_after: Optional[pulumi.Input[int]] = None,
22
22
  max_versions: Optional[pulumi.Input[int]] = None):
23
23
  """
24
24
  :param pulumi.Input[bool] cas_required: If true, all keys will require the cas parameter to be set on all write requests.
25
- :param pulumi.Input[Mapping[str, Any]] data: A mapping whose keys are the top-level data keys returned from
25
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A mapping whose keys are the top-level data keys returned from
26
26
  Vault and whose values are the corresponding values. This map can only
27
27
  represent string data, so any non-string values returned from Vault are
28
28
  serialized as JSON.
@@ -52,7 +52,7 @@ class SecretV2CustomMetadataArgs:
52
52
 
53
53
  @property
54
54
  @pulumi.getter
55
- def data(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
55
+ def data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
56
56
  """
57
57
  A mapping whose keys are the top-level data keys returned from
58
58
  Vault and whose values are the corresponding values. This map can only
@@ -62,7 +62,7 @@ class SecretV2CustomMetadataArgs:
62
62
  return pulumi.get(self, "data")
63
63
 
64
64
  @data.setter
65
- def data(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
65
+ def data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
66
66
  pulumi.set(self, "data", value)
67
67
 
68
68
  @property
@@ -49,7 +49,7 @@ class GetSecretResult:
49
49
 
50
50
  @property
51
51
  @pulumi.getter
52
- def data(self) -> Mapping[str, Any]:
52
+ def data(self) -> Mapping[str, str]:
53
53
  """
54
54
  A mapping whose keys are the top-level data keys returned from
55
55
  Vault and whose values are the corresponding values. This map can only
@@ -52,7 +52,7 @@ class GetSecretSubkeysV2Result:
52
52
 
53
53
  @property
54
54
  @pulumi.getter
55
- def data(self) -> Mapping[str, Any]:
55
+ def data(self) -> Mapping[str, str]:
56
56
  """
57
57
  Subkeys for the KV-V2 secret stored as a serialized map of strings.
58
58
  """
@@ -69,7 +69,7 @@ class GetSecretV2Result:
69
69
 
70
70
  @property
71
71
  @pulumi.getter(name="customMetadata")
72
- def custom_metadata(self) -> Mapping[str, Any]:
72
+ def custom_metadata(self) -> Mapping[str, str]:
73
73
  """
74
74
  Custom metadata for the secret.
75
75
  """
@@ -77,7 +77,7 @@ class GetSecretV2Result:
77
77
 
78
78
  @property
79
79
  @pulumi.getter
80
- def data(self) -> Mapping[str, Any]:
80
+ def data(self) -> Mapping[str, str]:
81
81
  """
82
82
  A mapping whose keys are the top-level data keys returned from
83
83
  Vault and whose values are the corresponding values. This map can only
@@ -38,12 +38,12 @@ class SecretV2CustomMetadata(dict):
38
38
 
39
39
  def __init__(__self__, *,
40
40
  cas_required: Optional[bool] = None,
41
- data: Optional[Mapping[str, Any]] = None,
41
+ data: Optional[Mapping[str, str]] = None,
42
42
  delete_version_after: Optional[int] = None,
43
43
  max_versions: Optional[int] = None):
44
44
  """
45
45
  :param bool cas_required: If true, all keys will require the cas parameter to be set on all write requests.
46
- :param Mapping[str, Any] data: A mapping whose keys are the top-level data keys returned from
46
+ :param Mapping[str, str] data: A mapping whose keys are the top-level data keys returned from
47
47
  Vault and whose values are the corresponding values. This map can only
48
48
  represent string data, so any non-string values returned from Vault are
49
49
  serialized as JSON.
@@ -69,7 +69,7 @@ class SecretV2CustomMetadata(dict):
69
69
 
70
70
  @property
71
71
  @pulumi.getter
72
- def data(self) -> Optional[Mapping[str, Any]]:
72
+ def data(self) -> Optional[Mapping[str, str]]:
73
73
  """
74
74
  A mapping whose keys are the top-level data keys returned from
75
75
  Vault and whose values are the corresponding values. This map can only
pulumi_vault/kv/secret.py CHANGED
@@ -76,13 +76,13 @@ class SecretArgs:
76
76
  @pulumi.input_type
77
77
  class _SecretState:
78
78
  def __init__(__self__, *,
79
- data: Optional[pulumi.Input[Mapping[str, Any]]] = None,
79
+ data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
80
80
  data_json: Optional[pulumi.Input[str]] = None,
81
81
  namespace: Optional[pulumi.Input[str]] = None,
82
82
  path: Optional[pulumi.Input[str]] = None):
83
83
  """
84
84
  Input properties used for looking up and filtering Secret resources.
85
- :param pulumi.Input[Mapping[str, Any]] data: A mapping whose keys are the top-level data keys returned from
85
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A mapping whose keys are the top-level data keys returned from
86
86
  Vault and whose values are the corresponding values. This map can only
87
87
  represent string data, so any non-string values returned from Vault are
88
88
  serialized as JSON.
@@ -105,7 +105,7 @@ class _SecretState:
105
105
 
106
106
  @property
107
107
  @pulumi.getter
108
- def data(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
108
+ def data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
109
109
  """
110
110
  A mapping whose keys are the top-level data keys returned from
111
111
  Vault and whose values are the corresponding values. This map can only
@@ -115,7 +115,7 @@ class _SecretState:
115
115
  return pulumi.get(self, "data")
116
116
 
117
117
  @data.setter
118
- def data(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
118
+ def data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
119
119
  pulumi.set(self, "data", value)
120
120
 
121
121
  @property
@@ -317,7 +317,7 @@ class Secret(pulumi.CustomResource):
317
317
  def get(resource_name: str,
318
318
  id: pulumi.Input[str],
319
319
  opts: Optional[pulumi.ResourceOptions] = None,
320
- data: Optional[pulumi.Input[Mapping[str, Any]]] = None,
320
+ data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
321
321
  data_json: Optional[pulumi.Input[str]] = None,
322
322
  namespace: Optional[pulumi.Input[str]] = None,
323
323
  path: Optional[pulumi.Input[str]] = None) -> 'Secret':
@@ -328,7 +328,7 @@ class Secret(pulumi.CustomResource):
328
328
  :param str resource_name: The unique name of the resulting resource.
329
329
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
330
330
  :param pulumi.ResourceOptions opts: Options for the resource.
331
- :param pulumi.Input[Mapping[str, Any]] data: A mapping whose keys are the top-level data keys returned from
331
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A mapping whose keys are the top-level data keys returned from
332
332
  Vault and whose values are the corresponding values. This map can only
333
333
  represent string data, so any non-string values returned from Vault are
334
334
  serialized as JSON.
@@ -352,7 +352,7 @@ class Secret(pulumi.CustomResource):
352
352
 
353
353
  @property
354
354
  @pulumi.getter
355
- def data(self) -> pulumi.Output[Mapping[str, Any]]:
355
+ def data(self) -> pulumi.Output[Mapping[str, str]]:
356
356
  """
357
357
  A mapping whose keys are the top-level data keys returned from
358
358
  Vault and whose values are the corresponding values. This map can only