Support Linode Integrations with ACLP Alerts#879
Merged
yec-akamai merged 5 commits intoproj/aclp-linode-alertsfrom Feb 10, 2026
Merged
Support Linode Integrations with ACLP Alerts#879yec-akamai merged 5 commits intoproj/aclp-linode-alertsfrom
yec-akamai merged 5 commits intoproj/aclp-linode-alertsfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds support for ACLP (Access Control List Policy) alerts to Linode instance operations, enabling system and user alert configurations during instance creation, updates, and cloning.
Changes:
- Extended
InstanceAlertstruct to includeSystemAlertsandUserAlertsfields - Added
InstanceACLPAlertsOptionstype for configuring alerts during instance creation and cloning - Updated instance operation options (
InstanceCreateOptions,InstanceUpdateOptions,InstanceCloneOptions) to support alert configuration - Added comprehensive test coverage for alert functionality across Get, Create, Update, and Clone operations
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| instances.go | Added ACLP alert fields to InstanceAlert struct and new InstanceACLPAlertsOptions type for alert configuration in create/clone operations |
| test/unit/instance_test.go | Added test assertions to verify SystemAlerts and UserAlerts are properly handled in Get, Create, Update, and Clone operations |
| test/unit/fixtures/instance_get.json | Added alerts field with system_alerts and user_alerts arrays to mock response data |
| test/unit/fixtures/instance_create.json | Added alerts field with system_alerts and user_alerts arrays to mock response data |
| test/unit/fixtures/instance_update.json | Added alerts field with system_alerts and user_alerts arrays to mock response data |
| test/unit/fixtures/instance_clone.json | Added alerts field with system_alerts and user_alerts arrays to mock response data |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
zliang-akamai
approved these changes
Feb 10, 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
Add ACLP alerts support to linode instance operations.
✔️ How to Test