mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Convert to reduced list of known types (#50010)
This commit is contained in:
committed by
Jordan Borean
parent
fcd1486b51
commit
05c6ff79f9
@@ -125,7 +125,7 @@ id:
|
||||
sample: 153
|
||||
name:
|
||||
description: image name
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: app1
|
||||
group_id:
|
||||
@@ -135,7 +135,7 @@ group_id:
|
||||
sample: 1
|
||||
group_name:
|
||||
description: image's group name
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: one-users
|
||||
owner_id:
|
||||
@@ -145,12 +145,12 @@ owner_id:
|
||||
sample: 143
|
||||
owner_name:
|
||||
description: image's owner name
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: ansible-test
|
||||
state:
|
||||
description: state of image instance
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: READY
|
||||
used:
|
||||
|
||||
@@ -109,7 +109,7 @@ images:
|
||||
sample: 153
|
||||
name:
|
||||
description: image name
|
||||
type: string
|
||||
type: str
|
||||
sample: app1
|
||||
group_id:
|
||||
description: image's group id
|
||||
@@ -117,7 +117,7 @@ images:
|
||||
sample: 1
|
||||
group_name:
|
||||
description: image's group name
|
||||
type: string
|
||||
type: str
|
||||
sample: one-users
|
||||
owner_id:
|
||||
description: image's owner id
|
||||
@@ -125,11 +125,11 @@ images:
|
||||
sample: 143
|
||||
owner_name:
|
||||
description: image's owner name
|
||||
type: string
|
||||
type: str
|
||||
sample: ansible-test
|
||||
state:
|
||||
description: state of image instance
|
||||
type: string
|
||||
type: str
|
||||
sample: READY
|
||||
used:
|
||||
description: is image in use
|
||||
|
||||
@@ -187,7 +187,7 @@ service_id:
|
||||
sample: 153
|
||||
service_name:
|
||||
description: service name
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: app1
|
||||
group_id:
|
||||
@@ -197,7 +197,7 @@ group_id:
|
||||
sample: 1
|
||||
group_name:
|
||||
description: service's group name
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: one-users
|
||||
owner_id:
|
||||
@@ -207,12 +207,12 @@ owner_id:
|
||||
sample: 143
|
||||
owner_name:
|
||||
description: service's owner name
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: ansible-test
|
||||
state:
|
||||
description: state of service instance
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: RUNNING
|
||||
mode:
|
||||
|
||||
@@ -362,44 +362,44 @@ instances:
|
||||
contains:
|
||||
vm_id:
|
||||
description: vm id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 153
|
||||
vm_name:
|
||||
description: vm name
|
||||
type: string
|
||||
type: str
|
||||
sample: foo
|
||||
template_id:
|
||||
description: vm's template id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 153
|
||||
group_id:
|
||||
description: vm's group id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 1
|
||||
group_name:
|
||||
description: vm's group name
|
||||
type: string
|
||||
type: str
|
||||
sample: one-users
|
||||
owner_id:
|
||||
description: vm's owner id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 143
|
||||
owner_name:
|
||||
description: vm's owner name
|
||||
type: string
|
||||
type: str
|
||||
sample: app-user
|
||||
mode:
|
||||
description: vm's mode
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: 660
|
||||
state:
|
||||
description: state of an instance
|
||||
type: string
|
||||
type: str
|
||||
sample: ACTIVE
|
||||
lcm_state:
|
||||
description: lcm state of an instance that is only relevant when the state is ACTIVE
|
||||
type: string
|
||||
type: str
|
||||
sample: RUNNING
|
||||
cpu:
|
||||
description: Percentage of CPU divided by 100
|
||||
@@ -411,11 +411,11 @@ instances:
|
||||
sample: 2
|
||||
memory:
|
||||
description: The size of the memory in MB
|
||||
type: string
|
||||
type: str
|
||||
sample: 4096 MB
|
||||
disk_size:
|
||||
description: The size of the disk in MB
|
||||
type: string
|
||||
type: str
|
||||
sample: 20480 MB
|
||||
networks:
|
||||
description: a list of dictionaries with info about IP, NAME, MAC, SECURITY_GROUPS for each NIC
|
||||
@@ -436,7 +436,7 @@ instances:
|
||||
]
|
||||
uptime_h:
|
||||
description: Uptime of the instance in hours
|
||||
type: integer
|
||||
type: int
|
||||
sample: 35
|
||||
labels:
|
||||
description: A list of string labels that are associated with the instance
|
||||
@@ -464,44 +464,44 @@ tagged_instances:
|
||||
contains:
|
||||
vm_id:
|
||||
description: vm id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 153
|
||||
vm_name:
|
||||
description: vm name
|
||||
type: string
|
||||
type: str
|
||||
sample: foo
|
||||
template_id:
|
||||
description: vm's template id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 153
|
||||
group_id:
|
||||
description: vm's group id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 1
|
||||
group_name:
|
||||
description: vm's group name
|
||||
type: string
|
||||
type: str
|
||||
sample: one-users
|
||||
owner_id:
|
||||
description: vm's user id
|
||||
type: integer
|
||||
type: int
|
||||
sample: 143
|
||||
owner_name:
|
||||
description: vm's user name
|
||||
type: string
|
||||
type: str
|
||||
sample: app-user
|
||||
mode:
|
||||
description: vm's mode
|
||||
type: string
|
||||
type: str
|
||||
returned: success
|
||||
sample: 660
|
||||
state:
|
||||
description: state of an instance
|
||||
type: string
|
||||
type: str
|
||||
sample: ACTIVE
|
||||
lcm_state:
|
||||
description: lcm state of an instance that is only relevant when the state is ACTIVE
|
||||
type: string
|
||||
type: str
|
||||
sample: RUNNING
|
||||
cpu:
|
||||
description: Percentage of CPU divided by 100
|
||||
@@ -513,11 +513,11 @@ tagged_instances:
|
||||
sample: 2
|
||||
memory:
|
||||
description: The size of the memory in MB
|
||||
type: string
|
||||
type: str
|
||||
sample: 4096 MB
|
||||
disk_size:
|
||||
description: The size of the disk in MB
|
||||
type: string
|
||||
type: str
|
||||
sample: 20480 MB
|
||||
networks:
|
||||
description: a list of dictionaries with info about IP, NAME, MAC, SECURITY_GROUPS for each NIC
|
||||
@@ -538,7 +538,7 @@ tagged_instances:
|
||||
]
|
||||
uptime_h:
|
||||
description: Uptime of the instance in hours
|
||||
type: integer
|
||||
type: int
|
||||
sample: 35
|
||||
labels:
|
||||
description: A list of string labels that are associated with the instance
|
||||
|
||||
Reference in New Issue
Block a user