Chilkat Online Tools

BatchGetDeploymentTargets C++ Example

AWS CodeDeploy

#include <CkRest.h>
#include <CkAuthAws.h>
#include <CkJsonObject.h>
#include <CkStringBuilder.h>

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

    CkRest rest;
    bool success;

    CkAuthAws authAws;
    authAws.put_AccessKey("AWS_ACCESS_KEY");
    authAws.put_SecretKey("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("us-west-2");
    authAws.put_ServiceName("codedeploy");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://codedeploy.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("codedeploy.us-west-2.amazonaws.com",443,true,true);
    if (success != true) {
        std::cout << "ConnectFailReason: " << rest.get_ConnectFailReason() << "\r\n";
        std::cout << rest.lastErrorText() << "\r\n";
        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

    CkJsonObject json;
    json.UpdateString("deploymentId","string");
    json.UpdateString("targetIds[0]","string");

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

    // {
    //   "deploymentId": "string",
    //   "targetIds": [
    //     "string"
    //   ]
    // }

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

    CkStringBuilder sbRequestBody;
    json.EmitSb(sbRequestBody);
    CkStringBuilder sbResponseBody;
    success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
    if (success != true) {
        std::cout << rest.lastErrorText() << "\r\n";
        return;
    }

    int respStatusCode = rest.get_ResponseStatusCode();
    std::cout << "response status code = " << respStatusCode << "\r\n";
    if (respStatusCode != 200) {
        std::cout << "Response Header:" << "\r\n";
        std::cout << rest.responseHeader() << "\r\n";
        std::cout << "Response Body:" << "\r\n";
        std::cout << sbResponseBody.getAsString() << "\r\n";
        return;
    }

    CkJsonObject 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 char *DeploymentId = 0;
    int LastUpdatedAt;
    const char *ResourceType = 0;
    const char *Status = 0;
    const char *TargetId = 0;
    int TargetVersionWeight;
    const char *deploymentTargetType = 0;
    const char *ecsTargetDeploymentId = 0;
    int ecsTargetLastUpdatedAt;
    const char *ecsTargetStatus = 0;
    const char *TargetArn = 0;
    const char *ecsTargetTargetId = 0;
    const char *instanceTargetDeploymentId = 0;
    const char *InstanceLabel = 0;
    int instanceTargetLastUpdatedAt;
    const char *instanceTargetStatus = 0;
    const char *instanceTargetTargetArn = 0;
    const char *instanceTargetTargetId = 0;
    const char *lambdaTargetDeploymentId = 0;
    const char *CurrentVersion = 0;
    const char *FunctionAlias = 0;
    const char *FunctionName = 0;
    const char *TargetVersion = 0;
    int LambdaFunctionInfoTargetVersionWeight;
    int lambdaTargetLastUpdatedAt;
    const char *lambdaTargetStatus = 0;
    const char *lambdaTargetTargetArn = 0;
    const char *lambdaTargetTargetId = 0;
    int j;
    int count_j;
    const char *ErrorCode = 0;
    const char *LogTail = 0;
    const char *Message = 0;
    const char *ScriptName = 0;
    int endTime;
    const char *lifecycleEventName = 0;
    int startTime;
    const char *status = 0;
    const char *diagnosticsErrorCode = 0;
    const char *diagnosticsLogTail = 0;
    const char *diagnosticsMessage = 0;
    const char *diagnosticsScriptName = 0;
    int desiredCount;
    const char *identifer = 0;
    int pendingCount;
    int runningCount;
    const char *Name = 0;
    const char *taskSetLabel = 0;
    int trafficWeight;

    int i = 0;
    int count_i = jResp.SizeOfArray("deploymentTargets");
    while (i < count_i) {
        jResp.put_I(i);
        DeploymentId = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.deploymentId");
        LastUpdatedAt = jResp.IntOf("deploymentTargets[i].cloudFormationTarget.lastUpdatedAt");
        ResourceType = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.resourceType");
        Status = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.status");
        TargetId = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.targetId");
        TargetVersionWeight = jResp.IntOf("deploymentTargets[i].cloudFormationTarget.targetVersionWeight");
        deploymentTargetType = jResp.stringOf("deploymentTargets[i].deploymentTargetType");
        ecsTargetDeploymentId = jResp.stringOf("deploymentTargets[i].ecsTarget.deploymentId");
        ecsTargetLastUpdatedAt = jResp.IntOf("deploymentTargets[i].ecsTarget.lastUpdatedAt");
        ecsTargetStatus = jResp.stringOf("deploymentTargets[i].ecsTarget.status");
        TargetArn = jResp.stringOf("deploymentTargets[i].ecsTarget.targetArn");
        ecsTargetTargetId = jResp.stringOf("deploymentTargets[i].ecsTarget.targetId");
        instanceTargetDeploymentId = jResp.stringOf("deploymentTargets[i].instanceTarget.deploymentId");
        InstanceLabel = jResp.stringOf("deploymentTargets[i].instanceTarget.instanceLabel");
        instanceTargetLastUpdatedAt = jResp.IntOf("deploymentTargets[i].instanceTarget.lastUpdatedAt");
        instanceTargetStatus = jResp.stringOf("deploymentTargets[i].instanceTarget.status");
        instanceTargetTargetArn = jResp.stringOf("deploymentTargets[i].instanceTarget.targetArn");
        instanceTargetTargetId = jResp.stringOf("deploymentTargets[i].instanceTarget.targetId");
        lambdaTargetDeploymentId = jResp.stringOf("deploymentTargets[i].lambdaTarget.deploymentId");
        CurrentVersion = jResp.stringOf("deploymentTargets[i].lambdaTarget.lambdaFunctionInfo.currentVersion");
        FunctionAlias = jResp.stringOf("deploymentTargets[i].lambdaTarget.lambdaFunctionInfo.functionAlias");
        FunctionName = jResp.stringOf("deploymentTargets[i].lambdaTarget.lambdaFunctionInfo.functionName");
        TargetVersion = jResp.stringOf("deploymentTargets[i].lambdaTarget.lambdaFunctionInfo.targetVersion");
        LambdaFunctionInfoTargetVersionWeight = jResp.IntOf("deploymentTargets[i].lambdaTarget.lambdaFunctionInfo.targetVersionWeight");
        lambdaTargetLastUpdatedAt = jResp.IntOf("deploymentTargets[i].lambdaTarget.lastUpdatedAt");
        lambdaTargetStatus = jResp.stringOf("deploymentTargets[i].lambdaTarget.status");
        lambdaTargetTargetArn = jResp.stringOf("deploymentTargets[i].lambdaTarget.targetArn");
        lambdaTargetTargetId = jResp.stringOf("deploymentTargets[i].lambdaTarget.targetId");
        j = 0;
        count_j = jResp.SizeOfArray("deploymentTargets[i].cloudFormationTarget.lifecycleEvents");
        while (j < count_j) {
            jResp.put_J(j);
            ErrorCode = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].diagnostics.errorCode");
            LogTail = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].diagnostics.logTail");
            Message = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].diagnostics.message");
            ScriptName = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].diagnostics.scriptName");
            endTime = jResp.IntOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].endTime");
            lifecycleEventName = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].lifecycleEventName");
            startTime = jResp.IntOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].startTime");
            status = jResp.stringOf("deploymentTargets[i].cloudFormationTarget.lifecycleEvents[j].status");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("deploymentTargets[i].ecsTarget.lifecycleEvents");
        while (j < count_j) {
            jResp.put_J(j);
            diagnosticsErrorCode = jResp.stringOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].diagnostics.errorCode");
            diagnosticsLogTail = jResp.stringOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].diagnostics.logTail");
            diagnosticsMessage = jResp.stringOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].diagnostics.message");
            diagnosticsScriptName = jResp.stringOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].diagnostics.scriptName");
            endTime = jResp.IntOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].endTime");
            lifecycleEventName = jResp.stringOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].lifecycleEventName");
            startTime = jResp.IntOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].startTime");
            status = jResp.stringOf("deploymentTargets[i].ecsTarget.lifecycleEvents[j].status");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("deploymentTargets[i].ecsTarget.taskSetsInfo");
        while (j < count_j) {
            jResp.put_J(j);
            desiredCount = jResp.IntOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].desiredCount");
            identifer = jResp.stringOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].identifer");
            pendingCount = jResp.IntOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].pendingCount");
            runningCount = jResp.IntOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].runningCount");
            status = jResp.stringOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].status");
            Name = jResp.stringOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].targetGroup.name");
            taskSetLabel = jResp.stringOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].taskSetLabel");
            trafficWeight = jResp.IntOf("deploymentTargets[i].ecsTarget.taskSetsInfo[j].trafficWeight");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("deploymentTargets[i].instanceTarget.lifecycleEvents");
        while (j < count_j) {
            jResp.put_J(j);
            diagnosticsErrorCode = jResp.stringOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].diagnostics.errorCode");
            diagnosticsLogTail = jResp.stringOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].diagnostics.logTail");
            diagnosticsMessage = jResp.stringOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].diagnostics.message");
            diagnosticsScriptName = jResp.stringOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].diagnostics.scriptName");
            endTime = jResp.IntOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].endTime");
            lifecycleEventName = jResp.stringOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].lifecycleEventName");
            startTime = jResp.IntOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].startTime");
            status = jResp.stringOf("deploymentTargets[i].instanceTarget.lifecycleEvents[j].status");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("deploymentTargets[i].lambdaTarget.lifecycleEvents");
        while (j < count_j) {
            jResp.put_J(j);
            diagnosticsErrorCode = jResp.stringOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].diagnostics.errorCode");
            diagnosticsLogTail = jResp.stringOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].diagnostics.logTail");
            diagnosticsMessage = jResp.stringOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].diagnostics.message");
            diagnosticsScriptName = jResp.stringOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].diagnostics.scriptName");
            endTime = jResp.IntOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].endTime");
            lifecycleEventName = jResp.stringOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].lifecycleEventName");
            startTime = jResp.IntOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].startTime");
            status = jResp.stringOf("deploymentTargets[i].lambdaTarget.lifecycleEvents[j].status");
            j = j + 1;
        }

        i = i + 1;
    }

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

    // {
    //   "deploymentTargets": [
    //     {
    //       "cloudFormationTarget": {
    //         "deploymentId": "string",
    //         "lastUpdatedAt": number,
    //         "lifecycleEvents": [
    //           {
    //             "diagnostics": {
    //               "errorCode": "string",
    //               "logTail": "string",
    //               "message": "string",
    //               "scriptName": "string"
    //             },
    //             "endTime": number,
    //             "lifecycleEventName": "string",
    //             "startTime": number,
    //             "status": "string"
    //           }
    //         ],
    //         "resourceType": "string",
    //         "status": "string",
    //         "targetId": "string",
    //         "targetVersionWeight": number
    //       },
    //       "deploymentTargetType": "string",
    //       "ecsTarget": {
    //         "deploymentId": "string",
    //         "lastUpdatedAt": number,
    //         "lifecycleEvents": [
    //           {
    //             "diagnostics": {
    //               "errorCode": "string",
    //               "logTail": "string",
    //               "message": "string",
    //               "scriptName": "string"
    //             },
    //             "endTime": number,
    //             "lifecycleEventName": "string",
    //             "startTime": number,
    //             "status": "string"
    //           }
    //         ],
    //         "status": "string",
    //         "targetArn": "string",
    //         "targetId": "string",
    //         "taskSetsInfo": [
    //           {
    //             "desiredCount": number,
    //             "identifer": "string",
    //             "pendingCount": number,
    //             "runningCount": number,
    //             "status": "string",
    //             "targetGroup": {
    //               "name": "string"
    //             },
    //             "taskSetLabel": "string",
    //             "trafficWeight": number
    //           }
    //         ]
    //       },
    //       "instanceTarget": {
    //         "deploymentId": "string",
    //         "instanceLabel": "string",
    //         "lastUpdatedAt": number,
    //         "lifecycleEvents": [
    //           {
    //             "diagnostics": {
    //               "errorCode": "string",
    //               "logTail": "string",
    //               "message": "string",
    //               "scriptName": "string"
    //             },
    //             "endTime": number,
    //             "lifecycleEventName": "string",
    //             "startTime": number,
    //             "status": "string"
    //           }
    //         ],
    //         "status": "string",
    //         "targetArn": "string",
    //         "targetId": "string"
    //       },
    //       "lambdaTarget": {
    //         "deploymentId": "string",
    //         "lambdaFunctionInfo": {
    //           "currentVersion": "string",
    //           "functionAlias": "string",
    //           "functionName": "string",
    //           "targetVersion": "string",
    //           "targetVersionWeight": number
    //         },
    //         "lastUpdatedAt": number,
    //         "lifecycleEvents": [
    //           {
    //             "diagnostics": {
    //               "errorCode": "string",
    //               "logTail": "string",
    //               "message": "string",
    //               "scriptName": "string"
    //             },
    //             "endTime": number,
    //             "lifecycleEventName": "string",
    //             "startTime": number,
    //             "status": "string"
    //           }
    //         ],
    //         "status": "string",
    //         "targetArn": "string",
    //         "targetId": "string"
    //       }
    //     }
    //   ]
    // }
    }