Updated on 2022-11-14 GMT+08:00

Unbinding an EIP

You can call a GES API to unbind an EIP from a graph. The sample code is as follows:

public void testUnbindEip() throws Exception {
        UnBindEipReq unBindEipReq = new UnBindEipReq();
        Status status = client.unbindEip(graphId, unBindEipReq);
        System.out.println(status);
    }