Class: DatadogAPIClient::V1::WebhooksIntegrationCustomVariableUpdateRequest
- Inherits:
-
Object
- Object
- DatadogAPIClient::V1::WebhooksIntegrationCustomVariableUpdateRequest
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb
Overview
Update request of a custom variable object.
*All properties are optional.*
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#is_secret ⇒ Object
Make custom variable is secret or not.
-
#name ⇒ Object
The name of the variable.
-
#value ⇒ Object
Value of the custom variable.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
36 37 38 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 36 def additional_properties @additional_properties end |
#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.
28 29 30 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 28 def is_secret @is_secret end |
#name ⇒ Object
The name of the variable. It corresponds with ‘<CUSTOM_VARIABLE_NAME>`. It must only contains upper-case characters, integers or underscores.
31 32 33 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 31 def name @name end |
#value ⇒ Object
Value of the custom variable.
34 35 36 |
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 34 def value @value end |