Chilkat Online Tools

GetPipelineState unicodeCpp Example

AWS CodePipeline

#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"codepipeline");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://codepipeline.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect(L"codepipeline.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"name",L"string");

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

    // {
    //   "name": "string"
    // }

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

    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 *PipelineExecutionId = 0;
    const wchar_t *Status = 0;
    const wchar_t *DisabledReason = 0;
    int Enabled;
    int LastChangedAt;
    const wchar_t *LastChangedBy = 0;
    const wchar_t *latestExecutionPipelineExecutionId = 0;
    const wchar_t *latestExecutionStatus = 0;
    const wchar_t *stageName = 0;
    int j;
    int count_j;
    const wchar_t *actionName = 0;
    int Created;
    const wchar_t *RevisionChangeId = 0;
    const wchar_t *RevisionId = 0;
    const wchar_t *entityUrl = 0;
    const wchar_t *ActionExecutionId = 0;
    const wchar_t *Code = 0;
    const wchar_t *Message = 0;
    const wchar_t *ExternalExecutionId = 0;
    const wchar_t *ExternalExecutionUrl = 0;
    int LastStatusChange;
    const wchar_t *LastUpdatedBy = 0;
    int PercentComplete;
    const wchar_t *Summary = 0;
    const wchar_t *Token = 0;
    const wchar_t *revisionUrl = 0;

    int created = jResp.IntOf(L"created");
    const wchar_t *pipelineName = jResp.stringOf(L"pipelineName");
    int pipelineVersion = jResp.IntOf(L"pipelineVersion");
    int updated = jResp.IntOf(L"updated");
    int i = 0;
    int count_i = jResp.SizeOfArray(L"stageStates");
    while (i < count_i) {
        jResp.put_I(i);
        PipelineExecutionId = jResp.stringOf(L"stageStates[i].inboundExecution.pipelineExecutionId");
        Status = jResp.stringOf(L"stageStates[i].inboundExecution.status");
        DisabledReason = jResp.stringOf(L"stageStates[i].inboundTransitionState.disabledReason");
        Enabled = jResp.IntOf(L"stageStates[i].inboundTransitionState.enabled");
        LastChangedAt = jResp.IntOf(L"stageStates[i].inboundTransitionState.lastChangedAt");
        LastChangedBy = jResp.stringOf(L"stageStates[i].inboundTransitionState.lastChangedBy");
        latestExecutionPipelineExecutionId = jResp.stringOf(L"stageStates[i].latestExecution.pipelineExecutionId");
        latestExecutionStatus = jResp.stringOf(L"stageStates[i].latestExecution.status");
        stageName = jResp.stringOf(L"stageStates[i].stageName");
        j = 0;
        count_j = jResp.SizeOfArray(L"stageStates[i].actionStates");
        while (j < count_j) {
            jResp.put_J(j);
            actionName = jResp.stringOf(L"stageStates[i].actionStates[j].actionName");
            Created = jResp.IntOf(L"stageStates[i].actionStates[j].currentRevision.created");
            RevisionChangeId = jResp.stringOf(L"stageStates[i].actionStates[j].currentRevision.revisionChangeId");
            RevisionId = jResp.stringOf(L"stageStates[i].actionStates[j].currentRevision.revisionId");
            entityUrl = jResp.stringOf(L"stageStates[i].actionStates[j].entityUrl");
            ActionExecutionId = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.actionExecutionId");
            Code = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.errorDetails.code");
            Message = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.errorDetails.message");
            ExternalExecutionId = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.externalExecutionId");
            ExternalExecutionUrl = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.externalExecutionUrl");
            LastStatusChange = jResp.IntOf(L"stageStates[i].actionStates[j].latestExecution.lastStatusChange");
            LastUpdatedBy = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.lastUpdatedBy");
            PercentComplete = jResp.IntOf(L"stageStates[i].actionStates[j].latestExecution.percentComplete");
            latestExecutionStatus = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.status");
            Summary = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.summary");
            Token = jResp.stringOf(L"stageStates[i].actionStates[j].latestExecution.token");
            revisionUrl = jResp.stringOf(L"stageStates[i].actionStates[j].revisionUrl");
            j = j + 1;
        }

        i = i + 1;
    }

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

    // {
    //   "created": number,
    //   "pipelineName": "string",
    //   "pipelineVersion": number,
    //   "stageStates": [
    //     {
    //       "actionStates": [
    //         {
    //           "actionName": "string",
    //           "currentRevision": {
    //             "created": number,
    //             "revisionChangeId": "string",
    //             "revisionId": "string"
    //           },
    //           "entityUrl": "string",
    //           "latestExecution": {
    //             "actionExecutionId": "string",
    //             "errorDetails": {
    //               "code": "string",
    //               "message": "string"
    //             },
    //             "externalExecutionId": "string",
    //             "externalExecutionUrl": "string",
    //             "lastStatusChange": number,
    //             "lastUpdatedBy": "string",
    //             "percentComplete": number,
    //             "status": "string",
    //             "summary": "string",
    //             "token": "string"
    //           },
    //           "revisionUrl": "string"
    //         }
    //       ],
    //       "inboundExecution": {
    //         "pipelineExecutionId": "string",
    //         "status": "string"
    //       },
    //       "inboundTransitionState": {
    //         "disabledReason": "string",
    //         "enabled": boolean,
    //         "lastChangedAt": number,
    //         "lastChangedBy": "string"
    //       },
    //       "latestExecution": {
    //         "pipelineExecutionId": "string",
    //         "status": "string"
    //       },
    //       "stageName": "string"
    //     }
    //   ],
    //   "updated": number
    // }
    }