Chilkat Online Tools

GetPipelineState PowerBuilder Example

AWS CodePipeline

integer li_rc
oleobject loo_Rest
integer li_Success
oleobject loo_AuthAws
oleobject loo_Json
oleobject loo_SbRequestBody
oleobject loo_SbResponseBody
integer li_RespStatusCode
oleobject loo_JResp
string ls_PipelineExecutionId
string ls_Status
string ls_DisabledReason
integer li_Enabled
integer li_LastChangedAt
string ls_LastChangedBy
string ls_LatestExecutionPipelineExecutionId
string ls_LatestExecutionStatus
string ls_StageName
integer j
integer li_Count_j
string ls_ActionName
integer li_Created
string ls_RevisionChangeId
string ls_RevisionId
string ls_EntityUrl
string ls_ActionExecutionId
string ls_Code
string ls_Message
string ls_ExternalExecutionId
string ls_ExternalExecutionUrl
integer li_LastStatusChange
string ls_LastUpdatedBy
integer li_PercentComplete
string ls_Summary
string ls_Token
string ls_RevisionUrl
integer li_Created
string ls_PipelineName
integer li_PipelineVersion
integer li_Updated
integer i
integer li_Count_i

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

loo_Rest = create oleobject
li_rc = loo_Rest.ConnectToNewObject("Chilkat_9_5_0.Rest")
if li_rc < 0 then
    destroy loo_Rest
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_AuthAws = create oleobject
li_rc = loo_AuthAws.ConnectToNewObject("Chilkat_9_5_0.AuthAws")

loo_AuthAws.AccessKey = "AWS_ACCESS_KEY"
loo_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.)
loo_AuthAws.Region = "us-west-2"
loo_AuthAws.ServiceName = "codepipeline"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
loo_Rest.SetAuthAws(loo_AuthAws)

// URL: https://codepipeline.us-west-2.amazonaws.com/
// Use the same region as specified above.
li_Success = loo_Rest.Connect("codepipeline.us-west-2.amazonaws.com",443,1,1)
if li_Success <> 1 then
    Write-Debug "ConnectFailReason: " + string(loo_Rest.ConnectFailReason)
    Write-Debug loo_Rest.LastErrorText
    destroy loo_Rest
    destroy loo_AuthAws
    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

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_Json.UpdateString("name","string")

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

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

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

loo_SbRequestBody = create oleobject
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Json.EmitSb(loo_SbRequestBody)
loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Rest.FullRequestSb("POST","/",loo_SbRequestBody,loo_SbResponseBody)
if li_Success <> 1 then
    Write-Debug loo_Rest.LastErrorText
    destroy loo_Rest
    destroy loo_AuthAws
    destroy loo_Json
    destroy loo_SbRequestBody
    destroy loo_SbResponseBody
    return
end if

li_RespStatusCode = loo_Rest.ResponseStatusCode
Write-Debug "response status code = " + string(li_RespStatusCode)
if li_RespStatusCode <> 200 then
    Write-Debug "Response Header:"
    Write-Debug loo_Rest.ResponseHeader
    Write-Debug "Response Body:"
    Write-Debug loo_SbResponseBody.GetAsString()
    destroy loo_Rest
    destroy loo_AuthAws
    destroy loo_Json
    destroy loo_SbRequestBody
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_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

li_Created = loo_JResp.IntOf("created")
ls_PipelineName = loo_JResp.StringOf("pipelineName")
li_PipelineVersion = loo_JResp.IntOf("pipelineVersion")
li_Updated = loo_JResp.IntOf("updated")
i = 0
li_Count_i = loo_JResp.SizeOfArray("stageStates")
do while i < li_Count_i
    loo_JResp.I = i
    ls_PipelineExecutionId = loo_JResp.StringOf("stageStates[i].inboundExecution.pipelineExecutionId")
    ls_Status = loo_JResp.StringOf("stageStates[i].inboundExecution.status")
    ls_DisabledReason = loo_JResp.StringOf("stageStates[i].inboundTransitionState.disabledReason")
    li_Enabled = loo_JResp.IntOf("stageStates[i].inboundTransitionState.enabled")
    li_LastChangedAt = loo_JResp.IntOf("stageStates[i].inboundTransitionState.lastChangedAt")
    ls_LastChangedBy = loo_JResp.StringOf("stageStates[i].inboundTransitionState.lastChangedBy")
    ls_LatestExecutionPipelineExecutionId = loo_JResp.StringOf("stageStates[i].latestExecution.pipelineExecutionId")
    ls_LatestExecutionStatus = loo_JResp.StringOf("stageStates[i].latestExecution.status")
    ls_StageName = loo_JResp.StringOf("stageStates[i].stageName")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("stageStates[i].actionStates")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_ActionName = loo_JResp.StringOf("stageStates[i].actionStates[j].actionName")
        li_Created = loo_JResp.IntOf("stageStates[i].actionStates[j].currentRevision.created")
        ls_RevisionChangeId = loo_JResp.StringOf("stageStates[i].actionStates[j].currentRevision.revisionChangeId")
        ls_RevisionId = loo_JResp.StringOf("stageStates[i].actionStates[j].currentRevision.revisionId")
        ls_EntityUrl = loo_JResp.StringOf("stageStates[i].actionStates[j].entityUrl")
        ls_ActionExecutionId = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.actionExecutionId")
        ls_Code = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.errorDetails.code")
        ls_Message = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.errorDetails.message")
        ls_ExternalExecutionId = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.externalExecutionId")
        ls_ExternalExecutionUrl = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.externalExecutionUrl")
        li_LastStatusChange = loo_JResp.IntOf("stageStates[i].actionStates[j].latestExecution.lastStatusChange")
        ls_LastUpdatedBy = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.lastUpdatedBy")
        li_PercentComplete = loo_JResp.IntOf("stageStates[i].actionStates[j].latestExecution.percentComplete")
        ls_LatestExecutionStatus = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.status")
        ls_Summary = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.summary")
        ls_Token = loo_JResp.StringOf("stageStates[i].actionStates[j].latestExecution.token")
        ls_RevisionUrl = loo_JResp.StringOf("stageStates[i].actionStates[j].revisionUrl")
        j = j + 1
    loop
    i = i + 1
loop

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


destroy loo_Rest
destroy loo_AuthAws
destroy loo_Json
destroy loo_SbRequestBody
destroy loo_SbResponseBody
destroy loo_JResp