UpdatePullRequestStatus C# Example
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Chilkat.Rest rest = new Chilkat.Rest();
bool success;
Chilkat.AuthAws authAws = 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
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) {
Debug.WriteLine("ConnectFailReason: " + Convert.ToString(rest.ConnectFailReason));
Debug.WriteLine(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
Chilkat.JsonObject json = new Chilkat.JsonObject();
json.UpdateString("pullRequestId","string");
json.UpdateString("pullRequestStatus","string");
// The JSON request body created by the above code:
// {
// "pullRequestId": "string",
// "pullRequestStatus": "string"
// }
rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","CodeCommit_20150413.UpdatePullRequestStatus");
Chilkat.StringBuilder sbRequestBody = new Chilkat.StringBuilder();
json.EmitSb(sbRequestBody);
Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
if (success != true) {
Debug.WriteLine(rest.LastErrorText);
return;
}
int respStatusCode = rest.ResponseStatusCode;
Debug.WriteLine("response status code = " + Convert.ToString(respStatusCode));
if (respStatusCode != 200) {
Debug.WriteLine("Response Header:");
Debug.WriteLine(rest.ResponseHeader);
Debug.WriteLine("Response Body:");
Debug.WriteLine(sbResponseBody.GetAsString());
return;
}
Chilkat.JsonObject jResp = new Chilkat.JsonObject();
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
string approvalRuleContent;
string approvalRuleId;
string approvalRuleName;
int creationDate;
int lastModifiedDate;
string lastModifiedUser;
string ApprovalRuleTemplateId;
string ApprovalRuleTemplateName;
string ruleContentSha256;
string destinationCommit;
string destinationReference;
string mergeBase;
int IsMerged;
string MergeCommitId;
string MergedBy;
string MergeOption;
string repositoryName;
string sourceCommit;
string sourceReference;
string AuthorArn = jResp.StringOf("pullRequest.authorArn");
string ClientRequestToken = jResp.StringOf("pullRequest.clientRequestToken");
int CreationDate = jResp.IntOf("pullRequest.creationDate");
string Description = jResp.StringOf("pullRequest.description");
int LastActivityDate = jResp.IntOf("pullRequest.lastActivityDate");
string PullRequestId = jResp.StringOf("pullRequest.pullRequestId");
string PullRequestStatus = jResp.StringOf("pullRequest.pullRequestStatus");
string RevisionId = jResp.StringOf("pullRequest.revisionId");
string Title = jResp.StringOf("pullRequest.title");
int i = 0;
int 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;
}
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;
}
// 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"
// }
// }