Class: DatadogAPIClient::V1::WebhooksIntegrationCustomVariableUpdateRequest

Inherits:
Object
  • Object
show all
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

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#is_secretObject

Make custom variable is secret or not. If the custom variable is secret, the value is not returned in the response payload.



32
33
34
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 32

def is_secret
  @is_secret
end

#nameObject

The name of the variable. It corresponds with ‘<CUSTOM_VARIABLE_NAME>`. It must only contains upper-case characters, integers or underscores.



35
36
37
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 35

def name
  @name
end

#valueObject

Value of the custom variable.



38
39
40
# File 'lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb', line 38

def value
  @value
end