Ignore the unimplemented properties of IAM::User

They are in lots of templates, and this is going to get
irritating fast.

Change-Id: I42cb5e5d0e8496028a70d6bed8477a0c864a09e7
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
This commit is contained in:
Angus Salkeld 2012-06-22 14:41:20 +10:00
parent 0d9052ef4f
commit 60c6bb5319
1 changed files with 3 additions and 6 deletions

View File

@ -34,13 +34,10 @@ class DummyId:
class User(Resource):
properties_schema = {'Path': {'Type': 'String',
'Implemented': False},
'Groups': {'Type': 'CommaDelimitedList',
'Implemented': False},
properties_schema = {'Path': {'Type': 'String'},
'Groups': {'Type': 'CommaDelimitedList'},
'LoginProfile': {'Type': 'List'},
'Policies': {'Type': 'List',
'Implemented': False}}
'Policies': {'Type': 'List'}}
def __init__(self, name, json_snippet, stack):
super(User, self).__init__(name, json_snippet, stack)