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
@@ -29,7 +29,7 @@ class EntityPoliciesArgs:
29
29
  If set to `false`, this resource will simply ensure that the policies specified in the resource are present in the entity. When destroying the resource, the resource will ensure that the policies specified in the resource are removed.
30
30
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
31
31
  The value should not contain leading or trailing forward slashes.
32
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
32
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
33
33
  *Available only for Vault Enterprise*.
34
34
  """
35
35
  pulumi.set(__self__, "entity_id", entity_id)
@@ -85,7 +85,7 @@ class EntityPoliciesArgs:
85
85
  """
86
86
  The namespace to provision the resource in.
87
87
  The value should not contain leading or trailing forward slashes.
88
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
88
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
89
89
  *Available only for Vault Enterprise*.
90
90
  """
91
91
  return pulumi.get(self, "namespace")
@@ -114,7 +114,7 @@ class _EntityPoliciesState:
114
114
  If set to `false`, this resource will simply ensure that the policies specified in the resource are present in the entity. When destroying the resource, the resource will ensure that the policies specified in the resource are removed.
115
115
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
116
116
  The value should not contain leading or trailing forward slashes.
117
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
117
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
118
118
  *Available only for Vault Enterprise*.
119
119
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies to assign to the entity
120
120
  """
@@ -175,7 +175,7 @@ class _EntityPoliciesState:
175
175
  """
176
176
  The namespace to provision the resource in.
177
177
  The value should not contain leading or trailing forward slashes.
178
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
178
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
179
179
  *Available only for Vault Enterprise*.
180
180
  """
181
181
  return pulumi.get(self, "namespace")
@@ -262,7 +262,7 @@ class EntityPolicies(pulumi.CustomResource):
262
262
  If set to `false`, this resource will simply ensure that the policies specified in the resource are present in the entity. When destroying the resource, the resource will ensure that the policies specified in the resource are removed.
263
263
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
264
264
  The value should not contain leading or trailing forward slashes.
265
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
265
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
266
266
  *Available only for Vault Enterprise*.
267
267
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies to assign to the entity
268
268
  """
@@ -385,7 +385,7 @@ class EntityPolicies(pulumi.CustomResource):
385
385
  If set to `false`, this resource will simply ensure that the policies specified in the resource are present in the entity. When destroying the resource, the resource will ensure that the policies specified in the resource are removed.
386
386
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
387
387
  The value should not contain leading or trailing forward slashes.
388
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
388
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
389
389
  *Available only for Vault Enterprise*.
390
390
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies to assign to the entity
391
391
  """
@@ -434,7 +434,7 @@ class EntityPolicies(pulumi.CustomResource):
434
434
  """
435
435
  The namespace to provision the resource in.
436
436
  The value should not contain leading or trailing forward slashes.
437
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
437
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
438
438
  *Available only for Vault Enterprise*.
439
439
  """
440
440
  return pulumi.get(self, "namespace")
