{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "PUT JSON Schema for loadBalancerManager",
"type": "object",
"definitions": {
"provisioningState": {
"enum": [ "Succeeded", "Updating", "Deleting", "Failed" ]
},
"resourceRef": {
"type": "object",
"additionalProperties": false,
"properties": {
"resourceRef": {
"type": "string"
}
},
"required": [
"resourceRef"
]
}
},
"properties": {
"resourceRef": {
"type": "string"
},
"resourceId": {
"type": "string"
},
"instanceId": {
"type": "string"
},
"properties": {
"type": "object",
"properties": {
"provisioningState": {
"$ref": "#/definitions/provisioningState"
},
"loadBalancerManagerIPAddress": {
"type": "string",
"format": "ipv4"
},
"outboundNatIPExemptions": {
"type": "array",
"items": {
"type": "string",
"format": "ipv4"
}
},
"vipIpPools": {
"type": "array",
"items": {
"$ref": "#/definitions/resourceRef"
},
"minItems": 1
}
},
"required": [
"loadBalancerManagerIPAddress",
"outboundNatIPExemptions",
"vipIpPools"
]
}
},
"required": [
"properties"
]
}