Consulta de un esquema de miembro de imagen (Native OpenStack API)
Función
Esta API se utiliza para consultar un esquema de miembro de imagen, que le permite ver los atributos de miembro de imagen y sus tipos de datos.
URI
GET /v2/schemas/member
Solicitud
Respuesta
- Parámetros de respuesta
Parámetro
Tipo
Descripción
name
String
Especifica el nombre del esquema.
properties
Object
Describe los atributos básicos de la imagen, incluido el tipo y el uso de cada atributo.
Para obtener más información sobre los parámetros, consulte Atributos de imagen.
- Ejemplo de respuesta
STATUS CODE 200
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
{ "name": "member", "properties": { "status": { "enum": [ "pending", "accepted", "rejected" ], "type": "string", "description": "The status of this image member" }, "created_at": { "type": "string", "description": "Date and time of image member creation" }, "updated_at": { "type": "string", "description": "Date and time of last modification of image member" }, "image_id": { "pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$", "type": "string", "description": "An identifier for the image" }, "member_id": { "type": "string", "description": "An identifier for the image member (tenantId)" }, "schema": { "readOnly": true, "type": "string" } } }
Valor devuelto
- Normal
- Anormal
Valor devuelto
Descripción
400 Bad Request
Error de solicitud.
401 Unauthorized
Error de autenticación.
403 Forbidden
Usted no tiene los derechos para realizar la operación.
404 Not Found
No se encontró el recurso solicitado.
500 Internal Server Error
Error interno del servicio.
503 Service Unavailable
El servicio no está disponible.