Class: PlatformAPI::PipelineBuild

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

Overview

Information about latest builds of apps in a pipeline.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ PipelineBuild

Returns a new instance of PipelineBuild.



2343
2344
2345
# File 'lib/platform-api/client.rb', line 2343

def initialize(client)
  @client = client
end

Instance Method Details

#list(pipeline_id_or_pipeline_name) ⇒ Object

List latest builds for each app in a pipeline

Parameters:

  • pipeline_id_or_pipeline_name:

    unique identifier of pipeline or name of pipeline



2350
2351
2352
# File 'lib/platform-api/client.rb', line 2350

def list(pipeline_id_or_pipeline_name)
  @client.pipeline_build.list(pipeline_id_or_pipeline_name)
end