You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/V1Interface.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
**mac_address** | **str** | Interface MAC address. For example: de:ad:00:00:be:af or DE-AD-00-00-BE-AF. | [optional]
9
9
**model** | **str** | Interface model. One of: e1000, e1000e, ne2k_pci, pcnet, rtl8139, virtio. Defaults to virtio. | [optional]
10
10
**name** | **str** | Logical name of the interface as well as a reference to the associated networks. Must match the Name of a Network. |
11
+
**pci_address** | **str** | If specified, the virtual network interface will be placed on the guests pci address with the specifed PCI address. For example: 0000:81:01.10 +optional | [optional]
11
12
**ports** | [**list[V1Port]**](V1Port.md) | List of ports to be forwarded to the virtual machine. | [optional]
If specified, the virtual network interface will be placed on the guests pci address with the specifed PCI address. For example: 0000:81:01.10 +optional
205
+
206
+
:return: The pci_address of this V1Interface.
207
+
:rtype: str
208
+
"""
209
+
returnself._pci_address
210
+
211
+
@pci_address.setter
212
+
defpci_address(self, pci_address):
213
+
"""
214
+
Sets the pci_address of this V1Interface.
215
+
If specified, the virtual network interface will be placed on the guests pci address with the specifed PCI address. For example: 0000:81:01.10 +optional
216
+
217
+
:param pci_address: The pci_address of this V1Interface.
0 commit comments