Add --raw-body argument for POST and PUT requests#794
Merged
lgarber-akamai merged 5 commits intolinode:devfrom Jul 29, 2025
Merged
Add --raw-body argument for POST and PUT requests#794lgarber-akamai merged 5 commits intolinode:devfrom
lgarber-akamai merged 5 commits intolinode:devfrom
Conversation
ezilber-akamai
approved these changes
Jul 25, 2025
Contributor
ezilber-akamai
left a comment
There was a problem hiding this comment.
Works well locally. Nice work!
yec-akamai
reviewed
Jul 25, 2025
Contributor
yec-akamai
left a comment
There was a problem hiding this comment.
I'm getting this below error when running the test:
linode-cli linodes create --raw-body '{"label": "test-linode", "region": "us-mia", "type": "g6-nanode-1"}'
Using default values: {'authorized_users': ['ychen123'], 'region': 'ca-central', 'image': 'linode/almalinux9', 'type': 'g6-standard-1'}; use the --no-defaults flag to disable defaults
--raw-body cannot be specified with action arguments: --authorized_users, --image, --region, --type
It seems not compatible with default values.
Contributor
Author
Nice catch! I'll fix this real quick |
yec-akamai
approved these changes
Jul 29, 2025
Contributor
yec-akamai
left a comment
There was a problem hiding this comment.
Works well locally! Nice handling the defaults 🎉
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 Description
This pull request adds a new
--raw-bodyargument that can be used to manually specify the body used for a command's API request. This is useful when using fields that aren't yet documented in the OpenAPI specification, or to more easily use the CLI with programmatically generated request bodies.✔️ How to Test
The following test steps assume you have pulled down this PR locally and run
make install.Unit Testing
Integration Testing
Manual Testing
linode-cli linodes create --raw-body '{"label": "test-linode", "region": "us-mia", "type": "g6-nanode-1"}'