MergePullRequestByThreeWay 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 = "codecommit"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://codecommit.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("codecommit.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("authorName", value: "string")
json.update("commitMessage", value: "string")
json.update("conflictDetailLevel", value: "string")
json.update("conflictResolution.deleteFiles[0].filePath", value: "string")
json.updateInt("conflictResolution.replaceContents[0].content", value: 123)
json.update("conflictResolution.replaceContents[0].fileMode", value: "string")
json.update("conflictResolution.replaceContents[0].filePath", value: "string")
json.update("conflictResolution.replaceContents[0].replacementType", value: "string")
json.update("conflictResolution.setFileModes[0].fileMode", value: "string")
json.update("conflictResolution.setFileModes[0].filePath", value: "string")
json.update("conflictResolutionStrategy", value: "string")
json.update("email", value: "string")
json.updateInt("keepEmptyFolders", value: 123)
json.update("pullRequestId", value: "string")
json.update("repositoryName", value: "string")
json.update("sourceCommitId", value: "string")
// The JSON request body created by the above code:
// {
// "authorName": "string",
// "commitMessage": "string",
// "conflictDetailLevel": "string",
// "conflictResolution": {
// "deleteFiles": [
// {
// "filePath": "string"
// }
// ],
// "replaceContents": [
// {
// "content": blob,
// "fileMode": "string",
// "filePath": "string",
// "replacementType": "string"
// }
// ],
// "setFileModes": [
// {
// "fileMode": "string",
// "filePath": "string"
// }
// ]
// },
// "conflictResolutionStrategy": "string",
// "email": "string",
// "keepEmptyFolders": boolean,
// "pullRequestId": "string",
// "repositoryName": "string",
// "sourceCommitId": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "CodeCommit_20150413.MergePullRequestByThreeWay")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestSb("POST", uriPath: "/", 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 approvalRuleContent: String?
var approvalRuleId: String?
var approvalRuleName: String?
var creationDate: Int
var lastModifiedDate: Int
var lastModifiedUser: String?
var ApprovalRuleTemplateId: String?
var ApprovalRuleTemplateName: String?
var ruleContentSha256: String?
var destinationCommit: String?
var destinationReference: String?
var mergeBase: String?
var IsMerged: Int
var MergeCommitId: String?
var MergedBy: String?
var MergeOption: String?
var repositoryName: String?
var sourceCommit: String?
var sourceReference: String?
var AuthorArn: String? = jResp.string(of: "pullRequest.authorArn")
var ClientRequestToken: String? = jResp.string(of: "pullRequest.clientRequestToken")
var CreationDate: Int = jResp.int(of: "pullRequest.creationDate").intValue
var Description: String? = jResp.string(of: "pullRequest.description")
var LastActivityDate: Int = jResp.int(of: "pullRequest.lastActivityDate").intValue
var PullRequestId: String? = jResp.string(of: "pullRequest.pullRequestId")
var PullRequestStatus: String? = jResp.string(of: "pullRequest.pullRequestStatus")
var RevisionId: String? = jResp.string(of: "pullRequest.revisionId")
var Title: String? = jResp.string(of: "pullRequest.title")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "pullRequest.approvalRules").intValue
while i < count_i {
jResp.i = i
approvalRuleContent = jResp.string(of: "pullRequest.approvalRules[i].approvalRuleContent")
approvalRuleId = jResp.string(of: "pullRequest.approvalRules[i].approvalRuleId")
approvalRuleName = jResp.string(of: "pullRequest.approvalRules[i].approvalRuleName")
creationDate = jResp.int(of: "pullRequest.approvalRules[i].creationDate").intValue
lastModifiedDate = jResp.int(of: "pullRequest.approvalRules[i].lastModifiedDate").intValue
lastModifiedUser = jResp.string(of: "pullRequest.approvalRules[i].lastModifiedUser")
ApprovalRuleTemplateId = jResp.string(of: "pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateId")
ApprovalRuleTemplateName = jResp.string(of: "pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateName")
ruleContentSha256 = jResp.string(of: "pullRequest.approvalRules[i].ruleContentSha256")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "pullRequest.pullRequestTargets").intValue
while i < count_i {
jResp.i = i
destinationCommit = jResp.string(of: "pullRequest.pullRequestTargets[i].destinationCommit")
destinationReference = jResp.string(of: "pullRequest.pullRequestTargets[i].destinationReference")
mergeBase = jResp.string(of: "pullRequest.pullRequestTargets[i].mergeBase")
IsMerged = jResp.int(of: "pullRequest.pullRequestTargets[i].mergeMetadata.isMerged").intValue
MergeCommitId = jResp.string(of: "pullRequest.pullRequestTargets[i].mergeMetadata.mergeCommitId")
MergedBy = jResp.string(of: "pullRequest.pullRequestTargets[i].mergeMetadata.mergedBy")
MergeOption = jResp.string(of: "pullRequest.pullRequestTargets[i].mergeMetadata.mergeOption")
repositoryName = jResp.string(of: "pullRequest.pullRequestTargets[i].repositoryName")
sourceCommit = jResp.string(of: "pullRequest.pullRequestTargets[i].sourceCommit")
sourceReference = jResp.string(of: "pullRequest.pullRequestTargets[i].sourceReference")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "pullRequest": {
// "approvalRules": [
// {
// "approvalRuleContent": "string",
// "approvalRuleId": "string",
// "approvalRuleName": "string",
// "creationDate": number,
// "lastModifiedDate": number,
// "lastModifiedUser": "string",
// "originApprovalRuleTemplate": {
// "approvalRuleTemplateId": "string",
// "approvalRuleTemplateName": "string"
// },
// "ruleContentSha256": "string"
// }
// ],
// "authorArn": "string",
// "clientRequestToken": "string",
// "creationDate": number,
// "description": "string",
// "lastActivityDate": number,
// "pullRequestId": "string",
// "pullRequestStatus": "string",
// "pullRequestTargets": [
// {
// "destinationCommit": "string",
// "destinationReference": "string",
// "mergeBase": "string",
// "mergeMetadata": {
// "isMerged": boolean,
// "mergeCommitId": "string",
// "mergedBy": "string",
// "mergeOption": "string"
// },
// "repositoryName": "string",
// "sourceCommit": "string",
// "sourceReference": "string"
// }
// ],
// "revisionId": "string",
// "title": "string"
// }
// }
}