You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jclouds.apache.org by Xianyi Ye <ye...@sina.com> on 2014/07/10 07:24:46 UTC

How to update attributes' values for Network in JClouds?

Hi all,

 

Is there any way to update Network attributes with JClouds?

 

I got following code snippet from google. But I'm not sure that is the
correct means to achieve my goal.

 

NetworkApi networkApi = neutronApi.getNetworkApiForZone(zone);

UpdateNetworkOptions option =
UpdateNetworkOptions.builder().name(network.getName()).build() ;

 

 

If so, is that means I can only update the name of network for Network? For
others, there is no way to update?

 

Thanks for any help.

Xianyi Ye