Class: PlatformAPI::ReviewApp
- Inherits:
-
Object
- Object
- PlatformAPI::ReviewApp
- Defined in:
- lib/platform-api/client.rb
Overview
An ephemeral app to review a set of changes
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new review app.
-
#delete(review_app_id) ⇒ Object
Delete an existing review app.
-
#get_review_app(review_app_id) ⇒ Object
Gets an existing review app.
-
#get_review_app_by_app_id(app_id_or_app_name) ⇒ Object
Get a review app using the associated app_id.
-
#initialize(client) ⇒ ReviewApp
constructor
A new instance of ReviewApp.
-
#list(pipeline_id) ⇒ Object
List review apps for a pipeline.
Constructor Details
#initialize(client) ⇒ ReviewApp
Returns a new instance of ReviewApp.
2734 2735 2736 |
# File 'lib/platform-api/client.rb', line 2734 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new review app
2741 2742 2743 |
# File 'lib/platform-api/client.rb', line 2741 def create(body = {}) @client.review_app.create(body) end |
#delete(review_app_id) ⇒ Object
Delete an existing review app
2755 2756 2757 |
# File 'lib/platform-api/client.rb', line 2755 def delete(review_app_id) @client.review_app.delete(review_app_id) end |
#get_review_app(review_app_id) ⇒ Object
Gets an existing review app
2748 2749 2750 |
# File 'lib/platform-api/client.rb', line 2748 def get_review_app(review_app_id) @client.review_app.get_review_app(review_app_id) end |
#get_review_app_by_app_id(app_id_or_app_name) ⇒ Object
Get a review app using the associated app_id
2762 2763 2764 |
# File 'lib/platform-api/client.rb', line 2762 def get_review_app_by_app_id(app_id_or_app_name) @client.review_app.get_review_app_by_app_id(app_id_or_app_name) end |
#list(pipeline_id) ⇒ Object
List review apps for a pipeline
2769 2770 2771 |
# File 'lib/platform-api/client.rb', line 2769 def list(pipeline_id) @client.review_app.list(pipeline_id) end |