docs/v1/SyntheticsConfigVariable.md in datadog_api_client-1.0.0 vs docs/v1/SyntheticsConfigVariable.md in datadog_api_client-1.1.0
- old
+ new
@@ -2,11 +2,12 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **example** | **String** | Example for the variable. | |
+| **example** | **String** | Example for the variable. | [optional] |
+| **id** | **String** | ID of the variable for global variables. | [optional] |
| **name** | **String** | Name of the variable. | |
| **pattern** | **String** | Pattern of the variable. | [optional] |
| **type** | [**SyntheticsConfigVariableType**](SyntheticsConfigVariableType.md) | | |
## Example
@@ -14,9 +15,10 @@
```ruby
require 'datadog_api_client/v1'
instance = DatadogAPIClient::V1::SyntheticsConfigVariable.new(
example: null,
+ id: null,
name: VARIABLE_NAME,
pattern: null,
type: null
)
```