Skip to content

Commit fdfbc82

Browse files
committed
Addressed review comments on AlertDefinition class
1 parent 6d5b601 commit fdfbc82

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

linode_api4/objects/monitor.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,17 +342,17 @@ class AlertDefinition(DerivedBase):
342342
"service_type": Property(identifier=True),
343343
"label": Property(mutable=True),
344344
"severity": Property(mutable=True),
345-
"type": Property(AlertType),
346-
"status": Property(),
347-
"has_more_resources": Property(),
345+
"type": Property(mutable=True),
346+
"status": Property(mutable=True),
347+
"has_more_resources": Property(mutable=True),
348348
"rule_criteria": Property(mutable=True),
349349
"trigger_conditions": Property(mutable=True),
350350
"alert_channels": Property(mutable=True),
351351
"created": Property(is_datetime=True),
352352
"updated": Property(is_datetime=True),
353353
"updated_by": Property(),
354354
"created_by": Property(),
355-
"entity_ids": Property(List[Any]),
355+
"entity_ids": Property(mutable=True),
356356
"description": Property(mutable=True),
357357
"_class": Property("class"),
358358
}

0 commit comments

Comments
 (0)