action opensuse_get_published_project_name_repository_name_architecture_name_bin { label: "Return the binary file itself." description: "Allow to download the binary file that was published and stored under the directory given by project/repository/architecture/.\nCan response with Media Types like application/x-rpm, text/xml, etc.\nNOTE: Use this only if you absolutely have to, as it doesn't use the redirector.\n" provider: opensuse method: GET path: "/published/{project_name}/{repository_name}/{architecture_name}/{binary_filename}" encoding: json input: { type: "object" properties: { binary_filename: { type: "string" } } required: ["binary_filename"] additionalProperties: false } output: { type: "object" additionalProperties: true } }