Chilkat Online Tools

UpdateWorkspace Android Example

AWS Managed Grafana

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkRest rest = new CkRest();
    boolean success;

    CkAuthAws authAws = new CkAuthAws();
    authAws.put_AccessKey("AWS_ACCESS_KEY");
    authAws.put_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.put_Region("us-west-2");
    authAws.put_ServiceName("grafana");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://grafana.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("grafana.us-west-2.amazonaws.com",443,true,true);
    if (success != true) {
        Log.i(TAG, "ConnectFailReason: " + String.valueOf(rest.get_ConnectFailReason()));
        Log.i(TAG, 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

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("accountAccessType","string");
    json.UpdateString("organizationRoleName","string");
    json.UpdateString("permissionType","string");
    json.UpdateString("stackSetName","string");
    json.UpdateString("workspaceDataSources[0]","string");
    json.UpdateString("workspaceDescription","string");
    json.UpdateString("workspaceName","string");
    json.UpdateString("workspaceNotificationDestinations[0]","string");
    json.UpdateString("workspaceOrganizationalUnits[0]","string");
    json.UpdateString("workspaceRoleArn","string");

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

    // {
    //   "accountAccessType": "string",
    //   "organizationRoleName": "string",
    //   "permissionType": "string",
    //   "stackSetName": "string",
    //   "workspaceDataSources": [
    //     "string"
    //   ],
    //   "workspaceDescription": "string",
    //   "workspaceName": "string",
    //   "workspaceNotificationDestinations": [
    //     "string"
    //   ],
    //   "workspaceOrganizationalUnits": [
    //     "string"
    //   ],
    //   "workspaceRoleArn": "string"
    // }

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

    CkStringBuilder sbRequestBody = new CkStringBuilder();
    json.EmitSb(sbRequestBody);
    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = rest.FullRequestSb("PUT","/workspaces/{workspaceId}",sbRequestBody,sbResponseBody);
    if (success != true) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    int respStatusCode = rest.get_ResponseStatusCode();
    Log.i(TAG, "response status code = " + String.valueOf(respStatusCode));
    if (respStatusCode != 200) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, rest.responseHeader());
        Log.i(TAG, "Response Body:");
        Log.i(TAG, sbResponseBody.getAsString());
        return;
        }

    CkJsonObject jResp = new CkJsonObject();
    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 AccountAccessType = jResp.stringOf("workspace.accountAccessType");
    String SamlConfigurationStatus = jResp.stringOf("workspace.authentication.samlConfigurationStatus");
    int Created = jResp.IntOf("workspace.created");
    String Description = jResp.stringOf("workspace.description");
    String Endpoint = jResp.stringOf("workspace.endpoint");
    int FreeTrialConsumed = jResp.IntOf("workspace.freeTrialConsumed");
    int FreeTrialExpiration = jResp.IntOf("workspace.freeTrialExpiration");
    String GrafanaVersion = jResp.stringOf("workspace.grafanaVersion");
    String Id = jResp.stringOf("workspace.id");
    int LicenseExpiration = jResp.IntOf("workspace.licenseExpiration");
    String LicenseType = jResp.stringOf("workspace.licenseType");
    int Modified = jResp.IntOf("workspace.modified");
    String Name = jResp.stringOf("workspace.name");
    String OrganizationRoleName = jResp.stringOf("workspace.organizationRoleName");
    String PermissionType = jResp.stringOf("workspace.permissionType");
    String StackSetName = jResp.stringOf("workspace.stackSetName");
    String Status = jResp.stringOf("workspace.status");
    String v_String = jResp.stringOf("workspace.tags.string");
    String WorkspaceRoleArn = jResp.stringOf("workspace.workspaceRoleArn");
    int i = 0;
    int count_i = jResp.SizeOfArray("workspace.authentication.providers");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf("workspace.authentication.providers[i]");
        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("workspace.dataSources");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf("workspace.dataSources[i]");
        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("workspace.notificationDestinations");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf("workspace.notificationDestinations[i]");
        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("workspace.organizationalUnits");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf("workspace.organizationalUnits[i]");
        i = i + 1;
        }

    // A sample JSON response body parsed by the above code:

    // {
    //   "workspace": {
    //     "accountAccessType": "string",
    //     "authentication": {
    //       "providers": [
    //         "string"
    //       ],
    //       "samlConfigurationStatus": "string"
    //     },
    //     "created": number,
    //     "dataSources": [
    //       "string"
    //     ],
    //     "description": "string",
    //     "endpoint": "string",
    //     "freeTrialConsumed": boolean,
    //     "freeTrialExpiration": number,
    //     "grafanaVersion": "string",
    //     "id": "string",
    //     "licenseExpiration": number,
    //     "licenseType": "string",
    //     "modified": number,
    //     "name": "string",
    //     "notificationDestinations": [
    //       "string"
    //     ],
    //     "organizationalUnits": [
    //       "string"
    //     ],
    //     "organizationRoleName": "string",
    //     "permissionType": "string",
    //     "stackSetName": "string",
    //     "status": "string",
    //     "tags": {
    //       "string": "string"
    //     },
    //     "workspaceRoleArn": "string"
    //   }
    // }

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}