Chilkat Online Tools

GetJob autoit Example

Amplify

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

$oRest = ObjCreate("Chilkat_9_5_0.Rest")
Local $bSuccess

$oAuthAws = ObjCreate("Chilkat_9_5_0.AuthAws")
$oAuthAws.AccessKey = "AWS_ACCESS_KEY"
$oAuthAws.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.)
$oAuthAws.Region = "us-west-2"
$oAuthAws.ServiceName = "amplify"
; SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
$oRest.SetAuthAws($oAuthAws)

; URL: https://amplify.us-west-2.amazonaws.com/
; Use the same region as specified above.
$bSuccess = $oRest.Connect("amplify.us-west-2.amazonaws.com",443,True,True)
If ($bSuccess <> True) Then
    ConsoleWrite("ConnectFailReason: " & $oRest.ConnectFailReason & @CRLF)
    ConsoleWrite($oRest.LastErrorText & @CRLF)
    Exit
EndIf

$oRest.AddHeader("Content-Type","application/x-amz-json-1.1")
$oRest.AddHeader("X-Amz-Target","GetJob")

$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oRest.FullRequestNoBodySb("GET","/apps/{appId}/branches/{branchName}/jobs/{jobId}",$oSbResponseBody)
If ($bSuccess <> True) Then
    ConsoleWrite($oRest.LastErrorText & @CRLF)
    Exit
EndIf

Local $iRespStatusCode = $oRest.ResponseStatusCode
ConsoleWrite("response status code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode <> 200) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oRest.ResponseHeader & @CRLF)
    ConsoleWrite("Response Body:" & @CRLF)
    ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)
    Exit
EndIf

$oJResp = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJResp.LoadSb($oSbResponseBody)

; 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

Local $sArtifactsUrl
Local $sContext
Local $iEndTime
Local $sLogUrl
Local $sV_String
Local $iStartTime
Local $status
Local $statusReason
Local $stepName
Local $sTestArtifactsUrl
Local $sTestConfigUrl

Local $sCommitId = $oJResp.StringOf("job.summary.commitId")
Local $sCommitMessage = $oJResp.StringOf("job.summary.commitMessage")
Local $iCommitTime = $oJResp.IntOf("job.summary.commitTime")
Local $iEndTime = $oJResp.IntOf("job.summary.endTime")
Local $sJobArn = $oJResp.StringOf("job.summary.jobArn")
Local $sJobId = $oJResp.StringOf("job.summary.jobId")
Local $sJobType = $oJResp.StringOf("job.summary.jobType")
Local $iStartTime = $oJResp.IntOf("job.summary.startTime")
Local $sStatus = $oJResp.StringOf("job.summary.status")
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("job.steps")
While $i < $iCount_i
    $oJResp.I = $i
    $sArtifactsUrl = $oJResp.StringOf("job.steps[i].artifactsUrl")
    $sContext = $oJResp.StringOf("job.steps[i].context")
    $iEndTime = $oJResp.IntOf("job.steps[i].endTime")
    $sLogUrl = $oJResp.StringOf("job.steps[i].logUrl")
    $sV_String = $oJResp.StringOf("job.steps[i].screenshots.string")
    $iStartTime = $oJResp.IntOf("job.steps[i].startTime")
    $status = $oJResp.StringOf("job.steps[i].status")
    $statusReason = $oJResp.StringOf("job.steps[i].statusReason")
    $stepName = $oJResp.StringOf("job.steps[i].stepName")
    $sTestArtifactsUrl = $oJResp.StringOf("job.steps[i].testArtifactsUrl")
    $sTestConfigUrl = $oJResp.StringOf("job.steps[i].testConfigUrl")
    $i = $i + 1
Wend

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

; {
;   "job": {
;     "steps": [
;       {
;         "artifactsUrl": "string",
;         "context": "string",
;         "endTime": number,
;         "logUrl": "string",
;         "screenshots": {
;           "string": "string"
;         },
;         "startTime": number,
;         "status": "string",
;         "statusReason": "string",
;         "stepName": "string",
;         "testArtifactsUrl": "string",
;         "testConfigUrl": "string"
;       }
;     ],
;     "summary": {
;       "commitId": "string",
;       "commitMessage": "string",
;       "commitTime": number,
;       "endTime": number,
;       "jobArn": "string",
;       "jobId": "string",
;       "jobType": "string",
;       "startTime": number,
;       "status": "string"
;     }
;   }
; }