Class: DatadogAPIClient::V2::UpdateAppRequestDataAttributes

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb

Overview

App definition attributes to be updated, such as name, description, and components.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

Returns the value of attribute additional_properties.


42
43
44
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 42

def additional_properties
  @additional_properties
end

#componentsObject

The new UI components that make up the app. If this field is set, all existing components are replaced with the new components under this field.


25
26
27
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 25

def components
  @components
end

#descriptionObject

The new human-readable description for the app.


28
29
30
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 28

def description
  @description
end

#nameObject

The new name of the app.


31
32
33
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 31

def name
  @name
end

#queriesObject

The new array of queries, such as external actions and state variables, that the app uses. If this field is set, all existing queries are replaced with the new queries under this field.


34
35
36
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 34

def queries
  @queries
end

#root_instance_nameObject

The new name of the root component of the app. This must be a ‘grid` component that contains all other components.


37
38
39
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 37

def root_instance_name
  @root_instance_name
end

#tagsObject

The new list of tags for the app, which can be used to filter apps. If this field is set, any existing tags not included in the request are removed.


40
41
42
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 40

def tags
  @tags
end