Class: PlatformAPI::PipelinePromotion
- Inherits:
-
Object
- Object
- PlatformAPI::PipelinePromotion
- Defined in:
- lib/platform-api/client.rb
Overview
Promotions allow you to move code from an app in a pipeline to all targets
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new promotion.
-
#info(pipeline_promotion_id) ⇒ Object
Info for existing pipeline promotion.
-
#initialize(client) ⇒ PipelinePromotion
constructor
A new instance of PipelinePromotion.
Constructor Details
#initialize(client) ⇒ PipelinePromotion
Returns a new instance of PipelinePromotion.
1956 1957 1958 |
# File 'lib/platform-api/client.rb', line 1956 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new promotion.
1963 1964 1965 |
# File 'lib/platform-api/client.rb', line 1963 def create(body = {}) @client.pipeline_promotion.create(body) end |
#info(pipeline_promotion_id) ⇒ Object
Info for existing pipeline promotion.
1970 1971 1972 |
# File 'lib/platform-api/client.rb', line 1970 def info(pipeline_promotion_id) @client.pipeline_promotion.info(pipeline_promotion_id) end |