From 0fafc6789e14beacd7ddea890474d86b388e7e83 Mon Sep 17 00:00:00 2001 From: ezilber-akamai Date: Wed, 13 Aug 2025 16:30:23 -0400 Subject: [PATCH] Made longview_subscription immutable in Account Settings --- linode_api4/objects/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linode_api4/objects/account.py b/linode_api4/objects/account.py index 836f41522..92ea91527 100644 --- a/linode_api4/objects/account.py +++ b/linode_api4/objects/account.py @@ -194,7 +194,7 @@ class AccountSettings(Base): "network_helper": Property(mutable=True), "managed": Property(), "longview_subscription": Property( - slug_relationship=LongviewSubscription + slug_relationship=LongviewSubscription, mutable=False ), "object_storage": Property(), "backups_enabled": Property(mutable=True),