pulumi-vault 5.21.0a1711033014__py3-none-any.whl → 6.0.0__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 (163) hide show
  1. pulumi_vault/__init__.py +24 -0
  2. pulumi_vault/ad/get_access_credentials.py +2 -2
  3. pulumi_vault/ad/secret_backend.py +7 -138
  4. pulumi_vault/ad/secret_library.py +7 -7
  5. pulumi_vault/ad/secret_role.py +7 -7
  6. pulumi_vault/approle/auth_backend_login.py +7 -7
  7. pulumi_vault/approle/auth_backend_role.py +7 -7
  8. pulumi_vault/approle/auth_backend_role_secret_id.py +7 -7
  9. pulumi_vault/audit.py +7 -7
  10. pulumi_vault/auth_backend.py +7 -7
  11. pulumi_vault/aws/auth_backend_cert.py +7 -7
  12. pulumi_vault/aws/auth_backend_client.py +7 -7
  13. pulumi_vault/aws/auth_backend_config_identity.py +7 -7
  14. pulumi_vault/aws/auth_backend_identity_whitelist.py +7 -7
  15. pulumi_vault/aws/auth_backend_login.py +7 -7
  16. pulumi_vault/aws/auth_backend_role.py +7 -7
  17. pulumi_vault/aws/auth_backend_role_tag.py +7 -7
  18. pulumi_vault/aws/auth_backend_roletag_blacklist.py +7 -7
  19. pulumi_vault/aws/auth_backend_sts_role.py +7 -7
  20. pulumi_vault/aws/get_access_credentials.py +2 -2
  21. pulumi_vault/aws/secret_backend.py +7 -7
  22. pulumi_vault/aws/secret_backend_role.py +7 -7
  23. pulumi_vault/aws/secret_backend_static_role.py +7 -7
  24. pulumi_vault/azure/auth_backend_config.py +7 -7
  25. pulumi_vault/azure/auth_backend_role.py +7 -7
  26. pulumi_vault/azure/backend.py +7 -7
  27. pulumi_vault/azure/backend_role.py +7 -7
  28. pulumi_vault/azure/get_access_credentials.py +2 -2
  29. pulumi_vault/cert_auth_backend_role.py +7 -63
  30. pulumi_vault/config/_inputs.py +52 -0
  31. pulumi_vault/config/outputs.py +30 -0
  32. pulumi_vault/config/ui_custom_message.py +524 -0
  33. pulumi_vault/consul/secret_backend.py +7 -7
  34. pulumi_vault/consul/secret_backend_role.py +7 -76
  35. pulumi_vault/egp_policy.py +7 -7
  36. pulumi_vault/gcp/auth_backend.py +7 -7
  37. pulumi_vault/gcp/auth_backend_role.py +7 -7
  38. pulumi_vault/gcp/secret_backend.py +7 -7
  39. pulumi_vault/gcp/secret_roleset.py +7 -7
  40. pulumi_vault/gcp/secret_static_account.py +7 -7
  41. pulumi_vault/generic/endpoint.py +7 -7
  42. pulumi_vault/generic/get_secret.py +2 -2
  43. pulumi_vault/generic/secret.py +7 -7
  44. pulumi_vault/get_auth_backend.py +2 -2
  45. pulumi_vault/get_auth_backends.py +20 -2
  46. pulumi_vault/get_nomad_access_token.py +2 -2
  47. pulumi_vault/get_raft_autopilot_state.py +2 -2
  48. pulumi_vault/github/auth_backend.py +7 -7
  49. pulumi_vault/github/team.py +7 -7
  50. pulumi_vault/github/user.py +7 -7
  51. pulumi_vault/identity/entity.py +7 -7
  52. pulumi_vault/identity/entity_alias.py +7 -7
  53. pulumi_vault/identity/entity_policies.py +7 -7
  54. pulumi_vault/identity/get_entity.py +2 -2
  55. pulumi_vault/identity/get_group.py +2 -2
  56. pulumi_vault/identity/get_oidc_client_creds.py +2 -2
  57. pulumi_vault/identity/get_oidc_openid_config.py +2 -2
  58. pulumi_vault/identity/get_oidc_public_keys.py +2 -2
  59. pulumi_vault/identity/group.py +7 -7
  60. pulumi_vault/identity/group_alias.py +7 -7
  61. pulumi_vault/identity/group_member_entity_ids.py +7 -58
  62. pulumi_vault/identity/group_member_group_ids.py +7 -7
  63. pulumi_vault/identity/group_policies.py +7 -7
  64. pulumi_vault/identity/oidc.py +7 -7
  65. pulumi_vault/identity/oidc_assignment.py +7 -7
  66. pulumi_vault/identity/oidc_client.py +19 -15
  67. pulumi_vault/identity/oidc_key.py +7 -7
  68. pulumi_vault/identity/oidc_key_allowed_client_id.py +7 -7
  69. pulumi_vault/identity/oidc_provider.py +7 -7
  70. pulumi_vault/identity/oidc_role.py +7 -7
  71. pulumi_vault/identity/oidc_scope.py +7 -7
  72. pulumi_vault/jwt/auth_backend.py +7 -7
  73. pulumi_vault/jwt/auth_backend_role.py +7 -7
  74. pulumi_vault/kmip/secret_backend.py +7 -7
  75. pulumi_vault/kmip/secret_role.py +7 -7
  76. pulumi_vault/kmip/secret_scope.py +7 -7
  77. pulumi_vault/kubernetes/auth_backend_role.py +7 -7
  78. pulumi_vault/kubernetes/get_service_account_token.py +2 -2
  79. pulumi_vault/kubernetes/secret_backend.py +7 -7
  80. pulumi_vault/kubernetes/secret_backend_role.py +7 -7
  81. pulumi_vault/kv/get_secret.py +2 -2
  82. pulumi_vault/kv/get_secret_subkeys_v2.py +2 -2
  83. pulumi_vault/kv/get_secret_v2.py +5 -2
  84. pulumi_vault/kv/get_secrets_list.py +2 -2
  85. pulumi_vault/kv/get_secrets_list_v2.py +2 -2
  86. pulumi_vault/kv/secret.py +7 -7
  87. pulumi_vault/kv/secret_backend_v2.py +7 -7
  88. pulumi_vault/kv/secret_v2.py +7 -7
  89. pulumi_vault/ldap/auth_backend.py +7 -7
  90. pulumi_vault/ldap/auth_backend_group.py +7 -7
  91. pulumi_vault/ldap/auth_backend_user.py +7 -7
  92. pulumi_vault/ldap/secret_backend.py +61 -76
  93. pulumi_vault/ldap/secret_backend_dynamic_role.py +7 -7
  94. pulumi_vault/ldap/secret_backend_library_set.py +7 -7
  95. pulumi_vault/ldap/secret_backend_static_role.py +62 -8
  96. pulumi_vault/mfa_duo.py +7 -7
  97. pulumi_vault/mfa_okta.py +7 -7
  98. pulumi_vault/mfa_pingid.py +7 -7
  99. pulumi_vault/mfa_totp.py +7 -7
  100. pulumi_vault/mongodbatlas/secret_backend.py +7 -7
  101. pulumi_vault/mongodbatlas/secret_role.py +7 -7
  102. pulumi_vault/mount.py +11 -7
  103. pulumi_vault/namespace.py +7 -7
  104. pulumi_vault/nomad_secret_backend.py +7 -7
  105. pulumi_vault/nomad_secret_role.py +7 -7
  106. pulumi_vault/okta/auth_backend.py +7 -7
  107. pulumi_vault/okta/auth_backend_group.py +7 -7
  108. pulumi_vault/okta/auth_backend_user.py +7 -7
  109. pulumi_vault/password_policy.py +7 -7
  110. pulumi_vault/pkisecret/__init__.py +1 -0
  111. pulumi_vault/pkisecret/backend_config_cluster.py +368 -0
  112. pulumi_vault/pkisecret/get_backend_issuer.py +2 -2
  113. pulumi_vault/pkisecret/get_backend_issuers.py +2 -2
  114. pulumi_vault/pkisecret/get_backend_key.py +2 -2
  115. pulumi_vault/pkisecret/get_backend_keys.py +2 -2
  116. pulumi_vault/pkisecret/secret_backend_cert.py +7 -7
  117. pulumi_vault/pkisecret/secret_backend_config_ca.py +7 -7
  118. pulumi_vault/pkisecret/secret_backend_config_issuers.py +7 -7
  119. pulumi_vault/pkisecret/secret_backend_config_urls.py +54 -7
  120. pulumi_vault/pkisecret/secret_backend_crl_config.py +7 -7
  121. pulumi_vault/pkisecret/secret_backend_intermediate_cert_request.py +7 -7
  122. pulumi_vault/pkisecret/secret_backend_intermediate_set_signed.py +7 -7
  123. pulumi_vault/pkisecret/secret_backend_issuer.py +7 -7
  124. pulumi_vault/pkisecret/secret_backend_key.py +7 -7
  125. pulumi_vault/pkisecret/secret_backend_role.py +7 -7
  126. pulumi_vault/pkisecret/secret_backend_root_cert.py +7 -44
  127. pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +7 -52
  128. pulumi_vault/pkisecret/secret_backend_sign.py +7 -52
  129. pulumi_vault/policy.py +7 -7
  130. pulumi_vault/rabbitmq/secret_backend.py +7 -7
  131. pulumi_vault/rabbitmq/secret_backend_role.py +7 -7
  132. pulumi_vault/raft_autopilot.py +7 -7
  133. pulumi_vault/raft_snapshot_agent_config.py +7 -7
  134. pulumi_vault/rgp_policy.py +7 -7
  135. pulumi_vault/saml/auth_backend.py +7 -7
  136. pulumi_vault/saml/auth_backend_role.py +7 -7
  137. pulumi_vault/secrets/__init__.py +1 -0
  138. pulumi_vault/secrets/sync_association.py +7 -7
  139. pulumi_vault/secrets/sync_aws_destination.py +161 -7
  140. pulumi_vault/secrets/sync_azure_destination.py +7 -7
  141. pulumi_vault/secrets/sync_gcp_destination.py +77 -7
  142. pulumi_vault/secrets/sync_gh_destination.py +122 -7
  143. pulumi_vault/secrets/sync_github_apps.py +370 -0
  144. pulumi_vault/secrets/sync_vercel_destination.py +7 -7
  145. pulumi_vault/ssh/secret_backend_ca.py +7 -7
  146. pulumi_vault/ssh/secret_backend_role.py +7 -83
  147. pulumi_vault/terraformcloud/secret_creds.py +7 -7
  148. pulumi_vault/terraformcloud/secret_role.py +7 -7
  149. pulumi_vault/token.py +7 -7
  150. pulumi_vault/tokenauth/auth_backend_role.py +7 -7
  151. pulumi_vault/transform/alphabet.py +7 -7
  152. pulumi_vault/transform/get_decode.py +2 -2
  153. pulumi_vault/transform/get_encode.py +2 -2
  154. pulumi_vault/transform/role.py +7 -7
  155. pulumi_vault/transform/template.py +7 -7
  156. pulumi_vault/transform/transformation.py +7 -7
  157. pulumi_vault/transit/secret_backend_key.py +7 -84
  158. pulumi_vault/transit/secret_cache_config.py +7 -7
  159. {pulumi_vault-5.21.0a1711033014.dist-info → pulumi_vault-6.0.0.dist-info}/METADATA +2 -2
  160. pulumi_vault-6.0.0.dist-info/RECORD +248 -0
  161. pulumi_vault-5.21.0a1711033014.dist-info/RECORD +0 -244
  162. {pulumi_vault-5.21.0a1711033014.dist-info → pulumi_vault-6.0.0.dist-info}/WHEEL +0 -0
  163. {pulumi_vault-5.21.0a1711033014.dist-info → pulumi_vault-6.0.0.dist-info}/top_level.txt +0 -0
