1. Introduction

This is the REST API documentation for Genie version 3.3.15. Here you will find specific details of how to invoke the Genie REST API and what you can expect as return values.

For more Genie information see the website.
For high level information and installation instructions please see the reference guide.
For a demo of this version of Genie please see demo guide.

2. Assumptions

This documentation assumes a basic knowledge of how REST APIs work. If you don’t know things like HTTP verbs see websites like this one.

3. HATEOAS

A lot of the API’s return application/hal+json as a content type. This is a superset of JSON built to support HATEOAS (Hypermedia as the Engine of Application State). Rather than re-writing what HATEOAS is see this great write up on the Spring Website about it.

HATEOAS has several ways to represent the state in return payloads. Genie uses HAL. You can find documentation about it here or here.

4. Security

All of this documentation assumes security is disabled for Genie. If your installation has security enabled the REST APIs will be secured via OAuth2 or x509 certs or both.

These are the currently supported API security mechanisms but others could be plugged in. We’ll only talk about OAuth2 here for now until another implementation is done.

4.1. OAuth2

If OAuth2 is enabled you’ll need to send your JWT you got back from your provider along with your API request. This is accomplished by setting your Authorization header to a value of Bearer {your token here}.

4.2. x509

If your admin has security Genie using client and server certificates mechanisms you’ll need to send your client certificate along with your request.

Something like curl --cert {your cert} {genie endpoint}

5. Resources

This section contains the documentation for various resources sent to and from the various Genie APIs. Note their structure and fields, particularly what is marked optional. Optional means when you submit one of these resources to Genie you don’t need to set that field. Genie either doesn’t require it or if it does, as is the case with ID’s, it will create one if you don’t provide it. When you get a resource all fields Genie has stored will be returned.

5.1. Application

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

type

String

The type of application this is (e.g. hadoop, presto, spark). Can be used to group.

true

status

String

The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

dependencies

Array

The dependencies for the application

true

5.2. Cluster

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED]

Must not be null

false

dependencies

Array

The dependencies for the cluster

true

5.3. Command

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

executable

String

The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop

Must not be empty. Size must be between 0 and 255 inclusive

false

checkDelay

Number

The amount of time (in milliseconds) to delay between checks of the jobs using this command

Must be at least 1

false

memory

Number

The default amount of memory (in MB) that should be allocated for instances of this command client

Must be at least 1

true

dependencies

Array

The dependencies for the command

true

5.4. Job Request

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

commandArgs

String

Any arguments to append to the command executable when the job is run

true

clusterCriterias

Array

List of cluster criteria’s for which a match will be attempted with register cluster tags. Each set of tags within a given cluster criteria must have at least one non-blank (e.g. ' ', ' ', null) tag.

Must not be empty

false

commandCriteria

Array

Set of tags which will attempt to match against the commands linked to selected cluster. There must be at least one non-blank (e.g. ' ', ' ', null) criteria within the set

Must not be empty

false

group

String

A group that the job should be run under on the linux system

Size must be between 0 and 255 inclusive

true

disableLogArchival

Boolean

If you want to disable backing up job output files set this to true. Default: false

true

email

String

If you want e-mail notification on job completion enter address here

Must be a well-formed email address. Size must be between 0 and 255 inclusive

true

cpu

Number

For future use. Currently has no impact.

Must be at least 1

true

memory

Number

The amount of memory (in MB) desired for job client. Cannot exceed configured max.

Must be at least 1

true

timeout

Number

The timeout (in seconds) after which job will be killed by system, system setting used if not set

Must be at least 1

true

configs

Array

URI’s of configuration files which will be downloaded into job working directory at runtime

true

dependencies

Array

URI’s of dependency files which will be downloaded into job working directory at runtime

true

applications

Array

Complete list of application ids if power user wishes to override selected command defaults

true

grouping

String

The grouping of the job relative to other jobs. e.g. scheduler job name

true

groupingInstance

String

The grouping instance of the job relative to other jobs. e.g. scheduler job run

true

5.5. Job

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

commandArgs

String

Any arguments to append to the command executable when the job is run

true

status

String

The status of the job. Options: [INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID]

Must not be null

false

statusMsg

String

The status message of the job

Size must be between 0 and 255 inclusive

true

started

String

The time (UTC ISO8601 with millis) the job was started

true

finished

String

The time (UTC ISO8601 with millis) the job finished

true

archiveLocation

String

The URI where the working directory zip was stored

Size must be between 0 and 1024 inclusive

true

clusterName

String

The name of the cluster the job was run on if it’s been determined

Size must be between 0 and 255 inclusive

true

commandName

String

The name of the command the job was run with if it’s been determined

Size must be between 0 and 255 inclusive

true

runtime

String

Runtime of the job in ISO8601 duration format

Must not be null

true

grouping

String

The grouping of the job relative to other jobs. e.g. scheduler job name

true

groupingInstance

String

The grouping instance of the job relative to other jobs. e.g. scheduler job run

true

5.6. Job Execution

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

hostName

String

The host name of the Genie node responsible for the job

Size must be between 1 and 1024 inclusive

false

processId

Number

The id of the job client process on the Genie node

true

checkDelay

Number

The amount of time in milliseconds between checks of the job status by Genie

Must be at least 1

true

timeout

String

The date (UTC ISO8601 with millis) when the job will be killed by Genie due to timeout

true

exitCode

Number

The job client process exit code after the job is done

true

memory

Number

The amount of memory (in MB) allocated to the job client

Must be at least 1

true

5.7. Job Metadata

Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

clientHost

String

The host name of the client that submitted the job to Genie

true

userAgent

String

The user agent string that was passed to Genie on job request

true

numAttachments

Number

The number of attachments sent to Genie with the job request

true

totalSizeOfAttachments

Number

The total size of all attachments sent to Genie with the job request. In bytes.

true

stdOutSize

Number

The final size of the stdout file after a job is completed. In bytes.

true

stdErrSize

Number

The final size of the stderr file after a job is completed. In bytes.

true

6. Jobs API

6.1. Submit a Job

6.1.1. Description

The main API in Genie. Submitting a job to be run.

There are two different ways to submit a job to Genie. Both go to the same endpoint but you can simply send a JSON payload if you have no attachments. This means setting your content type to application/json. If you do have attachments you want to send with your job request you need to set the content type to multipart/form-data and post the request that way. Examples are below.

6.1.2. Endpoint

POST /api/v3/jobs

The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique.
This Example is without attachments

6.1.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters

None

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

commandArgs

String

Any arguments to append to the command executable when the job is run

true

clusterCriterias

Array

List of cluster criteria’s for which a match will be attempted with register cluster tags. Each set of tags within a given cluster criteria must have at least one non-blank (e.g. ' ', ' ', null) tag.

Must not be empty

false

commandCriteria

Array

Set of tags which will attempt to match against the commands linked to selected cluster. There must be at least one non-blank (e.g. ' ', ' ', null) criteria within the set

Must not be empty

false

group

String

A group that the job should be run under on the linux system

Size must be between 0 and 255 inclusive

true

disableLogArchival

Boolean

If you want to disable backing up job output files set this to true. Default: false

true

email

String

If you want e-mail notification on job completion enter address here

Must be a well-formed email address. Size must be between 0 and 255 inclusive

true

cpu

Number

For future use. Currently has no impact.

Must be at least 1

true

memory

Number

The amount of memory (in MB) desired for job client. Cannot exceed configured max.

Must be at least 1

true

timeout

Number

The timeout (in seconds) after which job will be killed by system, system setting used if not set

Must be at least 1

true

configs

Array

URI’s of configuration files which will be downloaded into job working directory at runtime

true

dependencies

Array

URI’s of dependency files which will be downloaded into job working directory at runtime

true

applications

Array

Complete list of application ids if power user wishes to override selected command defaults

true

grouping

String

The grouping of the job relative to other jobs. e.g. scheduler job name

true

groupingInstance

String

The grouping instance of the job relative to other jobs. e.g. scheduler job run

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.0",
  "user" : "genie",
  "name" : "List * ... Directories bash job",
  "description" : "Genie 3 Test Job",
  "metadata" : {
    "schedulerJobName" : "9411c086-89cb-44a2-aa8d-3ba320bf7496",
    "schedulerRunId" : "d7e30ce1-4572-45a9-a841-fdb891bf6e6a"
  },
  "tags" : [ "b0dc6fec-c52c-463a-9ddd-e0c6043bc196", "c53809ec-d32b-4530-bc30-5b22ac2f8df0" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/config1" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/dep1" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
  "commandArgs" : "-c 'echo hello world'",
  "clusterCriterias" : [ {
    "tags" : [ "localhost" ]
  } ],
  "commandCriteria" : [ "bash" ],
  "group" : null,
  "disableLogArchival" : true,
  "email" : null,
  "cpu" : null,
  "memory" : null,
  "timeout" : null,
  "applications" : [ ],
  "grouping" : null,
  "groupingInstance" : null
}'
HTTPie
$ echo '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.0",
  "user" : "genie",
  "name" : "List * ... Directories bash job",
  "description" : "Genie 3 Test Job",
  "metadata" : {
    "schedulerJobName" : "9411c086-89cb-44a2-aa8d-3ba320bf7496",
    "schedulerRunId" : "d7e30ce1-4572-45a9-a841-fdb891bf6e6a"
  },
  "tags" : [ "b0dc6fec-c52c-463a-9ddd-e0c6043bc196", "c53809ec-d32b-4530-bc30-5b22ac2f8df0" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/config1" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/dep1" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
  "commandArgs" : "-c 'echo hello world'",
  "clusterCriterias" : [ {
    "tags" : [ "localhost" ]
  } ],
  "commandCriteria" : [ "bash" ],
  "group" : null,
  "disableLogArchival" : true,
  "email" : null,
  "cpu" : null,
  "memory" : null,
  "timeout" : null,
  "applications" : [ ],
  "grouping" : null,
  "groupingInstance" : null
}' | http POST 'https://genie.example.com/api/v3/jobs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers
Name Description

Location

The URI

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/jobs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 1262

