Class: PlatformAPI::Pipeline

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

A pipeline allows grouping of apps into different stages.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Pipeline

Returns a new instance of Pipeline.



1903
1904
1905
# File 'lib/platform-api/client.rb', line 1903

def initialize(client)
  @client = client
end

Instance Method Details

#create(body) ⇒ Object

Create a new pipeline.

Parameters:

  • body:

    the object to pass as the request payload



1910
1911
1912
# File 'lib/platform-api/client.rb', line 1910

def create(body)
  @client.pipeline.create(body)
end

#delete(pipeline_id) ⇒ Object

Delete an existing pipeline.

Parameters:

  • pipeline_id:

    unique identifier of pipeline



1924
1925
1926
# File 'lib/platform-api/client.rb', line 1924

def delete(pipeline_id)
  @client.pipeline.delete(pipeline_id)
end

#info(pipeline_id_or_pipeline_name) ⇒ Object

Info for existing pipeline.

Parameters:

  • pipeline_id_or_pipeline_name:

    unique identifier of pipeline or name of pipeline



1917
1918
1919
# File 'lib/platform-api/client.rb', line 1917

def info(pipeline_id_or_pipeline_name)
  @client.pipeline.info(pipeline_id_or_pipeline_name)
end

#listObject

List existing pipelines.



1937
1938
1939
# File 'lib/platform-api/client.rb', line 1937

def list()
  @client.pipeline.list()
end

#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