TPT-4490: Support for firewall rules with numeric and ALL protocols#1000
Open
lgarber-akamai wants to merge 4 commits into
Open
TPT-4490: Support for firewall rules with numeric and ALL protocols#1000lgarber-akamai wants to merge 4 commits into
lgarber-akamai wants to merge 4 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds client/test support for Cloud Firewall rules using extended protocol values: the ALL protocol and numeric IP protocol numbers, ensuring these values serialize and round-trip correctly through create/get flows.
Changes:
- Introduces
ProtocolALLas aNetworkProtocolconstant and updatesNetworkProtocoldocumentation. - Adds a unit test covering JSON marshaling for
ALLand numeric protocol values (with/without ports). - Adds an integration test + VCR fixture validating firewall creation and retrieval with extended protocols.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
firewall_rules.go |
Documents extended protocol usage and adds a protocol constant for ALL. |
test/unit/firewall_rules_test.go |
Adds unit coverage for marshaling rules with ALL and numeric protocols. |
test/integration/firewall_rules_test.go |
Adds an integration test exercising create/get behavior with extended protocols. |
test/integration/fixtures/TestFirewall_CreateWithExtendedProtocols.yaml |
Records API interactions for the new integration test scenario. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
lgarber-akamai
commented
Jul 1, 2026
| ICMP NetworkProtocol = "ICMP" | ||
| IPENCAP NetworkProtocol = "IPENCAP" | ||
|
|
||
| AllNetworkProtocols NetworkProtocol = "ALL" |
Contributor
Author
There was a problem hiding this comment.
I ended up settling on linodego.AllNetworkProtocols instead of the more generic linodego.ALL or ambiguous linodego.ProtocolAll. Let me know if you have any thoughts or ideas!
ezilber-akamai
approved these changes
Jul 1, 2026
ezilber-akamai
left a comment
Contributor
There was a problem hiding this comment.
Tests passed locally!
mawilk90
approved these changes
Jul 2, 2026
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 support for managing firewall rules with numeric and
ALLprotocols.✔️ How to Test
NOTE: This feature is not yet generally available. See TPT-4469 for required test environment information.
Unit Testing
Integration Testing