Objective-C / MongoDB Atlas / Modify Cloud Backup Backup Policy
Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
http.DigestAuth = YES;
http.Login = @"username";
http.Password = @"password";
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "referenceHourOfDay": 12,
// "referenceMinuteOfHour": 30,
// "policies": [
// {
// "id": "5f8dc2299b9d310a7fde98e6",
// "policyItems": [
// {
// "id": "5f8dc2299b9d310a7fde98e7",
// "frequencyType": "hourly",
// "frequencyInterval": 6,
// "retentionValue": 2,
// "retentionUnit": "days"
// },
// {
// "id": "5f8dc2299b9d310a7fde98e9",
// "frequencyType": "weekly",
// "frequencyInterval": 1,
// "retentionValue": 3,
// "retentionUnit": "weeks"
// }
// ]
// }
// ],
// "updateSnapshots": true
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateInt: @"referenceHourOfDay" value: [NSNumber numberWithInt: 12]];
[json UpdateInt: @"referenceMinuteOfHour" value: [NSNumber numberWithInt: 30]];
[json UpdateString: @"policies[0].id" value: @"5f8dc2299b9d310a7fde98e6"];
[json UpdateString: @"policies[0].policyItems[0].id" value: @"5f8dc2299b9d310a7fde98e7"];
[json UpdateString: @"policies[0].policyItems[0].frequencyType" value: @"hourly"];
[json UpdateInt: @"policies[0].policyItems[0].frequencyInterval" value: [NSNumber numberWithInt: 6]];
[json UpdateInt: @"policies[0].policyItems[0].retentionValue" value: [NSNumber numberWithInt: 2]];
[json UpdateString: @"policies[0].policyItems[0].retentionUnit" value: @"days"];
[json UpdateString: @"policies[0].policyItems[1].id" value: @"5f8dc2299b9d310a7fde98e9"];
[json UpdateString: @"policies[0].policyItems[1].frequencyType" value: @"weekly"];
[json UpdateInt: @"policies[0].policyItems[1].frequencyInterval" value: [NSNumber numberWithInt: 1]];
[json UpdateInt: @"policies[0].policyItems[1].retentionValue" value: [NSNumber numberWithInt: 3]];
[json UpdateString: @"policies[0].policyItems[1].retentionUnit" value: @"weeks"];
[json UpdateBool: @"updateSnapshots" value: YES];
CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];
CkoHttpResponse *resp = [http PTextSb: @"PATCH" url: @"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/backup/schedule" textData: sbRequestBody charset: @"utf-8" contentType: @"application/json" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
Curl Command
curl -X PATCH
--digest -u 'username:password'
-d '{
"referenceHourOfDay": 12,
"referenceMinuteOfHour": 30,
"policies": [
{
"id": "5f8dc2299b9d310a7fde98e6",
"policyItems": [
{
"id": "5f8dc2299b9d310a7fde98e7",
"frequencyType": "hourly",
"frequencyInterval": 6,
"retentionValue": 2,
"retentionUnit": "days"
},
{
"id": "5f8dc2299b9d310a7fde98e9",
"frequencyType": "weekly",
"frequencyInterval": 1,
"retentionValue": 3,
"retentionUnit": "weeks"
}
]
}
],
"updateSnapshots": true
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/backup/schedule
Postman Collection Item JSON
{
"name": "Modify Cloud Backup Backup Policy",
"request": {
"method": "PATCH",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"referenceHourOfDay\": 12,\n \"referenceMinuteOfHour\": 30,\n \"policies\": [\n {\n \"id\": \"5f8dc2299b9d310a7fde98e6\",\n \"policyItems\": [\n {\n \"id\": \"5f8dc2299b9d310a7fde98e7\",\n \"frequencyType\": \"hourly\",\n \"frequencyInterval\": 6,\n \"retentionValue\": 2,\n \"retentionUnit\": \"days\"\n },\n {\n \"id\": \"5f8dc2299b9d310a7fde98e9\",\n \"frequencyType\": \"weekly\",\n \"frequencyInterval\": 1,\n \"retentionValue\": 3,\n \"retentionUnit\": \"weeks\"\n }\n ]\n }\n ],\n \"updateSnapshots\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/backup/schedule",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"clusters",
"{{CLUSTER-NAME}}",
"backup",
"schedule"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/cloud-backup/schedule/get-all-schedules/"
},
"response": [
]
}