action bluemix_get_images_json { label: "List all Docker images that are available in your private Bluemix registry." description: "This endpoint returns a list of all available Docker images in a private Bluemix registry (corresponding IBM Containers command: `cf ic images`." provider: bluemix method: GET path: "/images/json" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { properties: { Created: { type: "number" format: "float" description: "The time when your container image was created. " } Id: { type: "string" description: "The unique identifier representing a container image. " } Image: { type: "string" description: "The name of your container image." } RepoTags: { type: "array" description: "The full path to the private Bluemix registry where the image is stored including the registry name, the organization namespace, and image tag." items: { type: "string" } } Size: { type: "integer" format: "int32" description: "The real size of the container image." } VirtualSize: { type: "integer" format: "int32" description: "The virtual size of the container image." } } } }