Android / Datadog API Collection / Get the latest Cloud Workload Security policy
Back to Collection Items
// 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 assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
http.SetRequestHeader("Accept","application/yaml");
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://api.app.ddog-gov.com/api/v2/security/cloud_workload/policy/download",sbResponseBody);
if (success == false) {
Log.i(TAG, http.lastErrorText());
return;
}
ERROR: "=" expected
ERROR: Undefined variable(ERROR)
}
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."
}
}
Curl Command
curl -X GET
-H "Accept: application/yaml"
https://api.app.ddog-gov.com/api/v2/security/cloud_workload/policy/download
Postman Collection Item JSON
{
"name": "Get the latest Cloud Workload Security policy",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/yaml"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/security/cloud_workload/policy/download",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"security",
"cloud_workload",
"policy",
"download"
]
},
"description": "The download endpoint generates a Cloud Workload Security policy file from your currently active\nCloud Workload Security rules, and downloads them as a .policy file. This file can then be deployed to\nyour Agents to update the policy running in your environment."
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/yaml"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/security/cloud_workload/policy/download",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"security",
"cloud_workload",
"policy",
"download"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "application/yaml"
}
],
"cookie": [
],
"body": "<string>"
},
{
"name": "Not Authorized",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/security/cloud_workload/policy/download",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"security",
"cloud_workload",
"policy",
"download"
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"<string>\",\n \"<string>\"\n ]\n}"
},
{
"name": "Too many requests",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/security/cloud_workload/policy/download",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"security",
"cloud_workload",
"policy",
"download"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"<string>\",\n \"<string>\"\n ]\n}"
}
]
}