Swift3 / Squadcast API V3 / Create or Update Deduplication Rules
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "rules": [
// {
// "expression": "<string>",
// "time_window": "<string>"
// },
// {
// "expression": "<string>",
// "time_window": "<string>"
// }
// ]
// }
let json = CkoJsonObject()!
json.update("rules[0].expression", value: "<string>")
json.update("rules[0].time_window", value: "<string>")
json.update("rules[1].expression", value: "<string>")
json.update("rules[1].time_window", value: "<string>")
http.setRequestHeader("Authorization", value: "")
http.setRequestHeader("Content-Type", value: "application/json")
var resp: CkoHttpResponse? = http.postJson3("https://api.squadcast.com/v3/services/:serviceID/deduplication-rules", contentType: "application/json", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
let sbResponseBody = CkoStringBuilder()!
resp!.getBodySb(sbResponseBody)
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
jResp.emitCompact = false
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = resp!.statusCode.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(resp!.header!)")
print("Failed.")
resp = nil
return
}
resp = nil
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": {
// "id": "5e905b9ffe3e978d6ac34cc9",
// "created_at": "2020-04-10T11:42:23.646Z",
// "updated_at": "2020-04-10T11:42:23.646Z",
// "deleted_at": null,
// "service_id": "5e8edb24668e003cb0b18ba1",
// "organization_id": "5d81d9187000fb6b9def7e32",
// "rules": [
// {
// "expression": "re(current.labels.alertname, \"^CPUThrottlingHigh.*\") && re(past.labels.alertname, \"^CPUThrottlingHigh.*\")",
// "time_window": 300
// },
// {
// "expression": "re(current.labels.alertname, \"^DeploymentReplicasNotUpdated.*\") && re(past.labels.alertname, \"^DeploymentReplicasNotUpdated.*\")",
// "time_window": 300
// }
// ]
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
var expression: String?
var time_window: Int
var Id: String? = jResp.string(of: "data.id")
var Created_at: String? = jResp.string(of: "data.created_at")
var Updated_at: String? = jResp.string(of: "data.updated_at")
var Deleted_at: String? = jResp.string(of: "data.deleted_at")
var Service_id: String? = jResp.string(of: "data.service_id")
var Organization_id: String? = jResp.string(of: "data.organization_id")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "data.rules").intValue
while i < count_i {
jResp.i = i
expression = jResp.string(of: "data.rules[i].expression")
time_window = jResp.int(of: "data.rules[i].time_window").intValue
i = i + 1
}
}
Curl Command
curl -X POST
-H "Authorization: "
-H "Content-Type: application/json"
-d '{
"rules": [
{
"expression": "<string>",
"time_window": "<string>"
},
{
"expression": "<string>",
"time_window": "<string>"
}
]
}'
https://api.squadcast.com/v3/services/:serviceID/deduplication-rules
Postman Collection Item JSON
{
"name": "Create or Update Deduplication Rules",
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
{
"key": "Authorization",
"value": ""
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"rules\": [\n {\n \"expression\": \"<string>\",\n \"time_window\": \"<string>\"\n },\n {\n \"expression\": \"<string>\",\n \"time_window\": \"<string>\"\n }\n ]\n}"
},
"url": {
"raw": "{{baseUrl}}/services/:serviceID/deduplication-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"deduplication-rules"
],
"variable": [
{
"key": "serviceID",
"value": "<string>",
"type": "string",
"description": "(Required) service id"
}
]
},
"description": "This endpoint creates or updates the deduplication rules for the given service.\nIf default rules not found it creates otherwise it updates the new rules.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `write` scope.\n"
},
"response": [
{
"name": "Created",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"rules\": [\n {\n \"expression\": \"re(current.labels.alertname, \\\"^CPUThrottlingHigh.*\\\") && re(past.labels.alertname, \\\"^CPUThrottlingHigh.*\\\")\",\n \"time_window\": 300\n },\n {\n \"expression\": \"re(current.labels.alertname, \\\"^DeploymentReplicasNotUpdated.*\\\") && re(past.labels.alertname, \\\"^DeploymentReplicasNotUpdated.*\\\")\",\n \"time_window\": 300\n }\n ]\n}"
},
"url": {
"raw": "{{baseUrl}}/services/:serviceID/deduplication-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"deduplication-rules"
],
"variable": [
{
"key": "serviceID"
}
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"data\": {\n \"id\": \"5e905b9ffe3e978d6ac34cc9\",\n \"created_at\": \"2020-04-10T11:42:23.646Z\",\n \"updated_at\": \"2020-04-10T11:42:23.646Z\",\n \"deleted_at\": null,\n \"service_id\": \"5e8edb24668e003cb0b18ba1\",\n \"organization_id\": \"5d81d9187000fb6b9def7e32\",\n \"rules\": [\n {\n \"expression\": \"re(current.labels.alertname, \\\"^CPUThrottlingHigh.*\\\") && re(past.labels.alertname, \\\"^CPUThrottlingHigh.*\\\")\",\n \"time_window\": 300\n },\n {\n \"expression\": \"re(current.labels.alertname, \\\"^DeploymentReplicasNotUpdated.*\\\") && re(past.labels.alertname, \\\"^DeploymentReplicasNotUpdated.*\\\")\",\n \"time_window\": 300\n }\n ]\n }\n}"
}
]
}