Class: DatadogAPIClient::V2::SourcemapFileAttributes

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

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

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

#fileObject

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

#mappingsObject

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_lengthsObject

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

#namesObject

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_rootObject

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

#sourcesObject

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_contentObject

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

#versionObject

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