Class: DatadogAPIClient::V2::SourcemapFileAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::SourcemapFileAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb
Overview
Attributes of a JavaScript source map file.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#file ⇒ Object
readonly
The name of the minified JavaScript file.
-
#mappings ⇒ Object
readonly
The Base64 VLQ encoded string that maps positions in the minified file to positions in the original source files.
-
#minified_line_lengths ⇒ Object
readonly
List of character counts for each line in the minified file.
-
#names ⇒ Object
readonly
List of symbol names referenced in the mappings.
-
#source_root ⇒ Object
readonly
The root path prepended to source file paths.
-
#sources ⇒ Object
readonly
List of original source file paths.
-
#sources_content ⇒ Object
readonly
List of original source file contents corresponding to the paths in
sources. -
#version ⇒ Object
readonly
The version of the source map format (typically 3).
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
49 50 51 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 49 def additional_properties @additional_properties end |
#file ⇒ Object
The name of the minified JavaScript file.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 25 def file @file end |
#mappings ⇒ Object
The Base64 VLQ encoded string that maps positions in the minified file to positions in the original source files.
29 30 31 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 29 def mappings @mappings end |
#minified_line_lengths ⇒ Object
List of character counts for each line in the minified file.
32 33 34 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 32 def minified_line_lengths @minified_line_lengths end |
#names ⇒ Object
List of symbol names referenced in the mappings.
35 36 37 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 35 def names @names end |
#source_root ⇒ Object
The root path prepended to source file paths.
38 39 40 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 38 def source_root @source_root end |
#sources ⇒ Object
List of original source file paths.
41 42 43 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 41 def sources @sources end |
#sources_content ⇒ Object
List of original source file contents corresponding to the paths in sources.
44 45 46 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 44 def sources_content @sources_content end |
#version ⇒ Object
The version of the source map format (typically 3).
47 48 49 |
# File 'lib/datadog_api_client/v2/models/sourcemap_file_attributes.rb', line 47 def version @version end |