pulumi-nomad 2.5.0a1744860632__py3-none-any.whl → 2.5.1a1753398000__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 (58) hide show
  1. pulumi_nomad/__init__.py +2 -2
  2. pulumi_nomad/_inputs.py +609 -610
  3. pulumi_nomad/_utilities.py +1 -1
  4. pulumi_nomad/acl_auth_method.py +108 -108
  5. pulumi_nomad/acl_binding_rule.py +88 -88
  6. pulumi_nomad/acl_policy.py +57 -57
  7. pulumi_nomad/acl_role.py +40 -40
  8. pulumi_nomad/acl_token.py +127 -127
  9. pulumi_nomad/config/__init__.py +2 -2
  10. pulumi_nomad/config/__init__.pyi +2 -3
  11. pulumi_nomad/config/outputs.py +10 -11
  12. pulumi_nomad/config/vars.py +15 -16
  13. pulumi_nomad/csi_volume.py +279 -279
  14. pulumi_nomad/csi_volume_registration.py +278 -278
  15. pulumi_nomad/dynamic_host_volume.py +193 -193
  16. pulumi_nomad/dynamic_host_volume_registration.py +158 -158
  17. pulumi_nomad/external_volume.py +257 -257
  18. pulumi_nomad/get_acl_policies.py +11 -12
  19. pulumi_nomad/get_acl_policy.py +14 -15
  20. pulumi_nomad/get_acl_role.py +13 -14
  21. pulumi_nomad/get_acl_roles.py +11 -12
  22. pulumi_nomad/get_acl_token.py +27 -28
  23. pulumi_nomad/get_acl_tokens.py +11 -12
  24. pulumi_nomad/get_allocations.py +23 -24
  25. pulumi_nomad/get_datacenters.py +18 -19
  26. pulumi_nomad/get_deployments.py +6 -7
  27. pulumi_nomad/get_dynamic_host_volume.py +42 -43
  28. pulumi_nomad/get_job.py +51 -52
  29. pulumi_nomad/get_job_parser.py +18 -19
  30. pulumi_nomad/get_jwks.py +7 -8
  31. pulumi_nomad/get_namespace.py +18 -19
  32. pulumi_nomad/get_namespaces.py +22 -17
  33. pulumi_nomad/get_node_pool.py +15 -16
  34. pulumi_nomad/get_node_pools.py +17 -18
  35. pulumi_nomad/get_plugin.py +37 -38
  36. pulumi_nomad/get_plugins.py +10 -11
  37. pulumi_nomad/get_regions.py +16 -11
  38. pulumi_nomad/get_scaling_policies.py +17 -18
  39. pulumi_nomad/get_scaling_policy.py +20 -21
  40. pulumi_nomad/get_scheduler_policy.py +10 -11
  41. pulumi_nomad/get_variable.py +18 -19
  42. pulumi_nomad/get_volumes.py +30 -31
  43. pulumi_nomad/job.py +247 -247
  44. pulumi_nomad/namespace.py +77 -77
  45. pulumi_nomad/node_pool.py +57 -57
  46. pulumi_nomad/outputs.py +744 -745
  47. pulumi_nomad/provider.py +144 -125
  48. pulumi_nomad/pulumi-plugin.json +1 -1
  49. pulumi_nomad/quote_specification.py +40 -40
  50. pulumi_nomad/scheduler_config.py +54 -54
  51. pulumi_nomad/sentinel_policy.py +88 -88
  52. pulumi_nomad/variable.py +54 -54
  53. pulumi_nomad/volume.py +274 -274
  54. {pulumi_nomad-2.5.0a1744860632.dist-info → pulumi_nomad-2.5.1a1753398000.dist-info}/METADATA +3 -3
  55. pulumi_nomad-2.5.1a1753398000.dist-info/RECORD +58 -0
  56. {pulumi_nomad-2.5.0a1744860632.dist-info → pulumi_nomad-2.5.1a1753398000.dist-info}/WHEEL +1 -1
  57. pulumi_nomad-2.5.0a1744860632.dist-info/RECORD +0 -58
  58. {pulumi_nomad-2.5.0a1744860632.dist-info → pulumi_nomad-2.5.1a1753398000.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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,26 +21,26 @@ __all__ = [
22
21
  @pulumi.output_type
23
22
  class Headers(dict):
24
23
  def __init__(__self__, *,
25
- name: builtins.str,
26
- value: builtins.str):
24
+ name: _builtins.str,
25
+ value: _builtins.str):
27
26
  """
28
- :param builtins.str name: The header name
29
- :param builtins.str value: The header value
27
+ :param _builtins.str name: The header name
28
+ :param _builtins.str value: The header value
30
29
  """
31
30
  pulumi.set(__self__, "name", name)
32
31
  pulumi.set(__self__, "value", value)
33
32
 
34
- @property
33
+ @_builtins.property
35
34
  @pulumi.getter
36
- def name(self) -> builtins.str:
35
+ def name(self) -> _builtins.str:
37
36
  """
38
37
  The header name
39
38
  """
40
39
  return pulumi.get(self, "name")
41
40
 
42
- @property
41
+ @_builtins.property
43
42
  @pulumi.getter
44
- def value(self) -> builtins.str:
43
+ def value(self) -> _builtins.str:
45
44
  """
46
45
  The header value
47
46
  """
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.