Experimental
Schema
McpConfigurationReportErrorDetail
Type:
object
McpConfigurationReport is also returned in Error.details on accepted provisioning failure.
@type
· required
Type:
string
All schema constraints and annotations
{
"const": "type.googleapis.com/docker.sandboxes.v1.McpConfigurationReport",
"type": "string"
}complete
Type:
boolean
complete means every active requested server is applied or explicitly permitted to skip.
All schema constraints and annotations
{
"description": "complete means every active requested server is applied or explicitly permitted to skip.",
"type": "boolean"
}dormantServers
Type:
array
dormant_servers retains earlier minted intent while attached; it is empty in minted modes.
Array item
Schema:
McpServer
All schema constraints and annotations
{
"description": "dormant_servers retains earlier minted intent while attached; it is empty in minted modes.",
"items": {
"$ref": "#/components/schemas/McpServer"
},
"maxItems": 256,
"type": "array"
}generation
· required
Type:
string
generation is an opaque durable fence, never ordered or synthesized by callers.
All schema constraints and annotations
{
"description": "generation is an opaque durable fence, never ordered or synthesized by callers.",
"type": "string"
}mode
· required
Schema:
McpConfigurationMode
mode separates minted discovery behavior from read-only attachment.
All schema constraints and annotations
{
"$ref": "#/components/schemas/McpConfigurationMode",
"description": "mode separates minted discovery behavior from read-only attachment.",
"not": {
"enum": [
"unspecified"
]
}
}servers
Type:
array
servers is the complete active requested set; together with dormant_servers it matches McpGateway.servers.
Array item
Schema:
McpConfiguredServer
All schema constraints and annotations
{
"description": "servers is the complete active requested set; together with dormant_servers it matches McpGateway.servers.",
"items": {
"$ref": "#/components/schemas/McpConfiguredServer"
},
"maxItems": 256,
"type": "array"
}All schema constraints and annotations
{
"description": "McpConfigurationReport is also returned in Error.details on accepted provisioning failure.",
"properties": {
"@type": {
"const": "type.googleapis.com/docker.sandboxes.v1.McpConfigurationReport",
"type": "string"
},
"complete": {
"description": "complete means every active requested server is applied or explicitly permitted to skip.",
"type": "boolean"
},
"dormantServers": {
"description": "dormant_servers retains earlier minted intent while attached; it is empty in minted modes.",
"items": {
"$ref": "#/components/schemas/McpServer"
},
"maxItems": 256,
"type": "array"
},
"generation": {
"description": "generation is an opaque durable fence, never ordered or synthesized by callers.",
"type": "string"
},
"mode": {
"$ref": "#/components/schemas/McpConfigurationMode",
"description": "mode separates minted discovery behavior from read-only attachment.",
"not": {
"enum": [
"unspecified"
]
}
},
"servers": {
"description": "servers is the complete active requested set; together with dormant_servers it matches McpGateway.servers.",
"items": {
"$ref": "#/components/schemas/McpConfiguredServer"
},
"maxItems": 256,
"type": "array"
}
},
"required": [
"generation",
"mode",
"@type"
],
"title": "McpConfigurationReportErrorDetail",
"type": "object"
}