ex_heroku_client v0.1.0 Heroku.AppFeature

Summary

Functions

Calls GET /apps/#{app_identity}/features/#{app-feature_identity}

Calls GET /apps/#{app_identity}/features

Calls PATCH /apps/#{app_identity}/features/#{app-feature_identity}

Functions

get(app_identity, app-feature_identity)

Calls GET /apps/#{app_identity}/features/#{app-feature_identity}

index(app_identity)

Calls GET /apps/#{app_identity}/features

update(app_identity, app-feature_identity, params)

Calls PATCH /apps/#{app_identity}/features/#{app-feature_identity}

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "enabled": {
      "description": "whether or not app feature has been enabled",
      "example": true,
      "readOnly": false,
      "type": [
        "boolean"
      ]
    }
  },
  "required": [
    "enabled"
  ],
  "type": [
    "object"
  ]
}