Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ImageFromImage

Type: object

ImageFromImage registers a target for pushed OCI content.
captureMode

Type: string

capture_mode must be unspecified or disk; pushed OCI content cannot include memory.
All schema constraints and annotations
{
  "description": "capture_mode must be unspecified or disk; pushed OCI content cannot include memory.",
  "enum": [
    "unspecified",
    "disk"
  ],
  "not": {
    "enum": [
      "all"
    ]
  },
  "title": "ImageFromImageCaptureMode",
  "type": "string"
}
kitStartup

Schema: KitStartup

Startup commands copied from the source sandbox. Services with startup replay run these commands when a sandbox created from the image boots. Services without startup replay accept valid commands without running them.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/KitStartup",
  "description": "Startup commands copied from the source sandbox. Services with startup replay run these commands when a sandbox created from the image boots. Services without startup replay accept valid commands without running them."
}
platform

Schema: Platform

platform is the platform for the pushed content.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/Platform",
  "description": "platform is the platform for the pushed content."
}
platformHint

Schema: Platform

platform_hint picks among a multi-platform push when platform is absent. A hint the backend cannot honor is ignored, never an error.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/Platform",
  "description": "platform_hint picks among a multi-platform push when platform is absent.\nA hint the backend cannot honor is ignored, never an error."
}
resources

Schema: Resources

resources describes preferred runtime resources for the resulting image.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/Resources",
  "description": "resources describes preferred runtime resources for the resulting image."
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "ImageFromImage registers a target for pushed OCI content.",
  "properties": {
    "captureMode": {
      "description": "capture_mode must be unspecified or disk; pushed OCI content cannot include memory.",
      "enum": [
        "unspecified",
        "disk"
      ],
      "not": {
        "enum": [
          "all"
        ]
      },
      "title": "ImageFromImageCaptureMode",
      "type": "string"
    },
    "kitStartup": {
      "$ref": "#/components/schemas/KitStartup",
      "description": "Startup commands copied from the source sandbox. Services with startup replay run these commands when a sandbox created from the image boots. Services without startup replay accept valid commands without running them."
    },
    "platform": {
      "$ref": "#/components/schemas/Platform",
      "description": "platform is the platform for the pushed content."
    },
    "platformHint": {
      "$ref": "#/components/schemas/Platform",
      "description": "platform_hint picks among a multi-platform push when platform is absent.\nA hint the backend cannot honor is ignored, never an error."
    },
    "resources": {
      "$ref": "#/components/schemas/Resources",
      "description": "resources describes preferred runtime resources for the resulting image."
    }
  },
  "title": "ImageFromImage",
  "type": "object"
}