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.
@@ -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]]