Sha256: 3c6252c0a9dd503c4bbdaa1a2c48f076ef8bf004f7bdee85ea6bc3beb3615828
Contents?: true
Size: 1.51 KB
Versions: 7
Compression:
Stored size: 1.51 KB
Contents
# 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 ) ```
Version data entries
7 entries across 7 versions & 1 rubygems