Skip to content

ListJobs

Erwan KOFFI edited this page Oct 10, 2017 · 1 revision

List jobs

This task allows you to list all jobs on the platform

The task can be launched with the command gradle listJobs.

Configuration

Configuration object

Once your saagie object is available on your project with the server correctly set up, you are ready to go.

saagie {
    server {
        url = <platform_url>
        login = <login>
        password = <password>
        platform = <platform_id>
        proxyHost = <proxy_host>
        proxyPort = <proxy_port>
        acceptSelfSigned = <accept_self_signed>
    }
    ...
}

Examples

saagie {
    server {
        url = https://manager.prod.saagie.io/api/v1
        login = 'my-login'
        password = 'my-password'
        platform = 666
    }
}