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
@@ -0,0 +1,368 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = ['BackendConfigClusterArgs', 'BackendConfigCluster']
13
+
14
+ @pulumi.input_type
15
+ class BackendConfigClusterArgs:
16
+ def __init__(__self__, *,
17
+ backend: pulumi.Input[str],
18
+ aia_path: Optional[pulumi.Input[str]] = None,
19
+ namespace: Optional[pulumi.Input[str]] = None,
20
+ path: Optional[pulumi.Input[str]] = None):
21
+ """
22
+ The set of arguments for constructing a BackendConfigCluster resource.
23
+ :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
24
+ :param pulumi.Input[str] aia_path: Specifies the path to this performance replication cluster's AIA distribution point.
25
+ :param pulumi.Input[str] namespace: The namespace to provision the resource in.
26
+ The value should not contain leading or trailing forward slashes.
27
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
28
+ *Available only for Vault Enterprise*.
29
+ :param pulumi.Input[str] path: Specifies the path to this performance replication cluster's API mount path.
30
+ """
31
+ pulumi.set(__self__, "backend", backend)
32
+ if aia_path is not None:
33
+ pulumi.set(__self__, "aia_path", aia_path)
34
+ if namespace is not None:
35
+ pulumi.set(__self__, "namespace", namespace)
36
+ if path is not None:
37
+ pulumi.set(__self__, "path", path)
38
+
39
+ @property
40
+ @pulumi.getter
41
+ def backend(self) -> pulumi.Input[str]:
42
+ """
43
+ The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
44
+ """
45
+ return pulumi.get(self, "backend")
46
+
47
+ @backend.setter
48
+ def backend(self, value: pulumi.Input[str]):
49
+ pulumi.set(self, "backend", value)
50
+
51
+ @property
52
+ @pulumi.getter(name="aiaPath")
53
+ def aia_path(self) -> Optional[pulumi.Input[str]]:
54
+ """
55
+ Specifies the path to this performance replication cluster's AIA distribution point.
56
+ """
57
+ return pulumi.get(self, "aia_path")
58
+
59
+ @aia_path.setter
60
+ def aia_path(self, value: Optional[pulumi.Input[str]]):
61
+ pulumi.set(self, "aia_path", value)
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def namespace(self) -> Optional[pulumi.Input[str]]:
66
+ """
67
+ The namespace to provision the resource in.
68
+ The value should not contain leading or trailing forward slashes.
69
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
70
+ *Available only for Vault Enterprise*.
71
+ """
72
+ return pulumi.get(self, "namespace")
73
+
74
+ @namespace.setter
75
+ def namespace(self, value: Optional[pulumi.Input[str]]):
76
+ pulumi.set(self, "namespace", value)
77
+
78
+ @property
79
+ @pulumi.getter
80
+ def path(self) -> Optional[pulumi.Input[str]]:
81
+ """
82
+ Specifies the path to this performance replication cluster's API mount path.
83
+ """
84
+ return pulumi.get(self, "path")
85
+
86
+ @path.setter
87
+ def path(self, value: Optional[pulumi.Input[str]]):
88
+ pulumi.set(self, "path", value)
89
+
90
+
91
+ @pulumi.input_type
92
+ class _BackendConfigClusterState:
93
+ def __init__(__self__, *,
94
+ aia_path: Optional[pulumi.Input[str]] = None,
95
+ backend: Optional[pulumi.Input[str]] = None,
96
+ namespace: Optional[pulumi.Input[str]] = None,
97
+ path: Optional[pulumi.Input[str]] = None):
98
+ """
99
+ Input properties used for looking up and filtering BackendConfigCluster resources.
100
+ :param pulumi.Input[str] aia_path: Specifies the path to this performance replication cluster's AIA distribution point.
101
+ :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
102
+ :param pulumi.Input[str] namespace: The namespace to provision the resource in.
103
+ The value should not contain leading or trailing forward slashes.
104
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
105
+ *Available only for Vault Enterprise*.
106
+ :param pulumi.Input[str] path: Specifies the path to this performance replication cluster's API mount path.
107
+ """
108
+ if aia_path is not None:
109
+ pulumi.set(__self__, "aia_path", aia_path)
110
+ if backend is not None:
111
+ pulumi.set(__self__, "backend", backend)
112
+ if namespace is not None:
113
+ pulumi.set(__self__, "namespace", namespace)
114
+ if path is not None:
115
+ pulumi.set(__self__, "path", path)
116
+
117
+ @property
118
+ @pulumi.getter(name="aiaPath")
119
+ def aia_path(self) -> Optional[pulumi.Input[str]]:
120
+ """
121
+ Specifies the path to this performance replication cluster's AIA distribution point.
122
+ """
123
+ return pulumi.get(self, "aia_path")
124
+
125
+ @aia_path.setter
126
+ def aia_path(self, value: Optional[pulumi.Input[str]]):
127
+ pulumi.set(self, "aia_path", value)
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def backend(self) -> Optional[pulumi.Input[str]]:
132
+ """
133
+ The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
134
+ """
135
+ return pulumi.get(self, "backend")
136
+
137
+ @backend.setter
138
+ def backend(self, value: Optional[pulumi.Input[str]]):
139
+ pulumi.set(self, "backend", value)
140
+
141
+ @property
142
+ @pulumi.getter
143
+ def namespace(self) -> Optional[pulumi.Input[str]]:
144
+ """
145
+ The namespace to provision the resource in.
146
+ The value should not contain leading or trailing forward slashes.
147
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
148
+ *Available only for Vault Enterprise*.
149
+ """
150
+ return pulumi.get(self, "namespace")
151
+
152
+ @namespace.setter
153
+ def namespace(self, value: Optional[pulumi.Input[str]]):
154
+ pulumi.set(self, "namespace", value)
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def path(self) -> Optional[pulumi.Input[str]]:
159
+ """
160
+ Specifies the path to this performance replication cluster's API mount path.
161
+ """
162
+ return pulumi.get(self, "path")
163
+
164
+ @path.setter
165
+ def path(self, value: Optional[pulumi.Input[str]]):
166
+ pulumi.set(self, "path", value)
167
+
168
+
169
+ class BackendConfigCluster(pulumi.CustomResource):
170
+ @overload
171
+ def __init__(__self__,
172
+ resource_name: str,
173
+ opts: Optional[pulumi.ResourceOptions] = None,
174
+ aia_path: Optional[pulumi.Input[str]] = None,
175
+ backend: Optional[pulumi.Input[str]] = None,
176
+ namespace: Optional[pulumi.Input[str]] = None,
177
+ path: Optional[pulumi.Input[str]] = None,
178
+ __props__=None):
179
+ """
180
+ Allows setting the cluster-local's API mount path and AIA distribution point on a particular performance replication cluster.
181
+
182
+ ## Example Usage
183
+
184
+ <!--Start PulumiCodeChooser -->
185
+ ```python
186
+ import pulumi
187
+ import pulumi_vault as vault
188
+
189
+ root = vault.Mount("root",
190
+ path="pki-root",
191
+ type="pki",
192
+ description="root PKI",
193
+ default_lease_ttl_seconds=8640000,
194
+ max_lease_ttl_seconds=8640000)
195
+ example = vault.pki_secret.BackendConfigCluster("example",
196
+ backend=root.path,
197
+ path="http://127.0.0.1:8200/v1/pki-root",
198
+ aia_path="http://127.0.0.1:8200/v1/pki-root")
199
+ ```
200
+ <!--End PulumiCodeChooser -->
201
+
202
+ ## Import
203
+
204
+ The PKI config cluster can be imported using the resource's `id`.
205
+ In the case of the example above the `id` would be `pki-root/config/cluster`,
206
+ where the `pki-root` component is the resource's `backend`, e.g.
207
+
208
+ ```sh
209
+ $ pulumi import vault:pkiSecret/backendConfigCluster:BackendConfigCluster example pki-root/config/cluster
210
+ ```
211
+
212
+ :param str resource_name: The name of the resource.
213
+ :param pulumi.ResourceOptions opts: Options for the resource.
214
+ :param pulumi.Input[str] aia_path: Specifies the path to this performance replication cluster's AIA distribution point.
215
+ :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
216
+ :param pulumi.Input[str] namespace: The namespace to provision the resource in.
217
+ The value should not contain leading or trailing forward slashes.
218
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
219
+ *Available only for Vault Enterprise*.
220
+ :param pulumi.Input[str] path: Specifies the path to this performance replication cluster's API mount path.
221
+ """
222
+ ...
223
+ @overload
224
+ def __init__(__self__,
225
+ resource_name: str,
226
+ args: BackendConfigClusterArgs,
227
+ opts: Optional[pulumi.ResourceOptions] = None):
228
+ """
229
+ Allows setting the cluster-local's API mount path and AIA distribution point on a particular performance replication cluster.
230
+
231
+ ## Example Usage
232
+
233
+ <!--Start PulumiCodeChooser -->
234
+ ```python
235
+ import pulumi
236
+ import pulumi_vault as vault
237
+
238
+ root = vault.Mount("root",
239
+ path="pki-root",
240
+ type="pki",
241
+ description="root PKI",
242
+ default_lease_ttl_seconds=8640000,
243
+ max_lease_ttl_seconds=8640000)
244
+ example = vault.pki_secret.BackendConfigCluster("example",
245
+ backend=root.path,
246
+ path="http://127.0.0.1:8200/v1/pki-root",
247
+ aia_path="http://127.0.0.1:8200/v1/pki-root")
248
+ ```
249
+ <!--End PulumiCodeChooser -->
250
+
251
+ ## Import
252
+
253
+ The PKI config cluster can be imported using the resource's `id`.
254
+ In the case of the example above the `id` would be `pki-root/config/cluster`,
255
+ where the `pki-root` component is the resource's `backend`, e.g.
256
+
257
+ ```sh
258
+ $ pulumi import vault:pkiSecret/backendConfigCluster:BackendConfigCluster example pki-root/config/cluster
259
+ ```
260
+
261
+ :param str resource_name: The name of the resource.
262
+ :param BackendConfigClusterArgs args: The arguments to use to populate this resource's properties.
263
+ :param pulumi.ResourceOptions opts: Options for the resource.
264
+ """
265
+ ...
266
+ def __init__(__self__, resource_name: str, *args, **kwargs):
267
+ resource_args, opts = _utilities.get_resource_args_opts(BackendConfigClusterArgs, pulumi.ResourceOptions, *args, **kwargs)
268
+ if resource_args is not None:
269
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
270
+ else:
271
+ __self__._internal_init(resource_name, *args, **kwargs)
272
+
273
+ def _internal_init(__self__,
274
+ resource_name: str,
275
+ opts: Optional[pulumi.ResourceOptions] = None,
276
+ aia_path: Optional[pulumi.Input[str]] = None,
277
+ backend: Optional[pulumi.Input[str]] = None,
278
+ namespace: Optional[pulumi.Input[str]] = None,
279
+ path: Optional[pulumi.Input[str]] = None,
280
+ __props__=None):
281
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
282
+ if not isinstance(opts, pulumi.ResourceOptions):
283
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
284
+ if opts.id is None:
285
+ if __props__ is not None:
286
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
287
+ __props__ = BackendConfigClusterArgs.__new__(BackendConfigClusterArgs)
288
+
289
+ __props__.__dict__["aia_path"] = aia_path
290
+ if backend is None and not opts.urn:
291
+ raise TypeError("Missing required property 'backend'")
292
+ __props__.__dict__["backend"] = backend
293
+ __props__.__dict__["namespace"] = namespace
294
+ __props__.__dict__["path"] = path
295
+ super(BackendConfigCluster, __self__).__init__(
296
+ 'vault:pkiSecret/backendConfigCluster:BackendConfigCluster',
297
+ resource_name,
298
+ __props__,
299
+ opts)
300
+
301
+ @staticmethod
302
+ def get(resource_name: str,
303
+ id: pulumi.Input[str],
304
+ opts: Optional[pulumi.ResourceOptions] = None,
305
+ aia_path: Optional[pulumi.Input[str]] = None,
306
+ backend: Optional[pulumi.Input[str]] = None,
307
+ namespace: Optional[pulumi.Input[str]] = None,
308
+ path: Optional[pulumi.Input[str]] = None) -> 'BackendConfigCluster':
309
+ """
310
+ Get an existing BackendConfigCluster resource's state with the given name, id, and optional extra
311
+ properties used to qualify the lookup.
312
+
313
+ :param str resource_name: The unique name of the resulting resource.
314
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
315
+ :param pulumi.ResourceOptions opts: Options for the resource.
316
+ :param pulumi.Input[str] aia_path: Specifies the path to this performance replication cluster's AIA distribution point.
317
+ :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
318
+ :param pulumi.Input[str] namespace: The namespace to provision the resource in.
319
+ The value should not contain leading or trailing forward slashes.
320
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
321
+ *Available only for Vault Enterprise*.
322
+ :param pulumi.Input[str] path: Specifies the path to this performance replication cluster's API mount path.
323
+ """
324
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
325
+
326
+ __props__ = _BackendConfigClusterState.__new__(_BackendConfigClusterState)
327
+
328
+ __props__.__dict__["aia_path"] = aia_path
329
+ __props__.__dict__["backend"] = backend
330
+ __props__.__dict__["namespace"] = namespace
331
+ __props__.__dict__["path"] = path
332
+ return BackendConfigCluster(resource_name, opts=opts, __props__=__props__)
333
+
334
+ @property
335
+ @pulumi.getter(name="aiaPath")
336
+ def aia_path(self) -> pulumi.Output[Optional[str]]:
337
+ """
338
+ Specifies the path to this performance replication cluster's AIA distribution point.
339
+ """
340
+ return pulumi.get(self, "aia_path")
341
+
342
+ @property
343
+ @pulumi.getter
344
+ def backend(self) -> pulumi.Output[str]:
345
+ """
346
+ The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
347
+ """
348
+ return pulumi.get(self, "backend")
349
+
350
+ @property
351
+ @pulumi.getter
352
+ def namespace(self) -> pulumi.Output[Optional[str]]:
353
+ """
354
+ The namespace to provision the resource in.
355
+ The value should not contain leading or trailing forward slashes.
356
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
357
+ *Available only for Vault Enterprise*.
358
+ """
359
+ return pulumi.get(self, "namespace")
360
+
361
+ @property
362
+ @pulumi.getter
363
+ def path(self) -> pulumi.Output[Optional[str]]:
364
+ """
365
+ Specifies the path to this performance replication cluster's API mount path.
366
+ """
367
+ return pulumi.get(self, "path")
368
+
@@ -181,7 +181,7 @@ def get_backend_issuer(backend: Optional[str] = None,
181
181
  :param str issuer_ref: Reference to an existing issuer.
182
182
  :param str namespace: The namespace of the target resource.
183
183
  The value should not contain leading or trailing forward slashes.
184
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
184
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
185
185
  *Available only for Vault Enterprise*.
186
186
  """
187
187
  __args__ = dict()
@@ -220,7 +220,7 @@ def get_backend_issuer_output(backend: Optional[pulumi.Input[str]] = None,
220
220
  :param str issuer_ref: Reference to an existing issuer.
221
221
  :param str namespace: The namespace of the target resource.
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
  ...
@@ -128,7 +128,7 @@ def get_backend_issuers(backend: Optional[str] = None,
128
128
  read the issuers from, with no leading or trailing `/`s.
129
129
  :param str namespace: The namespace of the target resource.
130
130
  The value should not contain leading or trailing forward slashes.
131
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
131
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
132
132
  *Available only for Vault Enterprise*.
133
133
  """
134
134
  __args__ = dict()
@@ -177,7 +177,7 @@ def get_backend_issuers_output(backend: Optional[pulumi.Input[str]] = None,
177
177
  read the issuers from, with no leading or trailing `/`s.
178
178
  :param str namespace: The namespace of the target resource.
179
179
  The value should not contain leading or trailing forward slashes.
180
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
180
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
181
181
  *Available only for Vault Enterprise*.
182
182
  """
183
183
  ...
@@ -140,7 +140,7 @@ def get_backend_key(backend: Optional[str] = None,
140
140
  :param str key_ref: Reference to an existing key.
141
141
  :param str namespace: The namespace of the target resource.
142
142
  The value should not contain leading or trailing forward slashes.
143
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
143
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
144
144
  *Available only for Vault Enterprise*.
145
145
  """
146
146
  __args__ = dict()
@@ -194,7 +194,7 @@ def get_backend_key_output(backend: Optional[pulumi.Input[str]] = None,
194
194
  :param str key_ref: Reference to an existing key.
195
195
  :param str namespace: The namespace of the target resource.
196
196
  The value should not contain leading or trailing forward slashes.
197
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
197
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
198
198
  *Available only for Vault Enterprise*.
199
199
  """
200
200
  ...
@@ -128,7 +128,7 @@ def get_backend_keys(backend: Optional[str] = None,
128
128
  read the keys from, with no leading or trailing `/`s.
129
129
  :param str namespace: The namespace of the target resource.
130
130
  The value should not contain leading or trailing forward slashes.
131
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
131
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
132
132
  *Available only for Vault Enterprise*.
133
133
  """
134
134
  __args__ = dict()
@@ -177,7 +177,7 @@ def get_backend_keys_output(backend: Optional[pulumi.Input[str]] = None,
177
177
  read the keys from, with no leading or trailing `/`s.
178
178
  :param str namespace: The namespace of the target resource.
179
179
  The value should not contain leading or trailing forward slashes.
180
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
180
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
181
181
  *Available only for Vault Enterprise*.
182
182
  """
183
183
  ...
@@ -45,7 +45,7 @@ class SecretBackendCertArgs:
45
45
  :param pulumi.Input[str] name: Name of the role to create the certificate against
46
46
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
47
47
  The value should not contain leading or trailing forward slashes.
48
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
48
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
49
49
  *Available only for Vault Enterprise*.
50
50
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
51
51
  :param pulumi.Input[str] private_key_format: The private key format
@@ -213,7 +213,7 @@ class SecretBackendCertArgs:
213
213
  """
214
214
  The namespace to provision the resource in.
215
215
  The value should not contain leading or trailing forward slashes.
216
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
216
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
217
217
  *Available only for Vault Enterprise*.
218
218
  """
219
219
  return pulumi.get(self, "namespace")
@@ -341,7 +341,7 @@ class _SecretBackendCertState:
341
341
  :param pulumi.Input[str] name: Name of the role to create the certificate against
342
342
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
343
343
  The value should not contain leading or trailing forward slashes.
344
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
344
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
345
345
  *Available only for Vault Enterprise*.
346
346
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
347
347
  :param pulumi.Input[str] private_key: The private key
@@ -579,7 +579,7 @@ class _SecretBackendCertState:
579
579
  """
580
580
  The namespace to provision the resource in.
581
581
  The value should not contain leading or trailing forward slashes.
582
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
582
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
583
583
  *Available only for Vault Enterprise*.
584
584
  """
585
585
  return pulumi.get(self, "namespace")
@@ -761,7 +761,7 @@ class SecretBackendCert(pulumi.CustomResource):
761
761
  :param pulumi.Input[str] name: Name of the role to create the certificate against
762
762
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
763
763
  The value should not contain leading or trailing forward slashes.
764
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
764
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
765
765
  *Available only for Vault Enterprise*.
766
766
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
767
767
  :param pulumi.Input[str] private_key_format: The private key format
@@ -921,7 +921,7 @@ class SecretBackendCert(pulumi.CustomResource):
921
921
  :param pulumi.Input[str] name: Name of the role to create the certificate against
922
922
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
923
923
  The value should not contain leading or trailing forward slashes.
924
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
924
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
925
925
  *Available only for Vault Enterprise*.
926
926
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
927
927
  :param pulumi.Input[str] private_key: The private key
@@ -1083,7 +1083,7 @@ class SecretBackendCert(pulumi.CustomResource):
1083
1083
  """
1084
1084
  The namespace to provision the resource in.
1085
1085
  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).
1086
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1087
1087
  *Available only for Vault Enterprise*.
1088
1088
  """
1089
1089
  return pulumi.get(self, "namespace")
@@ -23,7 +23,7 @@ class SecretBackendConfigCaArgs:
23
23
  :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
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__, "backend", backend)
@@ -61,7 +61,7 @@ class SecretBackendConfigCaArgs:
61
61
  """
62
62
  The namespace to provision the resource in.
63
63
  The value should not contain leading or trailing forward slashes.
64
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
64
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
65
65
  *Available only for Vault Enterprise*.
66
66
  """
67
67
  return pulumi.get(self, "namespace")
@@ -82,7 +82,7 @@ class _SecretBackendConfigCaState:
82
82
  :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
83
83
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
84
84
  The value should not contain leading or trailing forward slashes.
85
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
85
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
86
86
  *Available only for Vault Enterprise*.
87
87
  :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
88
88
  """
@@ -111,7 +111,7 @@ class _SecretBackendConfigCaState:
111
111
  """
112
112
  The namespace to provision the resource in.
113
113
  The value should not contain leading or trailing forward slashes.
114
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
114
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
115
115
  *Available only for Vault Enterprise*.
116
116
  """
117
117
  return pulumi.get(self, "namespace")
@@ -210,7 +210,7 @@ class SecretBackendConfigCa(pulumi.CustomResource):
210
210
  :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
211
211
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
212
212
  The value should not contain leading or trailing forward slashes.
213
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
213
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
214
214
  *Available only for Vault Enterprise*.
215
215
  :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
216
216
  """
@@ -342,7 +342,7 @@ class SecretBackendConfigCa(pulumi.CustomResource):
342
342
  :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
343
343
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
344
344
  The value should not contain leading or trailing forward slashes.
345
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
345
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
346
346
  *Available only for Vault Enterprise*.
347
347
  :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
348
348
  """
@@ -369,7 +369,7 @@ class SecretBackendConfigCa(pulumi.CustomResource):
369
369
  """
370
370
  The namespace to provision the resource in.
371
371
  The value should not contain leading or trailing forward slashes.
372
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
372
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
373
373
  *Available only for Vault Enterprise*.
374
374
  """
375
375
  return pulumi.get(self, "namespace")
@@ -27,7 +27,7 @@ class SecretBackendConfigIssuersArgs:
27
27
  or an issuer import operation updates the default issuer to the newly added issuer.
28
28
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
29
29
  The value should not contain leading or trailing forward slashes.
30
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
30
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
31
31
  *Available only for Vault Enterprise*.
32
32
  """
33
33
  pulumi.set(__self__, "backend", backend)
@@ -82,7 +82,7 @@ class SecretBackendConfigIssuersArgs:
82
82
  """
83
83
  The namespace to provision the resource in.
84
84
  The value should not contain leading or trailing forward slashes.
85
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
85
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
86
86
  *Available only for Vault Enterprise*.
87
87
  """
88
88
  return pulumi.get(self, "namespace")
@@ -108,7 +108,7 @@ class _SecretBackendConfigIssuersState:
108
108
  or an issuer import operation updates the default issuer to the newly added issuer.
109
109
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
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
  if backend is not None:
@@ -164,7 +164,7 @@ class _SecretBackendConfigIssuersState:
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")
@@ -230,7 +230,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
230
230
  or an issuer import operation updates the default issuer to the newly added issuer.
231
231
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
232
232
  The value should not contain leading or trailing forward slashes.
233
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
233
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
234
234
  *Available only for Vault Enterprise*.
235
235
  """
236
236
  ...
@@ -338,7 +338,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
338
338
  or an issuer import operation updates the default issuer to the newly added issuer.
339
339
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
340
340
  The value should not contain leading or trailing forward slashes.
341
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
341
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
342
342
  *Available only for Vault Enterprise*.
343
343
  """
344
344
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -383,7 +383,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
383
383
  """
384
384
  The namespace to provision the resource in.
385
385
  The value should not contain leading or trailing forward slashes.
386
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
386
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
387
387
  *Available only for Vault Enterprise*.
388
388
  """
389
389
  return pulumi.get(self, "namespace")