Sha256: 2f7de6b63d42814bee2ef7b1bc5c1044b952703f69897a286b94fc76662b0436

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

# DatadogAPIClient::V1::SyntheticsGlobalVariable

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **description** | **String** | Description of the global variable. |  |
| **id** | **String** | Unique identifier of the global variable. | [optional][readonly] |
| **name** | **String** | Name of the global variable. |  |
| **parse_test_options** | [**SyntheticsGlobalVariableParseTestOptions**](SyntheticsGlobalVariableParseTestOptions.md) |  | [optional] |
| **parse_test_public_id** | **String** | A Synthetic test ID to use as a test to generate the variable value. | [optional] |
| **tags** | **Array<String>** | Tags of the global variable. |  |
| **value** | [**SyntheticsGlobalVariableValue**](SyntheticsGlobalVariableValue.md) |  |  |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::SyntheticsGlobalVariable.new(
  description: Example description,
  id: null,
  name: MY_VARIABLE,
  parse_test_options: null,
  parse_test_public_id: abc-def-123,
  tags: ["team:front","test:workflow-1"],
  value: null
)
```

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
datadog_api_client-1.2.0 docs/v1/SyntheticsGlobalVariable.md
datadog_api_client-1.1.0 docs/v1/SyntheticsGlobalVariable.md
datadog_api_client-1.0.0 docs/v1/SyntheticsGlobalVariable.md
datadog_api_client-1.0.0.beta.3 docs/v1/SyntheticsGlobalVariable.md
datadog_api_client-1.0.0.beta.2 docs/v1/SyntheticsGlobalVariable.md