ip_ranges
Creates, updates, deletes, gets or lists an ip_ranges resource.
Overview
| Name | ip_ranges |
| Type | Resource |
| Id | datadog.organization.ip_ranges |
Fields
The following fields are returned by SELECT queries:
- get_ipranges
| Name | Datatype | Description |
|---|---|---|
agents | object | Available prefix information for the Agent endpoints. |
api | object | Available prefix information for the API endpoints. |
apm | object | Available prefix information for the APM endpoints. |
global | object | Available prefix information for all Datadog endpoints. |
logs | object | Available prefix information for the Logs endpoints. |
modified | string | Date when last updated, in the form YYYY-MM-DD-hh-mm-ss. (example: 2019-10-31-20-00-00) |
orchestrator | object | Available prefix information for the Orchestrator endpoints. |
process | object | Available prefix information for the Process endpoints. |
remote-configuration | object | Available prefix information for the Remote Configuration endpoints. |
synthetics | object | Available prefix information for the Synthetics endpoints. |
synthetics-private-locations | object | Available prefix information for the Synthetics Private Locations endpoints. |
version | integer (int64) | Version of the IP list. |
webhooks | object | Available prefix information for the Webhook endpoints. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_ipranges | select | Get information about Datadog IP ranges. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
site | string | The Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both. |
SELECT examples
- get_ipranges
Get information about Datadog IP ranges.
SELECT
agents,
api,
apm,
global,
logs,
modified,
orchestrator,
process,
remote-configuration,
synthetics,
synthetics-private-locations,
version,
webhooks
FROM datadog.organization.ip_ranges
;