@@ -1347,8 +1347,8 @@ class GroupVariableManager(CRUDMixin, RESTManager):
1347
1347
_path = "/groups/%(group_id)s/variables"
1348
1348
_obj_cls = GroupVariable
1349
1349
_from_parent_attrs = {"group_id" : "id" }
1350
- _create_attrs = (("key" , "value" ), ("protected" , "variable_type" ))
1351
- _update_attrs = (("key" , "value" ), ("protected" , "variable_type" ))
1350
+ _create_attrs = (("key" , "value" ), ("protected" , "variable_type" , "masked" ))
1351
+ _update_attrs = (("key" , "value" ), ("protected" , "variable_type" , "masked" ))
1352
1352
1353
1353
1354
1354
class Group (SaveMixin , ObjectDeleteMixin , RESTObject ):
@@ -4018,8 +4018,8 @@ class ProjectVariableManager(CRUDMixin, RESTManager):
4018
4018
_path = "/projects/%(project_id)s/variables"
4019
4019
_obj_cls = ProjectVariable
4020
4020
_from_parent_attrs = {"project_id" : "id" }
4021
- _create_attrs = (("key" , "value" ), ("protected" , "variable_type" ))
4022
- _update_attrs = (("key" , "value" ), ("protected" , "variable_type" ))
4021
+ _create_attrs = (("key" , "value" ), ("protected" , "variable_type" , "masked" ))
4022
+ _update_attrs = (("key" , "value" ), ("protected" , "variable_type" , "masked" ))
4023
4023
4024
4024
4025
4025
class ProjectService (SaveMixin , ObjectDeleteMixin , RESTObject ):
0 commit comments