Create a connection with strategy=ip
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConnectionRequestContentIP", "title": "CreateConnectionRequestContentIP", "description": "Create a connection with strategy=ip", "allOf": [ { "type": "object", "properties": { "strategy": { "const": "ip" }, "options": { "$ref": "#/components/schemas/ConnectionOptionsIP" }, "show_as_button": { "$ref": "#/components/schemas/ConnectionShowAsButton" } }, "required": [ "strategy" ] }, { "$ref": "#/components/schemas/CreateConnectionCommon" } ], "x-release-lifecycle": "deprecated" }