{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.0",
  "user" : "genie",
  "name" : "List * ... Directories bash job",
  "description" : "Genie 3 Test Job",
  "metadata" : {
    "schedulerJobName" : "9411c086-89cb-44a2-aa8d-3ba320bf7496",
    "schedulerRunId" : "d7e30ce1-4572-45a9-a841-fdb891bf6e6a"
  },
  "tags" : [ "b0dc6fec-c52c-463a-9ddd-e0c6043bc196", "c53809ec-d32b-4530-bc30-5b22ac2f8df0" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/config1" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/dep1" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
  "commandArgs" : "-c 'echo hello world'",
  "clusterCriterias" : [ {
    "tags" : [ "localhost" ]
  } ],
  "commandCriteria" : [ "bash" ],
  "group" : null,
  "disableLogArchival" : true,
  "email" : null,
  "cpu" : null,
  "memory" : null,
  "timeout" : null,
  "applications" : [ ],
  "grouping" : null,
  "groupingInstance" : null
}
Response
HTTP/1.1 202 Accepted
X-Application-Context: genie:integration,db,db-h2:0
Location: https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9
This example is with attachments

6.1.4. API Docs

Request Documentation
Headers
Name Description

Content-Type

multipart/form-data

Path Parameters

None

Query Parameters

None

Payload Fields
Part Description

request

The job request JSON. Content type must be application/json for part

attachment

An attachment file. There can be multiple. Type should be octet-stream

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs' -i -X POST -H 'Content-Type: multipart/form-data;charset=UTF-8' -F 'request={"id":null,"created":null,"updated":null,"version":"1.0","user":"genie","name":"List * ... Directories bash job","description":"Genie 3 Test Job","metadata":null,"tags":[],"configs":[],"dependencies":[],"setupFile":"/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile","commandArgs":"-c 'echo hello world'","clusterCriterias":[{"tags":["localhost"]}],"commandCriteria":["bash"],"group":null,"disableLogArchival":true,"email":null,"cpu":null,"memory":null,"timeout":null,"applications":[],"grouping":null,"groupingInstance":null};type=application/json' -F 'attachment=@query.sql;type=application/octet-stream' -F 'attachment=@query2.sql;type=application/octet-stream'
HTTPie
$ http --form POST 'https://genie.example.com/api/v3/jobs' \
  'request'@<(echo '{"id":null,"created":null,"updated":null,"version":"1.0","user":"genie","name":"List * ... Directories bash job","description":"Genie 3 Test Job","metadata":null,"tags":[],"configs":[],"dependencies":[],"setupFile":"/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile","commandArgs":"-c 'echo hello world'","clusterCriterias":[{"tags":["localhost"]}],"commandCriteria":["bash"],"group":null,"disableLogArchival":true,"email":null,"cpu":null,"memory":null,"timeout":null,"applications":[],"grouping":null,"groupingInstance":null}') \
  'attachment'@'query.sql' \
  'attachment'@'query2.sql'
Response Documentation
Headers
Name Description

Location

The URI

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/jobs HTTP/1.1
Content-Type: multipart/form-data;charset=UTF-8; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Host: genie.example.com

--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=request
Content-Type: application/json

{"id":null,"created":null,"updated":null,"version":"1.0","user":"genie","name":"List * ... Directories bash job","description":"Genie 3 Test Job","metadata":null,"tags":[],"configs":[],"dependencies":[],"setupFile":"/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile","commandArgs":"-c 'echo hello world'","clusterCriterias":[{"tags":["localhost"]}],"commandCriteria":["bash"],"group":null,"disableLogArchival":true,"email":null,"cpu":null,"memory":null,"timeout":null,"applications":[],"grouping":null,"groupingInstance":null}
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=attachment
Content-Type: application/octet-stream

select * from myTable;

--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=attachment
Content-Type: application/octet-stream

SELECT * FROM your_table JOIN my_table ON your_table.id = my_table.id WHERE x > 50;

--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm--
Response
HTTP/1.1 202 Accepted
X-Application-Context: genie:integration,db,db-h2:0
Location: https://genie.example.com/api/v3/jobs/9c20f2f6-e533-42b3-81ca-b481891e583f

6.2. Find Jobs

6.2.1. Description

Search for jobs using query parameters.

6.2.2. Endpoint

GET /api/v3/jobs

6.2.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters
Parameter Description

page

The page number to get. Default to 0.

size

The size of the page to get. Default to 64.

sort

The fields to sort the results by. Defaults to 'updated,desc'.

id

The id of the jobs to find. Use % symbol for regex like search.

name

The name of the jobs to find. Use % symbol for regex like search.

user

The user of the jobs to find. Use % symbol for regex like search.

status

The status(es) of the jobs to find. Can have multiple. Options: [INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID]

tag

The tag(s) of the jobs to find. Can have multiple.

clusterName

The name of the cluster on which the jobs ran. Use % symbol for regex like search.

clusterId

The id of the cluster on which the jobs ran.

commandName

The name of the command which was executed by the job. Use % symbol for regex like search.

commandId

The id of the command which was executed by the job.

minStarted

The minimum started time of the job in milliseconds since epoch. (inclusive)

maxStarted

The maximum started time of the job in milliseconds since epoch. (exclusive)

minFinished

The minimum finished time of the job in milliseconds since epoch. (inclusive)

maxFinished

The maximum finished time of the job in milliseconds since epoch. (exclusive)

grouping

The grouping the job should be a member of. Use % symbol for regex like search.

groupingInstance

The grouping instance the job should be a member of. Use % symbol for regex like search.

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs?user=genie' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs?user=genie'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

_links

Object

Links to other resources.

false

page

Object

The result page information.

false

page.size

Number

The number of elements in this page result.

false

page.totalElements

Number

The total number of elements this search result could return.

false

page.totalPages

Number

The total number of pages there could be at the current page size.

false

page.number

Number

The current page number.

false

_embedded.jobSearchResultList

Array

The found jobs.

false

Relation Description

self

The current search

first

The first page for this search

prev

The previous page for this search

next

The next page for this search

last

The last page for this search

HTTP Messages
Request
GET /api/v3/jobs?user=genie HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 947

{
  "_embedded" : {
    "jobSearchResultList" : [ {
      "id" : "77016686-c8ac-49bb-bf89-2ab337127aa9",
      "name" : "List * ... Directories bash job",
      "user" : "genie",
      "status" : "SUCCEEDED",
      "started" : "2019-01-09T23:02:05.453Z",
      "finished" : "2019-01-09T23:02:05.629Z",
      "clusterName" : "Local laptop",
      "commandName" : "Unix Bash command",
      "runtime" : "PT0.176S",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/jobs?user=genie{&id,name,status,tag,clusterName,clusterId,commandName,commandId,minStarted,maxStarted,minFinished,maxFinished,grouping,groupingInstance}",
      "templated" : true
    }
  },
  "page" : {
    "size" : 10,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

6.3. Get a Job

6.3.1. Description

Get metadata about a specific job.

6.3.2. Endpoint

GET /api/v3/jobs/{id}

6.3.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 1. /api/v3/jobs/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

commandArgs

String

Any arguments to append to the command executable when the job is run

true

status

String

The status of the job. Options: [INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID]

Must not be null

false

statusMsg

String

The status message of the job

Size must be between 0 and 255 inclusive

true

started

String

The time (UTC ISO8601 with millis) the job was started

true

finished

String

The time (UTC ISO8601 with millis) the job finished

true

archiveLocation

String

The URI where the working directory zip was stored

Size must be between 0 and 1024 inclusive

true

clusterName

String

The name of the cluster the job was run on if it’s been determined

Size must be between 0 and 255 inclusive

true

commandName

String

The name of the command the job was run with if it’s been determined

Size must be between 0 and 255 inclusive

true

runtime

String

Runtime of the job in ISO8601 duration format

Must not be null

true

grouping

String

The grouping of the job relative to other jobs. e.g. scheduler job name

true

groupingInstance

String

The grouping instance of the job relative to other jobs. e.g. scheduler job run

true

Relation Description

self

URI for this job

request

The request that kicked off this job

execution

The job execution information for this job

metadata

The job metadata information for this job

output

The output URI for the job

status

The current status of the job

cluster

The cluster this job ran on

command

The command this job executed

applications

The applications this job used

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 2026

{
  "id" : "77016686-c8ac-49bb-bf89-2ab337127aa9",
  "created" : "2019-01-09T23:02:05.209Z",
  "updated" : "2019-01-09T23:02:05.630Z",
  "version" : "1.0",
  "user" : "genie",
  "name" : "List * ... Directories bash job",
  "description" : "Genie 3 Test Job",
  "metadata" : {
    "schedulerJobName" : "9411c086-89cb-44a2-aa8d-3ba320bf7496",
    "schedulerRunId" : "d7e30ce1-4572-45a9-a841-fdb891bf6e6a"
  },
  "tags" : [ "b0dc6fec-c52c-463a-9ddd-e0c6043bc196", "c53809ec-d32b-4530-bc30-5b22ac2f8df0" ],
  "status" : "SUCCEEDED",
  "statusMsg" : "Job finished successfully.",
  "started" : "2019-01-09T23:02:05.453Z",
  "finished" : "2019-01-09T23:02:05.629Z",
  "archiveLocation" : null,
  "clusterName" : "Local laptop",
  "commandName" : "Unix Bash command",
  "runtime" : "PT0.176S",
  "commandArgs" : "-c 'echo hello world'",
  "grouping" : null,
  "groupingInstance" : null,
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9"
    },
    "output" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output"
    },
    "request" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request"
    },
    "execution" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution"
    },
    "metadata" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata"
    },
    "status" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status"
    },
    "cluster" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/cluster"
    },
    "command" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/command"
    },
    "applications" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/applications"
    }
  }
}

6.4. Kill a Job

6.4.1. Description

Request for a job to be killed.

6.4.2. Endpoint

DELETE /api/v3/jobs/{id}

6.4.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 2. /api/v3/jobs/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/4e45d991-7827-4348-bd2a-8a8c325bb3f2' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/jobs/4e45d991-7827-4348-bd2a-8a8c325bb3f2'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/jobs/4e45d991-7827-4348-bd2a-8a8c325bb3f2 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 202 Accepted
X-Application-Context: genie:integration,db,db-h2:0

6.5. Get Job Status

6.5.1. Description

Get the current status of a job.

6.5.2. Endpoint

GET /api/v3/jobs/{id}/status

6.5.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 3. /api/v3/jobs/{id}/status
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

status

String

The job status. One of: [INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID]

false

None

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 28

{
  "status" : "SUCCEEDED"
}

6.6. Get Contents From the Job Working Directory

6.6.1. Description

This API acts as a file browser for the remote working directory of your job. You can request endpoints and if it is a directory you will be shown the contents of the directory and be able to navigate. If the endpoint points to a file it will return the file.

6.6.2. Endpoint

GET /api/v3/jobs/{id}/output/{path}**

6.6.3. Getting a directory as JSON

This is the default behavior for directories if no Accept header is present

6.6.4. API Docs

Request Documentation
Headers
Name Description

Accept

application/json

Path Parameters
Table 4. /api/v3/jobs/{id}/output/{filePath}
Parameter Description

id

The resource id

filePath

The path to the directory to get

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

parent

Object

Information about the parent of this directory

true

parent.name

String

The name of the parent directory

true

parent.url

String

The url to get the parent

true

parent.size

Number

The size of the parent in bytes

true

parent.lastModified

String

The last time the parent was modified in ISO8601 UTC with milliseconds included

true

directories

Array

All the subdirectories of this directory

false

directories[].name

String

The name of the directory

false

directories[].url

String

The url to get the directory

false

directories[].size

Number

The size of the directory in bytes

false

directories[].lastModified

String

The last time the directory was modified in ISO8601 UTC with milliseconds included

false

files

Array

All the files in this directory

false

files[].name

String

The name of the file

false

files[].url

String

The url to get the file

false

files[].size

Number

The size of the file in bytes

false

files[].lastModified

String

The last time the file was modified in ISO8601 UTC with milliseconds included

false

None

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/ HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 1453

{
  "parent" : null,
  "directories" : [ {
    "name" : "genie/",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/genie/",
    "size" : 0,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  } ],
  "files" : [ {
    "name" : "config1",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/config1",
    "size" : 0,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  }, {
    "name" : "dep1",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/dep1",
    "size" : 0,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  }, {
    "name" : "jobsetupfile",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/jobsetupfile",
    "size" : 0,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  }, {
    "name" : "run",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/run",
    "size" : 3850,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  }, {
    "name" : "stderr",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/stderr",
    "size" : 0,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  }, {
    "name" : "stdout",
    "url" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/stdout",
    "size" : 12,
    "lastModified" : "2019-01-09T23:02:05.000Z"
  } ]
}

6.6.5. Getting a directory as HTML

This would happen automatically if you called from browser due to browser default accept header

6.6.6. API Docs

Request Documentation
Headers
Name Description

Accept

text/html

Path Parameters
Table 5. /api/v3/jobs/{id}/output/{filePath}
Parameter Description

id

The resource id

filePath

The path to the directory to get

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/' -i -H 'Accept: text/html'
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/' 'Accept:text/html'
Response Documentation
Headers
Name Description

Content-Type

text/html

Payload Fields

None

None

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/ HTTP/1.1
Accept: text/html
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: text/html;charset=UTF-8
Content-Length: 3097

