ListBranches Swift3 Example
func chilkatTest() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let rest = CkoRest()!
var success: Bool
let authAws = CkoAuthAws()!
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
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", port: 443, tls: true, autoReconnect: true)
if success != true {
print("ConnectFailReason: \(rest.connectFailReason.intValue)")
print("\(rest.lastErrorText!)")
return
}
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "ListBranches")
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestNoBodySb("GET", uriPath: "/apps/{appId}/branches", sb: sbResponseBody)
if success != true {
print("\(rest.lastErrorText!)")
return
}
var respStatusCode: Int = rest.responseStatusCode.intValue
print("response status code = \(respStatusCode)")
if respStatusCode != 200 {
print("Response Header:")
print("\(rest.responseHeader!)")
print("Response Body:")
print("\(sbResponseBody.getAsString()!)")
return
}
let jResp = CkoJsonObject()!
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
var activeJobId: String?
var backendEnvironmentArn: String?
var basicAuthCredentials: String?
var branchArn: String?
var branchName: String?
var buildSpec: String?
var createTime: Int
var description: String?
var destinationBranch: String?
var displayName: String?
var enableAutoBuild: Int
var enableBasicAuth: Int
var enableNotification: Int
var enablePerformanceMode: Int
var enablePullRequestPreview: Int
var v_String: String?
var framework: String?
var pullRequestEnvironmentName: String?
var sourceBranch: String?
var stage: String?
var tagsString: String?
var thumbnailUrl: String?
var totalNumberOfJobs: String?
var ttl: String?
var updateTime: Int
var j: Int
var count_j: Int
var strVal: String?
var nextToken: String? = jResp.string(of: "nextToken")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "branches").intValue
while i < count_i {
jResp.i = i
activeJobId = jResp.string(of: "branches[i].activeJobId")
backendEnvironmentArn = jResp.string(of: "branches[i].backendEnvironmentArn")
basicAuthCredentials = jResp.string(of: "branches[i].basicAuthCredentials")
branchArn = jResp.string(of: "branches[i].branchArn")
branchName = jResp.string(of: "branches[i].branchName")
buildSpec = jResp.string(of: "branches[i].buildSpec")
createTime = jResp.int(of: "branches[i].createTime").intValue
description = jResp.string(of: "branches[i].description")
destinationBranch = jResp.string(of: "branches[i].destinationBranch")
displayName = jResp.string(of: "branches[i].displayName")
enableAutoBuild = jResp.int(of: "branches[i].enableAutoBuild").intValue
enableBasicAuth = jResp.int(of: "branches[i].enableBasicAuth").intValue
enableNotification = jResp.int(of: "branches[i].enableNotification").intValue
enablePerformanceMode = jResp.int(of: "branches[i].enablePerformanceMode").intValue
enablePullRequestPreview = jResp.int(of: "branches[i].enablePullRequestPreview").intValue
v_String = jResp.string(of: "branches[i].environmentVariables.string")
framework = jResp.string(of: "branches[i].framework")
pullRequestEnvironmentName = jResp.string(of: "branches[i].pullRequestEnvironmentName")
sourceBranch = jResp.string(of: "branches[i].sourceBranch")
stage = jResp.string(of: "branches[i].stage")
tagsString = jResp.string(of: "branches[i].tags.string")
thumbnailUrl = jResp.string(of: "branches[i].thumbnailUrl")
totalNumberOfJobs = jResp.string(of: "branches[i].totalNumberOfJobs")
ttl = jResp.string(of: "branches[i].ttl")
updateTime = jResp.int(of: "branches[i].updateTime").intValue
j = 0
count_j = jResp.size(ofArray: "branches[i].associatedResources").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "branches[i].associatedResources[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "branches[i].customDomains").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "branches[i].customDomains[j]")
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "branches": [
// {
// "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
// }
// ],
// "nextToken": "string"
// }
}