pulumi-vault 6.3.0a1720854785__py3-none-any.whl → 6.3.0a1721327889__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.
- pulumi_vault/_inputs.py +20 -0
- pulumi_vault/_utilities.py +3 -4
- pulumi_vault/outputs.py +20 -0
- pulumi_vault/pkisecret/_inputs.py +10 -0
- pulumi_vault/pkisecret/outputs.py +10 -0
- pulumi_vault/pulumi-plugin.json +1 -1
- {pulumi_vault-6.3.0a1720854785.dist-info → pulumi_vault-6.3.0a1721327889.dist-info}/METADATA +1 -1
- {pulumi_vault-6.3.0a1720854785.dist-info → pulumi_vault-6.3.0a1721327889.dist-info}/RECORD +10 -10
- {pulumi_vault-6.3.0a1720854785.dist-info → pulumi_vault-6.3.0a1721327889.dist-info}/WHEEL +1 -1
- {pulumi_vault-6.3.0a1720854785.dist-info → pulumi_vault-6.3.0a1721327889.dist-info}/top_level.txt +0 -0
pulumi_vault/_inputs.py
CHANGED
@@ -1844,12 +1844,19 @@ class GetPolicyDocumentRuleAllowedParameterArgs:
|
|
1844
1844
|
def __init__(__self__, *,
|
1845
1845
|
key: str,
|
1846
1846
|
values: Sequence[str]):
|
1847
|
+
"""
|
1848
|
+
:param str key: name of permitted or denied parameter.
|
1849
|
+
:param Sequence[str] values: list of values what are permitted or denied by policy rule.
|
1850
|
+
"""
|
1847
1851
|
pulumi.set(__self__, "key", key)
|
1848
1852
|
pulumi.set(__self__, "values", values)
|
1849
1853
|
|
1850
1854
|
@property
|
1851
1855
|
@pulumi.getter
|
1852
1856
|
def key(self) -> str:
|
1857
|
+
"""
|
1858
|
+
name of permitted or denied parameter.
|
1859
|
+
"""
|
1853
1860
|
return pulumi.get(self, "key")
|
1854
1861
|
|
1855
1862
|
@key.setter
|
@@ -1859,6 +1866,9 @@ class GetPolicyDocumentRuleAllowedParameterArgs:
|
|
1859
1866
|
@property
|
1860
1867
|
@pulumi.getter
|
1861
1868
|
def values(self) -> Sequence[str]:
|
1869
|
+
"""
|
1870
|
+
list of values what are permitted or denied by policy rule.
|
1871
|
+
"""
|
1862
1872
|
return pulumi.get(self, "values")
|
1863
1873
|
|
1864
1874
|
@values.setter
|
@@ -1871,12 +1881,19 @@ class GetPolicyDocumentRuleDeniedParameterArgs:
|
|
1871
1881
|
def __init__(__self__, *,
|
1872
1882
|
key: str,
|
1873
1883
|
values: Sequence[str]):
|
1884
|
+
"""
|
1885
|
+
:param str key: name of permitted or denied parameter.
|
1886
|
+
:param Sequence[str] values: list of values what are permitted or denied by policy rule.
|
1887
|
+
"""
|
1874
1888
|
pulumi.set(__self__, "key", key)
|
1875
1889
|
pulumi.set(__self__, "values", values)
|
1876
1890
|
|
1877
1891
|
@property
|
1878
1892
|
@pulumi.getter
|
1879
1893
|
def key(self) -> str:
|
1894
|
+
"""
|
1895
|
+
name of permitted or denied parameter.
|
1896
|
+
"""
|
1880
1897
|
return pulumi.get(self, "key")
|
1881
1898
|
|
1882
1899
|
@key.setter
|
@@ -1886,6 +1903,9 @@ class GetPolicyDocumentRuleDeniedParameterArgs:
|
|
1886
1903
|
@property
|
1887
1904
|
@pulumi.getter
|
1888
1905
|
def values(self) -> Sequence[str]:
|
1906
|
+
"""
|
1907
|
+
list of values what are permitted or denied by policy rule.
|
1908
|
+
"""
|
1889
1909
|
return pulumi.get(self, "values")
|
1890
1910
|
|
1891
1911
|
@values.setter
|
pulumi_vault/_utilities.py
CHANGED
@@ -100,10 +100,6 @@ def _get_semver_version():
|
|
100
100
|
_version = _get_semver_version()
|
101
101
|
_version_str = str(_version)
|
102
102
|
|
103
|
-
|
104
|
-
def get_version():
|
105
|
-
return _version_str
|
106
|
-
|
107
103
|
def get_resource_opts_defaults() -> pulumi.ResourceOptions:
|
108
104
|
return pulumi.ResourceOptions(
|
109
105
|
version=get_version(),
|
@@ -324,3 +320,6 @@ def deprecated(message: str) -> typing.Callable[[C], C]:
|
|
324
320
|
|
325
321
|
def get_plugin_download_url():
|
326
322
|
return None
|
323
|
+
|
324
|
+
def get_version():
|
325
|
+
return _version_str
|
pulumi_vault/outputs.py
CHANGED
@@ -277,17 +277,27 @@ class GetPolicyDocumentRuleAllowedParameterResult(dict):
|
|
277
277
|
def __init__(__self__, *,
|
278
278
|
key: str,
|
279
279
|
values: Sequence[str]):
|
280
|
+
"""
|
281
|
+
:param str key: name of permitted or denied parameter.
|
282
|
+
:param Sequence[str] values: list of values what are permitted or denied by policy rule.
|
283
|
+
"""
|
280
284
|
pulumi.set(__self__, "key", key)
|
281
285
|
pulumi.set(__self__, "values", values)
|
282
286
|
|
283
287
|
@property
|
284
288
|
@pulumi.getter
|
285
289
|
def key(self) -> str:
|
290
|
+
"""
|
291
|
+
name of permitted or denied parameter.
|
292
|
+
"""
|
286
293
|
return pulumi.get(self, "key")
|
287
294
|
|
288
295
|
@property
|
289
296
|
@pulumi.getter
|
290
297
|
def values(self) -> Sequence[str]:
|
298
|
+
"""
|
299
|
+
list of values what are permitted or denied by policy rule.
|
300
|
+
"""
|
291
301
|
return pulumi.get(self, "values")
|
292
302
|
|
293
303
|
|
@@ -296,17 +306,27 @@ class GetPolicyDocumentRuleDeniedParameterResult(dict):
|
|
296
306
|
def __init__(__self__, *,
|
297
307
|
key: str,
|
298
308
|
values: Sequence[str]):
|
309
|
+
"""
|
310
|
+
:param str key: name of permitted or denied parameter.
|
311
|
+
:param Sequence[str] values: list of values what are permitted or denied by policy rule.
|
312
|
+
"""
|
299
313
|
pulumi.set(__self__, "key", key)
|
300
314
|
pulumi.set(__self__, "values", values)
|
301
315
|
|
302
316
|
@property
|
303
317
|
@pulumi.getter
|
304
318
|
def key(self) -> str:
|
319
|
+
"""
|
320
|
+
name of permitted or denied parameter.
|
321
|
+
"""
|
305
322
|
return pulumi.get(self, "key")
|
306
323
|
|
307
324
|
@property
|
308
325
|
@pulumi.getter
|
309
326
|
def values(self) -> Sequence[str]:
|
327
|
+
"""
|
328
|
+
list of values what are permitted or denied by policy rule.
|
329
|
+
"""
|
310
330
|
return pulumi.get(self, "values")
|
311
331
|
|
312
332
|
|
@@ -19,6 +19,10 @@ class BackendConfigEstAuthenticatorsArgs:
|
|
19
19
|
def __init__(__self__, *,
|
20
20
|
cert: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
21
21
|
userpass: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
22
|
+
"""
|
23
|
+
:param pulumi.Input[Mapping[str, Any]] cert: "The accessor (required) and cert_role (optional) properties for cert auth backends".
|
24
|
+
:param pulumi.Input[Mapping[str, Any]] userpass: "The accessor (required) property for user pass auth backends".
|
25
|
+
"""
|
22
26
|
if cert is not None:
|
23
27
|
pulumi.set(__self__, "cert", cert)
|
24
28
|
if userpass is not None:
|
@@ -27,6 +31,9 @@ class BackendConfigEstAuthenticatorsArgs:
|
|
27
31
|
@property
|
28
32
|
@pulumi.getter
|
29
33
|
def cert(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
34
|
+
"""
|
35
|
+
"The accessor (required) and cert_role (optional) properties for cert auth backends".
|
36
|
+
"""
|
30
37
|
return pulumi.get(self, "cert")
|
31
38
|
|
32
39
|
@cert.setter
|
@@ -36,6 +43,9 @@ class BackendConfigEstAuthenticatorsArgs:
|
|
36
43
|
@property
|
37
44
|
@pulumi.getter
|
38
45
|
def userpass(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
46
|
+
"""
|
47
|
+
"The accessor (required) property for user pass auth backends".
|
48
|
+
"""
|
39
49
|
return pulumi.get(self, "userpass")
|
40
50
|
|
41
51
|
@userpass.setter
|
@@ -20,6 +20,10 @@ class BackendConfigEstAuthenticators(dict):
|
|
20
20
|
def __init__(__self__, *,
|
21
21
|
cert: Optional[Mapping[str, Any]] = None,
|
22
22
|
userpass: Optional[Mapping[str, Any]] = None):
|
23
|
+
"""
|
24
|
+
:param Mapping[str, Any] cert: "The accessor (required) and cert_role (optional) properties for cert auth backends".
|
25
|
+
:param Mapping[str, Any] userpass: "The accessor (required) property for user pass auth backends".
|
26
|
+
"""
|
23
27
|
if cert is not None:
|
24
28
|
pulumi.set(__self__, "cert", cert)
|
25
29
|
if userpass is not None:
|
@@ -28,11 +32,17 @@ class BackendConfigEstAuthenticators(dict):
|
|
28
32
|
@property
|
29
33
|
@pulumi.getter
|
30
34
|
def cert(self) -> Optional[Mapping[str, Any]]:
|
35
|
+
"""
|
36
|
+
"The accessor (required) and cert_role (optional) properties for cert auth backends".
|
37
|
+
"""
|
31
38
|
return pulumi.get(self, "cert")
|
32
39
|
|
33
40
|
@property
|
34
41
|
@pulumi.getter
|
35
42
|
def userpass(self) -> Optional[Mapping[str, Any]]:
|
43
|
+
"""
|
44
|
+
"The accessor (required) property for user pass auth backends".
|
45
|
+
"""
|
36
46
|
return pulumi.get(self, "userpass")
|
37
47
|
|
38
48
|
|
pulumi_vault/pulumi-plugin.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_vault/__init__.py,sha256=YyUZ3AwssRd84-MFiLiMsKlEs0Gl5dnqjoRlDWbWe70,31607
|
2
|
-
pulumi_vault/_inputs.py,sha256=
|
3
|
-
pulumi_vault/_utilities.py,sha256=
|
2
|
+
pulumi_vault/_inputs.py,sha256=Q9weKCzZZ0f0tVbn8d3jxCbKRwRhRzvmBLbinoDTPns,73552
|
3
|
+
pulumi_vault/_utilities.py,sha256=ebJyWyMCMYLpnVkJVRkMiyEceWyxZ09ZYhxd1W7MWxs,10446
|
4
4
|
pulumi_vault/audit.py,sha256=DlMWyovN9OrGVBpDgNvvtMRMpZRI_pC8YwqEaI9S6lk,20343
|
5
5
|
pulumi_vault/audit_request_header.py,sha256=CHCfbFBwzX3mU6Fi34Havyl8cH9Mtzj5BDmKIc2tIno,10313
|
6
6
|
pulumi_vault/auth_backend.py,sha256=v4dxfpqhg94wXTnSuKAJ8-qBC_TnUXneSa-ODx9NNoQ,23808
|
@@ -21,13 +21,13 @@ pulumi_vault/mount.py,sha256=bcvGRLfo5rYBpP72qfdYm7H90lsPb5vDDQR1Xhviifo,59240
|
|
21
21
|
pulumi_vault/namespace.py,sha256=QKY3lKdHIZpT_l0Ut6Fk_FarRPsEkLyxv1tmfgXXoU0,18077
|
22
22
|
pulumi_vault/nomad_secret_backend.py,sha256=cmL2NkjNIZxu9a7NEMMHgojGi12I2tGDojFdMGSgj04,42018
|
23
23
|
pulumi_vault/nomad_secret_role.py,sha256=47QltNPaM58oiCXt77Z6r1cXRVN79FhYWI7Iei5sQ3w,20146
|
24
|
-
pulumi_vault/outputs.py,sha256=
|
24
|
+
pulumi_vault/outputs.py,sha256=88VJ3ypd_FjGNbSs30B5o6hAiAvWU2bx4SoCfTBGyIc,13760
|
25
25
|
pulumi_vault/password_policy.py,sha256=sDU2lauo4-13snK35DOXtWbzn_bMJ5AZS-gS57T0aUw,12241
|
26
26
|
pulumi_vault/plugin.py,sha256=0fBhSZDyQhzML9r1Udhy9ngHcfjwzi1BzvutsbKKUwU,23482
|
27
27
|
pulumi_vault/plugin_pinned_version.py,sha256=mo62qPp_IwJRnv5t2p9ywInEjwHFsBunoyCDGc0bveg,10583
|
28
28
|
pulumi_vault/policy.py,sha256=V6knAiqkzH97T72s6FB2qNjScDfKOAl3mox1h7vg0Ps,10935
|
29
29
|
pulumi_vault/provider.py,sha256=gvnZj6hsMxMypnzizoolBed2LmtQPUCyMXlgGWpmLxY,41708
|
30
|
-
pulumi_vault/pulumi-plugin.json,sha256=
|
30
|
+
pulumi_vault/pulumi-plugin.json,sha256=vvBxnemOGOEutPWO0hUlWjeU3nvqVLsVsl86f5qjOSE,81
|
31
31
|
pulumi_vault/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
32
|
pulumi_vault/quota_lease_count.py,sha256=w5CLQQjCk9PKSzX_XeLMEV87xre-poHJG9NfAGVVTjw,24898
|
33
33
|
pulumi_vault/quota_rate_limit.py,sha256=hA0tDU-54VrfcTHCzbRU-TL32BLnPBxhl92faufEkZo,29503
|
@@ -186,7 +186,7 @@ pulumi_vault/okta/auth_backend_group.py,sha256=5Sw2MK4d5AnVMXT3O1a8fMbiqDOP1gmau
|
|
186
186
|
pulumi_vault/okta/auth_backend_user.py,sha256=kiNHbdduI1R4XWbtnHWvdCIW8xR-UykSQGp1CLujeRk,16937
|
187
187
|
pulumi_vault/okta/outputs.py,sha256=8IPwy3nKDVxvwT8wd9dyFm3hfPYd_FXZ4TcCkT9vUR4,3067
|
188
188
|
pulumi_vault/pkisecret/__init__.py,sha256=Lwp_52rZJohEKOGZTENoaHtUcsrMDlAa87JRrMSrXcw,1103
|
189
|
-
pulumi_vault/pkisecret/_inputs.py,sha256=
|
189
|
+
pulumi_vault/pkisecret/_inputs.py,sha256=w-AtpcUpcZAI0q1yE_6E8MuYUWe7tKkxOinoCFrps-I,3592
|
190
190
|
pulumi_vault/pkisecret/backend_config_cluster.py,sha256=gJDXjoh1qkAnXm6BAP65AXrDaY2q8aZpclglNBwCx2U,15929
|
191
191
|
pulumi_vault/pkisecret/backend_config_est.py,sha256=NEhpisOocjL-_w3_b97Bw2kUz9lPxki1PGylh-1M0wQ,32409
|
192
192
|
pulumi_vault/pkisecret/get_backend_config_est.py,sha256=pYeRNsK3RLeTmrPaU1rCi1pn8BC12kIvME6uHqniQps,9896
|
@@ -194,7 +194,7 @@ pulumi_vault/pkisecret/get_backend_issuer.py,sha256=098K4SWse6Xt5NCzqLqFFaqMHtuP
|
|
194
194
|
pulumi_vault/pkisecret/get_backend_issuers.py,sha256=SQMnqHSCQzVBVNjHio7Pt3BQvYS1sNbgb75TeoClWoU,6398
|
195
195
|
pulumi_vault/pkisecret/get_backend_key.py,sha256=NIjBO6CBmZ0gJ44wWnz510nQ4E47aQhuytFE-iSyhXY,6930
|
196
196
|
pulumi_vault/pkisecret/get_backend_keys.py,sha256=Ke6ggiCEupZK3x1bvo1cPTLlKeOp4wVG09LyuldvL90,6303
|
197
|
-
pulumi_vault/pkisecret/outputs.py,sha256=
|
197
|
+
pulumi_vault/pkisecret/outputs.py,sha256=yPqzmnBbWgIR8K2_Bln9dE3ZNdxc6ns4cligGeEeJjE,3879
|
198
198
|
pulumi_vault/pkisecret/secret_backend_cert.py,sha256=arfvGLS6IEmMVdIAl7d5OTjPPt05VGtRKdYV7QhMSnc,49699
|
199
199
|
pulumi_vault/pkisecret/secret_backend_config_ca.py,sha256=8JIjvEqZ-2uCuK6sh7TwhVdU5RgakdsGjham4iRsKUg,18958
|
200
200
|
pulumi_vault/pkisecret/secret_backend_config_issuers.py,sha256=Hrk1TZ-vIYlDE-lmBRPndL2dwTh9MZbDN1Q3AVA6IZ0,16978
|
@@ -250,7 +250,7 @@ pulumi_vault/transit/get_decrypt.py,sha256=6rFzK4Ghf3tWRNJ_rSCs0yJsPynk9oeqZIJJq
|
|
250
250
|
pulumi_vault/transit/get_encrypt.py,sha256=wz1GDrLP8JzDLCcjbU7tZM7vHNtBQ9PPpLHczy22uqY,5712
|
251
251
|
pulumi_vault/transit/secret_backend_key.py,sha256=56to0JZaIFaCZVeiW5pNKER6azVhs2JXJoccgdVdtoI,53286
|
252
252
|
pulumi_vault/transit/secret_cache_config.py,sha256=kSfKajNG2v5iPtoEnNLRXCIR5sRGUqTTxRW-tT0X_iM,12483
|
253
|
-
pulumi_vault-6.3.
|
254
|
-
pulumi_vault-6.3.
|
255
|
-
pulumi_vault-6.3.
|
256
|
-
pulumi_vault-6.3.
|
253
|
+
pulumi_vault-6.3.0a1721327889.dist-info/METADATA,sha256=OztMC6DaxR2uqh5TrO4r3Jd-R3kbMeAB2wzaMgznh2A,4860
|
254
|
+
pulumi_vault-6.3.0a1721327889.dist-info/WHEEL,sha256=-oYQCr74JF3a37z2nRlQays_SX2MqOANoqVjBBAP2yE,91
|
255
|
+
pulumi_vault-6.3.0a1721327889.dist-info/top_level.txt,sha256=J7lAGvfexHc6T1EpDBGNKF0SXWURpmUhyzi9Nr5I61w,13
|
256
|
+
pulumi_vault-6.3.0a1721327889.dist-info/RECORD,,
|
{pulumi_vault-6.3.0a1720854785.dist-info → pulumi_vault-6.3.0a1721327889.dist-info}/top_level.txt
RENAMED
File without changes
|