Class: NgrokAPI::Models::EventTarget
- Inherits:
-
Object
- Object
- NgrokAPI::Models::EventTarget
- Defined in:
- lib/ngrokapi/models/event_target.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#azure_logs_ingestion ⇒ Object
readonly
Returns the value of attribute azure_logs_ingestion.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#cloudwatch_logs ⇒ Object
readonly
Returns the value of attribute cloudwatch_logs.
-
#datadog ⇒ Object
readonly
Returns the value of attribute datadog.
-
#firehose ⇒ Object
readonly
Returns the value of attribute firehose.
-
#kinesis ⇒ Object
readonly
Returns the value of attribute kinesis.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client: nil, attrs: {}) ⇒ EventTarget
constructor
A new instance of EventTarget.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ EventTarget
Returns a new instance of EventTarget.
16 17 18 19 20 21 22 23 24 |
# File 'lib/ngrokapi/models/event_target.rb', line 16 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @firehose = @attrs['firehose'] @kinesis = @attrs['kinesis'] @cloudwatch_logs = @attrs['cloudwatch_logs'] @datadog = @attrs['datadog'] @azure_logs_ingestion = @attrs['azure_logs_ingestion'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
8 9 10 |
# File 'lib/ngrokapi/models/event_target.rb', line 8 def attrs @attrs end |
#azure_logs_ingestion ⇒ Object (readonly)
Returns the value of attribute azure_logs_ingestion.
8 9 10 |
# File 'lib/ngrokapi/models/event_target.rb', line 8 def azure_logs_ingestion @azure_logs_ingestion end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
8 9 10 |
# File 'lib/ngrokapi/models/event_target.rb', line 8 def client @client end |
#cloudwatch_logs ⇒ Object (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 |
#datadog ⇒ Object (readonly)
Returns the value of attribute datadog.
8 9 10 |
# File 'lib/ngrokapi/models/event_target.rb', line 8 def datadog @datadog end |
#firehose ⇒ Object (readonly)
Returns the value of attribute firehose.
8 9 10 |
# File 'lib/ngrokapi/models/event_target.rb', line 8 def firehose @firehose end |
#kinesis ⇒ Object (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
26 27 28 |
# File 'lib/ngrokapi/models/event_target.rb', line 26 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
34 35 36 |
# File 'lib/ngrokapi/models/event_target.rb', line 34 def to_h @attrs.to_h end |
#to_s ⇒ Object
30 31 32 |
# File 'lib/ngrokapi/models/event_target.rb', line 30 def to_s @attrs.to_s end |