pulumi-nomad 2.5.0a1744697511__py3-none-any.whl → 2.5.0a1744860632__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_nomad/__init__.py +19 -0
- pulumi_nomad/_inputs.py +678 -1
- pulumi_nomad/acl_policy.py +14 -7
- pulumi_nomad/config/__init__.pyi +0 -10
- pulumi_nomad/config/vars.py +0 -14
- pulumi_nomad/csi_volume.py +28 -0
- pulumi_nomad/dynamic_host_volume.py +1005 -0
- pulumi_nomad/dynamic_host_volume_registration.py +740 -0
- pulumi_nomad/get_dynamic_host_volume.py +353 -0
- pulumi_nomad/get_volumes.py +2 -2
- pulumi_nomad/job.py +3 -113
- pulumi_nomad/outputs.py +579 -1
- pulumi_nomad/provider.py +1 -59
- pulumi_nomad/pulumi-plugin.json +1 -1
- {pulumi_nomad-2.5.0a1744697511.dist-info → pulumi_nomad-2.5.0a1744860632.dist-info}/METADATA +1 -1
- {pulumi_nomad-2.5.0a1744697511.dist-info → pulumi_nomad-2.5.0a1744860632.dist-info}/RECORD +18 -15
- {pulumi_nomad-2.5.0a1744697511.dist-info → pulumi_nomad-2.5.0a1744860632.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.5.0a1744697511.dist-info → pulumi_nomad-2.5.0a1744860632.dist-info}/top_level.txt +0 -0
pulumi_nomad/__init__.py
CHANGED
@@ -13,6 +13,8 @@ from .acl_role import *
|
|
13
13
|
from .acl_token import *
|
14
14
|
from .csi_volume import *
|
15
15
|
from .csi_volume_registration import *
|
16
|
+
from .dynamic_host_volume import *
|
17
|
+
from .dynamic_host_volume_registration import *
|
16
18
|
from .external_volume import *
|
17
19
|
from .get_acl_policies import *
|
18
20
|
from .get_acl_policy import *
|
@@ -23,6 +25,7 @@ from .get_acl_tokens import *
|
|
23
25
|
from .get_allocations import *
|
24
26
|
from .get_datacenters import *
|
25
27
|
from .get_deployments import *
|
28
|
+
from .get_dynamic_host_volume import *
|
26
29
|
from .get_job import *
|
27
30
|
from .get_job_parser import *
|
28
31
|
from .get_jwks import *
|
@@ -116,6 +119,22 @@ _utilities.register(
|
|
116
119
|
"nomad:index/csiVolumeRegistration:CsiVolumeRegistration": "CsiVolumeRegistration"
|
117
120
|
}
|
118
121
|
},
|
122
|
+
{
|
123
|
+
"pkg": "nomad",
|
124
|
+
"mod": "index/dynamicHostVolume",
|
125
|
+
"fqn": "pulumi_nomad",
|
126
|
+
"classes": {
|
127
|
+
"nomad:index/dynamicHostVolume:DynamicHostVolume": "DynamicHostVolume"
|
128
|
+
}
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"pkg": "nomad",
|
132
|
+
"mod": "index/dynamicHostVolumeRegistration",
|
133
|
+
"fqn": "pulumi_nomad",
|
134
|
+
"classes": {
|
135
|
+
"nomad:index/dynamicHostVolumeRegistration:DynamicHostVolumeRegistration": "DynamicHostVolumeRegistration"
|
136
|
+
}
|
137
|
+
},
|
119
138
|
{
|
120
139
|
"pkg": "nomad",
|
121
140
|
"mod": "index/externalVolume",
|