Apigee · Schema

ObservationJob

An API observation job that analyzes traffic to discover shadow APIs.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
name string Output only. Resource name of the observation job.
state string State of the observation job.
sources array Observation sources for this job.
createTime string Output only. Time the job was created.
updateTime string Output only. Time the job was last updated.
View JSON Schema on GitHub

JSON Schema

apigee-observationjob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObservationJob",
  "title": "ObservationJob",
  "type": "object",
  "description": "An API observation job that analyzes traffic to discover shadow APIs.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Output only. Resource name of the observation job.",
      "readOnly": true
    },
    "state": {
      "type": "string",
      "description": "State of the observation job.",
      "enum": [
        "STATE_UNSPECIFIED",
        "CREATING",
        "ENABLING",
        "ENABLED",
        "DISABLING",
        "DISABLED",
        "DELETING"
      ]
    },
    "sources": {
      "type": "array",
      "description": "Observation sources for this job.",
      "items": {
        "type": "string"
      }
    },
    "createTime": {
      "type": "string",
      "format": "date-time",
      "description": "Output only. Time the job was created.",
      "readOnly": true
    },
    "updateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Output only. Time the job was last updated.",
      "readOnly": true
    }
  }
}