action clever_cloud_get_network_group_wire_guard_configuration_stream { label: "Get WireGuard® configuration" description: "Gets the current WireGuard® tunnel configuration file for a Network Group peer as a Server Sent Event." provider: clever_cloud method: GET path: "/v4/networkgroups/organisations/{ownerId}/networkgroups/{networkGroupId}/peers/{peerId}/wireguard/configuration/stream" encoding: json input: { type: "object" properties: { networkGroupId: { type: "string" } ownerId: { type: "string" } peerId: { type: "string" } } required: ["networkGroupId", "ownerId", "peerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }