Class: NgrokAPI::Models::EventTarget

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/event_target.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client: nil, attrs: {}) ⇒ EventTarget

Returns a new instance of EventTarget.



15
16
17
18
19
20
21
22
# File 'lib/ngrokapi/models/event_target.rb', line 15

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @firehose = @attrs['firehose']
  @kinesis = @attrs['kinesis']
  @cloudwatch_logs = @attrs['cloudwatch_logs']
  @datadog = @attrs['datadog']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



8
9
10
# File 'lib/ngrokapi/models/event_target.rb', line 8

def attrs
  @attrs
end

#clientObject (readonly)

Returns the value of attribute client.



8
9
10
# File 'lib/ngrokapi/models/event_target.rb', line 8

def client
  @client
end

#cloudwatch_logsObject (readonly)

Returns the value of attribute cloudwatch_logs.



8
9
10
# File 'lib/ngrokapi/models/event_target.rb', line 8

def cloudwatch_logs
  @cloudwatch_logs
end

#datadogObject (readonly)

Returns the value of attribute datadog.



8
9
10
# File 'lib/ngrokapi/models/event_target.rb', line 8

def datadog
  @datadog
end

#firehoseObject (readonly)

Returns the value of attribute firehose.



8
9
10
# File 'lib/ngrokapi/models/event_target.rb', line 8

def firehose
  @firehose
end

#kinesisObject (readonly)

Returns the value of attribute kinesis.



8
9
10
# File 'lib/ngrokapi/models/event_target.rb', line 8

def kinesis
  @kinesis
end

Instance Method Details

#==(other) ⇒ Object



24
25
26
# File 'lib/ngrokapi/models/event_target.rb', line 24

def ==(other)
  @attrs == other.attrs
end

#to_hObject



32
33
34
# File 'lib/ngrokapi/models/event_target.rb', line 32

def to_h
  @attrs.to_h
end

#to_sObject



28
29
30
# File 'lib/ngrokapi/models/event_target.rb', line 28

def to_s
  @attrs.to_s
end