From ae534c469c0d590a50f18cd6d1b8f81bd9587cb1 Mon Sep 17 00:00:00 2001 From: Ciaran Roche Date: Fri, 20 Jan 2023 09:04:01 +0000 Subject: [PATCH] fix: add missing id var for addon environment variable for addons service --- model/addons_mgmt/v1/addon_environment_variable_type.model | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/model/addons_mgmt/v1/addon_environment_variable_type.model b/model/addons_mgmt/v1/addon_environment_variable_type.model index 4d19bd43..e1053131 100644 --- a/model/addons_mgmt/v1/addon_environment_variable_type.model +++ b/model/addons_mgmt/v1/addon_environment_variable_type.model @@ -16,10 +16,13 @@ limitations under the License. // Representation of an addon env object. struct AddonEnvironmentVariable { - // Name of the env object. + // ID for the environment variable + ID string + + // Name of the environment variable Name String - // Value of the env object. + // Value of the environment variable Value String // Indicates is this environment variable is enabled for the addon