@@ -280,7 +280,7 @@ def get_entity(alias_id: Optional[str] = None,
280
280
  :param str entity_name: Name of the entity.
281
281
  :param str namespace: The namespace of the target resource.
282
282
  The value should not contain leading or trailing forward slashes.
283
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
283
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
284
284
  *Available only for Vault Enterprise*.
285
285
  """
286
286
  __args__ = dict()
@@ -352,7 +352,7 @@ def get_entity_output(alias_id: Optional[pulumi.Input[Optional[str]]] = None,
352
352
  :param str entity_name: Name of the entity.
353
353
  :param str namespace: The namespace of the target resource.
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
  ...
@@ -351,7 +351,7 @@ def get_group(alias_id: Optional[str] = None,
351
351
  :param str group_name: Name of the group.
352
352
  :param str namespace: The namespace of the target resource.
353
353
  The value should not contain leading or trailing forward slashes.
354
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
354
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
355
355
  *Available only for Vault Enterprise*.
356
356
  """
357
357
  __args__ = dict()
@@ -429,7 +429,7 @@ def get_group_output(alias_id: Optional[pulumi.Input[Optional[str]]] = None,
429
429
  :param str group_name: Name of the group.
430
430
  :param str namespace: The namespace of the target resource.
431
431
  The value should not contain leading or trailing forward slashes.
432
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
432
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
433
433
  *Available only for Vault Enterprise*.
434
434
  """
435
435
  ...
@@ -114,7 +114,7 @@ def get_oidc_client_creds(name: Optional[str] = None,
114
114
  :param str name: The name of the OIDC Client in Vault.
115
115
  :param str namespace: The namespace of the target resource.
116
116
  The value should not contain leading or trailing forward slashes.
117
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
117
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
118
118
  *Available only for Vault Enterprise*.
119
119
  """
120
120
  __args__ = dict()
@@ -159,7 +159,7 @@ def get_oidc_client_creds_output(name: Optional[pulumi.Input[str]] = None,
159
159
  :param str name: The name of the OIDC Client in Vault.
160
160
  :param str namespace: The namespace of the target resource.
161
161
  The value should not contain leading or trailing forward slashes.
162
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
162
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
163
163
  *Available only for Vault Enterprise*.
164
164
  """
165
165
  ...
@@ -241,7 +241,7 @@ def get_oidc_openid_config(name: Optional[str] = None,
241
241
  :param str name: The name of the OIDC Provider in Vault.
242
242
  :param str namespace: The namespace of the target resource.
243
243
  The value should not contain leading or trailing forward slashes.
244
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
244
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
245
245
  *Available only for Vault Enterprise*.
246
246
  """
247
247
  __args__ = dict()
@@ -302,7 +302,7 @@ def get_oidc_openid_config_output(name: Optional[pulumi.Input[str]] = None,
302
302
  :param str name: The name of the OIDC Provider in Vault.
303
303
  :param str namespace: The namespace of the target resource.
304
304
  The value should not contain leading or trailing forward slashes.
305
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
305
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
306
306
  *Available only for Vault Enterprise*.
307
307
  """
308
308
  ...
@@ -108,7 +108,7 @@ def get_oidc_public_keys(name: Optional[str] = None,
108
108
  :param str name: The name of the OIDC Provider in Vault.
109
109
  :param str namespace: The namespace of the target resource.
110
110
  The value should not contain leading or trailing forward slashes.
111
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
111
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
112
112
  *Available only for Vault Enterprise*.
113
113
  """
114
114
  __args__ = dict()
@@ -158,7 +158,7 @@ def get_oidc_public_keys_output(name: Optional[pulumi.Input[str]] = None,
158
158
  :param str name: The name of the OIDC Provider in Vault.
159
159
  :param str namespace: The namespace of the target resource.
160
160
  The value should not contain leading or trailing forward slashes.
161
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
161
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
162
162
  *Available only for Vault Enterprise*.
163
163
  """
164
164
  ...
@@ -43,7 +43,7 @@ class GroupArgs:
43
43
  :param pulumi.Input[str] name: Name of the identity group to create.
44
44
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
45
45
  The value should not contain leading or trailing forward slashes.
46
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
46
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
47
47
  *Available only for Vault Enterprise*.
48
48
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the group.
49
49
  :param pulumi.Input[str] type: Type of the group, internal or external. Defaults to `internal`.
@@ -167,7 +167,7 @@ class GroupArgs:
167
167
  """
168
168
  The namespace to provision the resource in.
169
169
  The value should not contain leading or trailing forward slashes.
170
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
170
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
171
171
  *Available only for Vault Enterprise*.
172
172
  """
173
173
  return pulumi.get(self, "namespace")
@@ -233,7 +233,7 @@ class _GroupState:
233
233
  :param pulumi.Input[str] name: Name of the identity group to create.
234
234
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
235
235
  The value should not contain leading or trailing forward slashes.
236
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
236
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
237
237
  *Available only for Vault Enterprise*.
238
238
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the group.
239
239
  :param pulumi.Input[str] type: Type of the group, internal or external. Defaults to `internal`.
@@ -357,7 +357,7 @@ class _GroupState:
357
357
  """
358
358
  The namespace to provision the resource in.
359
359
  The value should not contain leading or trailing forward slashes.
360
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
360
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
361
361
  *Available only for Vault Enterprise*.
362
362
  """
363
363
  return pulumi.get(self, "namespace")
@@ -508,7 +508,7 @@ class Group(pulumi.CustomResource):
508
508
  :param pulumi.Input[str] name: Name of the identity group to create.
509
509
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
510
510
  The value should not contain leading or trailing forward slashes.
511
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
511
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
512
512
  *Available only for Vault Enterprise*.
513
513
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the group.
514
514
  :param pulumi.Input[str] type: Type of the group, internal or external. Defaults to `internal`.
@@ -689,7 +689,7 @@ class Group(pulumi.CustomResource):
689
689
  :param pulumi.Input[str] name: Name of the identity group to create.
690
690
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
691
691
  The value should not contain leading or trailing forward slashes.
692
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
692
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
693
693
  *Available only for Vault Enterprise*.
694
694
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the group.
695
695
  :param pulumi.Input[str] type: Type of the group, internal or external. Defaults to `internal`.
@@ -780,7 +780,7 @@ class Group(pulumi.CustomResource):
780
780
  """
781
781
  The namespace to provision the resource in.
782
782
  The value should not contain leading or trailing forward slashes.
783
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
783
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
784
784
  *Available only for Vault Enterprise*.
785
785
  """
786
786
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class GroupAliasArgs:
25
25
  :param pulumi.Input[str] name: Name of the group alias to create.
26
26
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
27
27
  The value should not contain leading or trailing forward slashes.
28
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
28
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
29
29
  *Available only for Vault Enterprise*.
30
30
  """
31
31
  pulumi.set(__self__, "canonical_id", canonical_id)
@@ -76,7 +76,7 @@ class GroupAliasArgs:
76
76
  """
77
77
  The namespace to provision the resource in.
78
78
  The value should not contain leading or trailing forward slashes.
79
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
79
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
80
80
  *Available only for Vault Enterprise*.
81
81
  """
82
82
  return pulumi.get(self, "namespace")
@@ -100,7 +100,7 @@ class _GroupAliasState:
100
100
  :param pulumi.Input[str] name: Name of the group alias to create.
101
101
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
102
102
  The value should not contain leading or trailing forward slashes.
103
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
103
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
104
104
  *Available only for Vault Enterprise*.
105
105
  """
106
106
  if canonical_id is not None:
@@ -154,7 +154,7 @@ class _GroupAliasState:
154
154
  """
155
155
  The namespace to provision the resource in.
156
156
  The value should not contain leading or trailing forward slashes.
157
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
157
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
158
158
  *Available only for Vault Enterprise*.
159
159
  """
160
160
  return pulumi.get(self, "namespace")
@@ -220,7 +220,7 @@ class GroupAlias(pulumi.CustomResource):
220
220
  :param pulumi.Input[str] name: Name of the group alias to create.
221
221
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
222
222
  The value should not contain leading or trailing forward slashes.
223
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
223
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
224
224
  *Available only for Vault Enterprise*.
225
225
  """
226
226
  ...
@@ -332,7 +332,7 @@ class GroupAlias(pulumi.CustomResource):
332
332
  :param pulumi.Input[str] name: Name of the group alias to create.
333
333
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
334
334
  The value should not contain leading or trailing forward slashes.
335
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
335
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
336
336
  *Available only for Vault Enterprise*.
337
337
  """
338
338
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -375,7 +375,7 @@ class GroupAlias(pulumi.CustomResource):
375
375
  """
376
376
  The namespace to provision the resource in.
377
377
  The value should not contain leading or trailing forward slashes.
378
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
378
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
379
379
  *Available only for Vault Enterprise*.
380
380
  """
381
381
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class GroupMemberEntityIdsArgs:
29
29
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_entity_ids: List of member entities that belong to the group
30
30
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
31
31
  The value should not contain leading or trailing forward slashes.
32
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
32
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
33
33
  *Available only for Vault Enterprise*.
34
34
  """
35
35
  pulumi.set(__self__, "group_id", group_id)
@@ -86,7 +86,7 @@ class GroupMemberEntityIdsArgs:
86
86
  """
87
87
  The namespace to provision the resource in.
88
88
  The value should not contain leading or trailing forward slashes.
89
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
89
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
90
90
  *Available only for Vault Enterprise*.
91
91
  """
92
92
  return pulumi.get(self, "namespace")
@@ -101,7 +101,6 @@ class _GroupMemberEntityIdsState:
101
101
  def __init__(__self__, *,
102
102
  exclusive: Optional[pulumi.Input[bool]] = None,
103
103
  group_id: Optional[pulumi.Input[str]] = None,
104
- group_name: Optional[pulumi.Input[str]] = None,
105
104
  member_entity_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
106
105
  namespace: Optional[pulumi.Input[str]] = None):
107
106
  """
@@ -112,26 +111,16 @@ class _GroupMemberEntityIdsState:
112
111
 
113
112
  If set to `false`, this resource will simply ensure that the member entities specified in the resource are present in the group. When destroying the resource, the resource will ensure that the member entities specified in the resource are removed.
114
113
  :param pulumi.Input[str] group_id: Group ID to assign member entities to.
115
- :param pulumi.Input[str] group_name: The name of the group that are assigned the member entities.
116
- *Deprecated: The value for group_name may not always be accurate*
117
- *use* `data.vault_identity_group.*.group_name`, *or* `vault_identity_group.*.group_name` *instead.*
118
114
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_entity_ids: List of member entities that belong to the group
119
115
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
120
116
  The value should not contain leading or trailing forward slashes.
121
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
117
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
122
118
  *Available only for Vault Enterprise*.
123
119
  """
124
120
  if exclusive is not None:
125
121
  pulumi.set(__self__, "exclusive", exclusive)
126
122
  if group_id is not None:
127
123
  pulumi.set(__self__, "group_id", group_id)
128
- if group_name is not None:
129
- warnings.warn("""The value for group_name may not always be accurate,
130
- use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_name\" instead""", DeprecationWarning)
131
- pulumi.log.warn("""group_name is deprecated: The value for group_name may not always be accurate,
132
- use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_name\" instead""")
133
- if group_name is not None:
134
- pulumi.set(__self__, "group_name", group_name)
135
124
  if member_entity_ids is not None:
136
125
  pulumi.set(__self__, "member_entity_ids", member_entity_ids)
137
126
  if namespace is not None:
@@ -165,25 +154,6 @@ use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_n
165
154
  def group_id(self, value: Optional[pulumi.Input[str]]):
166
155
  pulumi.set(self, "group_id", value)
167
156
 
168
- @property
169
- @pulumi.getter(name="groupName")
170
- def group_name(self) -> Optional[pulumi.Input[str]]:
171
- """
172
- The name of the group that are assigned the member entities.
173
- *Deprecated: The value for group_name may not always be accurate*
174
- *use* `data.vault_identity_group.*.group_name`, *or* `vault_identity_group.*.group_name` *instead.*
175
- """
176
- warnings.warn("""The value for group_name may not always be accurate,
177
- use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_name\" instead""", DeprecationWarning)
178
- pulumi.log.warn("""group_name is deprecated: The value for group_name may not always be accurate,
179
- use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_name\" instead""")
180
-
181
- return pulumi.get(self, "group_name")
182
-
183
- @group_name.setter
184
- def group_name(self, value: Optional[pulumi.Input[str]]):
185
- pulumi.set(self, "group_name", value)
186
-
187
157
  @property
188
158
  @pulumi.getter(name="memberEntityIds")
189
159
  def member_entity_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -202,7 +172,7 @@ use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_n
202
172
  """
203
173
  The namespace to provision the resource in.
204
174
  The value should not contain leading or trailing forward slashes.
205
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
175
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
206
176
  *Available only for Vault Enterprise*.
207
177
  """
208
178
  return pulumi.get(self, "namespace")
@@ -289,7 +259,7 @@ class GroupMemberEntityIds(pulumi.CustomResource):
289
259
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_entity_ids: List of member entities that belong to the group
290
260
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
291
261
  The value should not contain leading or trailing forward slashes.
292
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
262
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
293
263
  *Available only for Vault Enterprise*.
294
264
  """
295
265
  ...
@@ -388,7 +358,6 @@ class GroupMemberEntityIds(pulumi.CustomResource):
388
358
  __props__.__dict__["group_id"] = group_id
389
359
  __props__.__dict__["member_entity_ids"] = member_entity_ids
390
360
  __props__.__dict__["namespace"] = namespace
391
- __props__.__dict__["group_name"] = None
392
361
  super(GroupMemberEntityIds, __self__).__init__(
393
362
  'vault:identity/groupMemberEntityIds:GroupMemberEntityIds',
394
363
  resource_name,
@@ -401,7 +370,6 @@ class GroupMemberEntityIds(pulumi.CustomResource):
401
370
  opts: Optional[pulumi.ResourceOptions] = None,
402
371
  exclusive: Optional[pulumi.Input[bool]] = None,
403
372
  group_id: Optional[pulumi.Input[str]] = None,
404
- group_name: Optional[pulumi.Input[str]] = None,
405
373
  member_entity_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
406
374
  namespace: Optional[pulumi.Input[str]] = None) -> 'GroupMemberEntityIds':
407
375
  """
@@ -417,13 +385,10 @@ class GroupMemberEntityIds(pulumi.CustomResource):
417
385
 
418
386
  If set to `false`, this resource will simply ensure that the member entities specified in the resource are present in the group. When destroying the resource, the resource will ensure that the member entities specified in the resource are removed.
419
387
  :param pulumi.Input[str] group_id: Group ID to assign member entities to.
420
- :param pulumi.Input[str] group_name: The name of the group that are assigned the member entities.
421
- *Deprecated: The value for group_name may not always be accurate*
422
- *use* `data.vault_identity_group.*.group_name`, *or* `vault_identity_group.*.group_name` *instead.*
423
388
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_entity_ids: List of member entities that belong to the group
424
389
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
425
390
  The value should not contain leading or trailing forward slashes.
426
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
391
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
427
392
  *Available only for Vault Enterprise*.
428
393
  """
429
394
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -432,7 +397,6 @@ class GroupMemberEntityIds(pulumi.CustomResource):
432
397
 
433
398
  __props__.__dict__["exclusive"] = exclusive
434
399
  __props__.__dict__["group_id"] = group_id
435
- __props__.__dict__["group_name"] = group_name
436
400
  __props__.__dict__["member_entity_ids"] = member_entity_ids
437
401
  __props__.__dict__["namespace"] = namespace
438
402
  return GroupMemberEntityIds(resource_name, opts=opts, __props__=__props__)
@@ -457,21 +421,6 @@ class GroupMemberEntityIds(pulumi.CustomResource):
457
421
  """
458
422
  return pulumi.get(self, "group_id")
459
423
 
460
- @property
461
- @pulumi.getter(name="groupName")
462
- def group_name(self) -> pulumi.Output[str]:
463
- """
464
- The name of the group that are assigned the member entities.
465
- *Deprecated: The value for group_name may not always be accurate*
466
- *use* `data.vault_identity_group.*.group_name`, *or* `vault_identity_group.*.group_name` *instead.*
467
- """
468
- warnings.warn("""The value for group_name may not always be accurate,
469
- use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_name\" instead""", DeprecationWarning)
470
- pulumi.log.warn("""group_name is deprecated: The value for group_name may not always be accurate,
471
- use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_name\" instead""")
472
-
473
- return pulumi.get(self, "group_name")
474
-
475
424
  @property
476
425
  @pulumi.getter(name="memberEntityIds")
477
426
  def member_entity_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -486,7 +435,7 @@ use \"data.vault_identity_group.*.group_name\", \"vault_identity_group.*.group_n
486
435
  """
487
436
  The namespace to provision the resource in.
488
437
  The value should not contain leading or trailing forward slashes.
489
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
438
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
490
439
  *Available only for Vault Enterprise*.
491
440
  """
492
441
  return pulumi.get(self, "namespace")
@@ -32,7 +32,7 @@ class GroupMemberGroupIdsArgs:
32
32
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_group_ids: List of member groups that belong to the group
33
33
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
34
34
  The value should not contain leading or trailing forward slashes.
35
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
35
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
36
36
  *Available only for Vault Enterprise*.
37
37
  """
38
38
  pulumi.set(__self__, "group_id", group_id)
@@ -92,7 +92,7 @@ class GroupMemberGroupIdsArgs:
92
92
  """
93
93
  The namespace to provision the resource in.
94
94
  The value should not contain leading or trailing forward slashes.
95
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
95
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
96
96
  *Available only for Vault Enterprise*.
97
97
  """
98
98
  return pulumi.get(self, "namespace")
@@ -123,7 +123,7 @@ class _GroupMemberGroupIdsState:
123
123
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_group_ids: List of member groups that belong to the group
124
124
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
125
125
  The value should not contain leading or trailing forward slashes.
126
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
126
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
127
127
  *Available only for Vault Enterprise*.
128
128
  """
129
129
  if exclusive is not None:
@@ -184,7 +184,7 @@ class _GroupMemberGroupIdsState:
184
184
  """
185
185
  The namespace to provision the resource in.
186
186
  The value should not contain leading or trailing forward slashes.
187
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
187
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
188
188
  *Available only for Vault Enterprise*.
189
189
  """
190
190
  return pulumi.get(self, "namespace")
@@ -271,7 +271,7 @@ class GroupMemberGroupIds(pulumi.CustomResource):
271
271
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_group_ids: List of member groups that belong to the group
272
272
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
273
273
  The value should not contain leading or trailing forward slashes.
274
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
274
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
275
275
  *Available only for Vault Enterprise*.
276
276
  """
277
277
  ...
@@ -400,7 +400,7 @@ class GroupMemberGroupIds(pulumi.CustomResource):
400
400
  :param pulumi.Input[Sequence[pulumi.Input[str]]] member_group_ids: List of member groups that belong to the group
401
401
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
402
402
  The value should not contain leading or trailing forward slashes.
403
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
403
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
404
404
  *Available only for Vault Enterprise*.
405
405
  """
406
406
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -450,7 +450,7 @@ class GroupMemberGroupIds(pulumi.CustomResource):
450
450
  """
451
451
  The namespace to provision the resource in.
452
452
  The value should not contain leading or trailing forward slashes.
453
- 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).
454
454
  *Available only for Vault Enterprise*.
455
455
  """
456
456
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class GroupPoliciesArgs:
29
29
  If set to `false`, this resource will simply ensure that the policies specified in the resource are present in the group. When destroying the resource, the resource will ensure that the policies specified in the resource are removed.
30
30
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
31
31
  The value should not contain leading or trailing forward slashes.
32
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
32
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
33
33
  *Available only for Vault Enterprise*.
34
34
  """
35
35
  pulumi.set(__self__, "group_id", group_id)
@@ -85,7 +85,7 @@ class GroupPoliciesArgs:
85
85
  """
86
86
  The namespace to provision the resource in.
87
87
  The value should not contain leading or trailing forward slashes.
88
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
88
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
89
89
  *Available only for Vault Enterprise*.
90
90
  """
91
91
  return pulumi.get(self, "namespace")
@@ -114,7 +114,7 @@ class _GroupPoliciesState:
114
114
  :param pulumi.Input[str] group_name: The name of the group that are assigned the policies.
115
115
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
116
116
  The value should not contain leading or trailing forward slashes.
117
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
117
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
118
118
  *Available only for Vault Enterprise*.
119
119
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies to assign to the group
120
120
  """
@@ -175,7 +175,7 @@ class _GroupPoliciesState:
175
175
  """
176
176
  The namespace to provision the resource in.
177
177
  The value should not contain leading or trailing forward slashes.
178
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
178
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
179
179
  *Available only for Vault Enterprise*.
180
180
  """
181
181
  return pulumi.get(self, "namespace")
@@ -272,7 +272,7 @@ class GroupPolicies(pulumi.CustomResource):
272
272
  :param pulumi.Input[str] group_id: Group ID to assign policies to.
273
273
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
274
274
  The value should not contain leading or trailing forward slashes.
275
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
275
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
276
276
  *Available only for Vault Enterprise*.
277
277
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies to assign to the group
278
278
  """
@@ -405,7 +405,7 @@ class GroupPolicies(pulumi.CustomResource):
405
405
  :param pulumi.Input[str] group_name: The name of the group that are assigned the policies.
406
406
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
407
407
  The value should not contain leading or trailing forward slashes.
408
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
408
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
409
409
  *Available only for Vault Enterprise*.
410
410
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies to assign to the group
411
411
  """
@@ -454,7 +454,7 @@ class GroupPolicies(pulumi.CustomResource):
454
454
  """
455
455
  The namespace to provision the resource in.
456
456
  The value should not contain leading or trailing forward slashes.
457
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
457
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
458
458
  *Available only for Vault Enterprise*.
459
459
  """
460
460
  return pulumi.get(self, "namespace")