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
As part of network gateway order we need to send two orders which has a different container each other.To order the network gateway with configured sshkeys for gateway and its members we need to create a payload as below
here you can see that each order has an specific container (See the ComplexType attribute), however the code has an error, the “ClusterIdentifier” attribute is not recognized, because this attribute does not exists into the datatype “Container_Product_Order” and we cannot change it either :(.
We created each order and then we tried to put them together in an “Container_Product_Order” Array, but this code did not work, because GO does not allow appending different objects from “Container_Product_Order” datatype.
Could you please help us the correct way of doing this
The text was updated successfully, but these errors were encountered:
@Praveengostu Hi. Take a look at tools/loadmeta.go to see how we can move/add the ClusterIdentifier field up to the Container_Product_Order as they are being read from the api metadata endpoint.
@renier Is there any fix or work around for this issue?. I am also facing that same issue and not able to order the VSRX gateway using orderContainers. It throws error that SoftLayer_Exception_Public: No cluster identifier set. (HTTP 500)"
As part of network gateway order we need to send two orders which has a different container each other.To order the network gateway with configured sshkeys for gateway and its members we need to create a payload as below
With the existing softlayer go client we tried
here you can see that each order has an specific container (See the ComplexType attribute), however the code has an error, the “ClusterIdentifier” attribute is not recognized, because this attribute does not exists into the datatype “Container_Product_Order” and we cannot change it either :(.
Another way we tried is this:
We created each order and then we tried to put them together in an “Container_Product_Order” Array, but this code did not work, because GO does not allow appending different objects from “Container_Product_Order” datatype.
Could you please help us the correct way of doing this
The text was updated successfully, but these errors were encountered: