Chilkat Online Tools

BatchGetDeployments Xojo Example

AWS CodeDeploy

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

Dim rest As New Chilkat.Rest
Dim success As Boolean

Dim authAws As New Chilkat.AuthAws
authAws.AccessKey = "AWS_ACCESS_KEY"
authAws.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.Region = "us-west-2"
authAws.ServiceName = "codedeploy"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = 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) Then
    System.DebugLog("ConnectFailReason: " + Str(rest.ConnectFailReason))
    System.DebugLog(rest.LastErrorText)
    Return
End If

// 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

Dim json As New Chilkat.JsonObject
success = json.UpdateString("deploymentIds[0]","string")

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

// {
//   "deploymentIds": [
//     "string"
//   ]
// }

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

Dim sbRequestBody As New Chilkat.StringBuilder
success = json.EmitSb(sbRequestBody)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> True) Then
    System.DebugLog(rest.LastErrorText)
    Return
End If

Dim respStatusCode As Int32
respStatusCode = rest.ResponseStatusCode
System.DebugLog("response status code = " + Str(respStatusCode))
If (respStatusCode <> 200) Then
    System.DebugLog("Response Header:")
    System.DebugLog(rest.ResponseHeader)
    System.DebugLog("Response Body:")
    System.DebugLog(sbResponseBody.GetAsString())
    Return
End If

Dim jResp As New Chilkat.JsonObject
success = 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

Dim additionalDeploymentStatusInfo As String
Dim applicationName As String
Dim Enabled As Int32
Dim ActionOnTimeout As String
Dim WaitTimeInMinutes As Int32
Dim Action As String
Dim TerminateBlueInstancesOnDeploymentSuccessAction As String
Dim TerminationWaitTimeInMinutes As Int32
Dim completeTime As Int32
Dim computePlatform As String
Dim createTime As Int32
Dim creator As String
Dim deploymentConfigName As String
Dim deploymentGroupName As String
Dim deploymentId As String
Dim Failed As Int32
Dim InProgress As Int32
Dim Pending As Int32
Dim Ready As Int32
Dim Skipped As Int32
Dim Succeeded As Int32
Dim DeploymentOption As String
Dim DeploymentType As String
Dim description As String
Dim Code As String
Dim Message As String
Dim externalId As String
Dim fileExistsBehavior As String
Dim ignoreApplicationStopFailures As Int32
Dim instanceTerminationWaitTimeStarted As Int32
Dim Content As String
Dim Sha256 As String
Dim CommitId As String
Dim Repository As String
Dim RevisionType As String
Dim Bucket As String
Dim BundleType As String
Dim ETag As String
Dim Key As String
Dim Version As String
Dim StringContent As String
Dim StringSha256 As String
Dim AutoUpdateOutdatedInstancesRootDeploymentId As String
Dim AppSpecContentContent As String
Dim AppSpecContentSha256 As String
Dim GitHubLocationCommitId As String
Dim GitHubLocationRepository As String
Dim revisionRevisionType As String
Dim S3LocationBucket As String
Dim S3LocationBundleType As String
Dim S3LocationETag As String
Dim S3LocationKey As String
Dim S3LocationVersion As String
Dim RollbackDeploymentId As String
Dim RollbackMessage As String
Dim RollbackTriggeringDeploymentId As String
Dim startTime As Int32
Dim status As String
Dim updateOutdatedInstancesOnly As Int32
Dim j As Int32
Dim count_j As Int32
Dim strVal As String
Dim name As String
Dim k As Int32
Dim count_k As Int32
Dim v_Type As String
Dim Value As String

Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("deploymentsInfo")
While i < count_i
    jResp.I = i
    additionalDeploymentStatusInfo = jResp.StringOf("deploymentsInfo[i].additionalDeploymentStatusInfo")
    applicationName = jResp.StringOf("deploymentsInfo[i].applicationName")
    Enabled = jResp.IntOf("deploymentsInfo[i].autoRollbackConfiguration.enabled")
    ActionOnTimeout = jResp.StringOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.deploymentReadyOption.actionOnTimeout")
    WaitTimeInMinutes = jResp.IntOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.deploymentReadyOption.waitTimeInMinutes")
    Action = jResp.StringOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.greenFleetProvisioningOption.action")
    TerminateBlueInstancesOnDeploymentSuccessAction = jResp.StringOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.terminateBlueInstancesOnDeploymentSuccess.action")
    TerminationWaitTimeInMinutes = jResp.IntOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.terminateBlueInstancesOnDeploymentSuccess.terminationWaitTimeInMinutes")
    completeTime = jResp.IntOf("deploymentsInfo[i].completeTime")
    computePlatform = jResp.StringOf("deploymentsInfo[i].computePlatform")
    createTime = jResp.IntOf("deploymentsInfo[i].createTime")
    creator = jResp.StringOf("deploymentsInfo[i].creator")
    deploymentConfigName = jResp.StringOf("deploymentsInfo[i].deploymentConfigName")
    deploymentGroupName = jResp.StringOf("deploymentsInfo[i].deploymentGroupName")
    deploymentId = jResp.StringOf("deploymentsInfo[i].deploymentId")
    Failed = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Failed")
    InProgress = jResp.IntOf("deploymentsInfo[i].deploymentOverview.InProgress")
    Pending = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Pending")
    Ready = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Ready")
    Skipped = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Skipped")
    Succeeded = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Succeeded")
    DeploymentOption = jResp.StringOf("deploymentsInfo[i].deploymentStyle.deploymentOption")
    DeploymentType = jResp.StringOf("deploymentsInfo[i].deploymentStyle.deploymentType")
    description = jResp.StringOf("deploymentsInfo[i].description")
    Code = jResp.StringOf("deploymentsInfo[i].errorInformation.code")
    Message = jResp.StringOf("deploymentsInfo[i].errorInformation.message")
    externalId = jResp.StringOf("deploymentsInfo[i].externalId")
    fileExistsBehavior = jResp.StringOf("deploymentsInfo[i].fileExistsBehavior")
    ignoreApplicationStopFailures = jResp.IntOf("deploymentsInfo[i].ignoreApplicationStopFailures")
    instanceTerminationWaitTimeStarted = jResp.IntOf("deploymentsInfo[i].instanceTerminationWaitTimeStarted")
    Content = jResp.StringOf("deploymentsInfo[i].previousRevision.appSpecContent.content")
    Sha256 = jResp.StringOf("deploymentsInfo[i].previousRevision.appSpecContent.sha256")
    CommitId = jResp.StringOf("deploymentsInfo[i].previousRevision.gitHubLocation.commitId")
    Repository = jResp.StringOf("deploymentsInfo[i].previousRevision.gitHubLocation.repository")
    RevisionType = jResp.StringOf("deploymentsInfo[i].previousRevision.revisionType")
    Bucket = jResp.StringOf("deploymentsInfo[i].previousRevision.s3Location.bucket")
    BundleType = jResp.StringOf("deploymentsInfo[i].previousRevision.s3Location.bundleType")
    ETag = jResp.StringOf("deploymentsInfo[i].previousRevision.s3Location.eTag")
    Key = jResp.StringOf("deploymentsInfo[i].previousRevision.s3Location.key")
    Version = jResp.StringOf("deploymentsInfo[i].previousRevision.s3Location.version")
    StringContent = jResp.StringOf("deploymentsInfo[i].previousRevision.string.content")
    StringSha256 = jResp.StringOf("deploymentsInfo[i].previousRevision.string.sha256")
    AutoUpdateOutdatedInstancesRootDeploymentId = jResp.StringOf("deploymentsInfo[i].relatedDeployments.autoUpdateOutdatedInstancesRootDeploymentId")
    AppSpecContentContent = jResp.StringOf("deploymentsInfo[i].revision.appSpecContent.content")
    AppSpecContentSha256 = jResp.StringOf("deploymentsInfo[i].revision.appSpecContent.sha256")
    GitHubLocationCommitId = jResp.StringOf("deploymentsInfo[i].revision.gitHubLocation.commitId")
    GitHubLocationRepository = jResp.StringOf("deploymentsInfo[i].revision.gitHubLocation.repository")
    revisionRevisionType = jResp.StringOf("deploymentsInfo[i].revision.revisionType")
    S3LocationBucket = jResp.StringOf("deploymentsInfo[i].revision.s3Location.bucket")
    S3LocationBundleType = jResp.StringOf("deploymentsInfo[i].revision.s3Location.bundleType")
    S3LocationETag = jResp.StringOf("deploymentsInfo[i].revision.s3Location.eTag")
    S3LocationKey = jResp.StringOf("deploymentsInfo[i].revision.s3Location.key")
    S3LocationVersion = jResp.StringOf("deploymentsInfo[i].revision.s3Location.version")
    StringContent = jResp.StringOf("deploymentsInfo[i].revision.string.content")
    StringSha256 = jResp.StringOf("deploymentsInfo[i].revision.string.sha256")
    RollbackDeploymentId = jResp.StringOf("deploymentsInfo[i].rollbackInfo.rollbackDeploymentId")
    RollbackMessage = jResp.StringOf("deploymentsInfo[i].rollbackInfo.rollbackMessage")
    RollbackTriggeringDeploymentId = jResp.StringOf("deploymentsInfo[i].rollbackInfo.rollbackTriggeringDeploymentId")
    startTime = jResp.IntOf("deploymentsInfo[i].startTime")
    status = jResp.StringOf("deploymentsInfo[i].status")
    updateOutdatedInstancesOnly = jResp.IntOf("deploymentsInfo[i].updateOutdatedInstancesOnly")
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].autoRollbackConfiguration.events")
    While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("deploymentsInfo[i].autoRollbackConfiguration.events[j]")
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].deploymentStatusMessages")
    While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("deploymentsInfo[i].deploymentStatusMessages[j]")
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.elbInfoList")
    While j < count_j
        jResp.J = j
        name = jResp.StringOf("deploymentsInfo[i].loadBalancerInfo.elbInfoList[j].name")
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupInfoList")
    While j < count_j
        jResp.J = j
        name = jResp.StringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupInfoList[j].name")
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList")
    While j < count_j
        jResp.J = j
        k = 0
        count_k = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].prodTrafficRoute.listenerArns")
        While k < count_k
            jResp.K = k
            strVal = jResp.StringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].prodTrafficRoute.listenerArns[k]")
            k = k + 1
        Wend
        k = 0
        count_k = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].targetGroups")
        While k < count_k
            jResp.K = k
            name = jResp.StringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].targetGroups[k].name")
            k = k + 1
        Wend
        k = 0
        count_k = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].testTrafficRoute.listenerArns")
        While k < count_k
            jResp.K = k
            strVal = jResp.StringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].testTrafficRoute.listenerArns[k]")
            k = k + 1
        Wend
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].relatedDeployments.autoUpdateOutdatedInstancesDeploymentIds")
    While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("deploymentsInfo[i].relatedDeployments.autoUpdateOutdatedInstancesDeploymentIds[j]")
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.autoScalingGroups")
    While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("deploymentsInfo[i].targetInstances.autoScalingGroups[j]")
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList")
    While j < count_j
        jResp.J = j
        k = 0
        count_k = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j]")
        While k < count_k
            jResp.K = k
            Key = jResp.StringOf("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j][k].Key")
            v_Type = jResp.StringOf("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j][k].Type")
            Value = jResp.StringOf("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j][k].Value")
            k = k + 1
        Wend
        j = j + 1
    Wend
    j = 0
    count_j = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.tagFilters")
    While j < count_j
        jResp.J = j
        Key = jResp.StringOf("deploymentsInfo[i].targetInstances.tagFilters[j].Key")
        v_Type = jResp.StringOf("deploymentsInfo[i].targetInstances.tagFilters[j].Type")
        Value = jResp.StringOf("deploymentsInfo[i].targetInstances.tagFilters[j].Value")
        j = j + 1
    Wend
    i = i + 1
