From 4a1356ba70221c7f488f01d75a159da6919eb545 Mon Sep 17 00:00:00 2001 From: Van Thong Nguyen Date: Tue, 7 Jan 2025 13:27:06 +0100 Subject: [PATCH] add bool property `active` to paas template properties (#237) --- paas.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/paas.go b/paas.go index 1f6aa3b..a42d08e 100644 --- a/paas.go +++ b/paas.go @@ -240,6 +240,9 @@ type PaaSTemplateProperties struct { // Values of the autoscaling resources. Autoscaling AutoscalingProperties `json:"autoscaling"` + + // Is the service template active. + Active bool `json:"active"` } // AutoscalingProperties holds properties of resource autoscalings.