Note : This endpoint is in Preview and may be subject to change.
If you have any feedback, contact Datadog support .
GET https://api.ap1.datadoghq.com/api/v2/csm/settings/agentless_hosts https://api.ap2.datadoghq.com/api/v2/csm/settings/agentless_hosts https://api.datadoghq.eu/api/v2/csm/settings/agentless_hosts https://api.ddog-gov.com/api/v2/csm/settings/agentless_hosts https://api.us2.ddog-gov.com/api/v2/csm/settings/agentless_hosts https://api.uk1.datadoghq.com/api/v2/csm/settings/agentless_hosts https://api.datadoghq.com/api/v2/csm/settings/agentless_hosts https://api.us3.datadoghq.com/api/v2/csm/settings/agentless_hosts https://api.us5.datadoghq.com/api/v2/csm/settings/agentless_hosts
Overview Get the list of agentless hosts for CSM, with optional pagination and filtering.
Arguments Query Strings The page index for pagination (zero-based).
The number of agentless hosts to return per page.
A search query string to filter agentless hosts.
Response OK
The response returned when listing agentless hosts.
Expand All
The list of agentless hosts for the current page.
Attributes of an agentless host.
The ID of the cloud account that the host belongs to.
cloud_provider [required ]
The cloud provider of a host resource.
Allowed enum values: aws,gcp,azure,oci
has_posture_management [required ]
Whether CSM Misconfigurations is enabled for this host. true if enabled; false if disabled.
has_vulnerability_scanning [required ]
Whether CSM Vulnerabilities is enabled for this host. true if enabled; false if disabled.
The type of cloud resource for an agentless host.
Allowed enum values: aws_ec2_instance,azure_virtual_machine_instance,gcp_compute_instance,oci_instance
The resource identifier of the agentless host.
The JSON:API type for agentless host resources. The value should always be agentless_host.
Allowed enum values: agentless_host
default: agentless_host
Pagination metadata for a CSM settings list response.
The current page index (zero-based).
The number of resources returned per page.
total_filtered [required ]
The total number of resources matching the filter criteria.
{
"data" : [
{
"attributes" : {
"account_id" : "123456789012" ,
"cloud_provider" : "aws" ,
"has_posture_management" : true ,
"has_vulnerability_scanning" : true ,
"resource_type" : "aws_ec2_instance"
},
"id" : "i-0123456789abcdef0" ,
"type" : "agentless_host"
}
],
"meta" : {
"page_index" : 0 ,
"page_size" : 10 ,
"total_filtered" : 100
}
} Bad Request
API error response.
Expand All
A human-readable explanation specific to this occurrence of the error.
Non-standard meta-information about the error
References to the source of the error.
A string indicating the name of a single request header which caused the error.
A string indicating which URI query parameter caused the error.
A JSON pointer to the value in the request document that caused the error.
Status code of the response.
Short human-readable summary of the error.
{
"errors" : [
{
"detail" : "Missing required attribute in body" ,
"meta" : {},
"source" : {
"header" : "Authorization" ,
"parameter" : "limit" ,
"pointer" : "/data/attributes/title"
},
"status" : "400" ,
"title" : "Bad Request"
}
]
} Not Authorized
{
"errors" : [
"Bad Request"
]
} Too many requests
{
"errors" : [
"Bad Request"
]
} Code Example Copy
# Curl command curl -X GET "https://api.ap1.datadoghq.com "https://api.ap2.datadoghq.com "https://api.datadoghq.eu "https://api.ddog-gov.com "https://api.us2.ddog-gov.com "https://api.uk1.datadoghq.com "https://api.datadoghq.com "https://api.us3.datadoghq.com "https://api.us5.datadoghq.com /api/v2/csm/settings/agentless_hosts " \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY} " \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY} "
"""
List agentless hosts returns "OK" response
"""
from datadog_api_client import ApiClient , Configuration
from datadog_api_client.v2.api.csm_settings_api import CSMSettingsApi
configuration = Configuration ()
configuration . unstable_operations [ "list_csm_agentless_hosts" ] = True
with ApiClient ( configuration ) as api_client :
api_instance = CSMSettingsApi ( api_client )
response = api_instance . list_csm_agentless_hosts ()
print ( response )
Instructions First install the library and its dependencies and then save the example to example.py and run following commands:
DD_SITE = "datadoghq.com us3.datadoghq.com us5.datadoghq.com datadoghq.eu ap1.datadoghq.com ap2.datadoghq.com uk1.datadoghq.com ddog-gov.com us2.ddog-gov.com " DD_API_KEY = "<API-KEY>" DD_APP_KEY = "<APP-KEY>" python3 "example.py"
# List agentless hosts returns "OK" response
require "datadog_api_client"
DatadogAPIClient . configure do | config |
config . unstable_operations [ "v2.list_csm_agentless_hosts" . to_sym ] = true
end
api_instance = DatadogAPIClient :: V2 :: CSMSettingsAPI . new
p api_instance . list_csm_agentless_hosts ()
Instructions First install the library and its dependencies and then save the example to example.rb and run following commands:
DD_SITE = "datadoghq.com us3.datadoghq.com us5.datadoghq.com datadoghq.eu ap1.datadoghq.com ap2.datadoghq.com uk1.datadoghq.com ddog-gov.com us2.ddog-gov.com " DD_API_KEY = "<API-KEY>" DD_APP_KEY = "<APP-KEY>" rb "example.rb"
// List agentless hosts returns "OK" response
package main
import (
"context"
"encoding/json"
"fmt"
"os"
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
"github.com/DataDog/datadog-api-client-go/v2/api/datadogV2"
)
func main () {
ctx := datadog . NewDefaultContext ( context . Background ())
configuration := datadog . NewConfiguration ()
configuration . SetUnstableOperationEnabled ( "v2.ListCSMAgentlessHosts" , true )
apiClient := datadog . NewAPIClient ( configuration )
api := datadogV2 . NewCSMSettingsApi ( apiClient )
resp , r , err := api . ListCSMAgentlessHosts ( ctx , * datadogV2 . NewListCSMAgentlessHostsOptionalParameters ())
if err != nil {
fmt . Fprintf ( os . Stderr , "Error when calling `CSMSettingsApi.ListCSMAgentlessHosts`: %v\n" , err )
fmt . Fprintf ( os . Stderr , "Full HTTP response: %v\n" , r )
}
responseContent , _ := json . MarshalIndent ( resp , "" , " " )
fmt . Fprintf ( os . Stdout , "Response from `CSMSettingsApi.ListCSMAgentlessHosts`:\n%s\n" , responseContent )
}
Instructions First install the library and its dependencies and then save the example to main.go and run following commands:
DD_SITE = "datadoghq.com us3.datadoghq.com us5.datadoghq.com datadoghq.eu ap1.datadoghq.com ap2.datadoghq.com uk1.datadoghq.com ddog-gov.com us2.ddog-gov.com " DD_API_KEY = "<API-KEY>" DD_APP_KEY = "<APP-KEY>" go run "main.go"
// List agentless hosts returns "OK" response
import com.datadog.api.client.ApiClient ;
import com.datadog.api.client.ApiException ;
import com.datadog.api.client.v2.api.CsmSettingsApi ;
import com.datadog.api.client.v2.model.CsmAgentlessHostsResponse ;
public class Example {
public static void main ( String [] args ) {
ApiClient defaultClient = ApiClient . getDefaultApiClient ();
defaultClient . setUnstableOperationEnabled ( "v2.listCSMAgentlessHosts" , true );
CsmSettingsApi apiInstance = new CsmSettingsApi ( defaultClient );
try {
CsmAgentlessHostsResponse result = apiInstance . listCSMAgentlessHosts ();
System . out . println ( result );
} catch ( ApiException e ) {
System . err . println ( "Exception when calling CsmSettingsApi#listCSMAgentlessHosts" );
System . err . println ( "Status code: " + e . getCode ());
System . err . println ( "Reason: " + e . getResponseBody ());
System . err . println ( "Response headers: " + e . getResponseHeaders ());
e . printStackTrace ();
}
}
}
Instructions First install the library and its dependencies and then save the example to Example.java and run following commands:
DD_SITE = "datadoghq.com us3.datadoghq.com us5.datadoghq.com datadoghq.eu ap1.datadoghq.com ap2.datadoghq.com uk1.datadoghq.com ddog-gov.com us2.ddog-gov.com " DD_API_KEY = "<API-KEY>" DD_APP_KEY = "<APP-KEY>" java "Example.java"
// List agentless hosts returns "OK" response
use datadog_api_client ::datadog ;
use datadog_api_client ::datadogV2 ::api_csm_settings ::CSMSettingsAPI ;
use datadog_api_client ::datadogV2 ::api_csm_settings ::ListCSMAgentlessHostsOptionalParams ;
#[tokio::main]
async fn main () {
let mut configuration = datadog ::Configuration ::new ();
configuration . set_unstable_operation_enabled ( "v2.ListCSMAgentlessHosts" , true );
let api = CSMSettingsAPI ::with_config ( configuration );
let resp = api
. list_csm_agentless_hosts ( ListCSMAgentlessHostsOptionalParams ::default ())
. await ;
if let Ok ( value ) = resp {
println! ( " {:#?} " , value );
} else {
println! ( " {:#?} " , resp . unwrap_err ());
}
}
Instructions First install the library and its dependencies and then save the example to src/main.rs and run following commands:
DD_SITE = "datadoghq.com us3.datadoghq.com us5.datadoghq.com datadoghq.eu ap1.datadoghq.com ap2.datadoghq.com uk1.datadoghq.com ddog-gov.com us2.ddog-gov.com " DD_API_KEY = "<API-KEY>" DD_APP_KEY = "<APP-KEY>" cargo run
/**
* List agentless hosts returns "OK" response
*/
import { client , v2 } from "@datadog/datadog-api-client" ;
const configuration = client . createConfiguration ();
configuration . unstableOperations [ "v2.listCSMAgentlessHosts" ] = true ;
const apiInstance = new v2 . CSMSettingsApi ( configuration );
apiInstance
. listCSMAgentlessHosts ()
. then (( data : v2.CsmAgentlessHostsResponse ) => {
console . log (
"API called successfully. Returned data: " + JSON . stringify ( data )
);
})
. catch (( error : any ) => console . error ( error ));
Instructions First install the library and its dependencies and then save the example to example.ts and run following commands:
DD_SITE = "datadoghq.com us3.datadoghq.com us5.datadoghq.com datadoghq.eu ap1.datadoghq.com ap2.datadoghq.com uk1.datadoghq.com ddog-gov.com us2.ddog-gov.com " DD_API_KEY = "<API-KEY>" DD_APP_KEY = "<APP-KEY>" tsc "example.ts"