<!DOCTYPE html><html><head><title>77016686-c8ac-49bb-bf89-2ab337127aa9</title><style type="text/css"><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}.line {height: 1px; background-color: #525D76; border: none;}--></style> </head><body><h1>77016686-c8ac-49bb-bf89-2ab337127aa9</h1><HR size="1" noshade="noshade"><table width="100%" cellspacing="0" cellpadding="5" align="center"><tr><td align="left"><font size="+1"><strong>Filename</strong></font></td><td align="right"><font size="+1"><strong>Size</strong></font></td><td align="right"><font size="+1"><strong>Last Modified</strong></font></td></tr><tr bgcolor="#eeeeee"><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/genie/"><tt>genie/</tt></a></td><td align="right"><tt>-</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr><tr><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/config1"><tt>config1</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr><tr bgcolor="#eeeeee"><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/dep1"><tt>dep1</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr><tr><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/jobsetupfile"><tt>jobsetupfile</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr><tr bgcolor="#eeeeee"><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/run"><tt>run</tt></a></td><td align="right"><tt>3 KB</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr><tr><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/stderr"><tt>stderr</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr><tr bgcolor="#eeeeee"><td align="left">&nbsp;&nbsp;<a href="https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/stdout"><tt>stdout</tt></a></td><td align="right"><tt>12 bytes</tt></td><td align="right"><tt>Wed, 09 Jan 2019 23:02:05 GMT</tt></td></tr></table><HR size="1" noshade="noshade"><h3>Apache Tomcat/8.5.31</h3></body></html>

6.6.7. Getting a file

6.6.8. API Docs

Request Documentation
Headers
Name Description

Accept

/

Path Parameters
Table 6. /api/v3/jobs/{id}/output/{filePath}
Parameter Description

id

The resource id

filePath

The path to the file to get

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/run' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/run'
Response Documentation
Headers
Name Description

Content-Type

The content type of the file being returned

Payload Fields

None

None

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output/run HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Last-Modified: Wed, 09 Jan 2019 23:02:05 GMT
Content-Length: 3850
Content-Type: text/plain;charset=UTF-8
Accept-Ranges: bytes

#!/usr/bin/env bash

set -o nounset -o pipefail

# Set function in case any of the exports or source commands cause an error
trap "handle_failure" ERR EXIT

function handle_failure {
    ERROR_CODE=$?
    echo "Handling exit signal (code: ${ERROR_CODE})"

    # Good exit
    if [[ ${ERROR_CODE} -eq 0 ]]; then
        exit 0
    fi
    # Bad exit
    printf '{"exitCode": "%s"}\n' "${ERROR_CODE}" > ${GENIE_JOB_DIR}/genie/genie.done
    exit "${ERROR_CODE}"
}

# Set function for handling kill signal from the job kill service
trap "handle_kill_request" SIGTERM

function handle_kill_request {

    # Disable traps
    trap "" SIGTERM ERR EXIT

    echo "Kill signal received"

    KILL_EXIT_CODE=999

    ### Write the kill exit code to genie.done file as exit code before doing anything else
    echo "Generate done file with exit code ${KILL_EXIT_CODE}"
    printf '{"exitCode": "%s"}\n' "${KILL_EXIT_CODE}" > ${GENIE_JOB_DIR}/genie/genie.done

    ### Send a kill signal the entire process group
    echo "Sending a kill signal to the process group"
    pkill -P $$

    for ((iteration=1; iteration < 30; iteration++))
    {
        if kill -0 ${CHILDREN_PID} &> /dev/null;
        then
            echo "Waiting for children of ${SELF_PID} to terminate"
            pgrep -P ${SELF_PID}
            sleep 1
        else
            echo "Children process no longer running, exiting"
            exit 0
        fi
    }

    ### Reaching at this point means the children did not die. If so send kill -9 to the entire process group
    # this is a hard kill and will this process itself as well
    echo "Sending a kill -9 to children"

    pkill -9 -P $$
    echo "Done"
}

SELF_PID=$$

echo Start: `date '+%Y-%m-%d %H:%M:%S'`

export GENIE_JOB_DIR="/tmp/1547074913514-0/77016686-c8ac-49bb-bf89-2ab337127aa9"

export GENIE_APPLICATION_DIR="${GENIE_JOB_DIR}/genie/applications"

export GENIE_COMMAND_DIR="${GENIE_JOB_DIR}/genie/command/cmd1"

export GENIE_COMMAND_ID="cmd1"

export GENIE_COMMAND_NAME="Unix Bash command"

export GENIE_COMMAND_TAGS="bash,genie.id:cmd1,genie.name:Unix Bash command"

export GENIE_CLUSTER_DIR="${GENIE_JOB_DIR}/genie/cluster/cluster1"

export GENIE_CLUSTER_ID="cluster1"

export GENIE_CLUSTER_NAME="Local laptop"

export GENIE_CLUSTER_TAGS="genie.id:cluster1,genie.name:Local laptop,localhost"

export GENIE_JOB_ID="77016686-c8ac-49bb-bf89-2ab337127aa9"

export GENIE_JOB_NAME="List * ... Directories bash job"

export GENIE_JOB_MEMORY=1024

export GENIE_JOB_TAGS="b0dc6fec-c52c-463a-9ddd-e0c6043bc196,c53809ec-d32b-4530-bc30-5b22ac2f8df0"

export GENIE_REQUESTED_COMMAND_TAGS="bash"

export GENIE_REQUESTED_CLUSTER_TAGS="[[localhost]]"
export GENIE_REQUESTED_CLUSTER_TAGS_0="localhost"

export GENIE_VERSION=3

# Sourcing setup file from Cluster: cluster1
source ${GENIE_JOB_DIR}/genie/cluster/cluster1/setupfile

# Sourcing setup file from Application: app1
source ${GENIE_JOB_DIR}/genie/applications/app1/setupfile

# Sourcing setup file from Application: app2
source ${GENIE_JOB_DIR}/genie/applications/app2/setupfile

# Sourcing setup file from Command: cmd1
source ${GENIE_JOB_DIR}/genie/command/cmd1/setupfile

# Sourcing setup file specified in job request
source ${GENIE_JOB_DIR}/jobsetupfile

# Dump the environment to a env.log file
env | sort > ${GENIE_JOB_DIR}/genie/logs/env.log

# Kick off the command in background mode and wait for it using its pid
/bin/bash -c 'echo hello world' > ${GENIE_JOB_DIR}/stdout 2> ${GENIE_JOB_DIR}/stderr &
export CHILDREN_PID=$!
wait ${CHILDREN_PID}

# Write the return code from the command in the done file.
printf '{"exitCode": "%s"}\n' "$?" > ${GENIE_JOB_DIR}/genie/genie.done.temp
# Swapping done file, unless one exist created by trap handler.
mv -n ${GENIE_JOB_DIR}/genie/genie.done.temp ${GENIE_JOB_DIR}/genie/genie.done
echo End: `date '+%Y-%m-%d %H:%M:%S'`

6.7. Get a Job Request

6.7.1. Description

Get the original request which spawned the job.

6.7.2. Endpoint

GET /api/v3/jobs/{id}/request

6.7.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 7. /api/v3/jobs/{id}/request
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

commandArgs

String

Any arguments to append to the command executable when the job is run

true

clusterCriterias

Array

List of cluster criteria’s for which a match will be attempted with register cluster tags. Each set of tags within a given cluster criteria must have at least one non-blank (e.g. ' ', ' ', null) tag.

Must not be empty

false

commandCriteria

Array

Set of tags which will attempt to match against the commands linked to selected cluster. There must be at least one non-blank (e.g. ' ', ' ', null) criteria within the set

Must not be empty

false

group

String

A group that the job should be run under on the linux system

Size must be between 0 and 255 inclusive

true

disableLogArchival

Boolean

If you want to disable backing up job output files set this to true. Default: false

true

email

String

If you want e-mail notification on job completion enter address here

Must be a well-formed email address. Size must be between 0 and 255 inclusive

true

cpu

Number

For future use. Currently has no impact.

Must be at least 1

true

memory

Number

The amount of memory (in MB) desired for job client. Cannot exceed configured max.

Must be at least 1

true

timeout

Number

The timeout (in seconds) after which job will be killed by system, system setting used if not set

Must be at least 1

true

configs

Array

URI’s of configuration files which will be downloaded into job working directory at runtime

true

dependencies

Array

URI’s of dependency files which will be downloaded into job working directory at runtime

true

applications

Array

Complete list of application ids if power user wishes to override selected command defaults

true

grouping

String

The grouping of the job relative to other jobs. e.g. scheduler job name

true

groupingInstance

String

The grouping instance of the job relative to other jobs. e.g. scheduler job run

true

Relation Description

self

URI for this job request

job

The job that resulted from this request

execution

The job execution that resulted from this request

metadata

The job metadata information for this job

output

The output URI for the job

status

The current status of the job

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 2096

{
  "id" : "77016686-c8ac-49bb-bf89-2ab337127aa9",
  "created" : "2019-01-09T23:02:05.209Z",
  "updated" : "2019-01-09T23:02:05.630Z",
  "version" : "1.0",
  "user" : "genie",
  "name" : "List * ... Directories bash job",
  "description" : "Genie 3 Test Job",
  "metadata" : {
    "schedulerJobName" : "9411c086-89cb-44a2-aa8d-3ba320bf7496",
    "schedulerRunId" : "d7e30ce1-4572-45a9-a841-fdb891bf6e6a"
  },
  "tags" : [ "b0dc6fec-c52c-463a-9ddd-e0c6043bc196", "c53809ec-d32b-4530-bc30-5b22ac2f8df0" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/config1" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/dep1" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
  "commandArgs" : "-c 'echo hello world'",
  "clusterCriterias" : [ {
    "tags" : [ "localhost" ]
  } ],
  "commandCriteria" : [ "bash" ],
  "group" : null,
  "disableLogArchival" : true,
  "email" : null,
  "cpu" : null,
  "memory" : null,
  "timeout" : null,
  "applications" : [ ],
  "grouping" : null,
  "groupingInstance" : null,
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request"
    },
    "job" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9"
    },
    "execution" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution"
    },
    "output" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output"
    },
    "status" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status"
    },
    "metadata" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata"
    }
  }
}

6.8. Get a Job Execution

6.8.1. Description

Get metadata about a job execution. Information like where a job was run, its process exit code, etc.

6.8.2. Endpoint

GET /api/v3/jobs/{id}/execution

6.8.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 8. /api/v3/jobs/{id}/execution
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

hostName

String

The host name of the Genie node responsible for the job

Size must be between 1 and 1024 inclusive

false

processId

Number

The id of the job client process on the Genie node

true

checkDelay

Number

The amount of time in milliseconds between checks of the job status by Genie

Must be at least 1

true

timeout

String

The date (UTC ISO8601 with millis) when the job will be killed by Genie due to timeout

true

exitCode

Number

The job client process exit code after the job is done

true

memory

Number

The amount of memory (in MB) allocated to the job client

Must be at least 1

true

Relation Description

self

URI for this job execution

job

The job associated with this execution

request

The job request that spawned this execution

metadata

The job metadata information for this job

output

The output URI for the job

status

The current status of the job

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1082

{
  "id" : "77016686-c8ac-49bb-bf89-2ab337127aa9",
  "created" : "2019-01-09T23:02:05.209Z",
  "updated" : "2019-01-09T23:02:05.630Z",
  "hostName" : "travis-job-a1bcf952-fa25-46a7-b653-1c19d38918ff",
  "processId" : 6471,
  "checkDelay" : 500,
  "timeout" : "2019-01-16T23:02:05.444+0000",
  "exitCode" : 0,
  "memory" : 1024,
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution"
    },
    "job" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9"
    },
    "request" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request"
    },
    "output" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output"
    },
    "status" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status"
    },
    "metadata" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata"
    }
  }
}

6.9. Get Job Metadata

6.9.1. Description

Get metadata about a job beyond core information. Information like where a job was submitted from, how large its output files were, etc.

6.9.2. Endpoint

GET /api/v3/jobs/{id}/metadata

6.9.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 9. /api/v3/jobs/{id}/metadata
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

clientHost

String

The host name of the client that submitted the job to Genie

true

userAgent

String

The user agent string that was passed to Genie on job request

true

numAttachments

Number

The number of attachments sent to Genie with the job request

true

totalSizeOfAttachments

Number

The total size of all attachments sent to Genie with the job request. In bytes.

true

stdOutSize

Number

The final size of the stdout file after a job is completed. In bytes.

true

stdErrSize

Number

The final size of the stderr file after a job is completed. In bytes.

true

Relation Description

self

URI for this job metadata

job

The job associated with this execution

request

The job request that spawned this execution

execution

The job execution information for this job

output

The output URI for the job

status

The current status of the job

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1039

{
  "id" : "77016686-c8ac-49bb-bf89-2ab337127aa9",
  "created" : "2019-01-09T23:02:05.209Z",
  "updated" : "2019-01-09T23:02:05.630Z",
  "clientHost" : "127.0.0.1",
  "userAgent" : null,
  "numAttachments" : 0,
  "totalSizeOfAttachments" : 0,
  "stdOutSize" : 12,
  "stdErrSize" : 0,
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/metadata"
    },
    "job" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9"
    },
    "request" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/request"
    },
    "output" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/output"
    },
    "status" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/status"
    },
    "execution" : {
      "href" : "https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/execution"
    }
  }
}

6.10. Get the Cluster a Job Ran On

6.10.1. Description

Get the metadata about the cluster which was selected to run the job based on the cluster and command criteria in the job request.

6.10.2. Endpoint

GET /api/v3/jobs/{id}/cluster

6.10.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 10. /api/v3/jobs/{id}/cluster
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/cluster' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/cluster'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED]

Must not be null

false

dependencies

Array

The dependencies for the cluster

true

Relation Description

self

URI for this cluster

commands

Get all the commands this cluster can use

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/cluster HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1375

{
  "id" : "cluster1",
  "created" : "2019-01-09T23:02:04.983Z",
  "updated" : "2019-01-09T23:02:05.088Z",
  "version" : "1.0",
  "user" : "genie",
  "name" : "Local laptop",
  "description" : null,
  "metadata" : null,
  "tags" : [ "localhost", "genie.id:cluster1", "genie.name:Local laptop" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/config1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/config2" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/dep1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/dep2" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/setupfile",
  "status" : "UP",
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/clusters/cluster1"
    },
    "commands" : {
      "href" : "https://genie.example.com/api/v3/clusters/cluster1/commands{?status}",
      "templated" : true
    }
  }
}

6.11. Get the Command a Job Executed

6.11.1. Description

Get the metadata about the command which was selected to be executed by the job based on the cluster and command criteria in the job request.

6.11.2. Endpoint

GET /api/v3/jobs/{id}/command

6.11.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 11. /api/v3/jobs/{id}/command
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/command' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/command'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

executable

String

The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop

Must not be empty. Size must be between 0 and 255 inclusive

false

checkDelay

Number

The amount of time (in milliseconds) to delay between checks of the jobs using this command

Must be at least 1

false

memory

Number

The default amount of memory (in MB) that should be allocated for instances of this command client

Must be at least 1

true

dependencies

Array

The dependencies for the command

true

Relation Description

self

URI for this command

applications

Get all the applications this command depends on

clusters

Get all clusters this command is available on

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/command HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1686

{
  "id" : "cmd1",
  "created" : "2019-01-09T23:02:05.045Z",
  "updated" : "2019-01-09T23:02:05.069Z",
  "version" : "1.0",
  "user" : "genie",
  "name" : "Unix Bash command",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.name:Unix Bash command", "bash", "genie.id:cmd1" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cmd1/config1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cmd1/config2", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cmd1/GB18030.txt" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/dep1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cluster1/dep2" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/cmd1/setupfile",
  "status" : "ACTIVE",
  "executable" : "/bin/bash",
  "checkDelay" : 500,
  "memory" : null,
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/commands/cmd1"
    },
    "applications" : {
      "href" : "https://genie.example.com/api/v3/commands/cmd1/applications"
    },
    "clusters" : {
      "href" : "https://genie.example.com/api/v3/commands/cmd1/clusters{?status}",
      "templated" : true
    }
  }
}

6.12. Get the Applications a Job Command Used

6.12.1. Description

Get the list of applications that were used by the command selected by job to execute.

6.12.2. Endpoint

GET /api/v3/jobs/{id}/applications

6.12.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 12. /api/v3/jobs/{id}/applications
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/applications' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/applications'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

[]

Array

The applications for the job

false

None

HTTP Messages
Request
GET /api/v3/jobs/77016686-c8ac-49bb-bf89-2ab337127aa9/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 2674

[ {
  "id" : "app1",
  "created" : "2019-01-09T23:02:04.862Z",
  "updated" : "2019-01-09T23:02:04.862Z",
  "version" : "1.0",
  "user" : "genie",
  "name" : "Application 1",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:app1", "genie.name:Application 1" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app1/config1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app1/config2" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app1/dep1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app1/dep2" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app1/setupfile",
  "status" : "ACTIVE",
  "type" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/applications/app1"
  }, {
    "rel" : "commands",
    "href" : "https://genie.example.com/api/v3/applications/app1/commands{?status}"
  } ]
}, {
  "id" : "app2",
  "created" : "2019-01-09T23:02:04.930Z",
  "updated" : "2019-01-09T23:02:04.930Z",
  "version" : "1.0",
  "user" : "genie",
  "name" : "Application 2",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:app2", "genie.name:Application 2" ],
  "configs" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app2/config1", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app2/config2" ],
  "dependencies" : [ "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app2/dep2", "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app2/dep1" ],
  "setupFile" : "/home/travis/build/Netflix/genie/genie-web/build/resources/test/com/netflix/genie/web/controllers/JobRestControllerIntegrationTests/app2/setupfile",
  "status" : "ACTIVE",
  "type" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/applications/app2"
  }, {
    "rel" : "commands",
    "href" : "https://genie.example.com/api/v3/applications/app2/commands{?status}"
  } ]
} ]

7. Applications API

7.1. Create an Application

7.1.1. Description

Create a new application in the system.

7.1.2. Endpoint

POST /api/v3/applications

The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique.

7.1.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters

None

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

type

String

The type of application this is (e.g. hadoop, presto, spark). Can be used to group.

true

status

String

The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

