Chilkat Online Tools

UpdatePullRequestTitle Xojo Example

AWS CodeCommit

// 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 = "codecommit"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = 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",443,True,True)
If (success <> True) Then
    System.DebugLog("ConnectFailReason: " + Str(rest.ConnectFailReason))
    System.DebugLog(rest.LastErrorText)
    Return
End If

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

Dim json As New Chilkat.JsonObject
success = json.UpdateString("pullRequestId","string")
success = json.UpdateString("title","string")

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

// {
//   "pullRequestId": "string",
//   "title": "string"
// }

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

Dim sbRequestBody As New Chilkat.StringBuilder
success = json.EmitSb(sbRequestBody)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("POST","/",sbRequestBody,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 approvalRuleContent As String
Dim approvalRuleId As String
Dim approvalRuleName As String
Dim creationDate As Int32
Dim lastModifiedDate As Int32
Dim lastModifiedUser As String
Dim ApprovalRuleTemplateId As String
Dim ApprovalRuleTemplateName As String
Dim ruleContentSha256 As String
Dim destinationCommit As String
Dim destinationReference As String
Dim mergeBase As String
Dim IsMerged As Int32
Dim MergeCommitId As String
Dim MergedBy As String
Dim MergeOption As String
Dim repositoryName As String
Dim sourceCommit As String
Dim sourceReference As String

Dim AuthorArn As String
AuthorArn = jResp.StringOf("pullRequest.authorArn")
Dim ClientRequestToken As String
ClientRequestToken = jResp.StringOf("pullRequest.clientRequestToken")
Dim CreationDate As Int32
CreationDate = jResp.IntOf("pullRequest.creationDate")
Dim Description As String
Description = jResp.StringOf("pullRequest.description")
Dim LastActivityDate As Int32
LastActivityDate = jResp.IntOf("pullRequest.lastActivityDate")
Dim PullRequestId As String
PullRequestId = jResp.StringOf("pullRequest.pullRequestId")
Dim PullRequestStatus As String
PullRequestStatus = jResp.StringOf("pullRequest.pullRequestStatus")
Dim RevisionId As String
RevisionId = jResp.StringOf("pullRequest.revisionId")
Dim Title As String
Title = jResp.StringOf("pullRequest.title")
Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("pullRequest.approvalRules")
While i < count_i
    jResp.I = i
    approvalRuleContent = jResp.StringOf("pullRequest.approvalRules[i].approvalRuleContent")
    approvalRuleId = jResp.StringOf("pullRequest.approvalRules[i].approvalRuleId")
    approvalRuleName = jResp.StringOf("pullRequest.approvalRules[i].approvalRuleName")
    creationDate = jResp.IntOf("pullRequest.approvalRules[i].creationDate")
    lastModifiedDate = jResp.IntOf("pullRequest.approvalRules[i].lastModifiedDate")
    lastModifiedUser = jResp.StringOf("pullRequest.approvalRules[i].lastModifiedUser")
    ApprovalRuleTemplateId = jResp.StringOf("pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateId")
    ApprovalRuleTemplateName = jResp.StringOf("pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateName")
    ruleContentSha256 = jResp.StringOf("pullRequest.approvalRules[i].ruleContentSha256")
    i = i + 1
Wend
i = 0
count_i = jResp.SizeOfArray("pullRequest.pullRequestTargets")
While i < count_i
    jResp.I = i
    destinationCommit = jResp.StringOf("pullRequest.pullRequestTargets[i].destinationCommit")
    destinationReference = jResp.StringOf("pullRequest.pullRequestTargets[i].destinationReference")
    mergeBase = jResp.StringOf("pullRequest.pullRequestTargets[i].mergeBase")
    IsMerged = jResp.IntOf("pullRequest.pullRequestTargets[i].mergeMetadata.isMerged")
    MergeCommitId = jResp.StringOf("pullRequest.pullRequestTargets[i].mergeMetadata.mergeCommitId")
    MergedBy = jResp.StringOf("pullRequest.pullRequestTargets[i].mergeMetadata.mergedBy")
    MergeOption = jResp.StringOf("pullRequest.pullRequestTargets[i].mergeMetadata.mergeOption")
    repositoryName = jResp.StringOf("pullRequest.pullRequestTargets[i].repositoryName")
    sourceCommit = jResp.StringOf("pullRequest.pullRequestTargets[i].sourceCommit")
    sourceReference = jResp.StringOf("pullRequest.pullRequestTargets[i].sourceReference")
    i = i + 1
Wend

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