# DatadogAPIClient::V1::LogsIndexUpdateRequest ## Properties | Name | Type | Description | Notes | | ----------------------- | -------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | | **daily_limit** | **Integer** | The number of log events you can send in this index per day before you are rate-limited. | [optional] | | **disable_daily_limit** | **Boolean** | If true, sets the `daily_limit` value to null and the index is not limited on a daily basis (any specified `daily_limit` value in the request is ignored). If false or omitted, the index's current `daily_limit` is maintained. | [optional] | | **exclusion_filters** | [**Array<LogsExclusion>**](LogsExclusion.md) | An array of exclusion objects. The logs are tested against the query of each filter, following the order of the array. Only the first matching active exclusion matters, others (if any) are ignored. | [optional] | | **filter** | [**LogsFilter**](LogsFilter.md) | | | | **num_retention_days** | **Integer** | The number of days before logs are deleted from this index. Available values depend on retention plans specified in your organization's contract/subscriptions. **Note:** Changing the retention for an index adjusts the length of retention for all logs already in this index. It may also affect billing. | [optional] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::LogsIndexUpdateRequest.new( daily_limit: null, disable_daily_limit: null, exclusion_filters: null, filter: null, num_retention_days: null ) ```