Chilkat Online Tools

DataFlex / Datadog API Collection / List all AWS integrations

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vQueryParams
    Handle hoQueryParams
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sAccess_key_id
    String sAccount_id
    Boolean iAuto_scaling
    Boolean iOpswork
    Boolean iCspm_resource_collection_enabled
    Boolean iMetrics_collection_enabled
    Boolean iResource_collection_enabled
    String sRole_name
    String sSecret_access_key
    Integer j
    Integer iCount_j
    String sStrVal
    Integer i
    Integer iCount_i
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoQueryParams
    If (Not(IsComObjectCreated(hoQueryParams))) Begin
        Send CreateComObject of hoQueryParams
    End
    Get ComUpdateString Of hoQueryParams "account_id" "cupidatat Ut Duis" To iSuccess
    Get ComUpdateString Of hoQueryParams "role_name" "cupidatat Ut Duis" To iSuccess
    Get ComUpdateString Of hoQueryParams "access_key_id" "cupidatat Ut Duis" To iSuccess

    Send ComSetRequestHeader To hoHttp "Accept" "application/json"

    Get pvComObject of hoQueryParams to vQueryParams
    Get ComQuickRequestParams Of hoHttp "GET" "https://api.app.ddog-gov.com/api/v1/integration/aws" vQueryParams To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "accounts": [
    //     {
    //       "access_key_id": "sit Lorem commodo est",
    //       "account_id": "123456789012",
    //       "account_specific_namespace_rules": {
    //         "auto_scaling": false,
    //         "opswork": false
    //       },
    //       "cspm_resource_collection_enabled": true,
    //       "excluded_regions": [
    //         "us-east-1",
    //         "us-west-2"
    //       ],
    //       "filter_tags": [
    //         "$KEY:$VALUE"
    //       ],
    //       "host_tags": [
    //         "$KEY:$VALUE"
    //       ],
    //       "metrics_collection_enabled": false,
    //       "resource_collection_enabled": true,
    //       "role_name": "DatadogAWSIntegrationRole",
    //       "secret_access_key": "qui veniam sint anim"
    //     },
    //     {
    //       "access_key_id": "quis enim laboris",
    //       "account_id": "123456789012",
    //       "account_specific_namespace_rules": {
    //         "auto_scaling": false,
    //         "opswork": false
    //       },
    //       "cspm_resource_collection_enabled": true,
    //       "excluded_regions": [
    //         "us-east-1",
    //         "us-west-2"
    //       ],
    //       "filter_tags": [
    //         "$KEY:$VALUE"
    //       ],
    //       "host_tags": [
    //         "$KEY:$VALUE"
    //       ],
    //       "metrics_collection_enabled": false,
    //       "resource_collection_enabled": true,
    //       "role_name": "DatadogAWSIntegrationRole",
    //       "secret_access_key": "ea esse Duis"
    //     }
    //   ]
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "accounts" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "accounts[i].access_key_id" To sAccess_key_id
        Get ComStringOf Of hoJResp "accounts[i].account_id" To sAccount_id
        Get ComBoolOf Of hoJResp "accounts[i].account_specific_namespace_rules.auto_scaling" To iAuto_scaling
        Get ComBoolOf Of hoJResp "accounts[i].account_specific_namespace_rules.opswork" To iOpswork
        Get ComBoolOf Of hoJResp "accounts[i].cspm_resource_collection_enabled" To iCspm_resource_collection_enabled
        Get ComBoolOf Of hoJResp "accounts[i].metrics_collection_enabled" To iMetrics_collection_enabled
        Get ComBoolOf Of hoJResp "accounts[i].resource_collection_enabled" To iResource_collection_enabled
        Get ComStringOf Of hoJResp "accounts[i].role_name" To sRole_name
        Get ComStringOf Of hoJResp "accounts[i].secret_access_key" To sSecret_access_key
        Move 0 To j
        Get ComSizeOfArray Of hoJResp "accounts[i].excluded_regions" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Get ComStringOf Of hoJResp "accounts[i].excluded_regions[j]" To sStrVal
            Move (j + 1) To j
        Loop

        Move 0 To j
        Get ComSizeOfArray Of hoJResp "accounts[i].filter_tags" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Get ComStringOf Of hoJResp "accounts[i].filter_tags[j]" To sStrVal
            Move (j + 1) To j
        Loop

        Move 0 To j
        Get ComSizeOfArray Of hoJResp "accounts[i].host_tags" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Get ComStringOf Of hoJResp "accounts[i].host_tags[j]" To sStrVal
            Move (j + 1) To j
        Loop

        Move (i + 1) To i
    Loop



End_Procedure

Curl Command

curl -G -d "account_id=cupidatat%20Ut%20Duis"
	-d "role_name=cupidatat%20Ut%20Duis"
	-d "access_key_id=cupidatat%20Ut%20Duis"
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v1/integration/aws

Postman Collection Item JSON

{
  "name": "List all AWS integrations",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v1/integration/aws?account_id=cupidatat Ut Duis&role_name=cupidatat Ut Duis&access_key_id=cupidatat Ut Duis",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "integration",
        "aws"
      ],
      "query": [
        {
          "key": "account_id",
          "value": "cupidatat Ut Duis",
          "description": "Only return AWS accounts that matches this `account_id`."
        },
        {
          "key": "role_name",
          "value": "cupidatat Ut Duis",
          "description": "Only return AWS accounts that matches this role_name."
        },
        {
          "key": "access_key_id",
          "value": "cupidatat Ut Duis",
          "description": "Only return AWS accounts that matches this `access_key_id`."
        }
      ]
    },
    "description": "List all Datadog-AWS integrations available in your Datadog organization."
  },
  "response": [
    {
      "name": "OK",
      "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/v1/integration/aws?account_id=cupidatat Ut Duis&role_name=cupidatat Ut Duis&access_key_id=cupidatat Ut Duis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "aws"
          ],
          "query": [
            {
              "key": "account_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `account_id`."
            },
            {
              "key": "role_name",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this role_name."
            },
            {
              "key": "access_key_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `access_key_id`."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"accounts\": [\n    {\n      \"access_key_id\": \"sit Lorem commodo est\",\n      \"account_id\": \"123456789012\",\n      \"account_specific_namespace_rules\": {\n        \"auto_scaling\": false,\n        \"opswork\": false\n      },\n      \"cspm_resource_collection_enabled\": true,\n      \"excluded_regions\": [\n        \"us-east-1\",\n        \"us-west-2\"\n      ],\n      \"filter_tags\": [\n        \"$KEY:$VALUE\"\n      ],\n      \"host_tags\": [\n        \"$KEY:$VALUE\"\n      ],\n      \"metrics_collection_enabled\": false,\n      \"resource_collection_enabled\": true,\n      \"role_name\": \"DatadogAWSIntegrationRole\",\n      \"secret_access_key\": \"qui veniam sint anim\"\n    },\n    {\n      \"access_key_id\": \"quis enim laboris\",\n      \"account_id\": \"123456789012\",\n      \"account_specific_namespace_rules\": {\n        \"auto_scaling\": false,\n        \"opswork\": false\n      },\n      \"cspm_resource_collection_enabled\": true,\n      \"excluded_regions\": [\n        \"us-east-1\",\n        \"us-west-2\"\n      ],\n      \"filter_tags\": [\n        \"$KEY:$VALUE\"\n      ],\n      \"host_tags\": [\n        \"$KEY:$VALUE\"\n      ],\n      \"metrics_collection_enabled\": false,\n      \"resource_collection_enabled\": true,\n      \"role_name\": \"DatadogAWSIntegrationRole\",\n      \"secret_access_key\": \"ea esse Duis\"\n    }\n  ]\n}"
    },
    {
      "name": "Bad Request",
      "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/v1/integration/aws?account_id=cupidatat Ut Duis&role_name=cupidatat Ut Duis&access_key_id=cupidatat Ut Duis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "aws"
          ],
          "query": [
            {
              "key": "account_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `account_id`."
            },
            {
              "key": "role_name",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this role_name."
            },
            {
              "key": "access_key_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `access_key_id`."
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"Bad Request\",\n    \"Bad Request\"\n  ]\n}"
    },
    {
      "name": "Authentication Error",
      "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/v1/integration/aws?account_id=cupidatat Ut Duis&role_name=cupidatat Ut Duis&access_key_id=cupidatat Ut Duis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "aws"
          ],
          "query": [
            {
              "key": "account_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `account_id`."
            },
            {
              "key": "role_name",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this role_name."
            },
            {
              "key": "access_key_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `access_key_id`."
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"Bad Request\",\n    \"Bad Request\"\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/v1/integration/aws?account_id=cupidatat Ut Duis&role_name=cupidatat Ut Duis&access_key_id=cupidatat Ut Duis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "aws"
          ],
          "query": [
            {
              "key": "account_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `account_id`."
            },
            {
              "key": "role_name",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this role_name."
            },
            {
              "key": "access_key_id",
              "value": "cupidatat Ut Duis",
              "description": "Only return AWS accounts that matches this `access_key_id`."
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"Bad Request\",\n    \"Bad Request\"\n  ]\n}"
    }
  ]
}