Google Apigee · Schema

Deployment

API GatewayAPI ManagementEnterpriseGoogle Cloud

Properties

Name Type Description
environment string
apiProxy string
revision string
deployStartTime string
state string
View JSON Schema on GitHub

JSON Schema

google-apigee-deployment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Deployment",
  "title": "Deployment",
  "type": "object",
  "properties": {
    "environment": {
      "type": "string"
    },
    "apiProxy": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "deployStartTime": {
      "type": "string",
      "format": "date-time"
    },
    "state": {
      "type": "string",
      "enum": [
        "RUNTIME_STATE_UNSPECIFIED",
        "READY",
        "PROGRESSING",
        "ERROR"
      ]
    }
  }
}