dependencies

Array

The dependencies for the application

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : "Spark for Genie",
  "metadata" : null,
  "tags" : [ "type:spark", "ver:1.5.1" ],
  "configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
  "dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
  "setupFile" : "s3://mybucket/spark/1.5.1/setup-spark.sh",
  "status" : "ACTIVE",
  "type" : "spark"
}'
HTTPie
$ echo '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : "Spark for Genie",
  "metadata" : null,
  "tags" : [ "type:spark", "ver:1.5.1" ],
  "configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
  "dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
  "setupFile" : "s3://mybucket/spark/1.5.1/setup-spark.sh",
  "status" : "ACTIVE",
  "type" : "spark"
}' | http POST 'https://genie.example.com/api/v3/applications' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers
Name Description

Location

The URI

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/applications HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 448

{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : "Spark for Genie",
  "metadata" : null,
  "tags" : [ "type:spark", "ver:1.5.1" ],
  "configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
  "dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
  "setupFile" : "s3://mybucket/spark/1.5.1/setup-spark.sh",
  "status" : "ACTIVE",
  "type" : "spark"
}
Response
HTTP/1.1 201 Created
X-Application-Context: genie:integration,db,db-h2:0
Location: https://genie.example.com/api/v3/applications/5afa092f-9a6c-433e-9959-dbe4e819f394

7.2. Get an Application

7.2.1. Description

Get the metadata about an application in the system.

7.2.2. Endpoint

GET /api/v3/applications/{id}

7.2.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 13. /api/v3/applications/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/5afa092f-9a6c-433e-9959-dbe4e819f394' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/5afa092f-9a6c-433e-9959-dbe4e819f394'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

type

String

The type of application this is (e.g. hadoop, presto, spark). Can be used to group.

true

status

String

The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

dependencies

Array

The dependencies for the application

true

Relation Description

self

URI for this application

commands

Get all the commands using this application

HTTP Messages
Request
GET /api/v3/applications/5afa092f-9a6c-433e-9959-dbe4e819f394 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 906

{
  "id" : "5afa092f-9a6c-433e-9959-dbe4e819f394",
  "created" : "2019-01-09T23:02:26.171Z",
  "updated" : "2019-01-09T23:02:26.171Z",
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : "Spark for Genie",
  "metadata" : null,
  "tags" : [ "type:spark", "genie.id:5afa092f-9a6c-433e-9959-dbe4e819f394", "ver:1.5.1", "genie.name:spark" ],
  "configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
  "dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
  "setupFile" : "s3://mybucket/spark/1.5.1/setup-spark.sh",
  "status" : "ACTIVE",
  "type" : "spark",
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/applications/5afa092f-9a6c-433e-9959-dbe4e819f394"
    },
    "commands" : {
      "href" : "https://genie.example.com/api/v3/applications/5afa092f-9a6c-433e-9959-dbe4e819f394/commands{?status}",
      "templated" : true
    }
  }
}

7.3. Find Applications

7.3.1. Description

Find applications using various query parameters.

7.3.2. Endpoint

GET /api/v3/applications

7.3.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters
Parameter Description

page

The page number to get. Default to 0.

size

The size of the page to get. Default to 64.

sort

The fields to sort the results by. Defaults to 'updated,desc'.

name

The name of the applications to find. Use % to perform a regex like query

user

The user of the applications to find. Use % to perform a regex like query

status

The status(es) of the applications to find. Can have multiple. Options: [ACTIVE, DEPRECATED, INACTIVE]

tag

The tag(s) of the applications to find. Can have multiple.

type

The type of the applications to find. Use % to perform a regex like query

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications?status=ACTIVE&status=DEPRECATED' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications?status=ACTIVE&status=DEPRECATED'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

_links

Object

Links to other resources.

false

page

Object

The result page information.

false

page.size

Number

The number of elements in this page result.

false

page.totalElements

Number

The total number of elements this search result could return.

false

page.totalPages

Number

The total number of pages there could be at the current page size.

false

page.number

Number

The current page number.

false

_embedded.applicationList

Array

The found applications.

false

Relation Description

self

The current search

first

The first page for this search

prev

The previous page for this search

next

The next page for this search

last

The last page for this search

HTTP Messages
Request
GET /api/v3/applications?status=ACTIVE&status=DEPRECATED HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 6382

{
  "_embedded" : {
    "applicationList" : [ {
      "id" : "9334d07f-6c09-4d8b-86c4-88543e124442",
      "created" : "2019-01-09T23:02:25.360Z",
      "updated" : "2019-01-09T23:02:25.360Z",
      "version" : "1.0.0",
      "user" : "genieUser7",
      "name" : "hive",
      "description" : "Hive 1.0.0 for Genie",
      "metadata" : null,
      "tags" : [ "genie.name:hive", "type:hive", "ver:1.0.0", "genie.id:9334d07f-6c09-4d8b-86c4-88543e124442" ],
      "configs" : [ "s3://mybucket/hive/hive-env.sh", "s3://mybucket/hive/hive-log4j.properties" ],
      "dependencies" : [ "s3://mybucket/hive/hive-1.0.0.tar.gz" ],
      "setupFile" : "s3://mybucket/hive/setup-hive.sh",
      "status" : "ACTIVE",
      "type" : "hive",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/applications/9334d07f-6c09-4d8b-86c4-88543e124442"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/applications/9334d07f-6c09-4d8b-86c4-88543e124442/commands{?status}",
          "templated" : true
        }
      }
    }, {
      "id" : "fbff0348-abf4-4811-a83b-258064b48b02",
      "created" : "2019-01-09T23:02:25.338Z",
      "updated" : "2019-01-09T23:02:25.338Z",
      "version" : "0.4.0",
      "user" : "genieUser6",
      "name" : "spark",
      "description" : "Pig 0.15.0 for Genie",
      "metadata" : null,
      "tags" : [ "genie.id:fbff0348-abf4-4811-a83b-258064b48b02", "ver:0.15.0", "type:pig", "genie.name:spark" ],
      "configs" : [ "s3://mybucket/pig/pig.properties" ],
      "dependencies" : [ "s3://mybucket/pig/pig-0.15.0.tar.gz" ],
      "setupFile" : "s3://mybucket/pig/setup-pig.sh",
      "status" : "ACTIVE",
      "type" : "pig",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/applications/fbff0348-abf4-4811-a83b-258064b48b02"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/applications/fbff0348-abf4-4811-a83b-258064b48b02/commands{?status}",
          "templated" : true
        }
      }
    }, {
      "id" : "e8ddba2d-a1b2-47e2-8bd4-5f14dd7a8055",
      "created" : "2019-01-09T23:02:25.307Z",
      "updated" : "2019-01-09T23:02:25.307Z",
      "version" : "1.3.1",
      "user" : "genieUser5",
      "name" : "spark",
      "description" : "Spark 1.3.1 for Genie",
      "metadata" : null,
      "tags" : [ "genie.id:e8ddba2d-a1b2-47e2-8bd4-5f14dd7a8055", "type:spark", "ver:1.3.1", "genie.name:spark" ],
      "configs" : [ "s3://mybucket/spark/spark-env.sh" ],
      "dependencies" : [ "s3://mybucket/spark/spark-1.3.1.tar.gz" ],
      "setupFile" : "s3://mybucket/spark/setup-spark.sh",
      "status" : "DEPRECATED",
      "type" : "spark",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/applications/e8ddba2d-a1b2-47e2-8bd4-5f14dd7a8055"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/applications/e8ddba2d-a1b2-47e2-8bd4-5f14dd7a8055/commands{?status}",
          "templated" : true
        }
      }
    }, {
      "id" : "fdc1aaa3-1a52-4a6f-843a-692efba1cc3f",
      "created" : "2019-01-09T23:02:25.291Z",
      "updated" : "2019-01-09T23:02:25.291Z",
      "version" : "1.4.0",
      "user" : "genieUser4",
      "name" : "spark",
      "description" : "Spark 1.4.0 for Genie",
      "metadata" : null,
      "tags" : [ "genie.id:fdc1aaa3-1a52-4a6f-843a-692efba1cc3f", "type:spark", "ver:1.4.0", "genie.name:spark" ],
      "configs" : [ "s3://mybucket/spark/spark-env.sh" ],
      "dependencies" : [ "s3://mybucket/spark/spark-1.4.0.tar.gz" ],
      "setupFile" : "s3://mybucket/spark/setup-spark.sh",
      "status" : "DEPRECATED",
      "type" : "spark",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/applications/fdc1aaa3-1a52-4a6f-843a-692efba1cc3f"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/applications/fdc1aaa3-1a52-4a6f-843a-692efba1cc3f/commands{?status}",
          "templated" : true
        }
      }
    }, {
      "id" : "03317fc0-2bc3-4935-8874-261b5a6a44d4",
      "created" : "2019-01-09T23:02:25.250Z",
      "updated" : "2019-01-09T23:02:25.250Z",
      "version" : "1.5.0",
      "user" : "genieUser2",
      "name" : "spark",
      "description" : "Spark 1.5.0 for Genie",
      "metadata" : null,
      "tags" : [ "genie.id:03317fc0-2bc3-4935-8874-261b5a6a44d4", "type:spark", "ver:1.5.0", "genie.name:spark" ],
      "configs" : [ "s3://mybucket/spark/spark-env.sh" ],
      "dependencies" : [ "s3://mybucket/spark/spark-1.5.0.tar.gz" ],
      "setupFile" : "s3://mybucket/spark/setup-spark.sh",
      "status" : "ACTIVE",
      "type" : "spark",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/applications/03317fc0-2bc3-4935-8874-261b5a6a44d4"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/applications/03317fc0-2bc3-4935-8874-261b5a6a44d4/commands{?status}",
          "templated" : true
        }
      }
    }, {
      "id" : "d7c8ee01-ec77-4853-bfb8-9c0e74fe7546",
      "created" : "2019-01-09T23:02:25.225Z",
      "updated" : "2019-01-09T23:02:25.225Z",
      "version" : "1.5.1",
      "user" : "genieUser1",
      "name" : "spark",
      "description" : "Spark 1.5.1 for Genie",
      "metadata" : null,
      "tags" : [ "genie.id:d7c8ee01-ec77-4853-bfb8-9c0e74fe7546", "type:spark", "ver:1.5.1", "genie.name:spark" ],
      "configs" : [ "s3://mybucket/spark/spark-env.sh" ],
      "dependencies" : [ "s3://mybucket/spark/spark-1.5.1.tar.gz" ],
      "setupFile" : "s3://mybucket/spark/setup-spark.sh",
      "status" : "ACTIVE",
      "type" : "spark",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/applications/d7c8ee01-ec77-4853-bfb8-9c0e74fe7546"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/applications/d7c8ee01-ec77-4853-bfb8-9c0e74fe7546/commands{?status}",
          "templated" : true
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/applications?status=ACTIVE&status=DEPRECATED{&name,user,tag,type}",
      "templated" : true
    }
  },
  "page" : {
    "size" : 10,
    "totalElements" : 6,
    "totalPages" : 1,
    "number" : 0
  }
}

7.4. Update an Entire Application

7.4.1. Description

Update the metadata about an application. This method does a complete replace of the resource. Usual flow is to call to get the most recent state then update what you want and call this API with the result.

For more fine grained control call the PATCH API.

7.4.2. Endpoint

PUT /api/v3/applications/{id}

7.4.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 14. /api/v3/applications/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

type

String

The type of application this is (e.g. hadoop, presto, spark). Can be used to group.

true

status

String

The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

dependencies

Array

The dependencies for the application

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : "17fe15a3-e73d-4625-8635-dd25e3c9add7",
  "created" : "2019-01-09T23:02:26.685Z",
  "updated" : "2019-01-09T23:02:26.685Z",
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:17fe15a3-e73d-4625-8635-dd25e3c9add7", "genie.name:spark" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "type" : null
}'
HTTPie
$ echo '{
  "id" : "17fe15a3-e73d-4625-8635-dd25e3c9add7",
  "created" : "2019-01-09T23:02:26.685Z",
  "updated" : "2019-01-09T23:02:26.685Z",
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:17fe15a3-e73d-4625-8635-dd25e3c9add7", "genie.name:spark" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "type" : null
}' | http PUT 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 434

{
  "id" : "17fe15a3-e73d-4625-8635-dd25e3c9add7",
  "created" : "2019-01-09T23:02:26.685Z",
  "updated" : "2019-01-09T23:02:26.685Z",
  "version" : "1.5.1",
  "user" : "genie",
  "name" : "spark",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:17fe15a3-e73d-4625-8635-dd25e3c9add7", "genie.name:spark" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "type" : null
}
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.5. Update Parts of an Application

7.5.1. Description

Update the metadata about an application using JSON Patch. This will ONLY update the fields you request be changed.

For more information about JSON Patch RFC see the website.

7.5.2. Endpoint

PATCH /api/v3/applications/{id}

7.5.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 15. /api/v3/applications/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of patches to apply

false

[].op

String

Patch operation to perform.

add, remove, replace, copy, move, test

false

[].path

String

The json path to operate on. e.g. /user

false

[].from

String

The json path to move or copy from. e.g. /user

true

[].value

String

The json value to put at the path for an add, replace or test

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7' -i -X PATCH -H 'Content-Type: application/json;charset=UTF-8' -d '[ {
  "op" : "replace",
  "path" : "/user",
  "value" : "edc298d1-2e39-41d5-93c9-21f7344b0ad0"
} ]'
HTTPie
$ echo '[ {
  "op" : "replace",
  "path" : "/user",
  "value" : "edc298d1-2e39-41d5-93c9-21f7344b0ad0"
} ]' | http PATCH 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PATCH /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 98

