Method: PlatformAPI::Pipeline#update

Defined in:
lib/platform-api/client.rb

#update(pipeline_id, body) ⇒ Object

Update an existing pipeline.

Parameters:

  • pipeline_id:

    unique identifier of pipeline

  • body:

    the object to pass as the request payload



1932
1933
1934
# File 'lib/platform-api/client.rb', line 1932

def update(pipeline_id, body)
  @client.pipeline.update(pipeline_id, body)
end