Class: SnapDeploy::Provider::Heroku::API::AppFeature

Inherits:
Object
  • Object
show all
Defined in:
lib/snap_deploy/provider/heroku/api.rb

Overview

An app feature represents a Heroku labs capability that can be enabled or disabled for an app on Heroku.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ AppFeature

Returns a new instance of AppFeature.



516
517
518
# File 'lib/snap_deploy/provider/heroku/api.rb', line 516

def initialize(client)
  @client = client
end

Instance Method Details

#info(app_id_or_app_name, app_feature_id_or_app_feature_name) ⇒ Object

Info for an existing app feature.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • app_feature_id_or_app_feature_name:

    unique identifier of app feature or unique name of app feature



524
525
526
# File 'lib/snap_deploy/provider/heroku/api.rb', line 524

def info(app_id_or_app_name, app_feature_id_or_app_feature_name)
  @client.app_feature.info(app_id_or_app_name, app_feature_id_or_app_feature_name)
end

#list(app_id_or_app_name) ⇒ Object

List existing app features.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app



531
532
533
# File 'lib/snap_deploy/provider/heroku/api.rb', line 531

def list(app_id_or_app_name)
  @client.app_feature.list(app_id_or_app_name)
end

#update(app_id_or_app_name, app_feature_id_or_app_feature_name, body) ⇒ Object

Update an existing app feature.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • app_feature_id_or_app_feature_name:

    unique identifier of app feature or unique name of app feature

  • body:

    the object to pass as the request payload



540
541
542
# File 'lib/snap_deploy/provider/heroku/api.rb', line 540

def update(app_id_or_app_name, app_feature_id_or_app_feature_name, body)
  @client.app_feature.update(app_id_or_app_name, app_feature_id_or_app_feature_name, body)
end