[ {
  "op" : "replace",
  "path" : "/user",
  "value" : "edc298d1-2e39-41d5-93c9-21f7344b0ad0"
} ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.6. Delete All Applications

7.6.1. Description

Delete all the applications currently stored in the system.

7.6.2. Endpoint

DELETE /api/v3/applications

7.6.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.7. Delete an Application

7.7.1. Description

Delete an application currently configured in the system.

7.7.2. Endpoint

DELETE /api/v3/applications/{id}

7.7.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 16. /api/v3/applications/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/dad2b9e7-4a6e-44ee-9678-bf41def505a3' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/dad2b9e7-4a6e-44ee-9678-bf41def505a3'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/applications/dad2b9e7-4a6e-44ee-9678-bf41def505a3 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.8. Get Configs for Application

7.8.1. Description

Get the configuration file locations for an application.

7.8.2. Endpoint

GET /api/v3/applications/{id}/configs

7.8.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 17. /api/v3/applications/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

None

HTTP Messages
Request
GET /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 82

[ "535a65c6-4ce6-4c3b-b3bc-e6c2ef1e1263", "44f9b19f-4223-489b-a65a-b5abfe0cdef7" ]

7.9. Add Configs to Application

7.9.1. Description

Add configuration file locations to an existing application. Configurations are stored as a set so any duplicates will be ignored.

7.9.2. Endpoint

POST /api/v3/applications/{id}/configs

7.9.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 18. /api/v3/applications/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "535a65c6-4ce6-4c3b-b3bc-e6c2ef1e1263", "44f9b19f-4223-489b-a65a-b5abfe0cdef7" ]'
HTTPie
$ echo '[ "535a65c6-4ce6-4c3b-b3bc-e6c2ef1e1263", "44f9b19f-4223-489b-a65a-b5abfe0cdef7" ]' | http POST 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "535a65c6-4ce6-4c3b-b3bc-e6c2ef1e1263", "44f9b19f-4223-489b-a65a-b5abfe0cdef7" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.10. Update Configs for an Application

7.10.1. Description

Update the configuration file locations for an existing application. Stored as a set so duplicates are ignored.

7.10.2. Endpoint

PUT /api/v3/applications/{id}/configs

7.10.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 19. /api/v3/applications/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "8080ff08-4d14-49bc-a0a4-78dc2a1595fa" ]'
HTTPie
$ echo '[ "8080ff08-4d14-49bc-a0a4-78dc2a1595fa" ]' | http PUT 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "8080ff08-4d14-49bc-a0a4-78dc2a1595fa" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.11. Remove All Configs From an Application

7.11.1. Description

Remove all the configuration file locations for an existing application.

7.11.2. Endpoint

DELETE /api/v3/applications/{id}/configs

7.11.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 20. /api/v3/applications/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.12. Get Dependencies For an Application

7.12.1. Description

Get the dependency file locations for an application.

7.12.2. Endpoint

GET /api/v3/applications/{id}/dependencies

7.12.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 21. /api/v3/applications/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

None

HTTP Messages
Request
GET /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 82

[ "c1dc3f73-0d80-4d8d-a487-8869c7db26a9", "78e568b2-f87f-4e68-bc23-23a19a830de3" ]

7.13. Add Dependencies to Application

7.13.1. Description

Add dependency file locations to an existing application. Stored as a set so all duplicates are ignored.

7.13.2. Endpoint

POST /api/v3/applications/{id}/dependencies

7.13.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 22. /api/v3/applications/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "78e568b2-f87f-4e68-bc23-23a19a830de3", "c1dc3f73-0d80-4d8d-a487-8869c7db26a9" ]'
HTTPie
$ echo '[ "78e568b2-f87f-4e68-bc23-23a19a830de3", "c1dc3f73-0d80-4d8d-a487-8869c7db26a9" ]' | http POST 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "78e568b2-f87f-4e68-bc23-23a19a830de3", "c1dc3f73-0d80-4d8d-a487-8869c7db26a9" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.14. Update Dependencies for an Application

7.14.1. Description

Update the dependency file locations for an existing application

7.14.2. Endpoint

PUT /api/v3/applications/{id}/dependencies

7.14.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 23. /api/v3/applications/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "869101af-3457-424f-aa4d-70abe88a2ce8" ]'
HTTPie
$ echo '[ "869101af-3457-424f-aa4d-70abe88a2ce8" ]' | http PUT 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "869101af-3457-424f-aa4d-70abe88a2ce8" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.15. Remove All Dependencies From an Application

7.15.1. Description

Remove all the dependency file locations for an existing application.

7.15.2. Endpoint

DELETE /api/v3/applications/{id}/dependencies

7.15.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 24. /api/v3/applications/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.16. Get Tags For an Application

7.16.1. Description

Get the tags for an application.

7.16.2. Endpoint

GET /api/v3/applications/{id}/tags

7.16.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 25. /api/v3/applications/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

None

HTTP Messages
Request
GET /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 151

[ "genie.id:17fe15a3-e73d-4625-8635-dd25e3c9add7", "038ae79b-11d0-4fc2-89e2-69c8f8c71c61", "7b41243d-d85f-469b-8df2-12524af41cb1", "genie.name:spark" ]

7.17. Add Tags to Application

7.17.1. Description

Add tags to an existing application. Stored as a set so all duplicates are ignored.

genie.id:{id} and genie.name:{name} tags are automatically added by the service.

7.17.2. Endpoint

POST /api/v3/applications/{id}/tags

7.17.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 26. /api/v3/applications/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "7b41243d-d85f-469b-8df2-12524af41cb1", "038ae79b-11d0-4fc2-89e2-69c8f8c71c61" ]'
HTTPie
$ echo '[ "7b41243d-d85f-469b-8df2-12524af41cb1", "038ae79b-11d0-4fc2-89e2-69c8f8c71c61" ]' | http POST 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "7b41243d-d85f-469b-8df2-12524af41cb1", "038ae79b-11d0-4fc2-89e2-69c8f8c71c61" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.18. Update Tags for an Application

7.18.1. Description

Update the tags for an existing application.

The genie.id:{id} and genie.name:{name} tags can’t be removed. They will automatically be added back by the system.

7.18.2. Endpoint

PUT /api/v3/applications/{id}/tags

7.18.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 27. /api/v3/applications/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "f4a6c927-ab83-4602-9e96-5c4852bf4583" ]'
HTTPie
$ echo '[ "f4a6c927-ab83-4602-9e96-5c4852bf4583" ]' | http PUT 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "f4a6c927-ab83-4602-9e96-5c4852bf4583" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.19. Remove All Tags From Application

7.19.1. Description

Remove all the tags for an existing application

The genie.id:{id} and genie.name:{name} tags will NOT be removed by this operation

7.19.2. Endpoint

DELETE /api/v3/applications/{id}/tags

7.19.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 28. /api/v3/applications/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.20. Remove Tag From Application

7.20.1. Description

Remove a tag from an existing application.

You can’t remove the genie.id:{id} and genie.name:{name} tags. They will just be added back by the system

7.20.2. Endpoint

DELETE /api/v3/applications/{id}/tags/{tag}

7.20.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 29. /api/v3/applications/{id}/tags/{tag}
Parameter Description

id

The resource id

tag

The tag to remove

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags/59bde33a-1c41-4ba2-87a1-c139c3408d03' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags/59bde33a-1c41-4ba2-87a1-c139c3408d03'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/tags/59bde33a-1c41-4ba2-87a1-c139c3408d03 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

7.21. Get the Commands that Use an Application

7.21.1. Description

Search the commands that use the given application.

7.21.2. Endpoint

GET /api/v3/applications/{id}/commands

7.21.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 30. /api/v3/applications/{id}/commands
Parameter Description

id

The resource id

Query Parameters
Parameter Description

status

The status of commands to search for

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/commands?status=ACTIVE&status=INACTIVE' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/commands?status=ACTIVE&status=INACTIVE'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

[]

Array

The list of commands found

false

None

HTTP Messages
Request
GET /api/v3/applications/17fe15a3-e73d-4625-8635-dd25e3c9add7/commands?status=ACTIVE&status=INACTIVE HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1064

[ {
  "id" : "ced05121-e9b8-4f0b-aba4-3c841036edd0",
  "created" : "2019-01-09T23:02:26.902Z",
  "updated" : "2019-01-09T23:02:26.956Z",
  "version" : "86ee6a03-03cd-4c36-8d12-524c0bbfea01",
  "user" : "86ee6a03-03cd-4c36-8d12-524c0bbfea01",
  "name" : "86ee6a03-03cd-4c36-8d12-524c0bbfea01",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:ced05121-e9b8-4f0b-aba4-3c841036edd0", "genie.name:86ee6a03-03cd-4c36-8d12-524c0bbfea01" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "executable" : "86ee6a03-03cd-4c36-8d12-524c0bbfea01",
  "checkDelay" : 1000,
  "memory" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/commands/ced05121-e9b8-4f0b-aba4-3c841036edd0"
  }, {
    "rel" : "applications",
    "href" : "https://genie.example.com/api/v3/commands/ced05121-e9b8-4f0b-aba4-3c841036edd0/applications"
  }, {
    "rel" : "clusters",
    "href" : "https://genie.example.com/api/v3/commands/ced05121-e9b8-4f0b-aba4-3c841036edd0/clusters{?status}"
  } ]
} ]

8. Clusters API

8.1. Create a Cluster

8.1.1. Description

Create a new cluster in the system.

8.1.2. Endpoint

POST /api/v3/clusters

The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique.

8.1.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters

None

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED]

Must not be null

false

dependencies

Array

The dependencies for the cluster

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "UP"
}'
HTTPie
$ echo '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "UP"
}' | http POST 'https://genie.example.com/api/v3/clusters' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers
Name Description

Location

The URI

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/clusters HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 266

{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "UP"
}
Response
HTTP/1.1 201 Created
X-Application-Context: genie:integration,db,db-h2:0
Location: https://genie.example.com/api/v3/clusters/9356f750-5bbe-4b98-ac54-90cb3a6ef465

8.2. Get a Cluster

8.2.1. Description

Get the metadata about a cluster in the system.

8.2.2. Endpoint

GET /api/v3/clusters/{id}

8.2.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 31. /api/v3/clusters/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/9356f750-5bbe-4b98-ac54-90cb3a6ef465' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/9356f750-5bbe-4b98-ac54-90cb3a6ef465'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED]

Must not be null

false

dependencies

Array

The dependencies for the cluster

true

Relation Description

self

URI for this cluster

commands

Get all the commands this cluster can use

HTTP Messages
Request
GET /api/v3/clusters/9356f750-5bbe-4b98-ac54-90cb3a6ef465 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 716

{
  "id" : "9356f750-5bbe-4b98-ac54-90cb3a6ef465",
  "created" : "2019-01-09T23:02:27.862Z",
  "updated" : "2019-01-09T23:02:27.862Z",
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.name:h2prod", "genie.id:9356f750-5bbe-4b98-ac54-90cb3a6ef465" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "UP",
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/clusters/9356f750-5bbe-4b98-ac54-90cb3a6ef465"
    },
    "commands" : {
      "href" : "https://genie.example.com/api/v3/clusters/9356f750-5bbe-4b98-ac54-90cb3a6ef465/commands{?status}",
      "templated" : true
    }
  }
}

8.3. Find Clusters

8.3.1. Description

Find clusters using various query parameters.

8.3.2. Endpoint

GET /api/v3/clusters

8.3.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters
Parameter Description

page

The page number to get. Default to 0.

size

The size of the page to get. Default to 64.

sort

The fields to sort the results by. Defaults to 'updated,desc'.

name

The name of the clusters to find. Use % to perform a regex like query

status

The status(es) of the clusters to find. Can have multiple. Options: [UP, OUT_OF_SERVICE, TERMINATED]

tag

The tag(s) of the clusters to find. Can have multiple.

minUpdateTime

The minimum time (in milliseconds from epoch UTC) that the cluster(s) were updated at.

maxUpdateTime

The maximum time (in milliseconds from epoch UTC) that the cluster(s) were updated at.

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters?tag=genie.id%3A96f7c17a-5190-4900-bd49-506a14ac77dc' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters?tag=genie.id%3A96f7c17a-5190-4900-bd49-506a14ac77dc'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

_links

Object

Links to other resources.

false

page

Object

The result page information.

false

page.size

Number

The number of elements in this page result.

false

page.totalElements

Number

The total number of elements this search result could return.

false

page.totalPages

Number

The total number of pages there could be at the current page size.

false

page.number

Number

The current page number.

false

_embedded.clusterList

Array

The found clusters.

false

Relation Description

self

The current search

first

The first page for this search

prev

The previous page for this search

next

The next page for this search

last

The last page for this search

HTTP Messages
Request
GET /api/v3/clusters?tag=genie.id%3A96f7c17a-5190-4900-bd49-506a14ac77dc HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1297

{
  "_embedded" : {
    "clusterList" : [ {
      "id" : "96f7c17a-5190-4900-bd49-506a14ac77dc",
      "created" : "2019-01-09T23:02:31.136Z",
      "updated" : "2019-01-09T23:02:31.136Z",
      "version" : "ad3e9b9f-cb94-4a5a-b56e-a1215caef6ab",
      "user" : "c0fb9753-6aac-49d7-a727-4076d47f3d40",
      "name" : "813831b2-ddea-4dda-9558-aecafd88c8a9",
      "description" : null,
      "metadata" : null,
      "tags" : [ "genie.name:813831b2-ddea-4dda-9558-aecafd88c8a9", "genie.id:96f7c17a-5190-4900-bd49-506a14ac77dc" ],
      "configs" : [ ],
      "dependencies" : [ ],
      "setupFile" : null,
      "status" : "UP",
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/clusters/96f7c17a-5190-4900-bd49-506a14ac77dc"
        },
        "commands" : {
          "href" : "https://genie.example.com/api/v3/clusters/96f7c17a-5190-4900-bd49-506a14ac77dc/commands{?status}",
          "templated" : true
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/clusters?tag=genie.id:96f7c17a-5190-4900-bd49-506a14ac77dc{&name,status,minUpdateTime,maxUpdateTime}",
      "templated" : true
    }
  },
  "page" : {
    "size" : 64,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

8.4. Update an Entire Cluster

8.4.1. Description

Update the metadata about a cluster. This method does a complete replace of the resource. Usual flow is to call to get the most recent state then update what you want and call this API with the result.

For more fine grained control call the PATCH API.

8.4.2. Endpoint

PUT /api/v3/clusters/{id}

8.4.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 32. /api/v3/clusters/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED]

Must not be null

false

dependencies

Array

The dependencies for the cluster

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : "c7935178-7790-4f5d-bbb4-f6b192c9df53",
  "created" : "2019-01-09T23:02:33.666Z",
  "updated" : "2019-01-09T23:02:33.666Z",
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:c7935178-7790-4f5d-bbb4-f6b192c9df53", "genie.name:h2prod" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "OUT_OF_SERVICE"
}'
HTTPie
$ echo '{
  "id" : "c7935178-7790-4f5d-bbb4-f6b192c9df53",
  "created" : "2019-01-09T23:02:33.666Z",
  "updated" : "2019-01-09T23:02:33.666Z",
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:c7935178-7790-4f5d-bbb4-f6b192c9df53", "genie.name:h2prod" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "OUT_OF_SERVICE"
}' | http PUT 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 425

