PUT
/
spark
/
configurations
/
{id}
Update a job
curl --request PUT \
  --url https://{FUSION HOST}/api/spark/configurations/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "sparkConfig": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ],
  "type": "<string>"
}'
{
  "id": "<string>",
  "sparkConfig": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ],
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The name of the job configuration to modify.

Query Parameters

context
string

The app to which this job belongs.

Body

application/json

Response

200 - */*

OK

The response is of type object.