Will Smith
Will Smith
when I run the excerpt above, I get the following error: ```python ApiError: 400: must be of type Integer; ``` This is probably correct - try setting `nb_node.weight = 100`...
Hmm.. actaully, what I ran was this: ```python import linode nb_node = linode.NodeBalancerNode(client, xxx, xxx, xxxx) # linode_client, node_id, config_id, nodebalancer_id nb_node.weight # checked what it was initially in my...
Yeah, I think this has something to do with how this library lazy-loads data - accessing an attribute of an api model class that hasn't been loaded yet will issue...
I reproduced this issue in the tests - it looks like this is unique to models that have a derived base class, or possibly unique only to NodeBalancerNode. I'm going...
I like the idea here, but at present the Linode CLI still supports python2 - the Makefile requires both versions of python so that it can pickle the parsed spec...
This is working as intended; the CLI exits with 0 if the command you attempted to run succeeds - the message about the API version is intended to prompt interactive...
That's not something I'd expect to see happening. If you don't mind my asking, in what way was it failing to update the certificate? If the operation the CLI performs...
Hmm.. looking at the normal console output for that operation I suspect that it's not being parsed very well: ``` ┌───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬─────────┬────────┬──────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬────────┐ │ public │ private │ shared │ reserved │...
While there isn't a loop-free way to find all private IPs for a group of Linodes in one call, you might get something like what you're looking for by searching...
The build process requires both python2 and python3, and expects `python` to be python2. I've seen this error before if `python --version` returns 3.x. Try modifying [this line](https://github.com/linode/linode-cli/blob/master/Makefile#L21) of the...