Skip to content

technologyList

sgokaram-saagie edited this page Mar 31, 2020 · 2 revisions

List Technologies

This task allows you to list all technologies for the user.

The task can be launched with the command gradle technologyList.

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>
        proxyHost = <proxy_host>
        proxyPort = <proxy_port>
        acceptSelfSigned = <accept_self_signed>
        environment = <platform_id>
    }
    ...
}

Properties explanation

Configuration Example

saagie {
    server {
        url = https://saagie-beta.prod.saagie.io/
        login = 'my-login'
        password = 'my-password'
        environment = 4
    }
   
}

Response Payload Example

[
  {
     "id":"39510510-7262-459d-83c2-8e5d2e8bbdd8",
     "label":"Docker",
     "isAvailable":true
  },
  {
    "id":"a8a76a2a-f6cc-4271-aeea-445d06aa3396",
    "label":"Java/Scala",
    "isAvailable":true
  }, 
  {
    "id":"13522063-c18b-4ecd-b61f-3bae1e0ad93c",
    "label":"Python",
    "isAvailable":true
  },
  ...
]