Chilkat Online Tools

UpdatePullRequestTitle unicodeCpp Example

AWS CodeCommit

#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>

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

    CkRestW rest;
    bool success;

    CkAuthAwsW authAws;
    authAws.put_AccessKey(L"AWS_ACCESS_KEY");
    authAws.put_SecretKey(L"AWS_SECRET_KEY");

    // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    authAws.put_Region(L"us-west-2");
    authAws.put_ServiceName(L"codecommit");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://codecommit.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect(L"codecommit.us-west-2.amazonaws.com",443,true,true);
    if (success != true) {
        wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    // The following code creates the JSON request body.
    // The JSON created by this code is shown below.

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    CkJsonObjectW json;
    json.UpdateString(L"pullRequestId",L"string");
    json.UpdateString(L"title",L"string");

    // The JSON request body created by the above code:

    // {
    //   "pullRequestId": "string",
    //   "title": "string"
    // }

    rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.1");
    rest.AddHeader(L"X-Amz-Target",L"CodeCommit_20150413.UpdatePullRequestTitle");

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);
    CkStringBuilderW sbResponseBody;
    success = rest.FullRequestSb(L"POST",L"/",sbRequestBody,sbResponseBody);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    int respStatusCode = rest.get_ResponseStatusCode();
    wprintf(L"response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",rest.responseHeader());
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",sbResponseBody.getAsString());
        return;
    }

    CkJsonObjectW jResp;
    jResp.LoadSb(sbResponseBody);

    // The following code parses the JSON response.
    // A sample JSON response is shown below the sample code.

    // Use this online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    const wchar_t *approvalRuleContent = 0;
    const wchar_t *approvalRuleId = 0;
    const wchar_t *approvalRuleName = 0;
    int creationDate;
    int lastModifiedDate;
    const wchar_t *lastModifiedUser = 0;
    const wchar_t *ApprovalRuleTemplateId = 0;
    const wchar_t *ApprovalRuleTemplateName = 0;
    const wchar_t *ruleContentSha256 = 0;
    const wchar_t *destinationCommit = 0;
    const wchar_t *destinationReference = 0;
    const wchar_t *mergeBase = 0;
    int IsMerged;
    const wchar_t *MergeCommitId = 0;
    const wchar_t *MergedBy = 0;
    const wchar_t *MergeOption = 0;
    const wchar_t *repositoryName = 0;
    const wchar_t *sourceCommit = 0;
    const wchar_t *sourceReference = 0;

    const wchar_t *AuthorArn = jResp.stringOf(L"pullRequest.authorArn");
    const wchar_t *ClientRequestToken = jResp.stringOf(L"pullRequest.clientRequestToken");
    int CreationDate = jResp.IntOf(L"pullRequest.creationDate");
    const wchar_t *Description = jResp.stringOf(L"pullRequest.description");
    int LastActivityDate = jResp.IntOf(L"pullRequest.lastActivityDate");
    const wchar_t *PullRequestId = jResp.stringOf(L"pullRequest.pullRequestId");
    const wchar_t *PullRequestStatus = jResp.stringOf(L"pullRequest.pullRequestStatus");
    const wchar_t *RevisionId = jResp.stringOf(L"pullRequest.revisionId");
    const wchar_t *Title = jResp.stringOf(L"pullRequest.title");
    int i = 0;
    int count_i = jResp.SizeOfArray(L"pullRequest.approvalRules");
    while (i < count_i) {
        jResp.put_I(i);
        approvalRuleContent = jResp.stringOf(L"pullRequest.approvalRules[i].approvalRuleContent");
        approvalRuleId = jResp.stringOf(L"pullRequest.approvalRules[i].approvalRuleId");
        approvalRuleName = jResp.stringOf(L"pullRequest.approvalRules[i].approvalRuleName");
        creationDate = jResp.IntOf(L"pullRequest.approvalRules[i].creationDate");
        lastModifiedDate = jResp.IntOf(L"pullRequest.approvalRules[i].lastModifiedDate");
        lastModifiedUser = jResp.stringOf(L"pullRequest.approvalRules[i].lastModifiedUser");
        ApprovalRuleTemplateId = jResp.stringOf(L"pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateId");
        ApprovalRuleTemplateName = jResp.stringOf(L"pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateName");
        ruleContentSha256 = jResp.stringOf(L"pullRequest.approvalRules[i].ruleContentSha256");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"pullRequest.pullRequestTargets");
    while (i < count_i) {
        jResp.put_I(i);
        destinationCommit = jResp.stringOf(L"pullRequest.pullRequestTargets[i].destinationCommit");
        destinationReference = jResp.stringOf(L"pullRequest.pullRequestTargets[i].destinationReference");
        mergeBase = jResp.stringOf(L"pullRequest.pullRequestTargets[i].mergeBase");
        IsMerged = jResp.IntOf(L"pullRequest.pullRequestTargets[i].mergeMetadata.isMerged");
        MergeCommitId = jResp.stringOf(L"pullRequest.pullRequestTargets[i].mergeMetadata.mergeCommitId");
        MergedBy = jResp.stringOf(L"pullRequest.pullRequestTargets[i].mergeMetadata.mergedBy");
        MergeOption = jResp.stringOf(L"pullRequest.pullRequestTargets[i].mergeMetadata.mergeOption");
        repositoryName = jResp.stringOf(L"pullRequest.pullRequestTargets[i].repositoryName");
        sourceCommit = jResp.stringOf(L"pullRequest.pullRequestTargets[i].sourceCommit");
        sourceReference = jResp.stringOf(L"pullRequest.pullRequestTargets[i].sourceReference");
        i = i + 1;
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "pullRequest": {
    //     "approvalRules": [
    //       {
    //         "approvalRuleContent": "string",
    //         "approvalRuleId": "string",
    //         "approvalRuleName": "string",
    //         "creationDate": number,
    //         "lastModifiedDate": number,
    //         "lastModifiedUser": "string",
    //         "originApprovalRuleTemplate": {
    //           "approvalRuleTemplateId": "string",
    //           "approvalRuleTemplateName": "string"
    //         },
    //         "ruleContentSha256": "string"
    //       }
    //     ],
    //     "authorArn": "string",
    //     "clientRequestToken": "string",
    //     "creationDate": number,
    //     "description": "string",
    //     "lastActivityDate": number,
    //     "pullRequestId": "string",
    //     "pullRequestStatus": "string",
    //     "pullRequestTargets": [
    //       {
    //         "destinationCommit": "string",
    //         "destinationReference": "string",
    //         "mergeBase": "string",
    //         "mergeMetadata": {
    //           "isMerged": boolean,
    //           "mergeCommitId": "string",
    //           "mergedBy": "string",
    //           "mergeOption": "string"
    //         },
    //         "repositoryName": "string",
    //         "sourceCommit": "string",
    //         "sourceReference": "string"
    //       }
    //     ],
    //     "revisionId": "string",
    //     "title": "string"
    //   }
    // }
    }