DeleteBranch 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 = "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",443,true,true);
if (success != true) {
Debug.WriteLine("ConnectFailReason: " + Convert.ToString(rest.ConnectFailReason));
Debug.WriteLine(rest.LastErrorText);
return;
}
rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","DeleteBranch");
Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = rest.FullRequestNoBodySb("DELETE","/apps/{appId}/branches/{branchName}",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 strVal;
string ActiveJobId = jResp.StringOf("branch.activeJobId");
string BackendEnvironmentArn = jResp.StringOf("branch.backendEnvironmentArn");
string BasicAuthCredentials = jResp.StringOf("branch.basicAuthCredentials");
string BranchArn = jResp.StringOf("branch.branchArn");
string BranchName = jResp.StringOf("branch.branchName");
string BuildSpec = jResp.StringOf("branch.buildSpec");
int CreateTime = jResp.IntOf("branch.createTime");
string Description = jResp.StringOf("branch.description");
string DestinationBranch = jResp.StringOf("branch.destinationBranch");
string DisplayName = jResp.StringOf("branch.displayName");
int EnableAutoBuild = jResp.IntOf("branch.enableAutoBuild");
int EnableBasicAuth = jResp.IntOf("branch.enableBasicAuth");
int EnableNotification = jResp.IntOf("branch.enableNotification");
int EnablePerformanceMode = jResp.IntOf("branch.enablePerformanceMode");
int EnablePullRequestPreview = jResp.IntOf("branch.enablePullRequestPreview");
string v_String = jResp.StringOf("branch.environmentVariables.string");
string Framework = jResp.StringOf("branch.framework");
string PullRequestEnvironmentName = jResp.StringOf("branch.pullRequestEnvironmentName");
string SourceBranch = jResp.StringOf("branch.sourceBranch");
string Stage = jResp.StringOf("branch.stage");
string TagsString = jResp.StringOf("branch.tags.string");
string ThumbnailUrl = jResp.StringOf("branch.thumbnailUrl");
string TotalNumberOfJobs = jResp.StringOf("branch.totalNumberOfJobs");
string Ttl = jResp.StringOf("branch.ttl");
int UpdateTime = jResp.IntOf("branch.updateTime");
int i = 0;
int count_i = jResp.SizeOfArray("branch.associatedResources");
while (i < count_i) {
jResp.I = i;
strVal = jResp.StringOf("branch.associatedResources[i]");
i = i + 1;
}
i = 0;
count_i = jResp.SizeOfArray("branch.customDomains");
while (i < count_i) {
jResp.I = i;
strVal = jResp.StringOf("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
// }
// }