Chilkat Online Tools

CreateBranch Swift3 Example

Amplify

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
    }

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

    let json = CkoJsonObject()!
    json.update("backendEnvironmentArn", value: "string")
    json.update("basicAuthCredentials", value: "string")
    json.update("branchName", value: "string")
    json.update("buildSpec", value: "string")
    json.update("description", value: "string")
    json.update("displayName", value: "string")
    json.updateInt("enableAutoBuild", value: 123)
    json.updateInt("enableBasicAuth", value: 123)
    json.updateInt("enableNotification", value: 123)
    json.updateInt("enablePerformanceMode", value: 123)
    json.updateInt("enablePullRequestPreview", value: 123)
    json.update("environmentVariables.string", value: "string")
    json.update("framework", value: "string")
    json.update("pullRequestEnvironmentName", value: "string")
    json.update("stage", value: "string")
    json.update("tags.string", value: "string")
    json.update("ttl", value: "string")

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

    // {
    //   "backendEnvironmentArn": "string",
    //   "basicAuthCredentials": "string",
    //   "branchName": "string",
    //   "buildSpec": "string",
    //   "description": "string",
    //   "displayName": "string",
    //   "enableAutoBuild": boolean,
    //   "enableBasicAuth": boolean,
    //   "enableNotification": boolean,
    //   "enablePerformanceMode": boolean,
    //   "enablePullRequestPreview": boolean,
    //   "environmentVariables": {
    //     "string": "string"
    //   },
    //   "framework": "string",
    //   "pullRequestEnvironmentName": "string",
    //   "stage": "string",
    //   "tags": {
    //     "string": "string"
    //   },
    //   "ttl": "string"
    // }

    rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
    rest.addHeader("X-Amz-Target", value: "CreateBranch")

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestSb("POST", uriPath: "/apps/{appId}/branches", requestBody: sbRequestBody, responseBody: 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 strVal: String?

    var ActiveJobId: String? = jResp.string(of: "branch.activeJobId")
    var BackendEnvironmentArn: String? = jResp.string(of: "branch.backendEnvironmentArn")
    var BasicAuthCredentials: String? = jResp.string(of: "branch.basicAuthCredentials")
    var BranchArn: String? = jResp.string(of: "branch.branchArn")
    var BranchName: String? = jResp.string(of: "branch.branchName")
    var BuildSpec: String? = jResp.string(of: "branch.buildSpec")
    var CreateTime: Int = jResp.int(of: "branch.createTime").intValue
    var Description: String? = jResp.string(of: "branch.description")
    var DestinationBranch: String? = jResp.string(of: "branch.destinationBranch")
    var DisplayName: String? = jResp.string(of: "branch.displayName")
    var EnableAutoBuild: Int = jResp.int(of: "branch.enableAutoBuild").intValue
    var EnableBasicAuth: Int = jResp.int(of: "branch.enableBasicAuth").intValue
    var EnableNotification: Int = jResp.int(of: "branch.enableNotification").intValue
    var EnablePerformanceMode: Int = jResp.int(of: "branch.enablePerformanceMode").intValue
    var EnablePullRequestPreview: Int = jResp.int(of: "branch.enablePullRequestPreview").intValue
    var v_String: String? = jResp.string(of: "branch.environmentVariables.string")
    var Framework: String? = jResp.string(of: "branch.framework")
    var PullRequestEnvironmentName: String? = jResp.string(of: "branch.pullRequestEnvironmentName")
    var SourceBranch: String? = jResp.string(of: "branch.sourceBranch")
    var Stage: String? = jResp.string(of: "branch.stage")
    var TagsString: String? = jResp.string(of: "branch.tags.string")
    var ThumbnailUrl: String? = jResp.string(of: "branch.thumbnailUrl")
    var TotalNumberOfJobs: String? = jResp.string(of: "branch.totalNumberOfJobs")
    var Ttl: String? = jResp.string(of: "branch.ttl")
    var UpdateTime: Int = jResp.int(of: "branch.updateTime").intValue
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "branch.associatedResources").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "branch.associatedResources[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "branch.customDomains").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "branch.customDomains[i]")
        i = i + 1
    }

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

}