Chilkat Online Tools

GetBranch Xojo Example

Amplify

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

// URL: https://amplify.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("amplify.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

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

Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestNoBodySb("GET","/apps/{appId}/branches/{branchName}",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 strVal As String

Dim ActiveJobId As String
ActiveJobId = jResp.StringOf("branch.activeJobId")
Dim BackendEnvironmentArn As String
BackendEnvironmentArn = jResp.StringOf("branch.backendEnvironmentArn")
Dim BasicAuthCredentials As String
BasicAuthCredentials = jResp.StringOf("branch.basicAuthCredentials")
Dim BranchArn As String
BranchArn = jResp.StringOf("branch.branchArn")
Dim BranchName As String
BranchName = jResp.StringOf("branch.branchName")
Dim BuildSpec As String
BuildSpec = jResp.StringOf("branch.buildSpec")
Dim CreateTime As Int32
CreateTime = jResp.IntOf("branch.createTime")
Dim Description As String
Description = jResp.StringOf("branch.description")
Dim DestinationBranch As String
DestinationBranch = jResp.StringOf("branch.destinationBranch")
Dim DisplayName As String
DisplayName = jResp.StringOf("branch.displayName")
Dim EnableAutoBuild As Int32
EnableAutoBuild = jResp.IntOf("branch.enableAutoBuild")
Dim EnableBasicAuth As Int32
EnableBasicAuth = jResp.IntOf("branch.enableBasicAuth")
Dim EnableNotification As Int32
EnableNotification = jResp.IntOf("branch.enableNotification")
Dim EnablePerformanceMode As Int32
EnablePerformanceMode = jResp.IntOf("branch.enablePerformanceMode")
Dim EnablePullRequestPreview As Int32
EnablePullRequestPreview = jResp.IntOf("branch.enablePullRequestPreview")
Dim v_String As String
v_String = jResp.StringOf("branch.environmentVariables.string")
Dim Framework As String
Framework = jResp.StringOf("branch.framework")
Dim PullRequestEnvironmentName As String
PullRequestEnvironmentName = jResp.StringOf("branch.pullRequestEnvironmentName")
Dim SourceBranch As String
SourceBranch = jResp.StringOf("branch.sourceBranch")
Dim Stage As String
Stage = jResp.StringOf("branch.stage")
Dim TagsString As String
TagsString = jResp.StringOf("branch.tags.string")
Dim ThumbnailUrl As String
ThumbnailUrl = jResp.StringOf("branch.thumbnailUrl")
Dim TotalNumberOfJobs As String
TotalNumberOfJobs = jResp.StringOf("branch.totalNumberOfJobs")
Dim Ttl As String
Ttl = jResp.StringOf("branch.ttl")
Dim UpdateTime As Int32
UpdateTime = jResp.IntOf("branch.updateTime")
Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("branch.associatedResources")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("branch.associatedResources[i]")
    i = i + 1
Wend
i = 0
count_i = jResp.SizeOfArray("branch.customDomains")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("branch.customDomains[i]")
    i = i + 1
Wend

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

// {
//   "branch": {
//     "activeJobId": "string",
//     "associatedResources": [
//       "string"
//     ],
//     "backendEnvironmentArn": "string",
//     "basicAuthCredentials": "string",
//     "branchArn": "string",
//     "branchName": "string",
//     "buildSpec": "string",
//     "createTime": number,
//     "customDomains": [
//       "string"
//     ],
//     "description": "string",
//     "destinationBranch": "string",
//     "displayName": "string",
//     "enableAutoBuild": boolean,
//     "enableBasicAuth": boolean,
//     "enableNotification": boolean,
//     "enablePerformanceMode": boolean,
//     "enablePullRequestPreview": boolean,
//     "environmentVariables": {
//       "string": "string"
//     },
//     "framework": "string",
//     "pullRequestEnvironmentName": "string",
//     "sourceBranch": "string",
//     "stage": "string",
//     "tags": {
//       "string": "string"
//     },
//     "thumbnailUrl": "string",
//     "totalNumberOfJobs": "string",
//     "ttl": "string",
//     "updateTime": number
//   }
// }