Removed unused 'alarm' field

The 'alarm' field is currently unused, so it has been removed.

Change-Id: I02fa15b06ed49dbc5dd63de54a9cde601413983c
Closes-Bug: #1550261
This commit is contained in:
Larry Rensing
2016-04-18 14:12:12 +00:00
parent 0f14b7635d
commit 408d6d4650
8 changed files with 3 additions and 19 deletions

View File

@@ -130,9 +130,6 @@ class Action(base.APIBase):
state = wtypes.text
"""This audit state"""
alarm = types.uuid
"""An alarm UUID related to this action"""
action_type = wtypes.text
"""Action type"""
@@ -194,7 +191,6 @@ class Action(base.APIBase):
sample = cls(uuid='27e3153e-d5bf-4b7e-b517-fb518e17f34c',
description='action description',
state='PENDING',
alarm=None,
created_at=datetime.datetime.utcnow(),
deleted_at=None,
updated_at=datetime.datetime.utcnow())