Delete a scale target
curl --request DELETE \
--url https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id} \
--header 'x-arklow-auth: <api-key>'import requests
url = "https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}"
headers = {"x-arklow-auth": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'x-arklow-auth': '<api-key>'}};
fetch('https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"x-arklow-auth: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("x-arklow-auth", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}")
.header("x-arklow-auth", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["x-arklow-auth"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"org_id": "<string>",
"name": "<string>",
"capacity_domain_id": "<string>",
"min_replicas": 1,
"max_replicas": 2,
"reconcile_pending": true,
"observability_degraded": true,
"binding_degraded": true,
"drift_contested": true,
"updated_at": "2023-11-07T05:31:56Z",
"credential_id": "<string>",
"kind": "baseten",
"config": {
"model_id": "<string>",
"deployment_id": "<string>"
},
"metric_source_query_id": "<string>",
"tag_projection_key": "<string>",
"tag_projection_value": "<string>",
"effective_min_replicas": 123,
"requested_effective_min_replicas": 123,
"last_written_at": "2023-11-07T05:31:56Z",
"last_write_outcome": "<string>",
"last_observed_replicas": 123,
"last_observed_at": "2023-11-07T05:31:56Z",
"last_error": "<string>",
"last_error_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z"
},
"errors": [
{
"code": "<string>",
"message": "<string>"
}
]
}Delete a scale target
DELETE
/
v1
/
orgs
/
{org_id}
/
scale-targets
/
{id}
Delete a scale target
curl --request DELETE \
--url https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id} \
--header 'x-arklow-auth: <api-key>'import requests
url = "https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}"
headers = {"x-arklow-auth": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'x-arklow-auth': '<api-key>'}};
fetch('https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"x-arklow-auth: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("x-arklow-auth", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}")
.header("x-arklow-auth", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arklow.io/v1/orgs/{org_id}/scale-targets/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["x-arklow-auth"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"org_id": "<string>",
"name": "<string>",
"capacity_domain_id": "<string>",
"min_replicas": 1,
"max_replicas": 2,
"reconcile_pending": true,
"observability_degraded": true,
"binding_degraded": true,
"drift_contested": true,
"updated_at": "2023-11-07T05:31:56Z",
"credential_id": "<string>",
"kind": "baseten",
"config": {
"model_id": "<string>",
"deployment_id": "<string>"
},
"metric_source_query_id": "<string>",
"tag_projection_key": "<string>",
"tag_projection_value": "<string>",
"effective_min_replicas": 123,
"requested_effective_min_replicas": 123,
"last_written_at": "2023-11-07T05:31:56Z",
"last_write_outcome": "<string>",
"last_observed_replicas": 123,
"last_observed_at": "2023-11-07T05:31:56Z",
"last_error": "<string>",
"last_error_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z"
},
"errors": [
{
"code": "<string>",
"message": "<string>"
}
]
}Authorizations
⌘I