replacing the items key with the resources key (#239)

Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
The Magician 2019-04-30 10:43:45 -07:00 committed by Alex Stephen
parent 39cf4ccae0
commit c301d3b4ae
61 changed files with 173 additions and 173 deletions

View file

@ -63,8 +63,8 @@ EXAMPLES = '''
'''
RETURN = '''
items:
description: List of items
resources:
description: List of resources
returned: always
type: complex
contains:
@ -114,7 +114,7 @@ def main():
items = items.get('items')
else:
items = []
return_value = {'items': items}
return_value = {'resources': items}
module.exit_json(**return_value)