Wend

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

// {
//   "deploymentsInfo": [
//     {
//       "additionalDeploymentStatusInfo": "string",
//       "applicationName": "string",
//       "autoRollbackConfiguration": {
//         "enabled": boolean,
//         "events": [
//           "string"
//         ]
//       },
//       "blueGreenDeploymentConfiguration": {
//         "deploymentReadyOption": {
//           "actionOnTimeout": "string",
//           "waitTimeInMinutes": number
//         },
//         "greenFleetProvisioningOption": {
//           "action": "string"
//         },
//         "terminateBlueInstancesOnDeploymentSuccess": {
//           "action": "string",
//           "terminationWaitTimeInMinutes": number
//         }
//       },
//       "completeTime": number,
//       "computePlatform": "string",
//       "createTime": number,
//       "creator": "string",
//       "deploymentConfigName": "string",
//       "deploymentGroupName": "string",
//       "deploymentId": "string",
//       "deploymentOverview": {
//         "Failed": number,
//         "InProgress": number,
//         "Pending": number,
//         "Ready": number,
//         "Skipped": number,
//         "Succeeded": number
//       },
//       "deploymentStatusMessages": [
//         "string"
//       ],
//       "deploymentStyle": {
//         "deploymentOption": "string",
//         "deploymentType": "string"
//       },
//       "description": "string",
//       "errorInformation": {
//         "code": "string",
//         "message": "string"
//       },
//       "externalId": "string",
//       "fileExistsBehavior": "string",
//       "ignoreApplicationStopFailures": boolean,
//       "instanceTerminationWaitTimeStarted": boolean,
//       "loadBalancerInfo": {
//         "elbInfoList": [
//           {
//             "name": "string"
//           }
//         ],
//         "targetGroupInfoList": [
//           {
//             "name": "string"
//           }
//         ],
//         "targetGroupPairInfoList": [
//           {
//             "prodTrafficRoute": {
//               "listenerArns": [
//                 "string"
//               ]
//             },
//             "targetGroups": [
//               {
//                 "name": "string"
//               }
//             ],
//             "testTrafficRoute": {
//               "listenerArns": [
//                 "string"
//               ]
//             }
//           }
//         ]
//       },
//       "previousRevision": {
//         "appSpecContent": {
//           "content": "string",
//           "sha256": "string"
//         },
//         "gitHubLocation": {
//           "commitId": "string",
//           "repository": "string"
//         },
//         "revisionType": "string",
//         "s3Location": {
//           "bucket": "string",
//           "bundleType": "string",
//           "eTag": "string",
//           "key": "string",
//           "version": "string"
//         },
//         "string": {
//           "content": "string",
//           "sha256": "string"
//         }
//       },
//       "relatedDeployments": {
//         "autoUpdateOutdatedInstancesDeploymentIds": [
//           "string"
//         ],
//         "autoUpdateOutdatedInstancesRootDeploymentId": "string"
//       },
//       "revision": {
//         "appSpecContent": {
//           "content": "string",
//           "sha256": "string"
//         },
//         "gitHubLocation": {
//           "commitId": "string",
//           "repository": "string"
//         },
//         "revisionType": "string",
//         "s3Location": {
//           "bucket": "string",
//           "bundleType": "string",
//           "eTag": "string",
//           "key": "string",
//           "version": "string"
//         },
//         "string": {
//           "content": "string",
//           "sha256": "string"
//         }
//       },
//       "rollbackInfo": {
//         "rollbackDeploymentId": "string",
//         "rollbackMessage": "string",
//         "rollbackTriggeringDeploymentId": "string"
//       },
//       "startTime": number,
//       "status": "string",
//       "targetInstances": {
//         "autoScalingGroups": [
//           "string"
//         ],
//         "ec2TagSet": {
//           "ec2TagSetList": [
//             [
//               {
//                 "Key": "string",
//                 "Type": "string",
//                 "Value": "string"
//               }
//             ]
//           ]
//         },
//         "tagFilters": [
//           {
//             "Key": "string",
//             "Type": "string",
//             "Value": "string"
//           }
//         ]
//       },
//       "updateOutdatedInstancesOnly": boolean
//     }
//   ]
// }