Class: Google::Apis::LoggingV2::SourceLocation
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2::SourceLocation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2/classes.rb,
generated/google/apis/logging_v2/representations.rb,
generated/google/apis/logging_v2/representations.rb
Overview
Specifies a location in a source code file.
Instance Attribute Summary collapse
-
#file ⇒ String
Source file name.
-
#function_name ⇒ String
Human-readable name of the function or method being invoked, with optional context such as the class or package name.
-
#line ⇒ Fixnum
Line within the source file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SourceLocation
constructor
A new instance of SourceLocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SourceLocation
Returns a new instance of SourceLocation
273 274 275 |
# File 'generated/google/apis/logging_v2/classes.rb', line 273 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file ⇒ String
Source file name. Depending on the runtime environment, this might be a simple
name or a fully-qualified name.
Corresponds to the JSON property file
271 272 273 |
# File 'generated/google/apis/logging_v2/classes.rb', line 271 def file @file end |
#function_name ⇒ String
Human-readable name of the function or method being invoked, with optional
context such as the class or package name. This information is used in
contexts such as the logs viewer, where a file and line number are less
meaningful. The format can vary by language. For example: qual.if.ied.Class.
method (Java), dir/package.func (Go), function (Python).
Corresponds to the JSON property functionName
260 261 262 |
# File 'generated/google/apis/logging_v2/classes.rb', line 260 def function_name @function_name end |
#line ⇒ Fixnum
Line within the source file.
Corresponds to the JSON property line
265 266 267 |
# File 'generated/google/apis/logging_v2/classes.rb', line 265 def line @line end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
278 279 280 281 282 |
# File 'generated/google/apis/logging_v2/classes.rb', line 278 def update!(**args) @function_name = args[:function_name] if args.key?(:function_name) @line = args[:line] if args.key?(:line) @file = args[:file] if args.key?(:file) end |