Class: DatadogAPIClient::V2::LLMObsDataDeletionRequestAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::LLMObsDataDeletionRequestAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/llm_obs_data_deletion_request_attributes.rb
Overview
Attributes for an LLM Observability data deletion request.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#delay ⇒ Object
Optional delay in seconds before the deletion is executed.
-
#from ⇒ Object
readonly
Start of the deletion time range in milliseconds since Unix epoch.
-
#query ⇒ Object
readonly
Query filters selecting the data to delete.
-
#to ⇒ Object
readonly
End of the deletion time range in milliseconds since Unix epoch.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
36 37 38 |
# File 'lib/datadog_api_client/v2/models/llm_obs_data_deletion_request_attributes.rb', line 36 def additional_properties @additional_properties end |
#delay ⇒ Object
Optional delay in seconds before the deletion is executed.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/llm_obs_data_deletion_request_attributes.rb', line 25 def delay @delay end |
#from ⇒ Object
Start of the deletion time range in milliseconds since Unix epoch.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/llm_obs_data_deletion_request_attributes.rb', line 28 def from @from end |
#query ⇒ Object
Query filters selecting the data to delete. Must include a query key with an @trace_id filter.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/llm_obs_data_deletion_request_attributes.rb', line 31 def query @query end |
#to ⇒ Object
End of the deletion time range in milliseconds since Unix epoch.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/llm_obs_data_deletion_request_attributes.rb', line 34 def to @to end |