@@ -69,7 +69,7 @@ class SecretBackendRootCertArgs:
69
69
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
70
70
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
71
71
  The value should not contain leading or trailing forward slashes.
72
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
72
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
73
73
  *Available only for Vault Enterprise*.
74
74
  :param pulumi.Input[str] organization: The organization
75
75
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -352,7 +352,7 @@ class SecretBackendRootCertArgs:
352
352
  """
353
353
  The namespace to provision the resource in.
354
354
  The value should not contain leading or trailing forward slashes.
355
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
355
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
356
356
  *Available only for Vault Enterprise*.
357
357
  """
358
358
  return pulumi.get(self, "namespace")
@@ -513,7 +513,6 @@ class _SecretBackendRootCertState:
513
513
  postal_code: Optional[pulumi.Input[str]] = None,
514
514
  private_key_format: Optional[pulumi.Input[str]] = None,
515
515
  province: Optional[pulumi.Input[str]] = None,
516
- serial: Optional[pulumi.Input[str]] = None,
517
516
  serial_number: Optional[pulumi.Input[str]] = None,
518
517
  street_address: Optional[pulumi.Input[str]] = None,
519
518
  ttl: Optional[pulumi.Input[str]] = None,
@@ -548,7 +547,7 @@ class _SecretBackendRootCertState:
548
547
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
549
548
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
550
549
  The value should not contain leading or trailing forward slashes.
