ex_heroku_client v0.1.0 Heroku.BuildpackInstallation

Summary

Functions

Calls GET /apps/#{app_identity}/buildpack-installations

Calls PUT /apps/#{app_identity}/buildpack-installations

Functions

index(app_identity)

Calls GET /apps/#{app_identity}/buildpack-installations

update(app_identity, params)

Calls PUT /apps/#{app_identity}/buildpack-installations

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "updates": {
      "additionalItems": true,
      "description": "The buildpack attribute can accept a name, a url, or a urn.",
      "items": {
        "additionalProperties": false,
        "description": "Properties to update a buildpack installation",
        "properties": {
          "buildpack": {
            "description": "location of the buildpack for the app. Either a url (unofficial buildpacks) or an internal urn (heroku official buildpacks).",
            "example": "https://github.com/heroku/heroku-buildpack-ruby",
            "readOnly": false,
            "type": [
              "string"
            ]
          }
        },
        "readOnly": false,
        "required": [
          "buildpack"
        ],
        "type": [
          "object"
        ]
      },
      "type": [
        "array"
      ]
    }
  },
  "required": [
    "updates"
  ],
  "type": [
    "object"
  ]
}