Juniper Networks · Schema
IbaProbe
AutomationCloudData CenterEnterpriseNetworkingSDNSecurityFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| label | string | Probe display name. |
| description | string | Probe description. |
| predefined_probe | string | Predefined probe type name if applicable. |
| stages | array | Probe processing pipeline stages. |
| state | string | Current probe state. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IbaProbe",
"title": "IbaProbe",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"label": {
"type": "string",
"description": "Probe display name."
},
"description": {
"type": "string",
"description": "Probe description."
},
"predefined_probe": {
"type": "string",
"description": "Predefined probe type name if applicable."
},
"stages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"description": "Stage processor type."
}
}
},
"description": "Probe processing pipeline stages."
},
"state": {
"type": "string",
"enum": [
"operational",
"error"
],
"description": "Current probe state."
}
}
}