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
A networks object. By default, the server instance is provisioned with all isolated networks for the tenant.
Optionally, you can create one or more NICs on the server.
To provision the server instance with a NIC for a nova-network network, specify the UUID in the uuid attribute in a networks object.
To provision the server instance with a NIC for a neutron network, specify the UUID in the port attribute in a networks object.
You can specify multiple NICs on the server.
Anyone know if we need a port attribute as well to this class ?
Thanks
The text was updated successfully, but these errors were encountered:
I noticed that the ServerForCreate Networks fields uses the NetworkForCreate class which contains these 2 fields
@JsonProperty("uuid")
private String id;
@JsonProperty("fixed_ip")
private String fixedIp;
As per openstack documentation
A networks object. By default, the server instance is provisioned with all isolated networks for the tenant.
Optionally, you can create one or more NICs on the server.
To provision the server instance with a NIC for a nova-network network, specify the UUID in the uuid attribute in a networks object.
To provision the server instance with a NIC for a neutron network, specify the UUID in the port attribute in a networks object.
You can specify multiple NICs on the server.
Anyone know if we need a port attribute as well to this class ?
Thanks
The text was updated successfully, but these errors were encountered: