pulumi-nomad 2.4.0a1721196917__py3-none-any.whl → 2.4.0a1721248635__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/_inputs.py +48 -0
- pulumi_nomad/_utilities.py +3 -4
- pulumi_nomad/outputs.py +48 -0
- pulumi_nomad/pulumi-plugin.json +1 -1
- {pulumi_nomad-2.4.0a1721196917.dist-info → pulumi_nomad-2.4.0a1721248635.dist-info}/METADATA +1 -1
- {pulumi_nomad-2.4.0a1721196917.dist-info → pulumi_nomad-2.4.0a1721248635.dist-info}/RECORD +8 -8
- {pulumi_nomad-2.4.0a1721196917.dist-info → pulumi_nomad-2.4.0a1721248635.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.4.0a1721196917.dist-info → pulumi_nomad-2.4.0a1721248635.dist-info}/top_level.txt +0 -0
pulumi_nomad/_inputs.py
CHANGED
@@ -698,12 +698,24 @@ class CsiVolumeRegistrationMountOptionsArgs:
|
|
698
698
|
class CsiVolumeRegistrationTopologyArgs:
|
699
699
|
def __init__(__self__, *,
|
700
700
|
segments: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
701
|
+
"""
|
702
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] segments: `(map[string]string)` - Define the attributes for the topology request.
|
703
|
+
|
704
|
+
In addition to the above arguments, the following attributes are exported and
|
705
|
+
can be referenced:
|
706
|
+
"""
|
701
707
|
if segments is not None:
|
702
708
|
pulumi.set(__self__, "segments", segments)
|
703
709
|
|
704
710
|
@property
|
705
711
|
@pulumi.getter
|
706
712
|
def segments(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
713
|
+
"""
|
714
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
715
|
+
|
716
|
+
In addition to the above arguments, the following attributes are exported and
|
717
|
+
can be referenced:
|
718
|
+
"""
|
707
719
|
return pulumi.get(self, "segments")
|
708
720
|
|
709
721
|
@segments.setter
|
@@ -782,12 +794,24 @@ class CsiVolumeRegistrationTopologyRequestRequiredTopologyArgs:
|
|
782
794
|
class CsiVolumeTopologyArgs:
|
783
795
|
def __init__(__self__, *,
|
784
796
|
segments: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
797
|
+
"""
|
798
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] segments: `(map[string]string)` - Define the attributes for the topology request.
|
799
|
+
|
800
|
+
In addition to the above arguments, the following attributes are exported and
|
801
|
+
can be referenced:
|
802
|
+
"""
|
785
803
|
if segments is not None:
|
786
804
|
pulumi.set(__self__, "segments", segments)
|
787
805
|
|
788
806
|
@property
|
789
807
|
@pulumi.getter
|
790
808
|
def segments(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
809
|
+
"""
|
810
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
811
|
+
|
812
|
+
In addition to the above arguments, the following attributes are exported and
|
813
|
+
can be referenced:
|
814
|
+
"""
|
791
815
|
return pulumi.get(self, "segments")
|
792
816
|
|
793
817
|
@segments.setter
|
@@ -1016,12 +1040,24 @@ class ExternalVolumeMountOptionsArgs:
|
|
1016
1040
|
class ExternalVolumeTopologyArgs:
|
1017
1041
|
def __init__(__self__, *,
|
1018
1042
|
segments: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
1043
|
+
"""
|
1044
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] segments: `(map[string]string)` - Define the attributes for the topology request.
|
1045
|
+
|
1046
|
+
In addition to the above arguments, the following attributes are exported and
|
1047
|
+
can be referenced:
|
1048
|
+
"""
|
1019
1049
|
if segments is not None:
|
1020
1050
|
pulumi.set(__self__, "segments", segments)
|
1021
1051
|
|
1022
1052
|
@property
|
1023
1053
|
@pulumi.getter
|
1024
1054
|
def segments(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1055
|
+
"""
|
1056
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
1057
|
+
|
1058
|
+
In addition to the above arguments, the following attributes are exported and
|
1059
|
+
can be referenced:
|
1060
|
+
"""
|
1025
1061
|
return pulumi.get(self, "segments")
|
1026
1062
|
|
1027
1063
|
@segments.setter
|
@@ -1799,12 +1835,24 @@ class VolumeMountOptionsArgs:
|
|
1799
1835
|
class VolumeTopologyArgs:
|
1800
1836
|
def __init__(__self__, *,
|
1801
1837
|
segments: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
1838
|
+
"""
|
1839
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] segments: `(map[string]string)` - Define the attributes for the topology request.
|
1840
|
+
|
1841
|
+
In addition to the above arguments, the following attributes are exported and
|
1842
|
+
can be referenced:
|
1843
|
+
"""
|
1802
1844
|
if segments is not None:
|
1803
1845
|
pulumi.set(__self__, "segments", segments)
|
1804
1846
|
|
1805
1847
|
@property
|
1806
1848
|
@pulumi.getter
|
1807
1849
|
def segments(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1850
|
+
"""
|
1851
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
1852
|
+
|
1853
|
+
In addition to the above arguments, the following attributes are exported and
|
1854
|
+
can be referenced:
|
1855
|
+
"""
|
1808
1856
|
return pulumi.get(self, "segments")
|
1809
1857
|
|
1810
1858
|
@segments.setter
|
pulumi_nomad/_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_nomad/outputs.py
CHANGED
@@ -732,12 +732,24 @@ class CsiVolumeRegistrationMountOptions(dict):
|
|
732
732
|
class CsiVolumeRegistrationTopology(dict):
|
733
733
|
def __init__(__self__, *,
|
734
734
|
segments: Optional[Mapping[str, str]] = None):
|
735
|
+
"""
|
736
|
+
:param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
|
737
|
+
|
738
|
+
In addition to the above arguments, the following attributes are exported and
|
739
|
+
can be referenced:
|
740
|
+
"""
|
735
741
|
if segments is not None:
|
736
742
|
pulumi.set(__self__, "segments", segments)
|
737
743
|
|
738
744
|
@property
|
739
745
|
@pulumi.getter
|
740
746
|
def segments(self) -> Optional[Mapping[str, str]]:
|
747
|
+
"""
|
748
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
749
|
+
|
750
|
+
In addition to the above arguments, the following attributes are exported and
|
751
|
+
can be referenced:
|
752
|
+
"""
|
741
753
|
return pulumi.get(self, "segments")
|
742
754
|
|
743
755
|
|
@@ -800,12 +812,24 @@ class CsiVolumeRegistrationTopologyRequestRequiredTopology(dict):
|
|
800
812
|
class CsiVolumeTopology(dict):
|
801
813
|
def __init__(__self__, *,
|
802
814
|
segments: Optional[Mapping[str, str]] = None):
|
815
|
+
"""
|
816
|
+
:param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
|
817
|
+
|
818
|
+
In addition to the above arguments, the following attributes are exported and
|
819
|
+
can be referenced:
|
820
|
+
"""
|
803
821
|
if segments is not None:
|
804
822
|
pulumi.set(__self__, "segments", segments)
|
805
823
|
|
806
824
|
@property
|
807
825
|
@pulumi.getter
|
808
826
|
def segments(self) -> Optional[Mapping[str, str]]:
|
827
|
+
"""
|
828
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
829
|
+
|
830
|
+
In addition to the above arguments, the following attributes are exported and
|
831
|
+
can be referenced:
|
832
|
+
"""
|
809
833
|
return pulumi.get(self, "segments")
|
810
834
|
|
811
835
|
|
@@ -1028,12 +1052,24 @@ class ExternalVolumeMountOptions(dict):
|
|
1028
1052
|
class ExternalVolumeTopology(dict):
|
1029
1053
|
def __init__(__self__, *,
|
1030
1054
|
segments: Optional[Mapping[str, str]] = None):
|
1055
|
+
"""
|
1056
|
+
:param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
|
1057
|
+
|
1058
|
+
In addition to the above arguments, the following attributes are exported and
|
1059
|
+
can be referenced:
|
1060
|
+
"""
|
1031
1061
|
if segments is not None:
|
1032
1062
|
pulumi.set(__self__, "segments", segments)
|
1033
1063
|
|
1034
1064
|
@property
|
1035
1065
|
@pulumi.getter
|
1036
1066
|
def segments(self) -> Optional[Mapping[str, str]]:
|
1067
|
+
"""
|
1068
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
1069
|
+
|
1070
|
+
In addition to the above arguments, the following attributes are exported and
|
1071
|
+
can be referenced:
|
1072
|
+
"""
|
1037
1073
|
return pulumi.get(self, "segments")
|
1038
1074
|
|
1039
1075
|
|
@@ -1785,12 +1821,24 @@ class VolumeMountOptions(dict):
|
|
1785
1821
|
class VolumeTopology(dict):
|
1786
1822
|
def __init__(__self__, *,
|
1787
1823
|
segments: Optional[Mapping[str, str]] = None):
|
1824
|
+
"""
|
1825
|
+
:param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
|
1826
|
+
|
1827
|
+
In addition to the above arguments, the following attributes are exported and
|
1828
|
+
can be referenced:
|
1829
|
+
"""
|
1788
1830
|
if segments is not None:
|
1789
1831
|
pulumi.set(__self__, "segments", segments)
|
1790
1832
|
|
1791
1833
|
@property
|
1792
1834
|
@pulumi.getter
|
1793
1835
|
def segments(self) -> Optional[Mapping[str, str]]:
|
1836
|
+
"""
|
1837
|
+
`(map[string]string)` - Define the attributes for the topology request.
|
1838
|
+
|
1839
|
+
In addition to the above arguments, the following attributes are exported and
|
1840
|
+
can be referenced:
|
1841
|
+
"""
|
1794
1842
|
return pulumi.get(self, "segments")
|
1795
1843
|
|
1796
1844
|
|
pulumi_nomad/pulumi-plugin.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_nomad/__init__.py,sha256=1DS6wdOPeFhuGq-lUYG1tHqsPNoxIJT2IWHBlaNeRCA,4356
|
2
|
-
pulumi_nomad/_inputs.py,sha256=
|
3
|
-
pulumi_nomad/_utilities.py,sha256=
|
2
|
+
pulumi_nomad/_inputs.py,sha256=Q08QkEqbTXfS10I-t0x9gctJUSm8D76LaBzyrbws7ys,76583
|
3
|
+
pulumi_nomad/_utilities.py,sha256=ebJyWyMCMYLpnVkJVRkMiyEceWyxZ09ZYhxd1W7MWxs,10446
|
4
4
|
pulumi_nomad/acl_auth_method.py,sha256=A1HpNX3lM7bl7vwuGTdItg4OER4ZApLEoU0o_vEqf2Q,23704
|
5
5
|
pulumi_nomad/acl_binding_rule.py,sha256=7YZsOVUoabSUsThSiusJBju9S5kYcQGAclPqqRjj3PY,16396
|
6
6
|
pulumi_nomad/acl_policy.py,sha256=xN0klfhu-e5EPhKsaofxnj96m3TPTthsdtRbHW4Xr2Y,12176
|
@@ -36,9 +36,9 @@ pulumi_nomad/get_volumes.py,sha256=bxPF8gchK6FhEJcySOi5cnxg0e0bn7xnTvk-2D36vxI,5
|
|
36
36
|
pulumi_nomad/job.py,sha256=IdJc9PiwoznL25NOeJtY7wkk9N8iXbC_PGeVQHSn5kE,50811
|
37
37
|
pulumi_nomad/namespace.py,sha256=3ROS7Fdhbl08fMGk2IGxeC3SMpdbxK_q8y90uil1wf0,20505
|
38
38
|
pulumi_nomad/node_pool.py,sha256=OftrmHc1WUaEVnYxjsZDit1sPv_-d2mvflestKGUfVo,13126
|
39
|
-
pulumi_nomad/outputs.py,sha256=
|
39
|
+
pulumi_nomad/outputs.py,sha256=00MA9PyeNtn9haAMqG8el0u5pO2xMMQ9n9wLmniENEA,104254
|
40
40
|
pulumi_nomad/provider.py,sha256=kXiczhVPifjDrveY1h4jz1sqGvu8ahRNbh-f3QLDuew,21549
|
41
|
-
pulumi_nomad/pulumi-plugin.json,sha256=
|
41
|
+
pulumi_nomad/pulumi-plugin.json,sha256=x9YQpI_jthojMu9MoY2aaa1BNZqU-NvQDKFIp2Pw-MA,81
|
42
42
|
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
pulumi_nomad/quote_specification.py,sha256=KPx5UE35CwbDACT_orhck4wD0czzJCWPWmlldfKq5tk,12113
|
44
44
|
pulumi_nomad/scheduler_config.py,sha256=i8ek-d_x7b6PVnL4e0l-06fdVbKyzEzB51kMAIBDbVw,14110
|
@@ -49,7 +49,7 @@ pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi0
|
|
49
49
|
pulumi_nomad/config/__init__.pyi,sha256=xqQrj9Co22MZN1IMoQwefoce6b6zI5nQfuA4L_uqw3Q,1865
|
50
50
|
pulumi_nomad/config/outputs.py,sha256=EJXQtJx8CPqK4-XlVBLC4rbjzI1AVUBUrOjFgyxwtuk,1003
|
51
51
|
pulumi_nomad/config/vars.py,sha256=pNNlDdaVJeMKr6TPOOJ4wW-_KPneYFizgpPjUIxa9rU,3432
|
52
|
-
pulumi_nomad-2.4.
|
53
|
-
pulumi_nomad-2.4.
|
54
|
-
pulumi_nomad-2.4.
|
55
|
-
pulumi_nomad-2.4.
|
52
|
+
pulumi_nomad-2.4.0a1721248635.dist-info/METADATA,sha256=ebXIEycJSY4HjeqwjyVNNP88E3N-mMQGUbEOeYkwB0E,4730
|
53
|
+
pulumi_nomad-2.4.0a1721248635.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
54
|
+
pulumi_nomad-2.4.0a1721248635.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
55
|
+
pulumi_nomad-2.4.0a1721248635.dist-info/RECORD,,
|
File without changes
|
{pulumi_nomad-2.4.0a1721196917.dist-info → pulumi_nomad-2.4.0a1721248635.dist-info}/top_level.txt
RENAMED
File without changes
|