1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Really disable RETURN

This commit is contained in:
Toshio Kuratomi 2016-01-11 14:59:23 -08:00 committed by Matt Clay
parent c98db451ac
commit 0501a18608
2 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ EXAMPLES = '''
# Disabled the RETURN as it was breaking docs building. Someone needs to fix
# this
RETURN = ''' '''
RETURN = '''# '''
'''
# Create service
service: On create service, it returns the new values; on delete service, it returns the values for the service being deleted.
@ -146,7 +146,7 @@ class EcsServiceManager:
self.module.fail_json(msg="Can't authorize connection - "+str(e))
# def list_clusters(self):
# return self.client.list_clusters()
# return self.client.list_clusters()
# {'failures=[],
# 'ResponseMetadata={'HTTPStatusCode=200, 'RequestId='ce7b5880-1c41-11e5-8a31-47a93a8a98eb'},
# 'clusters=[{'activeServicesCount=0, 'clusterArn='arn:aws:ecs:us-west-2:777110527155:cluster/default', 'status='ACTIVE', 'pendingTasksCount=0, 'runningTasksCount=0, 'registeredContainerInstancesCount=0, 'clusterName='default'}]}

View file

@ -58,7 +58,7 @@ EXAMPLES = '''
# Disabled the RETURN as it was breaking docs building. Someone needs to fix
# this
RETURN = ''' '''
RETURN = '''# '''
'''
services: When details is false, returns an array of service ARNs, else an array of these fields
clusterArn: The Amazon Resource Name (ARN) of the of the cluster that hosts the service.