I am trying to fetch the existing key pairs from jclouds api.
but the private key comes null from server.

KeyPairApi keyPairApi =
getNovaApi(computeService).getKeyPairExtensionForZone(regionName).get();
    FluentIterable<? extends KeyPair> keyPairsList = keyPairApi.list();

    keyPairsList = keyPairApi.list();
    if(keyPairsList != null && keyPairsList.size() > 0) {
      for(KeyPair keys : keyPairsList) {
       keys.privateKey() // prints as null.
        }
      }
    }

Any Help

Regards
Jayant Kaushal

Reply via email to