{
  "id" : "c7935178-7790-4f5d-bbb4-f6b192c9df53",
  "created" : "2019-01-09T23:02:33.666Z",
  "updated" : "2019-01-09T23:02:33.666Z",
  "version" : "2.7.1",
  "user" : "genie",
  "name" : "h2prod",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:c7935178-7790-4f5d-bbb4-f6b192c9df53", "genie.name:h2prod" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "OUT_OF_SERVICE"
}
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.5. Update Parts of a Cluster

8.5.1. Description

Update the metadata about a cluster using JSON Patch. This will ONLY update the fields you request be changed.

For more information about JSON Patch RFC see the website.

8.5.2. Endpoint

PATCH /api/v3/clusters/{id}

8.5.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 33. /api/v3/clusters/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of patches to apply

false

[].op

String

Patch operation to perform.

add, remove, replace, copy, move, test

false

[].path

String

The json path to operate on. e.g. /user

false

[].from

String

The json path to move or copy from. e.g. /user

true

[].value

String

The json value to put at the path for an add, replace or test

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53' -i -X PATCH -H 'Content-Type: application/json;charset=UTF-8' -d '[ {
  "op" : "replace",
  "path" : "/name",
  "value" : "d1903d5f-1f36-4bb5-9e64-f110b4ac1441"
} ]'
HTTPie
$ echo '[ {
  "op" : "replace",
  "path" : "/name",
  "value" : "d1903d5f-1f36-4bb5-9e64-f110b4ac1441"
} ]' | http PATCH 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PATCH /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 98

[ {
  "op" : "replace",
  "path" : "/name",
  "value" : "d1903d5f-1f36-4bb5-9e64-f110b4ac1441"
} ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.6. Delete All Clusters

8.6.1. Description

Delete all the clusters currently stored in the system.

You won’t be able to delete any cluster that has run any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, etc)

8.6.2. Endpoint

DELETE /api/v3/clusters

8.6.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.7. Delete a Cluster

8.7.1. Description

Delete a cluster currently configured in the system.

You won’t be able to delete a cluster that has run any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, etc)

8.7.2. Endpoint

DELETE /api/v3/clusters/{id}

8.7.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 34. /api/v3/clusters/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/44ef0a0e-33ce-4e1d-ba27-83eba7f875b5' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/44ef0a0e-33ce-4e1d-ba27-83eba7f875b5'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/44ef0a0e-33ce-4e1d-ba27-83eba7f875b5 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.8. Get Configs for Cluster

8.8.1. Description

Get the configuration file locations for a cluster.

8.8.2. Endpoint

GET /api/v3/clusters/{id}/configs

8.8.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 35. /api/v3/clusters/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

None

HTTP Messages
Request
GET /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 82

[ "d0fcc482-344b-47ea-9998-32a3f07d2e32", "3c6a6bee-baeb-45c3-ad7a-e960af4b77dc" ]

8.9. Add Configs to Cluster

8.9.1. Description

Add configuration file locations to an existing cluster.

Configurations are stored as a set so any duplicates will be ignored.

8.9.2. Endpoint

POST /api/v3/clusters/{id}/configs

8.9.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 36. /api/v3/clusters/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "d0fcc482-344b-47ea-9998-32a3f07d2e32", "3c6a6bee-baeb-45c3-ad7a-e960af4b77dc" ]'
HTTPie
$ echo '[ "d0fcc482-344b-47ea-9998-32a3f07d2e32", "3c6a6bee-baeb-45c3-ad7a-e960af4b77dc" ]' | http POST 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "d0fcc482-344b-47ea-9998-32a3f07d2e32", "3c6a6bee-baeb-45c3-ad7a-e960af4b77dc" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.10. Update Configs for a Cluster

8.10.1. Description

Update the configuration file locations for an existing cluster. Stored as a set so duplicates are ignored.

8.10.2. Endpoint

PUT /api/v3/clusters/{id}/configs

8.10.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 37. /api/v3/clusters/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "e92577ec-71cd-4814-81a7-ff8dcdbc0d74" ]'
HTTPie
$ echo '[ "e92577ec-71cd-4814-81a7-ff8dcdbc0d74" ]' | http PUT 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "e92577ec-71cd-4814-81a7-ff8dcdbc0d74" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.11. Remove All Configs From a Cluster

8.11.1. Description

Remove all the configuration file locations for an existing cluster.

8.11.2. Endpoint

DELETE /api/v3/clusters/{id}/configs

8.11.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 38. /api/v3/clusters/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.12. Get Dependencies For an Cluster

8.12.1. Description

Get the dependency file locations for a cluster.

8.12.2. Endpoint

GET /api/v3/clusters/{id}/dependencies

8.12.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 39. /api/v3/clusters/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

None

HTTP Messages
Request
GET /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 82

[ "dead629d-3f36-4f54-b451-5c90e3cec476", "82184876-17bf-4186-95f6-e5c1daeda64d" ]

8.13. Add Dependencies to Cluster

8.13.1. Description

Add dependency file locations to an existing cluster. Stored as a set so all duplicates are ignored.

8.13.2. Endpoint

POST /api/v3/clusters/{id}/dependencies

8.13.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 40. /api/v3/clusters/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "82184876-17bf-4186-95f6-e5c1daeda64d", "dead629d-3f36-4f54-b451-5c90e3cec476" ]'
HTTPie
$ echo '[ "82184876-17bf-4186-95f6-e5c1daeda64d", "dead629d-3f36-4f54-b451-5c90e3cec476" ]' | http POST 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "82184876-17bf-4186-95f6-e5c1daeda64d", "dead629d-3f36-4f54-b451-5c90e3cec476" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.14. Update Dependencies for an Cluster

8.14.1. Description

Update the dependency file locations for an existing cluster

8.14.2. Endpoint

PUT /api/v3/clusters/{id}/dependencies

8.14.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 41. /api/v3/clusters/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "4a0942c0-801b-4bc5-921a-66557a9ee0b6" ]'
HTTPie
$ echo '[ "4a0942c0-801b-4bc5-921a-66557a9ee0b6" ]' | http PUT 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "4a0942c0-801b-4bc5-921a-66557a9ee0b6" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.15. Remove All Dependencies From an Cluster

8.15.1. Description

Remove all the dependency file locations for an existing cluster.

8.15.2. Endpoint

DELETE /api/v3/clusters/{id}/dependencies

8.15.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 42. /api/v3/clusters/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.16. Get Tags For a Cluster

8.16.1. Description

Get the tags for a cluster.

8.16.2. Endpoint

GET /api/v3/clusters/{id}/tags

8.16.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 43. /api/v3/clusters/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

None

HTTP Messages
Request
GET /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 152

[ "genie.id:c7935178-7790-4f5d-bbb4-f6b192c9df53", "genie.name:h2prod", "1f4a3d26-ccd5-4929-bfaa-abe5947d1df1", "c70a4428-874b-4fd5-8506-10889d184719" ]

8.17. Add Tags to Cluster

8.17.1. Description

Add tags to an existing cluster. Stored as a set so all duplicates are ignored.

genie.id:{id} and genie.name:{name} tags are automatically added by the service.

8.17.2. Endpoint

POST /api/v3/clusters/{id}/tags

8.17.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 44. /api/v3/clusters/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "c70a4428-874b-4fd5-8506-10889d184719", "1f4a3d26-ccd5-4929-bfaa-abe5947d1df1" ]'
HTTPie
$ echo '[ "c70a4428-874b-4fd5-8506-10889d184719", "1f4a3d26-ccd5-4929-bfaa-abe5947d1df1" ]' | http POST 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "c70a4428-874b-4fd5-8506-10889d184719", "1f4a3d26-ccd5-4929-bfaa-abe5947d1df1" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.18. Update Tags for a Cluster

8.18.1. Description

Update the tags for an existing cluster.

The genie.id:{id} and genie.name:{name} tags can’t be removed. They will automatically be added back by the system.

8.18.2. Endpoint

PUT /api/v3/clusters/{id}/tags

8.18.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 45. /api/v3/clusters/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "f924a796-6fd7-4f6b-825e-7957d39e7cef" ]'
HTTPie
$ echo '[ "f924a796-6fd7-4f6b-825e-7957d39e7cef" ]' | http PUT 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "f924a796-6fd7-4f6b-825e-7957d39e7cef" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.19. Remove All Tags From Cluster

8.19.1. Description

Remove all the tags for an existing cluster

The genie.id:{id} and genie.name:{name} tags will NOT be removed by this operation

8.19.2. Endpoint

DELETE /api/v3/clusters/{id}/tags

8.19.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 46. /api/v3/clusters/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.20. Remove Tag From Cluster

8.20.1. Description

Remove a tag from an existing cluster.

You can’t remove the genie.id:{id} and genie.name:{name} tags. They will just be added back by the system

8.20.2. Endpoint

DELETE /api/v3/clusters/{id}/tags/{tag}

8.20.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 47. /api/v3/clusters/{id}/tags/{tag}
Parameter Description

id

The resource id

tag

The tag to remove

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags/53afb1ec-5fdc-47c0-9677-19e5078fdb17' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags/53afb1ec-5fdc-47c0-9677-19e5078fdb17'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/tags/53afb1ec-5fdc-47c0-9677-19e5078fdb17 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.21. Add Commands to a Cluster

8.21.1. Description

Append new commands (as array of their ID’s) to the existing list of commands the cluster can run.

The order of the commands is important. This represents priority order if two commands with same tags match for the given cluster the one earlier in the list will be selected.
The commands for the ID’s must already exist in the system

8.21.2. Endpoint

POST /api/v3/clusters/{id}/commands

8.21.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 48. /api/v3/clusters/{id}/commands
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of command ids (in preferred order) to append to the existing list of commands

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "11f91ab6-614d-46ba-bc7e-1f8556cf7d23", "0b174095-f992-4113-b675-137d25d894fb" ]'
HTTPie
$ echo '[ "11f91ab6-614d-46ba-bc7e-1f8556cf7d23", "0b174095-f992-4113-b675-137d25d894fb" ]' | http POST 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "11f91ab6-614d-46ba-bc7e-1f8556cf7d23", "0b174095-f992-4113-b675-137d25d894fb" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.22. Get the Commands for a Cluster

8.22.1. Description

Get the commands currently linked to the cluster. This indicates the command is able to be run on that cluster.

The order of the commands is important. This represents priority order if two commands with same tags match for the given cluster the one earlier in the list will be selected.

8.22.2. Endpoint

GET /api/v3/clusters/{id}/commands

8.22.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 49. /api/v3/clusters/{id}/commands
Parameter Description

id

The resource id

Query Parameters
Parameter Description

status

The status of commands to search for

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands?status=INACTIVE' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands?status=INACTIVE'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

[]

Array

The list of commands found

false

None

HTTP Messages
Request
GET /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands?status=INACTIVE HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1066

[ {
  "id" : "a52e3034-3a47-4868-a736-28f2aab00535",
  "created" : "2019-01-09T23:02:28.673Z",
  "updated" : "2019-01-09T23:02:28.673Z",
  "version" : "c46577ef-64ee-4da0-af2c-d248a553b7ed",
  "user" : "c46577ef-64ee-4da0-af2c-d248a553b7ed",
  "name" : "c46577ef-64ee-4da0-af2c-d248a553b7ed",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:a52e3034-3a47-4868-a736-28f2aab00535", "genie.name:c46577ef-64ee-4da0-af2c-d248a553b7ed" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "executable" : "c46577ef-64ee-4da0-af2c-d248a553b7ed",
  "checkDelay" : 1000,
  "memory" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/commands/a52e3034-3a47-4868-a736-28f2aab00535"
  }, {
    "rel" : "applications",
    "href" : "https://genie.example.com/api/v3/commands/a52e3034-3a47-4868-a736-28f2aab00535/applications"
  }, {
    "rel" : "clusters",
    "href" : "https://genie.example.com/api/v3/commands/a52e3034-3a47-4868-a736-28f2aab00535/clusters{?status}"
  } ]
} ]

8.23. Set Commands for a Cluster

8.23.1. Description

Set the commands (as array of their ID’s) that can run on the cluster.

The order of the commands is important. This represents priority order if two commands with same tags match for the given cluster the one earlier in the list will be selected.
The commands for the ID’s must already exist in the system

8.23.2. Endpoint

PUT /api/v3/clusters/{id}/commands

8.23.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 50. /api/v3/clusters/{id}/commands
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of command ids (in preferred order) to replace the existing list of commands

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "6b85bb7e-2f2c-4bec-aefe-f34dc5c286d1", "cc410082-6f65-4692-92ac-52c761c0f0f3" ]'
HTTPie
$ echo '[ "6b85bb7e-2f2c-4bec-aefe-f34dc5c286d1", "cc410082-6f65-4692-92ac-52c761c0f0f3" ]' | http PUT 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "6b85bb7e-2f2c-4bec-aefe-f34dc5c286d1", "cc410082-6f65-4692-92ac-52c761c0f0f3" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.24. Remove All Commands From a Cluster

