Class: DatadogAPIClient::V1::WebhooksIntegrationCustomVariable
- Inherits:
-
Object
- Object
- DatadogAPIClient::V1::WebhooksIntegrationCustomVariable
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb
Overview
Custom variable for Webhook integration.
Instance Attribute Summary collapse
-
#is_secret ⇒ Object
readonly
Make custom variable is secret or not.
-
#name ⇒ Object
readonly
The name of the variable.
-
#value ⇒ Object
readonly
Value of the custom variable.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#is_secret ⇒ Object
Make custom variable is secret or not. If the custom variable is secret, the value is not returned in the response payload.
30 31 32 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb', line 30 def is_secret @is_secret end |
#name ⇒ Object
The name of the variable. It corresponds with ‘<CUSTOM_VARIABLE_NAME>`.
33 34 35 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb', line 33 def name @name end |
#value ⇒ Object
Value of the custom variable.
36 37 38 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb', line 36 def value @value end |