action apache_get_extra_links { label: "List extra links" description: "List extra links for task instance.\n" provider: apache method: GET path: "/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/links" encoding: json output: { type: "object" description: "The collection of extra links." properties: { extra_links: { type: "array" items: { type: "object" description: "Additional links containing additional information about the task." properties: { class_ref: { type: "object" description: "Class reference" properties: { class_name: { type: "string" } module_path: { type: "string" } } } href: { type: "string" } name: { type: "string" } } } } } } }