8.24.1. Description

Remove all the commands currently associated with the given cluster.

This does NOT delete the command(s) from the system just unlinks them

8.24.2. Endpoint

DELETE /api/v3/clusters/{id}/commands

8.24.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 51. /api/v3/clusters/{id}/commands
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

8.25. Remove A Single Command From a Cluster

8.25.1. Description

Remove the identified command from the cluster.

This does NOT delete the command from the system just unlinks it

8.25.2. Endpoint

DELETE /api/v3/clusters/{id}/commands/{commandId}

8.25.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 52. /api/v3/clusters/{id}/commands/{commandId}
Parameter Description

id

The resource id

commandId

The id of the command to remove

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands/41f32474-f04c-4a22-a06a-7b0a420a822c' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands/41f32474-f04c-4a22-a06a-7b0a420a822c'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/clusters/c7935178-7790-4f5d-bbb4-f6b192c9df53/commands/41f32474-f04c-4a22-a06a-7b0a420a822c HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9. Commands API

9.1. Create a Command

9.1.1. Description

Create a new command in the system.

9.1.2. Endpoint

POST /api/v3/commands

The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique.

9.1.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters

None

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

executable

String

The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop

Must not be empty. Size must be between 0 and 255 inclusive

false

checkDelay

Number

The amount of time (in milliseconds) to delay between checks of the jobs using this command

Must be at least 1

false

memory

Number

The default amount of memory (in MB) that should be allocated for instances of this command client

Must be at least 1

true

dependencies

Array

The dependencies for the command

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : "Hive command v1.0.0",
  "metadata" : null,
  "tags" : [ "tag:bar", "tag:foo" ],
  "configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
  "dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : 1024
}'
HTTPie
$ echo '{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : "Hive command v1.0.0",
  "metadata" : null,
  "tags" : [ "tag:bar", "tag:foo" ],
  "configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
  "dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : 1024
}' | http POST 'https://genie.example.com/api/v3/commands' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers
Name Description

Location

The URI

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/commands HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 485

{
  "id" : null,
  "created" : null,
  "updated" : null,
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : "Hive command v1.0.0",
  "metadata" : null,
  "tags" : [ "tag:bar", "tag:foo" ],
  "configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
  "dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : 1024
}
Response
HTTP/1.1 201 Created
X-Application-Context: genie:integration,db,db-h2:0
Location: https://genie.example.com/api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93

9.2. Get a Command

9.2.1. Description

Get the metadata about a command in the system.

9.2.2. Endpoint

GET /api/v3/commands/{id}

9.2.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 53. /api/v3/commands/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

executable

String

The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop

Must not be empty. Size must be between 0 and 255 inclusive

false

checkDelay

Number

The amount of time (in milliseconds) to delay between checks of the jobs using this command

Must be at least 1

false

memory

Number

The default amount of memory (in MB) that should be allocated for instances of this command client

Must be at least 1

true

dependencies

Array

The dependencies for the command

true

Relation Description

self

URI for this command

applications

Get all the applications this command depends on

clusters

Get all clusters this command is available on

HTTP Messages
Request
GET /api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1073

{
  "id" : "83cbf198-b5f0-4b6e-a378-9c8b22b5de93",
  "created" : "2019-01-09T23:02:37.455Z",
  "updated" : "2019-01-09T23:02:37.455Z",
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : "Hive command v1.0.0",
  "metadata" : null,
  "tags" : [ "genie.id:83cbf198-b5f0-4b6e-a378-9c8b22b5de93", "tag:bar", "tag:foo", "genie.name:hive" ],
  "configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
  "dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : 1024,
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93"
    },
    "applications" : {
      "href" : "https://genie.example.com/api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93/applications"
    },
    "clusters" : {
      "href" : "https://genie.example.com/api/v3/commands/83cbf198-b5f0-4b6e-a378-9c8b22b5de93/clusters{?status}",
      "templated" : true
    }
  }
}

9.3. Find Commands

9.3.1. Description

Find commands using various query parameters.

9.3.2. Endpoint

GET /api/v3/commands

9.3.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters
Parameter Description

page

The page number to get. Default to 0.

size

The size of the page to get. Default to 64.

sort

The fields to sort the results by. Defaults to 'updated,desc'.

name

The name of the commands to find. Use % to perform a regex like query

user

The user of the commands to find. Use % to perform a regex like query

status

The status(es) of the commands to find. Can have multiple. Options: [ACTIVE, DEPRECATED, INACTIVE]

tag

The tag(s) of the commands to find. Can have multiple.

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands?status=ACTIVE&status=INACTIVE' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands?status=ACTIVE&status=INACTIVE'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

_links

Object

Links to other resources.

false

page

Object

The result page information.

false

page.size

Number

The number of elements in this page result.

false

page.totalElements

Number

The total number of elements this search result could return.

false

page.totalPages

Number

The total number of pages there could be at the current page size.

false

page.number

Number

The current page number.

false

_embedded.commandList

Array

The found commands.

false

Relation Description

self

The current search

first

The first page for this search

prev

The previous page for this search

next

The next page for this search

last

The last page for this search

HTTP Messages
Request
GET /api/v3/commands?status=ACTIVE&status=INACTIVE HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 2719

{
  "_embedded" : {
    "commandList" : [ {
      "id" : "01774407-6e6b-4f44-afd6-a769033c0c97",
      "created" : "2019-01-09T23:02:36.432Z",
      "updated" : "2019-01-09T23:02:36.432Z",
      "version" : "4a52f932-e149-4120-bed3-b42efd6c60c0",
      "user" : "bab86e6a-8238-45dc-aa16-cd43db08c585",
      "name" : "f99941d4-fe2d-4fa9-81cc-15c55c703766",
      "description" : null,
      "metadata" : null,
      "tags" : [ "genie.id:01774407-6e6b-4f44-afd6-a769033c0c97", "genie.name:f99941d4-fe2d-4fa9-81cc-15c55c703766" ],
      "configs" : [ ],
      "dependencies" : [ ],
      "setupFile" : null,
      "status" : "INACTIVE",
      "executable" : "7336c966-bdfa-4ed4-aee5-14b62a3c0769",
      "checkDelay" : 10000,
      "memory" : null,
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/commands/01774407-6e6b-4f44-afd6-a769033c0c97"
        },
        "applications" : {
          "href" : "https://genie.example.com/api/v3/commands/01774407-6e6b-4f44-afd6-a769033c0c97/applications"
        },
        "clusters" : {
          "href" : "https://genie.example.com/api/v3/commands/01774407-6e6b-4f44-afd6-a769033c0c97/clusters{?status}",
          "templated" : true
        }
      }
    }, {
      "id" : "83256177-6aa2-4f62-8d55-742a9511e6fa",
      "created" : "2019-01-09T23:02:34.405Z",
      "updated" : "2019-01-09T23:02:34.405Z",
      "version" : "1d09f31e-43dd-4811-b29e-7d593e2d387a",
      "user" : "1f740638-10fe-4038-a60e-0e5113dc4e24",
      "name" : "d9a8ef20-dab8-499d-9882-9099b06d3fb7",
      "description" : null,
      "metadata" : null,
      "tags" : [ "genie.name:d9a8ef20-dab8-499d-9882-9099b06d3fb7", "genie.id:83256177-6aa2-4f62-8d55-742a9511e6fa" ],
      "configs" : [ ],
      "dependencies" : [ ],
      "setupFile" : null,
      "status" : "ACTIVE",
      "executable" : "d23f30d6-b3a4-4e9c-bee7-eb5da3bc7820",
      "checkDelay" : 10000,
      "memory" : null,
      "_links" : {
        "self" : {
          "href" : "https://genie.example.com/api/v3/commands/83256177-6aa2-4f62-8d55-742a9511e6fa"
        },
        "applications" : {
          "href" : "https://genie.example.com/api/v3/commands/83256177-6aa2-4f62-8d55-742a9511e6fa/applications"
        },
        "clusters" : {
          "href" : "https://genie.example.com/api/v3/commands/83256177-6aa2-4f62-8d55-742a9511e6fa/clusters{?status}",
          "templated" : true
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://genie.example.com/api/v3/commands?status=ACTIVE&status=INACTIVE{&name,user,tag}",
      "templated" : true
    }
  },
  "page" : {
    "size" : 64,
    "totalElements" : 2,
    "totalPages" : 1,
    "number" : 0
  }
}

9.4. Update an Entire Command

9.4.1. Description

Update the metadata about a command. This method does a complete replace of the resource. Usual flow is to call to get the most recent state then update what you want and call this API with the result.

For more fine grained control call the PATCH API.

9.4.2. Endpoint

PUT /api/v3/commands/{id}

9.4.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 54. /api/v3/commands/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

id

String

The id. If not set the system will set one.

Size must be between 0 and 255 inclusive

true

created

String

The UTC time of creation. Set by system. ISO8601 format including milliseconds.

true

updated

String

The UTC time of last update. Set by system. ISO8601 format including milliseconds.

true

name

String

The name

Must not be empty. Size must be between 0 and 255 inclusive

false

user

String

The user

Must not be empty. Size must be between 0 and 255 inclusive

false

version

String

The version

Must not be empty. Size must be between 0 and 255 inclusive

false

description

String

Any description

Size must be between 0 and 1000 inclusive

true

metadata

Object

Any semi-structured metadata. Must be valid JSON

true

tags

Array

The tags

true

setupFile

String

A location for any setup that needs to be done when installing

Size must be between 0 and 1024 inclusive

true

configs

Array

Any configuration files needed for the resource

true

status

String

The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE]

Must not be null

false

executable

String

The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop

Must not be empty. Size must be between 0 and 255 inclusive

false

checkDelay

Number

The amount of time (in milliseconds) to delay between checks of the jobs using this command

Must be at least 1

false

memory

Number

The default amount of memory (in MB) that should be allocated for instances of this command client

Must be at least 1

true

dependencies

Array

The dependencies for the command

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '{
  "id" : "3f6cad07-8b05-427b-b083-5cb622ae83b1",
  "created" : "2019-01-09T23:02:37.804Z",
  "updated" : "2019-01-09T23:02:37.804Z",
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:3f6cad07-8b05-427b-b083-5cb622ae83b1", "genie.name:hive" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : null
}'
HTTPie
$ echo '{
  "id" : "3f6cad07-8b05-427b-b083-5cb622ae83b1",
  "created" : "2019-01-09T23:02:37.804Z",
  "updated" : "2019-01-09T23:02:37.804Z",
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:3f6cad07-8b05-427b-b083-5cb622ae83b1", "genie.name:hive" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : null
}' | http PUT 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 498

{
  "id" : "3f6cad07-8b05-427b-b083-5cb622ae83b1",
  "created" : "2019-01-09T23:02:37.804Z",
  "updated" : "2019-01-09T23:02:37.804Z",
  "version" : "1.0.0",
  "user" : "genie",
  "name" : "hive",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:3f6cad07-8b05-427b-b083-5cb622ae83b1", "genie.name:hive" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "INACTIVE",
  "executable" : "/apps/hive/bin/hive",
  "checkDelay" : 10000,
  "memory" : null
}
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.5. Update Parts of a Command

9.5.1. Description

Update the metadata about a command using JSON Patch. This will ONLY update the fields you request be changed.

For more information about JSON Patch RFC see the website.

9.5.2. Endpoint

PATCH /api/v3/commands/{id}

9.5.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 55. /api/v3/commands/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of patches to apply

false

[].op

String

Patch operation to perform.

add, remove, replace, copy, move, test

false

[].path

String

The json path to operate on. e.g. /user

false

[].from

String

The json path to move or copy from. e.g. /user

true

[].value

String

The json value to put at the path for an add, replace or test

true

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1' -i -X PATCH -H 'Content-Type: application/json;charset=UTF-8' -d '[ {
  "op" : "replace",
  "path" : "/name",
  "value" : "2de229f0-d76c-4c94-825a-552e51b79791"
} ]'
HTTPie
$ echo '[ {
  "op" : "replace",
  "path" : "/name",
  "value" : "2de229f0-d76c-4c94-825a-552e51b79791"
} ]' | http PATCH 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PATCH /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 98

[ {
  "op" : "replace",
  "path" : "/name",
  "value" : "2de229f0-d76c-4c94-825a-552e51b79791"
} ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.6. Delete All Commands

9.6.1. Description

Delete all the commands currently stored in the system.

You won’t be able to delete any command that has been used by any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, what it ran, etc)

9.6.2. Endpoint

DELETE /api/v3/commands

9.6.3. API Docs

Request Documentation
Headers

None

Path Parameters

None

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.7. Delete a Command

9.7.1. Description

Delete a command currently configured in the system.

You won’t be able to delete a command that has been used by any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, what it ran, etc)

9.7.2. Endpoint

DELETE /api/v3/commands/{id}

9.7.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 56. /api/v3/commands/{id}
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/fddcf1e7-8ef6-4b82-9bce-e7fd4dc4f9cf' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/fddcf1e7-8ef6-4b82-9bce-e7fd4dc4f9cf'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/fddcf1e7-8ef6-4b82-9bce-e7fd4dc4f9cf HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.8. Get Configs for Command

9.8.1. Description

Get the configuration file locations for a command.

9.8.2. Endpoint

GET /api/v3/commands/{id}/configs

9.8.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 57. /api/v3/commands/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

None

HTTP Messages
Request
GET /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 82

[ "b12baac2-1460-4be8-90e9-af9b27bbac02", "ce6317b3-df9e-4056-8f32-6b40eac6f301" ]

9.9. Add Configs to Command

9.9.1. Description

Add configuration file locations to an existing command.

