Class: Convoy::Source

Inherits:
ApiResource show all
Extended by:
ApiOperations::Create
Includes:
ApiOperations::Delete, ApiOperations::List, ApiOperations::Save
Defined in:
lib/convoy/resources/source.rb

Instance Attribute Summary

Attributes inherited from ApiResource

#response

Instance Method Summary collapse

Methods included from ApiOperations::Create

create

Methods included from ApiOperations::List

included, #list

Methods included from ApiOperations::Delete

#delete, included

Methods included from ApiOperations::Save

included, #save, #update

Methods inherited from ApiResource

#project_base_uri

Methods included from ApiOperations::Request

#send_request

Constructor Details

#initialize(id = nil, config = Convoy.config, **kwargs) ⇒ Source

Returns a new instance of Source.



8
9
10
11
12
13
# File 'lib/convoy/resources/source.rb', line 8

def initialize(id = nil, config = Convoy.config, **kwargs)
  @id = id
  @config = config

  super(**kwargs)
end

Instance Method Details

#resource_uriObject



15
16
17
18
19
20
21
# File 'lib/convoy/resources/source.rb', line 15

def resource_uri 
  if @id.nil?
    return "#{project_base_uri}/sources"
  end

  "#{project_base_uri}/sources/#{@id}"
end