Chilkat Online Tools

unicodeCpp / MongoDB Atlas / Update All User-Defined Analyzers for a Cluster

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonArrayW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttpW http;
    bool success;

    http.put_DigestAuth(true);
    http.put_Login(L"username");
    http.put_Password(L"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.

    // [
    //   {
    //     "name": "my_new_analyzer",
    //     "baseAnalyzer": "lucene.standard",
    //     "maxTokenLength": 48
    //   },
    //   {
    //     "name": "my_other_new_analyzer",
    //     "baseAnalyzer": "lucene.english",
    //     "stopwords": [
    //       "foo",
    //       "bar",
    //       "baz"
    //     ]
    //   }
    // ]

    CkJsonArrayW jarr;

    jarr.AddObjectAt(-1);
    CkJsonObjectW *jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
    jsonObj_1->UpdateString(L"name",L"my_new_analyzer");
    jsonObj_1->UpdateString(L"baseAnalyzer",L"lucene.standard");
    jsonObj_1->UpdateInt(L"maxTokenLength",48);
    delete jsonObj_1;

    jarr.AddObjectAt(-1);
    jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
    jsonObj_1->UpdateString(L"name",L"my_other_new_analyzer");
    jsonObj_1->UpdateString(L"baseAnalyzer",L"lucene.english");
    jsonObj_1->UpdateString(L"stopwords[0]",L"foo");
    jsonObj_1->UpdateString(L"stopwords[1]",L"bar");
    jsonObj_1->UpdateString(L"stopwords[2]",L"baz");
    delete jsonObj_1;

    CkStringBuilderW sbRequestBody;
    jarr.EmitSb(sbRequestBody);

    CkHttpResponseW *resp = http.PTextSb(L"PUT",L"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/fts/analyzers",sbRequestBody,L"utf-8",L"application/json",false,false);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X PUT
	--digest -u 'username:password'
	-d '[
    {
        "name": "my_new_analyzer",
        "baseAnalyzer": "lucene.standard",
        "maxTokenLength": 48
    },
    {
        "name": "my_other_new_analyzer",
        "baseAnalyzer": "lucene.english",
        "stopwords": [
            "foo",
            "bar",
            "baz"
        ]
    }
]'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/fts/analyzers

Postman Collection Item JSON

{
  "name": "Update All User-Defined Analyzers for a Cluster",
  "request": {
    "method": "PUT",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "[\n    {\n        \"name\": \"my_new_analyzer\",\n        \"baseAnalyzer\": \"lucene.standard\",\n        \"maxTokenLength\": 48\n    },\n    {\n        \"name\": \"my_other_new_analyzer\",\n        \"baseAnalyzer\": \"lucene.english\",\n        \"stopwords\": [\n            \"foo\",\n            \"bar\",\n            \"baz\"\n        ]\n    }\n]",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/fts/analyzers",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "clusters",
        "{{CLUSTER-NAME}}",
        "fts",
        "analyzers"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/fts-analyzers-update-all/"
  },
  "response": [
  ]
}