Apigee · Schema
ObservationSource
A source of network traffic for API observation.
Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationMicroservicesMCPMonetization
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Output only. Resource name of the source. |
| gclbObservationSource | object | Google Cloud Load Balancer as observation source. |
| state | string | State of the observation source. |
| createTime | string | Output only. Time the source was created. |
| updateTime | string | Output only. Time the source was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ObservationSource",
"title": "ObservationSource",
"type": "object",
"description": "A source of network traffic for API observation.",
"properties": {
"name": {
"type": "string",
"description": "Output only. Resource name of the source.",
"readOnly": true
},
"gclbObservationSource": {
"type": "object",
"description": "Google Cloud Load Balancer as observation source.",
"properties": {
"pscNetworkConfigs": {
"type": "array",
"description": "Private Service Connect network configurations.",
"items": {
"type": "object",
"properties": {
"network": {
"type": "string",
"description": "VPC network resource name."
},
"subnetwork": {
"type": "string",
"description": "Subnetwork resource name."
}
}
}
}
}
},
"state": {
"type": "string",
"description": "State of the observation source.",
"enum": [
"STATE_UNSPECIFIED",
"CREATING",
"CREATED",
"DELETING",
"ERROR"
]
},
"createTime": {
"type": "string",
"format": "date-time",
"description": "Output only. Time the source was created.",
"readOnly": true
},
"updateTime": {
"type": "string",
"format": "date-time",
"description": "Output only. Time the source was last updated.",
"readOnly": true
}
}
}