usage_application_security_monitoring
Creates, updates, deletes, gets or lists a usage_application_security_monitoring resource.
Overview
| Name | usage_application_security_monitoring | 
| Type | Resource | 
| Id | datadog.organization.usage_application_security_monitoring | 
Fields
The following fields are returned by SELECT queries:
- get_usage_application_security_monitoring
| Name | Datatype | Description | 
|---|---|---|
| id | string | Unique ID of the response. | 
| attributes | object | Usage attributes data. | 
| type | string | Type of usage data. (default: usage_timeseries, example: usage_timeseries) | 
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description | 
|---|---|---|---|---|
| get_usage_application_security_monitoring | select | start_hr,region | end_hr | Get hourly usage for application security . Note: This endpoint has been deprecated. Hourly usage data for all products is now available in the Get hourly usage by product family API | 
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 | 
|---|---|---|
| region | string | (default: datadoghq.com) | 
| start_hr | string (date-time) | Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]for usage beginning at this hour. | 
| end_hr | string (date-time) | Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]for usage ending before this hour. | 
SELECT examples
- get_usage_application_security_monitoring
Get hourly usage for application security .
Note: This endpoint has been deprecated. Hourly usage data for all products is now available in the Get hourly usage by product family API
SELECT
id,
attributes,
type
FROM datadog.organization.usage_application_security_monitoring
WHERE start_hr = '{{ start_hr }}' -- required
AND region = '{{ region }}' -- required
AND end_hr = '{{ end_hr }}'
;