class

Build::PipelinesApi

Inherits Reference < Object

Constructors

new(api_client : ::Build::ApiClient = ApiClient.default)
Source

Instance methods

api_client
Source
api_client=(api_client : ApiClient)
Source
get_pipeline(pipeline_id_or_name : String)

get a specific pipeline Retrieves details for a specific pipeline @param pipeline_id_or_name [String] Pipeline ID or Name @return [Pipeline]

Source
get_pipeline_diff(pipeline_id_or_name : String, source_app : String)

compare source app commits to downstream apps Compares the source app current commit to each downstream app via GitHub compare API. @param pipeline_id_or_name [String] Pipeline ID or Name @param source_app [String] Source app ID or name @return [GetPipelineDiff200Response]

Source
get_pipeline_diff_with_http_info(pipeline_id_or_name : String, source_app : String)

compare source app commits to downstream apps Compares the source app current commit to each downstream app via GitHub compare API. @param pipeline_id_or_name [String] Pipeline ID or Name @param source_app [String] Source app ID or name @return [Array<(GetPipelineDiff200Response, Integer, Hash)>] GetPipelineDiff200Response data, response status code and response headers

Source
get_pipeline_with_http_info(pipeline_id_or_name : String)

get a specific pipeline Retrieves details for a specific pipeline @param pipeline_id_or_name [String] Pipeline ID or Name @return [Array<(Pipeline, Integer, Hash)>] Pipeline data, response status code and response headers

Source
list_pipeline_apps(pipeline_id_or_name : String)

list apps in a pipeline A list of applications in the pipeline. @param pipeline_id_or_name [String] Pipeline ID or Name @return [Array(App)]

Source
list_pipeline_apps_with_http_info(pipeline_id_or_name : String)

list apps in a pipeline A list of applications in the pipeline. @param pipeline_id_or_name [String] Pipeline ID or Name @return [Array<(Array(App), Integer, Hash)>] Array(App) data, response status code and response headers

Source
list_pipelines(team_id : String | Nil = nil)

list pipelines Lists pipelines for the current user. Defaults to personal team; pass team_id to select a different team. @return [Array(Pipeline)]

Source
list_pipelines_with_http_info(team_id : String | Nil = nil)

list pipelines Lists pipelines for the current user. Defaults to personal team; pass team_id to select a different team. @return [Array<(Array(Pipeline), Integer, Hash)>] Array(Pipeline) data, response status code and response headers

Source