Chilkat Online Tools

PowerBuilder / Datadog API Collection / List all Azure integrations

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody
oleobject loo_JarrResp
integer li_RespStatusCode
oleobject loo_Json
string ls_App_service_plan_filters
integer li_Automute
string ls_Client_id
string ls_Client_secret
integer li_Cspm_enabled
integer li_Custom_metrics_enabled
string ls_Host_filters
string ls_New_client_id
string ls_New_tenant_name
string ls_Tenant_name
integer j
integer li_Count_j
string ls_StrVal
integer i
integer li_Count_i

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.SetRequestHeader("Accept","application/json")

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://api.app.ddog-gov.com/api/v1/integration/azure",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JarrResp = create oleobject
li_rc = loo_JarrResp.ConnectToNewObject("Chilkat_9_5_0.JsonArray")

loo_JarrResp.LoadSb(loo_SbResponseBody)
loo_JarrResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JarrResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JarrResp
    return
end if

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

// [
//   {
//     "app_service_plan_filters": "key:value,filter:example",
//     "automute": true,
//     "client_id": "testc7f6-1234-5678-9101-3fcbf464test",
//     "client_secret": "testingx./Sw*g/Y33t..R1cH+hScMDt",
//     "cspm_enabled": true,
//     "custom_metrics_enabled": true,
//     "errors": [
//       "*"
//     ],
//     "host_filters": "key:value,filter:example",
//     "new_client_id": "new1c7f6-1234-5678-9101-3fcbf464test",
//     "new_tenant_name": "new1c44-1234-5678-9101-cc00736ftest",
//     "tenant_name": "testc44-1234-5678-9101-cc00736ftest"
//   },
//   {
//     "app_service_plan_filters": "key:value,filter:example",
//     "automute": true,
//     "client_id": "testc7f6-1234-5678-9101-3fcbf464test",
//     "client_secret": "testingx./Sw*g/Y33t..R1cH+hScMDt",
//     "cspm_enabled": true,
//     "custom_metrics_enabled": true,
//     "errors": [
//       "*"
//     ],
//     "host_filters": "key:value,filter:example",
//     "new_client_id": "new1c7f6-1234-5678-9101-3fcbf464test",
//     "new_tenant_name": "new1c44-1234-5678-9101-cc00736ftest",
//     "tenant_name": "testc44-1234-5678-9101-cc00736ftest"
//   }
// ]

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

i = 0
li_Count_i = loo_JarrResp.Size
do while i < li_Count_i
    loo_Json = loo_JarrResp.ObjectAt(i)
    ls_App_service_plan_filters = loo_Json.StringOf("app_service_plan_filters")
    li_Automute = loo_Json.BoolOf("automute")
    ls_Client_id = loo_Json.StringOf("client_id")
    ls_Client_secret = loo_Json.StringOf("client_secret")
    li_Cspm_enabled = loo_Json.BoolOf("cspm_enabled")
    li_Custom_metrics_enabled = loo_Json.BoolOf("custom_metrics_enabled")
    ls_Host_filters = loo_Json.StringOf("host_filters")
    ls_New_client_id = loo_Json.StringOf("new_client_id")
    ls_New_tenant_name = loo_Json.StringOf("new_tenant_name")
    ls_Tenant_name = loo_Json.StringOf("tenant_name")
    j = 0
    li_Count_j = loo_Json.SizeOfArray("errors")
    do while j < li_Count_j
        loo_Json.J = j
        ls_StrVal = loo_Json.StringOf("errors[j]")
        j = j + 1
    loop
    destroy loo_Json
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JarrResp

Curl Command

curl -X GET
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v1/integration/azure

Postman Collection Item JSON

{
  "name": "List all Azure integrations",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v1/integration/azure",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "integration",
        "azure"
      ]
    },
    "description": "List all Datadog-Azure integrations configured in your Datadog account."
  },
  "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/azure",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "azure"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n  {\n    \"app_service_plan_filters\": \"key:value,filter:example\",\n    \"automute\": true,\n    \"client_id\": \"testc7f6-1234-5678-9101-3fcbf464test\",\n    \"client_secret\": \"testingx./Sw*g/Y33t..R1cH+hScMDt\",\n    \"cspm_enabled\": true,\n    \"custom_metrics_enabled\": true,\n    \"errors\": [\n      \"*\"\n    ],\n    \"host_filters\": \"key:value,filter:example\",\n    \"new_client_id\": \"new1c7f6-1234-5678-9101-3fcbf464test\",\n    \"new_tenant_name\": \"new1c44-1234-5678-9101-cc00736ftest\",\n    \"tenant_name\": \"testc44-1234-5678-9101-cc00736ftest\"\n  },\n  {\n    \"app_service_plan_filters\": \"key:value,filter:example\",\n    \"automute\": true,\n    \"client_id\": \"testc7f6-1234-5678-9101-3fcbf464test\",\n    \"client_secret\": \"testingx./Sw*g/Y33t..R1cH+hScMDt\",\n    \"cspm_enabled\": true,\n    \"custom_metrics_enabled\": true,\n    \"errors\": [\n      \"*\"\n    ],\n    \"host_filters\": \"key:value,filter:example\",\n    \"new_client_id\": \"new1c7f6-1234-5678-9101-3fcbf464test\",\n    \"new_tenant_name\": \"new1c44-1234-5678-9101-cc00736ftest\",\n    \"tenant_name\": \"testc44-1234-5678-9101-cc00736ftest\"\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/azure",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "azure"
          ]
        }
      },
      "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/azure",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "azure"
          ]
        }
      },
      "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/azure",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "integration",
            "azure"
          ]
        }
      },
      "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}"
    }
  ]
}