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
when i want to use the api call to get the port list and filter results by using query string parameters, but find it unavailable because it's not perfect about org.openstack4j.model.network.options.PortListOptions
when i want to use the api call to get the port list and filter results by using query string parameters, but find it unavailable because it's not perfect about org.openstack4j.model.network.options.PortListOptions
api-ref:
https://docs.openstack.org/api-ref/network/v2/?expanded=list-ports-detail#ports
eg:
the Neutron API supports IP address substring filtering on the fixed_ips attribute.
We can add some methods to improve the use of API about PortListOptions. like
//status[optional] values are ACTIVE, DOWN, BUILD and ERROR.
public PortListOptions status(String status) {
return add("status", status);
}
The text was updated successfully, but these errors were encountered: