DRAG DROP
-

Refer to the exhibit. Drag and drop the code from the bottom onto the box where the code is missing to configure the GigabitEthernet 3 interface. Not all options are used.

DRAG DROP
-
Refer to the exhibit. Drag and drop the code from the bottom onto the box where the code is missing to configure the GigabitEthernet 3 interface. Not all options are used.
I think the last one is crud.update(provider, interface).
The provided solution is correct. interface = model.Native.Interface.GigabitEthernet() interface.name = '3' interface.description = 'Interface Description' interface.ip.address.primary.address = '172.16.10.10' interface.ip.address.primary.mask = '255.255.255.0' crud.create(provider, interface)
update on the last one.. The interface has already been created on the device.
interface = model.Native.Interface.GigabitEthernet() interface.ip.address.primary.address = '172.16.10.10' interface.ip.address.primary.mask = '255.255.255.0' crud.update(provider, interface)