Chilkat Online Tools

UpdateBranch C# Example

Amplify

‐ਫ਼怈௰n style="color: rgb(108,122,133)">// 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;
}

// 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("backendEnvironmentArn","string");
json.UpdateString("basicAuthCredentials","string");
json.UpdateString("buildSpec","string");
json.UpdateString("description","string");
json.UpdateString("displayName","string");
json.UpdateInt("enableAutoBuild",123);
json.UpdateInt("enableBasicAuth",123);
json.UpdateInt("enableNotification",123);
json.UpdateInt("enablePerformanceMode",123);
json.UpdateInt("enablePullRequestPreview",123);
json.UpdateString("environmentVariables.string","string");
json.UpdateString("framework","string");
json.UpdateString("pullRequestEnvironmentName","string");
json.UpdateString("stage","string");
json.UpdateString("ttl","string");

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

// {
//   "backendEnvironmentArn": "string",
//   "basicAuthCredentials": "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",
//   "ttl": "string"
// }

rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","UpdateBranch");

Chilkat.StringBuilder sbRequestBody = new Chilkat.StringBuilder();
json.EmitSb(sbRequestBody);
Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = rest.FullRequestSb("POST","/apps/{appId}/branches/{branchName}",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 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
//   }
// }