We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b181ffa commit 73d985cCopy full SHA for 73d985c
linode_api4/objects/linode.py
@@ -670,9 +670,18 @@ class InterfaceGeneration(StrEnum):
670
671
@dataclass
672
class UpgradeInterfacesResult(JSONObject):
673
+ """
674
+ Contains information about an Linode Interface upgrade operation.
675
+
676
+ NOTE: If dry_run is True, each returned interface will be of type Dict[str, Any].
677
+ Otherwise, each returned interface will be of type LinodeInterface.
678
679
+ API Documentation: Not yet available.
680
681
682
dry_run: bool = False
683
config_id: int = 0
- interfaces: List[LinodeInterface] = field(default_factory=list)
684
+ interfaces: List[Union[Dict[str, Any], LinodeInterface]] = field(default_factory=list)
685
686
687
class Instance(Base):
0 commit comments