## PowerVS Network Commands ### 1. capibmadm powervs port create #### Usage: Create PowerVS network port. #### Environmental Variable: IBMCLOUD_API_KEY: IBM Cloud API key. #### Arguments: --service-instance-id: PowerVS service instance id. --zone: PowerVS service instance zone. --network: Network ID/ Network Name. --description: Description of the port. --ip-address: The requested IP address of this port #### Example: ```shell export IBMCLOUD_API_KEY= capibmadm powervs port create --network --description --service-instance-id --zone ``` ### 2. capibmadm powervs port delete #### Usage: Delete PowerVS network port. #### Environmental Variable: IBMCLOUD_API_KEY: IBM Cloud API key. #### Arguments: --service-instance-id: PowerVS service instance id. --zone: PowerVS zone. --port-id: ID of network port. --network: Network ID or Name. #### Example: ```shell export IBMCLOUD_API_KEY= capibmadm powervs port delete --port-id --network --service-instance-id --zone ``` ### 3. capibmadm powervs port list #### Usage: List PowerVS ports. #### Environmental Variable: IBMCLOUD_API_KEY: IBM Cloud API key. #### Arguments: --service-instance-id: PowerVS service instance id. --zone: PowerVS zone. --network: Network ID or Name. #### Example: ```shell export IBMCLOUD_API_KEY= capibmadm powervs port list --service-instance-id --zone --network ```