Class: MarioDebugger

Inherits:
Object
  • Object
show all
Defined in:
lib/apollo_commons_ruby/VerifyMarioConfig.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(configuration_json, view_group_definition, view_group_component, topic, event_name) ⇒ MarioDebugger

Returns a new instance of MarioDebugger.



28
29
30
31
32
33
34
35
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 28

def initialize(configuration_json, view_group_definition, view_group_component, topic, event_name)
    @tenantId = configuration_json["tenantId"]
    @projectId = configuration_json["projectId"]
    @viewGroupDefinition = view_group_definition
    @viewGroupComponent = view_group_component
    @topic = topic
    @eventName = event_name
end

Instance Attribute Details

#eventNameObject (readonly)

Returns the value of attribute eventName.



26
27
28
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 26

def eventName
  @eventName
end

#projectIdObject (readonly)

Returns the value of attribute projectId.



22
23
24
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 22

def projectId
  @projectId
end

#tenantIdObject (readonly)

Returns the value of attribute tenantId.



21
22
23
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 21

def tenantId
  @tenantId
end

#topicObject (readonly)

Returns the value of attribute topic.



25
26
27
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 25

def topic
  @topic
end

#viewGroupComponentObject (readonly)

Returns the value of attribute viewGroupComponent.



24
25
26
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 24

def viewGroupComponent
  @viewGroupComponent
end

#viewGroupDefinitionObject (readonly)

Returns the value of attribute viewGroupDefinition.



23
24
25
# File 'lib/apollo_commons_ruby/VerifyMarioConfig.rb', line 23

def viewGroupDefinition
  @viewGroupDefinition
end