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>"
}
Modify a job’s configuration.
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>"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The name of the job configuration to modify.
The app to which this job belongs.
OK
The response is of type object
.
Was this page helpful?