Configurations are stored as a set so any duplicates will be ignored.

9.9.2. Endpoint

POST /api/v3/commands/{id}/configs

9.9.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 58. /api/v3/commands/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "b12baac2-1460-4be8-90e9-af9b27bbac02", "ce6317b3-df9e-4056-8f32-6b40eac6f301" ]'
HTTPie
$ echo '[ "b12baac2-1460-4be8-90e9-af9b27bbac02", "ce6317b3-df9e-4056-8f32-6b40eac6f301" ]' | http POST 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "b12baac2-1460-4be8-90e9-af9b27bbac02", "ce6317b3-df9e-4056-8f32-6b40eac6f301" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.10. Update Configs for a Command

9.10.1. Description

Update the configuration file locations for an existing command. Stored as a set so duplicates are ignored.

9.10.2. Endpoint

PUT /api/v3/commands/{id}/configs

9.10.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 59. /api/v3/commands/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of configuration file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "029f9e69-05ed-4a53-8e2d-cccdceae01de" ]'
HTTPie
$ echo '[ "029f9e69-05ed-4a53-8e2d-cccdceae01de" ]' | http PUT 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "029f9e69-05ed-4a53-8e2d-cccdceae01de" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.11. Remove All Configs From a Command

9.11.1. Description

Remove all the configuration file locations for an existing command.

9.11.2. Endpoint

DELETE /api/v3/commands/{id}/configs

9.11.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 60. /api/v3/commands/{id}/configs
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.12. Get Dependencies For an Command

9.12.1. Description

Get the dependency file locations for an command.

9.12.2. Endpoint

GET /api/v3/commands/{id}/dependencies

9.12.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 61. /api/v3/commands/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

None

HTTP Messages
Request
GET /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 82

[ "27ed0d56-9022-42cb-9ff5-5037d331d2b5", "b4369c54-c9d9-467b-974f-ce77b85217b4" ]

9.13. Add Dependencies to Command

9.13.1. Description

Add dependency file locations to an existing command. Stored as a set so all duplicates are ignored.

9.13.2. Endpoint

POST /api/v3/commands/{id}/dependencies

9.13.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 62. /api/v3/commands/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "b4369c54-c9d9-467b-974f-ce77b85217b4", "27ed0d56-9022-42cb-9ff5-5037d331d2b5" ]'
HTTPie
$ echo '[ "b4369c54-c9d9-467b-974f-ce77b85217b4", "27ed0d56-9022-42cb-9ff5-5037d331d2b5" ]' | http POST 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "b4369c54-c9d9-467b-974f-ce77b85217b4", "27ed0d56-9022-42cb-9ff5-5037d331d2b5" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.14. Update Dependencies for an Command

9.14.1. Description

Update the dependency file locations for an existing command

9.14.2. Endpoint

PUT /api/v3/commands/{id}/dependencies

9.14.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 63. /api/v3/commands/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of dependency file locations

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "7d9d80ca-97a8-4477-9ae0-a53593ce386f" ]'
HTTPie
$ echo '[ "7d9d80ca-97a8-4477-9ae0-a53593ce386f" ]' | http PUT 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "7d9d80ca-97a8-4477-9ae0-a53593ce386f" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.15. Remove All Dependencies From an Command

9.15.1. Description

Remove all the dependency file locations for an existing command.

9.15.2. Endpoint

DELETE /api/v3/commands/{id}/dependencies

9.15.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 64. /api/v3/commands/{id}/dependencies
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.16. Get Tags For a Command

9.16.1. Description

Get the tags for a command.

9.16.2. Endpoint

GET /api/v3/commands/{id}/tags

9.16.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 65. /api/v3/commands/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags'
Response Documentation
Headers
Name Description

Content-Type

application/json

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

None

HTTP Messages
Request
GET /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/json;charset=UTF-8
Content-Length: 150

[ "genie.id:3f6cad07-8b05-427b-b083-5cb622ae83b1", "genie.name:hive", "da281d4b-bc25-4503-a16b-0ba3ba073ebc", "de5dd184-b1b9-47c6-85ca-003a844059eb" ]

9.17. Add Tags to Command

9.17.1. Description

Add tags to an existing command. Stored as a set so all duplicates are ignored.

genie.id:{id} and genie.name:{name} tags are automatically added by the service.

9.17.2. Endpoint

POST /api/v3/commands/{id}/tags

9.17.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 66. /api/v3/commands/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "de5dd184-b1b9-47c6-85ca-003a844059eb", "da281d4b-bc25-4503-a16b-0ba3ba073ebc" ]'
HTTPie
$ echo '[ "de5dd184-b1b9-47c6-85ca-003a844059eb", "da281d4b-bc25-4503-a16b-0ba3ba073ebc" ]' | http POST 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "de5dd184-b1b9-47c6-85ca-003a844059eb", "da281d4b-bc25-4503-a16b-0ba3ba073ebc" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.18. Update Tags for a Command

9.18.1. Description

Update the tags for an existing command.

The genie.id:{id} and genie.name:{name} tags can’t be removed. They will automatically be added back by the system.

9.18.2. Endpoint

PUT /api/v3/commands/{id}/tags

9.18.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 67. /api/v3/commands/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of tags

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "9c85dbec-bf29-4f48-8bf4-9260f8e23201" ]'
HTTPie
$ echo '[ "9c85dbec-bf29-4f48-8bf4-9260f8e23201" ]' | http PUT 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 42

[ "9c85dbec-bf29-4f48-8bf4-9260f8e23201" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.19. Remove All Tags From Command

9.19.1. Description

Remove all the tags for an existing command

The genie.id:{id} and genie.name:{name} tags will NOT be removed by this operation

9.19.2. Endpoint

DELETE /api/v3/commands/{id}/tags

9.19.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 68. /api/v3/commands/{id}/tags
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.20. Remove Tag From Command

9.20.1. Description

Remove a tag from an existing command.

You can’t remove the genie.id:{id} and genie.name:{name} tags. They will just be added back by the system

9.20.2. Endpoint

DELETE /api/v3/commands/{id}/tags/{tag}

9.20.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 69. /api/v3/commands/{id}/tags/{tag}
Parameter Description

id

The resource id

tag

The tag to remove

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags/58042c32-501e-4ca5-8f20-6100e3809a43' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags/58042c32-501e-4ca5-8f20-6100e3809a43'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/tags/58042c32-501e-4ca5-8f20-6100e3809a43 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.21. Add Applications to a Command

9.21.1. Description

Add new applications (as array of their ID’s) to the existing set of applications the command depends on

The applications for the ID’s must already exist in the system

9.21.2. Endpoint

POST /api/v3/commands/{id}/applications

9.21.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 70. /api/v3/commands/{id}/applications
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of application ids to add to existing set of applications

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications' -i -X POST -H 'Content-Type: application/json;charset=UTF-8' -d '[ "d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2", "57dd9ef4-1700-4edd-9e0f-a7b308c54009" ]'
HTTPie
$ echo '[ "d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2", "57dd9ef4-1700-4edd-9e0f-a7b308c54009" ]' | http POST 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
POST /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2", "57dd9ef4-1700-4edd-9e0f-a7b308c54009" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.22. Get the Applications for a Command

9.22.1. Description

Get the applications the command currently depends on. These are the applications that will be installed at runtime when a job is run with the given command

9.22.2. Endpoint

GET /api/v3/commands/{id}/applications

9.22.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 71. /api/v3/commands/{id}/applications
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

[]

Array

The set of applications this command depends on

false

None

HTTP Messages
Request
GET /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 2540

[ {
  "id" : "d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2",
  "created" : "2019-01-09T23:02:36.852Z",
  "updated" : "2019-01-09T23:02:36.852Z",
  "version" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "user" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "name" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.name:da247f24-1f92-47b9-9f2e-67d298515a91", "genie.id:d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "type" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/applications/d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2"
  }, {
    "rel" : "commands",
    "href" : "https://genie.example.com/api/v3/applications/d5e49e3f-e2bd-49a7-ac08-35aa5cb3a6f2/commands{?status}"
  } ]
}, {
  "id" : "57dd9ef4-1700-4edd-9e0f-a7b308c54009",
  "created" : "2019-01-09T23:02:36.861Z",
  "updated" : "2019-01-09T23:02:36.861Z",
  "version" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "user" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "name" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.name:da247f24-1f92-47b9-9f2e-67d298515a91", "genie.id:57dd9ef4-1700-4edd-9e0f-a7b308c54009" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "type" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/applications/57dd9ef4-1700-4edd-9e0f-a7b308c54009"
  }, {
    "rel" : "commands",
    "href" : "https://genie.example.com/api/v3/applications/57dd9ef4-1700-4edd-9e0f-a7b308c54009/commands{?status}"
  } ]
}, {
  "id" : "b8502178-f3ed-4df5-a36e-509c2125cbe8",
  "created" : "2019-01-09T23:02:36.915Z",
  "updated" : "2019-01-09T23:02:36.915Z",
  "version" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "user" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "name" : "da247f24-1f92-47b9-9f2e-67d298515a91",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.name:da247f24-1f92-47b9-9f2e-67d298515a91", "genie.id:b8502178-f3ed-4df5-a36e-509c2125cbe8" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "ACTIVE",
  "type" : null,
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/applications/b8502178-f3ed-4df5-a36e-509c2125cbe8"
  }, {
    "rel" : "commands",
    "href" : "https://genie.example.com/api/v3/applications/b8502178-f3ed-4df5-a36e-509c2125cbe8/commands{?status}"
  } ]
} ]

9.23. Set Applications for a Command

9.23.1. Description

Set the applications (as array of their ID’s) that are dependencies of the command.

The applications with the ID’s must already exist in the system

9.23.2. Endpoint

PUT /api/v3/commands/{id}/applications

9.23.3. API Docs

Request Documentation
Headers
Name Description

Content-Type

application/json

Path Parameters
Table 72. /api/v3/commands/{id}/applications
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields
Path Type Description Constraints Optional

[]

Array

Array of application ids to replace the existing set of applications with

false

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications' -i -X PUT -H 'Content-Type: application/json;charset=UTF-8' -d '[ "93656c61-7cc7-42ab-a411-13950b7c2941", "6825f8dd-79c9-412b-802b-691d9b72d344" ]'
HTTPie
$ echo '[ "93656c61-7cc7-42ab-a411-13950b7c2941", "6825f8dd-79c9-412b-802b-691d9b72d344" ]' | http PUT 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications' 'Content-Type:application/json;charset=UTF-8'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
PUT /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications HTTP/1.1
Content-Type: application/json;charset=UTF-8
Host: genie.example.com
Content-Length: 82

[ "93656c61-7cc7-42ab-a411-13950b7c2941", "6825f8dd-79c9-412b-802b-691d9b72d344" ]
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.24. Remove All Applications From a Command

9.24.1. Description

Remove all the applications currently set as dependencies of the command

This does NOT delete the application(s) from the system just unlinks them

9.24.2. Endpoint

DELETE /api/v3/commands/{id}/applications

9.24.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 73. /api/v3/commands/{id}/applications
Parameter Description

id

The resource id

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.25. Remove A Single Application From a Command

9.25.1. Description

Remove the identified application as a dependency of the command.

This does NOT delete the application from the system just un-links it

9.25.2. Endpoint

DELETE /api/v3/commands/{id}/applications/{applicationId}

9.25.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 74. /api/v3/commands/{id}/applications/{applicationId}
Parameter Description

id

The resource id

applicationId

The id of the application to remove

Query Parameters

None

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications/5f918f41-3f28-449c-90eb-4fb920f62d4a' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications/5f918f41-3f28-449c-90eb-4fb920f62d4a'
Response Documentation
Headers

None

Payload Fields

None

None

HTTP Messages
Request
DELETE /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/applications/5f918f41-3f28-449c-90eb-4fb920f62d4a HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
X-Application-Context: genie:integration,db,db-h2:0

9.26. Get the Clusters that Have Command Available

9.26.1. Description

Search the clusters that the given command is linked to.

9.26.2. Endpoint

GET /api/v3/applications/{id}/commands

9.26.3. API Docs

Request Documentation
Headers

None

Path Parameters
Table 75. /api/v3/commands/{id}/clusters
Parameter Description

id

The resource id

Query Parameters
Parameter Description

status

The status of clusters to search for

Payload Fields

None

Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/clusters?status=UP' -i
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/clusters?status=UP'
Response Documentation
Headers
Name Description

Content-Type

application/hal+json

Payload Fields
Path Type Description Constraints Optional

[]

Array

The list of clusters found

false

None

HTTP Messages
Request
GET /api/v3/commands/3f6cad07-8b05-427b-b083-5cb622ae83b1/clusters?status=UP HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
X-Application-Context: genie:integration,db,db-h2:0
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 819

[ {
  "id" : "efcebef8-20b8-4411-a9a5-4a354f29ab6a",
  "created" : "2019-01-09T23:02:37.237Z",
  "updated" : "2019-01-09T23:02:37.261Z",
  "version" : "422104b0-e988-4f89-bc50-1f54afdf07b2",
  "user" : "422104b0-e988-4f89-bc50-1f54afdf07b2",
  "name" : "422104b0-e988-4f89-bc50-1f54afdf07b2",
  "description" : null,
  "metadata" : null,
  "tags" : [ "genie.id:efcebef8-20b8-4411-a9a5-4a354f29ab6a", "genie.name:422104b0-e988-4f89-bc50-1f54afdf07b2" ],
  "configs" : [ ],
  "dependencies" : [ ],
  "setupFile" : null,
  "status" : "UP",
  "links" : [ {
    "rel" : "self",
    "href" : "https://genie.example.com/api/v3/clusters/efcebef8-20b8-4411-a9a5-4a354f29ab6a"
  }, {
    "rel" : "commands",
    "href" : "https://genie.example.com/api/v3/clusters/efcebef8-20b8-4411-a9a5-4a354f29ab6a/commands{?status}"
  } ]
} ]