Juniper Networks · Schema
ServiceInstance
AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | |
| fq_name | array | |
| display_name | string | |
| service_instance_properties | object | |
| service_template_refs | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServiceInstance",
"title": "ServiceInstance",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"format": "uuid"
},
"fq_name": {
"type": "array",
"items": {
"type": "string"
}
},
"display_name": {
"type": "string"
},
"service_instance_properties": {
"type": "object",
"properties": {
"interface_list": {
"type": "array",
"items": {
"type": "object",
"properties": {
"virtual_network": {
"type": "string"
}
}
}
},
"scale_out": {
"type": "object",
"properties": {
"max_instances": {
"type": "integer"
}
}
},
"ha_mode": {
"type": "string",
"enum": [
"active-active",
"active-standby"
]
}
}
},
"service_template_refs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"to": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}