Update activate/deactivate to single Active boolean property for image

Change-Id: Ie5e2d387c1aff7ee78c65bd5cbff18e81fa26c72
This commit is contained in:
Haider, Nafiz (nh532m) 2020-05-11 10:38:29 -05:00 committed by Nafiz Haider
parent f9ce6832f2
commit efb8397228
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ def create_full_yaml(title, resources, description, outputs):
def _properties(alldata, region):
public = alldata['visibility']
protected = {0: False, 1: True}[alldata['protected']]
tenants = [tenant['customer_id'] for tenant in alldata['customers']]
members = [member['customer_id'] for member in alldata['customers']]
properties = dict(
name=alldata['name'],
container_format=alldata["container_format"],
@ -36,7 +36,7 @@ def _properties(alldata, region):
)
if region['action'] != 'create':
properties['deactivate'] = {1: False, 0: True}[alldata['enabled']]
properties['active'] = {0: False, 1: True}[alldata['enabled']]
if alldata['properties']:
properties['extra_properties'] = alldata['properties']

View File

@ -45,7 +45,7 @@ yaml_output = {
'container_format': 'bare', 'disk_format': 'raw',
'visibility': 'public',
'location': 'https://mirrors.it.att.com/images/image-name',
'deactivate': False,
'active': True,
'min_disk': 2, 'min_ram': 0, 'name': 'Ubuntu', 'owner': 'unknown',
'protected': True,
'id': '12345678-9012-3456-7890-123456789012',