Class: Google::Apis::TracingV1::Module
- Inherits:
-
Object
- Object
- Google::Apis::TracingV1::Module
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tracing_v1/classes.rb,
generated/google/apis/tracing_v1/representations.rb,
generated/google/apis/tracing_v1/representations.rb
Overview
Binary module.
Instance Attribute Summary collapse
-
#build_id ⇒ String
Build_id is a unique identifier for the module, usually a hash of its contents Corresponds to the JSON property
buildId
. -
#module ⇒ String
E.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Module
constructor
A new instance of Module.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Module
Returns a new instance of Module
330 331 332 |
# File 'generated/google/apis/tracing_v1/classes.rb', line 330 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_id ⇒ String
Build_id is a unique identifier for the module,
usually a hash of its contents
Corresponds to the JSON property buildId
328 329 330 |
# File 'generated/google/apis/tracing_v1/classes.rb', line 328 def build_id @build_id end |
#module ⇒ String
E.g. main binary, kernel modules, and dynamic libraries
such as libc.so, sharedlib.so
Corresponds to the JSON property module
322 323 324 |
# File 'generated/google/apis/tracing_v1/classes.rb', line 322 def module @module end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
335 336 337 338 |
# File 'generated/google/apis/tracing_v1/classes.rb', line 335 def update!(**args) @module = args[:module] if args.key?(:module) @build_id = args[:build_id] if args.key?(:build_id) end |