pulumi-juniper-mist 0.7.1__py3-none-any.whl → 0.7.2__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_juniper_mist/_inputs.py +25 -0
- pulumi_juniper_mist/device/_inputs.py +606 -28
- pulumi_juniper_mist/device/get_ap_stats.py +38 -14
- pulumi_juniper_mist/device/get_gateway_stats.py +20 -20
- pulumi_juniper_mist/device/get_switch_stats.py +20 -20
- pulumi_juniper_mist/device/outputs.py +1370 -122
- pulumi_juniper_mist/device/switch.py +81 -0
- pulumi_juniper_mist/org/_inputs.py +710 -41
- pulumi_juniper_mist/org/nactag.py +7 -7
- pulumi_juniper_mist/org/networktemplate.py +81 -0
- pulumi_juniper_mist/org/outputs.py +746 -70
- pulumi_juniper_mist/org/wlan.py +7 -7
- pulumi_juniper_mist/outputs.py +14 -0
- pulumi_juniper_mist/pulumi-plugin.json +1 -1
- pulumi_juniper_mist/site/_inputs.py +389 -4
- pulumi_juniper_mist/site/networktemplate.py +47 -0
- pulumi_juniper_mist/site/outputs.py +429 -18
- pulumi_juniper_mist/site/wlan.py +7 -7
- pulumi_juniper_mist/upgrade_device.py +120 -0
- {pulumi_juniper_mist-0.7.1.dist-info → pulumi_juniper_mist-0.7.2.dist-info}/METADATA +1 -1
- {pulumi_juniper_mist-0.7.1.dist-info → pulumi_juniper_mist-0.7.2.dist-info}/RECORD +23 -23
- {pulumi_juniper_mist-0.7.1.dist-info → pulumi_juniper_mist-0.7.2.dist-info}/WHEEL +0 -0
- {pulumi_juniper_mist-0.7.1.dist-info → pulumi_juniper_mist-0.7.2.dist-info}/top_level.txt +0 -0
pulumi_juniper_mist/_inputs.py
CHANGED
|
@@ -15,12 +15,37 @@ else:
|
|
|
15
15
|
from . import _utilities
|
|
16
16
|
|
|
17
17
|
__all__ = [
|
|
18
|
+
'UpgradeDeviceAutoUpgradeStatArgs',
|
|
19
|
+
'UpgradeDeviceAutoUpgradeStatArgsDict',
|
|
18
20
|
'UpgradeDeviceFwupdateArgs',
|
|
19
21
|
'UpgradeDeviceFwupdateArgsDict',
|
|
20
22
|
]
|
|
21
23
|
|
|
22
24
|
MYPY = False
|
|
23
25
|
|
|
26
|
+
if not MYPY:
|
|
27
|
+
class UpgradeDeviceAutoUpgradeStatArgsDict(TypedDict):
|
|
28
|
+
lastcheck: NotRequired[pulumi.Input[_builtins.int]]
|
|
29
|
+
elif False:
|
|
30
|
+
UpgradeDeviceAutoUpgradeStatArgsDict: TypeAlias = Mapping[str, Any]
|
|
31
|
+
|
|
32
|
+
@pulumi.input_type
|
|
33
|
+
class UpgradeDeviceAutoUpgradeStatArgs:
|
|
34
|
+
def __init__(__self__, *,
|
|
35
|
+
lastcheck: Optional[pulumi.Input[_builtins.int]] = None):
|
|
36
|
+
if lastcheck is not None:
|
|
37
|
+
pulumi.set(__self__, "lastcheck", lastcheck)
|
|
38
|
+
|
|
39
|
+
@_builtins.property
|
|
40
|
+
@pulumi.getter
|
|
41
|
+
def lastcheck(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
42
|
+
return pulumi.get(self, "lastcheck")
|
|
43
|
+
|
|
44
|
+
@lastcheck.setter
|
|
45
|
+
def lastcheck(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
46
|
+
pulumi.set(self, "lastcheck", value)
|
|
47
|
+
|
|
48
|
+
|
|
24
49
|
if not MYPY:
|
|
25
50
|
class UpgradeDeviceFwupdateArgsDict(TypedDict):
|
|
26
51
|
progress: NotRequired[pulumi.Input[_builtins.int]]
|