551
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
550
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
552
551
  *Available only for Vault Enterprise*.
553
552
  :param pulumi.Input[str] organization: The organization
554
553
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -557,7 +556,6 @@ class _SecretBackendRootCertState:
557
556
  :param pulumi.Input[str] postal_code: The postal code
558
557
  :param pulumi.Input[str] private_key_format: The private key format
559
558
  :param pulumi.Input[str] province: The province
560
- :param pulumi.Input[str] serial: Deprecated, use `serial_number` instead.
561
559
  :param pulumi.Input[str] serial_number: The certificate's serial number, hex formatted.
562
560
  :param pulumi.Input[str] street_address: The street address
563
561
  :param pulumi.Input[str] ttl: Time to live
@@ -621,11 +619,6 @@ class _SecretBackendRootCertState:
621
619
  pulumi.set(__self__, "private_key_format", private_key_format)
622
620
  if province is not None:
623
621
  pulumi.set(__self__, "province", province)
624
- if serial is not None:
625
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
626
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
627
- if serial is not None:
628
- pulumi.set(__self__, "serial", serial)
629
622
  if serial_number is not None:
630
623
  pulumi.set(__self__, "serial_number", serial_number)
631
624
  if street_address is not None:
@@ -888,7 +881,7 @@ class _SecretBackendRootCertState:
888
881
  """
889
882
  The namespace to provision the resource in.
890
883
  The value should not contain leading or trailing forward slashes.
891
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
884
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
892
885
  *Available only for Vault Enterprise*.
893
886
  """
894
887
  return pulumi.get(self, "namespace")
@@ -981,21 +974,6 @@ class _SecretBackendRootCertState:
981
974
  def province(self, value: Optional[pulumi.Input[str]]):
982
975
  pulumi.set(self, "province", value)
983
976
 
984
- @property
985
- @pulumi.getter
986
- def serial(self) -> Optional[pulumi.Input[str]]:
987
- """
988
- Deprecated, use `serial_number` instead.
989
- """
990
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
991
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
992
-
993
- return pulumi.get(self, "serial")
994
-
995
- @serial.setter
996
- def serial(self, value: Optional[pulumi.Input[str]]):
997
- pulumi.set(self, "serial", value)
998
-
999
977
  @property
1000
978
  @pulumi.getter(name="serialNumber")
1001
979
  def serial_number(self) -> Optional[pulumi.Input[str]]:
@@ -1141,7 +1119,7 @@ class SecretBackendRootCert(pulumi.CustomResource):
1141
1119
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
1142
1120
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1143
1121
  The value should not contain leading or trailing forward slashes.
1144
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1122
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1145
1123
  *Available only for Vault Enterprise*.
