From e19c6108d14fa82cb1310a8897f9ebaf26a9dc8b Mon Sep 17 00:00:00 2001 From: Blesswin Samuel Date: Thu, 24 Oct 2024 20:04:08 +0530 Subject: [PATCH] Add archive field to app maintenance spec (#936) * Add archive field to app maintenance spec * Add note about closed beta --- .../resources/apps/models/app_maintenance_spec.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/specification/resources/apps/models/app_maintenance_spec.yml b/specification/resources/apps/models/app_maintenance_spec.yml index 7cdfcffc..2c8a9230 100644 --- a/specification/resources/apps/models/app_maintenance_spec.yml +++ b/specification/resources/apps/models/app_maintenance_spec.yml @@ -1,7 +1,11 @@ type: object -description: Specification to configure maintenance settings for the app, such as maintenance mode. +description: Specification to configure maintenance settings for the app, such as maintenance mode and archiving the app. properties: enabled: type: boolean description: Indicates whether maintenance mode should be enabled for the app. example: true + archive: + type: boolean + description: Indicates whether the app should be archived. Setting this to true implies that enabled is set to true. Note that this feature is currently in closed beta. + example: true