Class: Google::Apis::TracingV1::Module

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_idString

Build_id is a unique identifier for the module, usually a hash of its contents Corresponds to the JSON property buildId

Returns:

  • (String)


328
329
330
# File 'generated/google/apis/tracing_v1/classes.rb', line 328

def build_id
  @build_id
end

#moduleString

E.g. main binary, kernel modules, and dynamic libraries such as libc.so, sharedlib.so Corresponds to the JSON property module

Returns:

  • (String)


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