1146
1124
  :param pulumi.Input[str] organization: The organization
1147
1125
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -1276,7 +1254,6 @@ class SecretBackendRootCert(pulumi.CustomResource):
1276
1254
  __props__.__dict__["issuer_id"] = None
1277
1255
  __props__.__dict__["issuing_ca"] = None
1278
1256
  __props__.__dict__["key_id"] = None
1279
- __props__.__dict__["serial"] = None
1280
1257
  __props__.__dict__["serial_number"] = None
1281
1258
  super(SecretBackendRootCert, __self__).__init__(
1282
1259
  'vault:pkiSecret/secretBackendRootCert:SecretBackendRootCert',
@@ -1316,7 +1293,6 @@ class SecretBackendRootCert(pulumi.CustomResource):
1316
1293
  postal_code: Optional[pulumi.Input[str]] = None,
1317
1294
  private_key_format: Optional[pulumi.Input[str]] = None,
1318
1295
  province: Optional[pulumi.Input[str]] = None,
1319
- serial: Optional[pulumi.Input[str]] = None,
1320
1296
  serial_number: Optional[pulumi.Input[str]] = None,
1321
1297
  street_address: Optional[pulumi.Input[str]] = None,
1322
1298
  ttl: Optional[pulumi.Input[str]] = None,
@@ -1356,7 +1332,7 @@ class SecretBackendRootCert(pulumi.CustomResource):
1356
1332
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
1357
1333
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1358
1334
  The value should not contain leading or trailing forward slashes.
1359
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1335
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1360
1336
  *Available only for Vault Enterprise*.
1361
1337
  :param pulumi.Input[str] organization: The organization
1362
1338
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -1365,7 +1341,6 @@ class SecretBackendRootCert(pulumi.CustomResource):
1365
1341
  :param pulumi.Input[str] postal_code: The postal code
1366
1342
  :param pulumi.Input[str] private_key_format: The private key format
1367
1343
  :param pulumi.Input[str] province: The province
1368
- :param pulumi.Input[str] serial: Deprecated, use `serial_number` instead.
1369
1344
  :param pulumi.Input[str] serial_number: The certificate's serial number, hex formatted.
1370
1345
  :param pulumi.Input[str] street_address: The street address
1371
1346
  :param pulumi.Input[str] ttl: Time to live
@@ -1405,7 +1380,6 @@ class SecretBackendRootCert(pulumi.CustomResource):
1405
1380
  __props__.__dict__["postal_code"] = postal_code
1406
1381
  __props__.__dict__["private_key_format"] = private_key_format
1407
1382
  __props__.__dict__["province"] = province
1408
- __props__.__dict__["serial"] = serial
1409
1383
  __props__.__dict__["serial_number"] = serial_number
1410
1384
  __props__.__dict__["street_address"] = street_address
1411
1385
  __props__.__dict__["ttl"] = ttl
@@ -1584,7 +1558,7 @@ class SecretBackendRootCert(pulumi.CustomResource):
1584
1558
  """
1585
1559
  The namespace to provision the resource in.
1586
1560
  The value should not contain leading or trailing forward slashes.
1587
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1561
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1588
1562
  *Available only for Vault Enterprise*.
1589
1563
  """
1590
1564
  return pulumi.get(self, "namespace")
@@ -1645,17 +1619,6 @@ class SecretBackendRootCert(pulumi.CustomResource):
1645
1619
  """
1646
1620
  return pulumi.get(self, "province")
1647
1621
 
1648
- @property
1649
- @pulumi.getter
1650
- def serial(self) -> pulumi.Output[str]:
1651
- """
1652
- Deprecated, use `serial_number` instead.
1653
- """
1654
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
1655
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
1656
-
1657
- return pulumi.get(self, "serial")
1658
-
1659
1622
  @property
1660
1623
  @pulumi.getter(name="serialNumber")
1661
1624
  def serial_number(self) -> pulumi.Output[str]:
@@ -55,7 +55,7 @@ class SecretBackendRootSignIntermediateArgs:
55
55
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
56
56
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
57
57
  The value should not contain leading or trailing forward slashes.
58
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
58
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
59
59
  *Available only for Vault Enterprise*.
60
60
  :param pulumi.Input[str] organization: The organization
61
61
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -254,7 +254,7 @@ class SecretBackendRootSignIntermediateArgs:
254
254
  """
255
255
  The namespace to provision the resource in.
256
256
  The value should not contain leading or trailing forward slashes.
257
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
257
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
258
258
  *Available only for Vault Enterprise*.
259
259
  """
260
260
  return pulumi.get(self, "namespace")
@@ -422,7 +422,6 @@ class _SecretBackendRootSignIntermediateState:
422
422
  postal_code: Optional[pulumi.Input[str]] = None,
423
423
  province: Optional[pulumi.Input[str]] = None,
424
424
  revoke: Optional[pulumi.Input[bool]] = None,
425
- serial: Optional[pulumi.Input[str]] = None,
426
425
  serial_number: Optional[pulumi.Input[str]] = None,
427
426
  street_address: Optional[pulumi.Input[str]] = None,
428
427
  ttl: Optional[pulumi.Input[str]] = None,
@@ -451,7 +450,7 @@ class _SecretBackendRootSignIntermediateState:
451
450
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
452
451
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
453
452
  The value should not contain leading or trailing forward slashes.
454
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
453
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
455
454
  *Available only for Vault Enterprise*.
456
455
  :param pulumi.Input[str] organization: The organization
457
456
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -460,7 +459,6 @@ class _SecretBackendRootSignIntermediateState:
460
459
  :param pulumi.Input[str] postal_code: The postal code
461
460
  :param pulumi.Input[str] province: The province
462
461
  :param pulumi.Input[bool] revoke: If set to `true`, the certificate will be revoked on resource destruction.
463
- :param pulumi.Input[str] serial: The serial number.
464
462
  :param pulumi.Input[str] serial_number: The certificate's serial number, hex formatted.
465
463
  :param pulumi.Input[str] street_address: The street address
466
464
  :param pulumi.Input[str] ttl: Time to live
@@ -513,11 +511,6 @@ class _SecretBackendRootSignIntermediateState:
513
511
  pulumi.set(__self__, "province", province)
514
512
  if revoke is not None:
515
513
  pulumi.set(__self__, "revoke", revoke)
516
- if serial is not None:
517
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
518
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
519
- if serial is not None:
520
- pulumi.set(__self__, "serial", serial)
521
514
  if serial_number is not None:
522
515
  pulumi.set(__self__, "serial_number", serial_number)
523
516
  if street_address is not None:
@@ -719,7 +712,7 @@ class _SecretBackendRootSignIntermediateState:
719
712
  """
720
713
  The namespace to provision the resource in.
721
714
  The value should not contain leading or trailing forward slashes.
722
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
715
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
723
716
  *Available only for Vault Enterprise*.
724
717
  """
725
718
  return pulumi.get(self, "namespace")
@@ -812,21 +805,6 @@ class _SecretBackendRootSignIntermediateState:
812
805
  def revoke(self, value: Optional[pulumi.Input[bool]]):
813
806
  pulumi.set(self, "revoke", value)
814
807
 
815
- @property
816
- @pulumi.getter
817
- def serial(self) -> Optional[pulumi.Input[str]]:
818
- """
819
- The serial number.
820
- """
821
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
822
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
823
-
824
- return pulumi.get(self, "serial")
825
-
826
- @serial.setter
827
- def serial(self, value: Optional[pulumi.Input[str]]):
828
- pulumi.set(self, "serial", value)
829
-
830
808
  @property
831
809
  @pulumi.getter(name="serialNumber")
832
810
  def serial_number(self) -> Optional[pulumi.Input[str]]:
@@ -938,10 +916,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
938
916
  ```
939
917
  <!--End PulumiCodeChooser -->
940
918
 
941
- ## Deprecations
942
-
943
- * `serial` - Use `serial_number` instead.
944
-
945
919
  :param str resource_name: The name of the resource.
946
920
  :param pulumi.ResourceOptions opts: Options for the resource.
947
921
  :param pulumi.Input[Sequence[pulumi.Input[str]]] alt_names: List of alternative names
@@ -960,7 +934,7 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
960
934
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
961
935
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
962
936
  The value should not contain leading or trailing forward slashes.
963
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
937
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
964
938
  *Available only for Vault Enterprise*.
965
939
  :param pulumi.Input[str] organization: The organization
966
940
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -1001,10 +975,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1001
975
  ```
1002
976
  <!--End PulumiCodeChooser -->
1003
977
 
1004
- ## Deprecations
1005
-
1006
- * `serial` - Use `serial_number` instead.
1007
-
1008
978
  :param str resource_name: The name of the resource.
1009
979
  :param SecretBackendRootSignIntermediateArgs args: The arguments to use to populate this resource's properties.
1010
980
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -1085,7 +1055,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1085
1055
  __props__.__dict__["certificate"] = None
1086
1056
  __props__.__dict__["certificate_bundle"] = None
1087
1057
  __props__.__dict__["issuing_ca"] = None
1088
- __props__.__dict__["serial"] = None
1089
1058
  __props__.__dict__["serial_number"] = None
1090
1059
  super(SecretBackendRootSignIntermediate, __self__).__init__(
1091
1060
  'vault:pkiSecret/secretBackendRootSignIntermediate:SecretBackendRootSignIntermediate',
@@ -1120,7 +1089,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1120
1089
  postal_code: Optional[pulumi.Input[str]] = None,
1121
1090
  province: Optional[pulumi.Input[str]] = None,
1122
1091
  revoke: Optional[pulumi.Input[bool]] = None,
1123
- serial: Optional[pulumi.Input[str]] = None,
1124
1092
  serial_number: Optional[pulumi.Input[str]] = None,
1125
1093
  street_address: Optional[pulumi.Input[str]] = None,
1126
1094
  ttl: Optional[pulumi.Input[str]] = None,
@@ -1154,7 +1122,7 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1154
1122
  :param pulumi.Input[int] max_path_length: The maximum path length to encode in the generated certificate
1155
1123
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1156
1124
  The value should not contain leading or trailing forward slashes.
1157
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1125
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1158
1126
  *Available only for Vault Enterprise*.
1159
1127
  :param pulumi.Input[str] organization: The organization
1160
1128
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -1163,7 +1131,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1163
1131
  :param pulumi.Input[str] postal_code: The postal code
1164
1132
  :param pulumi.Input[str] province: The province
1165
1133
  :param pulumi.Input[bool] revoke: If set to `true`, the certificate will be revoked on resource destruction.
1166
- :param pulumi.Input[str] serial: The serial number.
1167
1134
  :param pulumi.Input[str] serial_number: The certificate's serial number, hex formatted.
1168
1135
  :param pulumi.Input[str] street_address: The street address
1169
1136
  :param pulumi.Input[str] ttl: Time to live
@@ -1197,7 +1164,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1197
1164
  __props__.__dict__["postal_code"] = postal_code
1198
1165
  __props__.__dict__["province"] = province
1199
1166
  __props__.__dict__["revoke"] = revoke
1200
- __props__.__dict__["serial"] = serial
1201
1167
  __props__.__dict__["serial_number"] = serial_number
1202
1168
  __props__.__dict__["street_address"] = street_address
1203
1169
  __props__.__dict__["ttl"] = ttl
@@ -1335,7 +1301,7 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1335
1301
  """
1336
1302
  The namespace to provision the resource in.
1337
1303
  The value should not contain leading or trailing forward slashes.
1338
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1304
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1339
1305
  *Available only for Vault Enterprise*.
1340
1306
  """
1341
1307
  return pulumi.get(self, "namespace")
@@ -1396,17 +1362,6 @@ class SecretBackendRootSignIntermediate(pulumi.CustomResource):
1396
1362
  """
1397
1363
  return pulumi.get(self, "revoke")
1398
1364
 
1399
- @property
1400
- @pulumi.getter
1401
- def serial(self) -> pulumi.Output[str]:
1402
- """
1403
- The serial number.
1404
- """
1405
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
1406
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
1407
-
1408
- return pulumi.get(self, "serial")
1409
-
1410
1365
  @property
1411
1366
  @pulumi.getter(name="serialNumber")
1412
1367
  def serial_number(self) -> pulumi.Output[str]:
@@ -47,7 +47,7 @@ class SecretBackendSignArgs:
47
47
  :param pulumi.Input[str] name: Name of the role to create the certificate against
48
48
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
49
49
  The value should not contain leading or trailing forward slashes.
50
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
50
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
51
51
  *Available only for Vault Enterprise*.
52
52
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
53
53
  :param pulumi.Input[str] ttl: Time to live
@@ -222,7 +222,7 @@ class SecretBackendSignArgs:
222
222
  """
223
223
  The namespace to provision the resource in.
224
224
  The value should not contain leading or trailing forward slashes.
225
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
225
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
226
226
  *Available only for Vault Enterprise*.
227
227
  """
228
228
  return pulumi.get(self, "namespace")
@@ -289,7 +289,6 @@ class _SecretBackendSignState:
289
289
  namespace: Optional[pulumi.Input[str]] = None,
290
290
  other_sans: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
291
291
  renew_pending: Optional[pulumi.Input[bool]] = None,
292
- serial: Optional[pulumi.Input[str]] = None,
293
292
  serial_number: Optional[pulumi.Input[str]] = None,
294
293
  ttl: Optional[pulumi.Input[str]] = None,
295
294
  uri_sans: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
@@ -315,11 +314,10 @@ class _SecretBackendSignState:
315
314
  :param pulumi.Input[str] name: Name of the role to create the certificate against
316
315
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
317
316
  The value should not contain leading or trailing forward slashes.
318
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
317
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
319
318
  *Available only for Vault Enterprise*.
320
319
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
321
320
  :param pulumi.Input[bool] renew_pending: `true` if the current time (during refresh) is after the start of the early renewal window declared by `min_seconds_remaining`, and `false` otherwise; if `auto_renew` is set to `true` then the provider will plan to replace the certificate once renewal is pending.
322
- :param pulumi.Input[str] serial: The serial number.
323
321
  :param pulumi.Input[str] serial_number: The certificate's serial number, hex formatted.
324
322
  :param pulumi.Input[str] ttl: Time to live
325
323
  :param pulumi.Input[Sequence[pulumi.Input[str]]] uri_sans: List of alternative URIs
@@ -360,11 +358,6 @@ class _SecretBackendSignState:
360
358
  pulumi.set(__self__, "other_sans", other_sans)
361
359
  if renew_pending is not None:
362
360
  pulumi.set(__self__, "renew_pending", renew_pending)
363
- if serial is not None:
364
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
365
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
366
- if serial is not None:
367
- pulumi.set(__self__, "serial", serial)
368
361
  if serial_number is not None:
369
362
  pulumi.set(__self__, "serial_number", serial_number)
370
363
  if ttl is not None:
@@ -561,7 +554,7 @@ class _SecretBackendSignState:
561
554
  """
562
555
  The namespace to provision the resource in.
563
556
  The value should not contain leading or trailing forward slashes.
564
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
557
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
565
558
  *Available only for Vault Enterprise*.
566
559
  """
567
560
  return pulumi.get(self, "namespace")
@@ -594,21 +587,6 @@ class _SecretBackendSignState:
594
587
  def renew_pending(self, value: Optional[pulumi.Input[bool]]):
595
588
  pulumi.set(self, "renew_pending", value)
596
589
 
597
- @property
598
- @pulumi.getter
599
- def serial(self) -> Optional[pulumi.Input[str]]:
600
- """
601
- The serial number.
602
- """
603
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
604
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
605
-
606
- return pulumi.get(self, "serial")
607
-
608
- @serial.setter
609
- def serial(self, value: Optional[pulumi.Input[str]]):
610
- pulumi.set(self, "serial", value)
611
-
612
590
  @property
613
591
  @pulumi.getter(name="serialNumber")
614
592
  def serial_number(self) -> Optional[pulumi.Input[str]]:
@@ -710,10 +688,6 @@ class SecretBackendSign(pulumi.CustomResource):
710
688
  ```
711
689
  <!--End PulumiCodeChooser -->
712
690
 
713
- ## Deprecations
714
-
715
- * `serial` - Use `serial_number` instead.
716
-
717
691
  :param str resource_name: The name of the resource.
718
692
  :param pulumi.ResourceOptions opts: Options for the resource.
719
693
  :param pulumi.Input[Sequence[pulumi.Input[str]]] alt_names: List of alternative names
@@ -732,7 +706,7 @@ class SecretBackendSign(pulumi.CustomResource):
732
706
  :param pulumi.Input[str] name: Name of the role to create the certificate against
733
707
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
734
708
  The value should not contain leading or trailing forward slashes.
735
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
709
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
736
710
  *Available only for Vault Enterprise*.
737
711
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
738
712
  :param pulumi.Input[str] ttl: Time to live
@@ -787,10 +761,6 @@ class SecretBackendSign(pulumi.CustomResource):
787
761
  ```
788
762
  <!--End PulumiCodeChooser -->
789
763
 
790
- ## Deprecations
791
-
792
- * `serial` - Use `serial_number` instead.
793
-
794
764
  :param str resource_name: The name of the resource.
795
765
  :param SecretBackendSignArgs args: The arguments to use to populate this resource's properties.
796
766
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -856,7 +826,6 @@ class SecretBackendSign(pulumi.CustomResource):
856
826
  __props__.__dict__["expiration"] = None
857
827
  __props__.__dict__["issuing_ca"] = None
858
828
  __props__.__dict__["renew_pending"] = None
859
- __props__.__dict__["serial"] = None
860
829
  __props__.__dict__["serial_number"] = None
861
830
  super(SecretBackendSign, __self__).__init__(
862
831
  'vault:pkiSecret/secretBackendSign:SecretBackendSign',
@@ -886,7 +855,6 @@ class SecretBackendSign(pulumi.CustomResource):
886
855
  namespace: Optional[pulumi.Input[str]] = None,
887
856
  other_sans: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
888
857
  renew_pending: Optional[pulumi.Input[bool]] = None,
889
- serial: Optional[pulumi.Input[str]] = None,
890
858
  serial_number: Optional[pulumi.Input[str]] = None,
891
859
  ttl: Optional[pulumi.Input[str]] = None,
892
860
  uri_sans: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'SecretBackendSign':
@@ -917,11 +885,10 @@ class SecretBackendSign(pulumi.CustomResource):
917
885
  :param pulumi.Input[str] name: Name of the role to create the certificate against
918
886
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
919
887
  The value should not contain leading or trailing forward slashes.
920
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
888
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
921
889
  *Available only for Vault Enterprise*.
922
890
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
923
891
  :param pulumi.Input[bool] renew_pending: `true` if the current time (during refresh) is after the start of the early renewal window declared by `min_seconds_remaining`, and `false` otherwise; if `auto_renew` is set to `true` then the provider will plan to replace the certificate once renewal is pending.
924
- :param pulumi.Input[str] serial: The serial number.
925
892
  :param pulumi.Input[str] serial_number: The certificate's serial number, hex formatted.
926
893
  :param pulumi.Input[str] ttl: Time to live
927
894
  :param pulumi.Input[Sequence[pulumi.Input[str]]] uri_sans: List of alternative URIs
@@ -948,7 +915,6 @@ class SecretBackendSign(pulumi.CustomResource):
948
915
  __props__.__dict__["namespace"] = namespace
949
916
  __props__.__dict__["other_sans"] = other_sans
950
917
  __props__.__dict__["renew_pending"] = renew_pending
951
- __props__.__dict__["serial"] = serial
952
918
  __props__.__dict__["serial_number"] = serial_number
953
919
  __props__.__dict__["ttl"] = ttl
954
920
  __props__.__dict__["uri_sans"] = uri_sans
@@ -1083,7 +1049,7 @@ class SecretBackendSign(pulumi.CustomResource):
1083
1049
  """
1084
1050
  The namespace to provision the resource in.
1085
1051
  The value should not contain leading or trailing forward slashes.
1086
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1052
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1087
1053
  *Available only for Vault Enterprise*.
1088
1054
  """
1089
1055
  return pulumi.get(self, "namespace")
@@ -1104,17 +1070,6 @@ class SecretBackendSign(pulumi.CustomResource):
1104
1070
  """
1105
1071
  return pulumi.get(self, "renew_pending")
1106
1072
 
1107
- @property
1108
- @pulumi.getter
1109
- def serial(self) -> pulumi.Output[str]:
1110
- """
1111
- The serial number.
1112
- """
1113
- warnings.warn("""Use serial_number instead""", DeprecationWarning)
1114
- pulumi.log.warn("""serial is deprecated: Use serial_number instead""")
1115
-
1116
- return pulumi.get(self, "serial")
1117
-
1118
1073
  @property
1119
1074
  @pulumi.getter(name="serialNumber")
1120
1075
  def serial_number(self) -> pulumi.Output[str]:
pulumi_vault/policy.py CHANGED
@@ -23,7 +23,7 @@ class PolicyArgs:
23
23
  :param pulumi.Input[str] name: The name of the policy
24
24
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
25
25
  The value should not contain leading or trailing forward slashes.
26
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
26
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
27
27
  *Available only for Vault Enterprise*.
28
28
  """
29
29
  pulumi.set(__self__, "policy", policy)
@@ -62,7 +62,7 @@ class PolicyArgs:
62
62
  """
63
63
  The namespace to provision the resource in.
64
64
  The value should not contain leading or trailing forward slashes.
65
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
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
67
  """
68
68
  return pulumi.get(self, "namespace")
@@ -83,7 +83,7 @@ class _PolicyState:
83
83
  :param pulumi.Input[str] name: The name of the policy
84
84
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
85
85
  The value should not contain leading or trailing forward slashes.
86
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
86
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
87
87
  *Available only for Vault Enterprise*.
88
88
  :param pulumi.Input[str] policy: String containing a Vault policy
89
89
  """
@@ -112,7 +112,7 @@ class _PolicyState:
112
112
  """
113
113
  The namespace to provision the resource in.
114
114
  The value should not contain leading or trailing forward slashes.
115
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
115
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
116
116
  *Available only for Vault Enterprise*.
117
117
  """
118
118
  return pulumi.get(self, "namespace")
@@ -157,7 +157,7 @@ class Policy(pulumi.CustomResource):
157
157
  :param pulumi.Input[str] name: The name of the policy
158
158
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
159
159
  The value should not contain leading or trailing forward slashes.
160
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
160
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
161
161
  *Available only for Vault Enterprise*.
162
162
  :param pulumi.Input[str] policy: String containing a Vault policy
163
163
  """
@@ -231,7 +231,7 @@ class Policy(pulumi.CustomResource):
231
231
  :param pulumi.Input[str] name: The name of the policy
232
232
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
233
233
  The value should not contain leading or trailing forward slashes.
234
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
234
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
235
235
  *Available only for Vault Enterprise*.
236
236
  :param pulumi.Input[str] policy: String containing a Vault policy
237
237
  """
@@ -258,7 +258,7 @@ class Policy(pulumi.CustomResource):
258
258
  """
259
259
  The namespace to provision the resource in.
260
260
  The value should not contain leading or trailing forward slashes.
261
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
261
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
262
262
  *Available only for Vault Enterprise*.
263
263
  """
264
264
  return pulumi.get(self, "namespace")
@@ -40,7 +40,7 @@ class SecretBackendArgs:
40
40
  for credentials issued by this backend.
41
41
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
42
42
  The value should not contain leading or trailing forward slashes.
43
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
43
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
44
44
  *Available only for Vault Enterprise*.
45
45
  :param pulumi.Input[str] password_policy: Specifies a password policy to use when creating dynamic credentials. Defaults to generating an alphanumeric password if not set.
46
46
  :param pulumi.Input[str] path: The unique path this backend should be mounted at. Must
@@ -164,7 +164,7 @@ class SecretBackendArgs:
164
164
  """
165
165
  The namespace to provision the resource in.
166
166
  The value should not contain leading or trailing forward slashes.
167
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
167
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
168
168
  *Available only for Vault Enterprise*.
169
169
  """
170
170
  return pulumi.get(self, "namespace")
@@ -251,7 +251,7 @@ class _SecretBackendState:
251
251
  for credentials issued by this backend.
252
252
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
253
253
  The value should not contain leading or trailing forward slashes.
254
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
254
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
255
255
  *Available only for Vault Enterprise*.
256
256
  :param pulumi.Input[str] password: Specifies the RabbitMQ management administrator password.
257
257
  :param pulumi.Input[str] password_policy: Specifies a password policy to use when creating dynamic credentials. Defaults to generating an alphanumeric password if not set.
@@ -356,7 +356,7 @@ class _SecretBackendState:
356
356
  """
357
357
  The namespace to provision the resource in.
358
358
  The value should not contain leading or trailing forward slashes.
359
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
359
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
360
360
  *Available only for Vault Enterprise*.
361
361
  """
362
362
  return pulumi.get(self, "namespace")
@@ -493,7 +493,7 @@ class SecretBackend(pulumi.CustomResource):
493
493
  for credentials issued by this backend.
494
494
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
495
495
  The value should not contain leading or trailing forward slashes.
496
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
496
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
497
497
  *Available only for Vault Enterprise*.
498
498
  :param pulumi.Input[str] password: Specifies the RabbitMQ management administrator password.
499
499
  :param pulumi.Input[str] password_policy: Specifies a password policy to use when creating dynamic credentials. Defaults to generating an alphanumeric password if not set.
@@ -628,7 +628,7 @@ class SecretBackend(pulumi.CustomResource):
628
628
  for credentials issued by this backend.
629
629
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
630
630
  The value should not contain leading or trailing forward slashes.
631
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
631
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
632
632
  *Available only for Vault Enterprise*.
633
633
  :param pulumi.Input[str] password: Specifies the RabbitMQ management administrator password.
634
634
  :param pulumi.Input[str] password_policy: Specifies a password policy to use when creating dynamic credentials. Defaults to generating an alphanumeric password if not set.
@@ -706,7 +706,7 @@ class SecretBackend(pulumi.CustomResource):
706
706
  """
707
707
  The namespace to provision the resource in.
708
708
  The value should not contain leading or trailing forward slashes.
709
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
709
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
710
710
  *Available only for Vault Enterprise*.
711
711
  """
712
712
  return pulumi.get(self, "namespace")