Scaleway · Schema
scaleway.instance.v1.Image
AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| arch | object | |
| creation_date | string | (RFC 3339 format) |
| modification_date | string | (RFC 3339 format) |
| default_bootscript | object | |
| extra_volumes | object | |
| from_server | string | |
| organization | string | |
| public | boolean | |
| root_volume | object | |
| state | object | |
| project | string | |
| tags | array | |
| zone | string | The zone you want to target |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/scaleway.instance.v1.Image",
"title": "scaleway.instance.v1.Image",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"arch": {
"$ref": "#/components/schemas/scaleway.instance.v1.Arch"
},
"creation_date": {
"type": "string",
"description": "(RFC 3339 format)",
"format": "date-time",
"example": "2022-03-22T12:34:56.123456Z",
"nullable": true
},
"modification_date": {
"type": "string",
"description": "(RFC 3339 format)",
"format": "date-time",
"example": "2022-03-22T12:34:56.123456Z",
"nullable": true
},
"default_bootscript": {
"deprecated": true,
"$ref": "#/components/schemas/scaleway.instance.v1.Bootscript"
},
"extra_volumes": {
"type": "object",
"properties": {
"<extra_volumeKey>": {
"$ref": "#/components/schemas/scaleway.instance.v1.Volume"
}
},
"additionalProperties": true
},
"from_server": {
"type": "string"
},
"organization": {
"type": "string"
},
"public": {
"type": "boolean"
},
"root_volume": {
"$ref": "#/components/schemas/scaleway.instance.v1.VolumeSummary"
},
"state": {
"$ref": "#/components/schemas/scaleway.instance.v1.Image.State"
},
"project": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"zone": {
"type": "string",
"description": "The zone you want to target"
}
},
"x-properties-order": [
"id",
"name",
"arch",
"creation_date",
"modification_date",
"default_bootscript",
"extra_volumes",
"from_server",
"organization",
"public",
"root_volume",
"state",
"project",
"tags",
"zone"
]
}