pulumi-nomad 2.6.0a1752905825__py3-none-any.whl → 2.6.0a1753510487__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 +1 -1
- pulumi_nomad/_inputs.py +608 -609
- pulumi_nomad/acl_auth_method.py +106 -107
- pulumi_nomad/acl_binding_rule.py +86 -87
- pulumi_nomad/acl_policy.py +55 -56
- pulumi_nomad/acl_role.py +38 -39
- pulumi_nomad/acl_token.py +125 -126
- pulumi_nomad/config/__init__.py +1 -1
- pulumi_nomad/config/__init__.pyi +1 -2
- pulumi_nomad/config/outputs.py +9 -10
- pulumi_nomad/config/vars.py +14 -15
- pulumi_nomad/csi_volume.py +277 -278
- pulumi_nomad/csi_volume_registration.py +276 -277
- pulumi_nomad/dynamic_host_volume.py +191 -192
- pulumi_nomad/dynamic_host_volume_registration.py +156 -157
- pulumi_nomad/external_volume.py +255 -256
- pulumi_nomad/get_acl_policies.py +10 -11
- pulumi_nomad/get_acl_policy.py +13 -14
- pulumi_nomad/get_acl_role.py +12 -13
- pulumi_nomad/get_acl_roles.py +10 -11
- pulumi_nomad/get_acl_token.py +26 -27
- pulumi_nomad/get_acl_tokens.py +10 -11
- pulumi_nomad/get_allocations.py +22 -23
- pulumi_nomad/get_datacenters.py +17 -18
- pulumi_nomad/get_deployments.py +5 -6
- pulumi_nomad/get_dynamic_host_volume.py +41 -42
- pulumi_nomad/get_job.py +50 -51
- pulumi_nomad/get_job_parser.py +17 -18
- pulumi_nomad/get_jwks.py +6 -7
- pulumi_nomad/get_namespace.py +17 -18
- pulumi_nomad/get_namespaces.py +5 -6
- pulumi_nomad/get_node_pool.py +14 -15
- pulumi_nomad/get_node_pools.py +16 -17
- pulumi_nomad/get_plugin.py +36 -37
- pulumi_nomad/get_plugins.py +9 -10
- pulumi_nomad/get_regions.py +5 -6
- pulumi_nomad/get_scaling_policies.py +16 -17
- pulumi_nomad/get_scaling_policy.py +19 -20
- pulumi_nomad/get_scheduler_policy.py +9 -10
- pulumi_nomad/get_variable.py +17 -18
- pulumi_nomad/get_volumes.py +29 -30
- pulumi_nomad/job.py +245 -246
- pulumi_nomad/namespace.py +75 -76
- pulumi_nomad/node_pool.py +55 -56
- pulumi_nomad/outputs.py +743 -744
- pulumi_nomad/provider.py +119 -120
- pulumi_nomad/pulumi-plugin.json +1 -1
- pulumi_nomad/quote_specification.py +38 -39
- pulumi_nomad/scheduler_config.py +52 -53
- pulumi_nomad/sentinel_policy.py +86 -87
- pulumi_nomad/variable.py +52 -53
- pulumi_nomad/volume.py +272 -273
- {pulumi_nomad-2.6.0a1752905825.dist-info → pulumi_nomad-2.6.0a1753510487.dist-info}/METADATA +1 -1
- pulumi_nomad-2.6.0a1753510487.dist-info/RECORD +58 -0
- pulumi_nomad-2.6.0a1752905825.dist-info/RECORD +0 -58
- {pulumi_nomad-2.6.0a1752905825.dist-info → pulumi_nomad-2.6.0a1753510487.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.6.0a1752905825.dist-info → pulumi_nomad-2.6.0a1753510487.dist-info}/top_level.txt +0 -0
pulumi_nomad/config/vars.py
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -22,91 +21,91 @@ __config__ = pulumi.Config('nomad')
|
|
22
21
|
|
23
22
|
|
24
23
|
class _ExportableConfig(types.ModuleType):
|
25
|
-
@property
|
24
|
+
@_builtins.property
|
26
25
|
def address(self) -> Optional[str]:
|
27
26
|
"""
|
28
27
|
URL of the root of the target Nomad agent.
|
29
28
|
"""
|
30
29
|
return __config__.get('address')
|
31
30
|
|
32
|
-
@property
|
31
|
+
@_builtins.property
|
33
32
|
def ca_file(self) -> Optional[str]:
|
34
33
|
"""
|
35
34
|
A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.
|
36
35
|
"""
|
37
36
|
return __config__.get('caFile')
|
38
37
|
|
39
|
-
@property
|
38
|
+
@_builtins.property
|
40
39
|
def ca_pem(self) -> Optional[str]:
|
41
40
|
"""
|
42
41
|
PEM-encoded certificate authority used to verify the remote agent's certificate.
|
43
42
|
"""
|
44
43
|
return __config__.get('caPem')
|
45
44
|
|
46
|
-
@property
|
45
|
+
@_builtins.property
|
47
46
|
def cert_file(self) -> Optional[str]:
|
48
47
|
"""
|
49
48
|
A path to a PEM-encoded certificate provided to the remote agent; requires use of key_file or key_pem.
|
50
49
|
"""
|
51
50
|
return __config__.get('certFile')
|
52
51
|
|
53
|
-
@property
|
52
|
+
@_builtins.property
|
54
53
|
def cert_pem(self) -> Optional[str]:
|
55
54
|
"""
|
56
55
|
PEM-encoded certificate provided to the remote agent; requires use of key_file or key_pem.
|
57
56
|
"""
|
58
57
|
return __config__.get('certPem')
|
59
58
|
|
60
|
-
@property
|
59
|
+
@_builtins.property
|
61
60
|
def headers(self) -> Optional[str]:
|
62
61
|
"""
|
63
62
|
The headers to send with each Nomad request.
|
64
63
|
"""
|
65
64
|
return __config__.get('headers')
|
66
65
|
|
67
|
-
@property
|
66
|
+
@_builtins.property
|
68
67
|
def http_auth(self) -> Optional[str]:
|
69
68
|
"""
|
70
69
|
HTTP basic auth configuration.
|
71
70
|
"""
|
72
71
|
return __config__.get('httpAuth')
|
73
72
|
|
74
|
-
@property
|
73
|
+
@_builtins.property
|
75
74
|
def ignore_env_vars(self) -> Optional[str]:
|
76
75
|
"""
|
77
76
|
A set of environment variables that are ignored by the provider when configuring the Nomad API client.
|
78
77
|
"""
|
79
78
|
return __config__.get('ignoreEnvVars')
|
80
79
|
|
81
|
-
@property
|
80
|
+
@_builtins.property
|
82
81
|
def key_file(self) -> Optional[str]:
|
83
82
|
"""
|
84
83
|
A path to a PEM-encoded private key, required if cert_file or cert_pem is specified.
|
85
84
|
"""
|
86
85
|
return __config__.get('keyFile')
|
87
86
|
|
88
|
-
@property
|
87
|
+
@_builtins.property
|
89
88
|
def key_pem(self) -> Optional[str]:
|
90
89
|
"""
|
91
90
|
PEM-encoded private key, required if cert_file or cert_pem is specified.
|
92
91
|
"""
|
93
92
|
return __config__.get('keyPem')
|
94
93
|
|
95
|
-
@property
|
94
|
+
@_builtins.property
|
96
95
|
def region(self) -> Optional[str]:
|
97
96
|
"""
|
98
97
|
Region of the target Nomad agent.
|
99
98
|
"""
|
100
99
|
return __config__.get('region')
|
101
100
|
|
102
|
-
@property
|
101
|
+
@_builtins.property
|
103
102
|
def secret_id(self) -> Optional[str]:
|
104
103
|
"""
|
105
104
|
ACL token secret for API requests.
|
106
105
|
"""
|
107
106
|
return __config__.get('secretId')
|
108
107
|
|
109
|
-
@property
|
108
|
+
@_builtins.property
|
110
109
|
def skip_verify(self) -> Optional[bool]:
|
111
110
|
"""
|
112
111
|
Skip TLS verification on client side.
|