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.



2595
2596
2597
# File 'lib/platform-api/client.rb', line 2595

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



2602
2603
2604
# File 'lib/platform-api/client.rb', line 2602

def create(body = {})
  @client.pipeline.create(body)
end

#delete(pipeline_id) ⇒ Object

Delete an existing pipeline.

Parameters:

  • pipeline_id:

    unique identifier of pipeline



2616
2617
2618
# File 'lib/platform-api/client.rb', line 2616

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



2609
2610
2611
# File 'lib/platform-api/client.rb', line 2609

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

#listObject

List existing pipelines.



2629
2630
2631
# File 'lib/platform-api/client.rb', line 2629

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



2624
2625
2626
# File 'lib/platform-api/client.rb', line 2624

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