workers_migration_tag_conditions

APIs.ioEngineeringPlatform

Properties

Name Type Description
new_tag string Tag to set as the latest migration tag.
old_tag string Tag used to verify against the latest migration tag for this Worker. If they don't match, the upload is rejected.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-workers-migration-tag-conditions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/workers_migration_tag_conditions",
  "title": "workers_migration_tag_conditions",
  "properties": {
    "new_tag": {
      "description": "Tag to set as the latest migration tag.",
      "example": "v2",
      "type": "string"
    },
    "old_tag": {
      "description": "Tag used to verify against the latest migration tag for this Worker. If they don't match, the upload is rejected.",
      "example": "v1",
      "type": "string"
    }
  },
  "type": "object"
}