Sha256: 972bcf14a48d188abbc05b6cc581526aafec2efaaeb80a87e7e9e1d26b50c383
Contents?: true
Size: 1.16 KB
Versions: 6
Compression:
Stored size: 1.16 KB
Contents
# DatadogAPIClient::V1::SLOThreshold ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **target** | **Float** | The target value for the service level indicator within the corresponding timeframe. | | | **target_display** | **String** | A string representation of the target that indicates its precision. It uses trailing zeros to show significant decimal places (e.g. `98.00`). Always included in service level objective responses. Ignored in create/update requests. | [optional] | | **timeframe** | [**SLOTimeframe**](SLOTimeframe.md) | | | | **warning** | **Float** | The warning value for the service level objective. | [optional] | | **warning_display** | **String** | A string representation of the warning target (see the description of the `target_display` field for details). Included in service level objective responses if a warning target exists. Ignored in create/update requests. | [optional] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::SLOThreshold.new( target: 99.9, target_display: 99.9, timeframe: null, warning: 90.0, warning_display: 90.0 ) ```
Version data entries
6 entries across 6 versions & 1 rubygems