Updating an App
PUT /v2/apps/:guid
Request
Route
PUT /v2/apps/7dc08d26-ca6b-4938-a07d-9aa8c7f713e9
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the App
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name of the app.
|
|
|
|
memory
|
The amount of memory each instance should have. In megabytes.
|
|
|
|
instances
|
The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
|
|
|
|
disk_quota
|
The maximum amount of disk available to an instance of an app. In megabytes.
|
|
|
|
space_guid
|
The guid of the associated space.
|
|
|
- guid-cd642e55-85ad-4178-bb63-d763be673198
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-bc407f24-fd2a-43e3-889e-197864a28d3e
|
state
|
The current desired state of the app. One of STOPPED or STARTED.
|
STOPPED
|
|
|
detected_start_command
|
The command detected by the buildpack during staging.
|
|
|
|
command
|
The command to start an app after it is staged, maximum length: 4096 (e.g. 'rails s -p $PORT' or 'java com.org.Server $PORT').
|
|
|
|
buildpack
|
Buildpack to build the app. 3 options: a) Blank means autodetection; b) A Git Url pointing to a buildpack; c) Name of an installed buildpack.
|
|
|
- https://github.com/virtualstaticvoid/heroku-buildpack-r.git
- an_example_installed_buildpack
|
health_check_type
|
Type of health check to perform. 'none' is deprecated and an alias to 'process'.
|
port
|
|
|
health_check_timeout
|
Timeout for health checking of an staged app when starting up
|
|
|
|
diego
|
Use diego to stage and to run when available
|
false
|
|
|
docker_image
|
Name of the Docker image containing the app
|
|
|
- cloudfoundry/helloworld
- registry.example.com:5000/user/repository/tag
|
docker_credentials_json
|
Docker credentials for pulling docker image.
|
{}
|
|
- #<RspecApiDocumentation::Views::HtmlExample:0x0000000a885220>
|
environment_json
|
Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
|
|
|
|
production
|
Deprecated.
|
true
|
|
|
console
|
Open the console port for the app (at $CONSOLE_PORT).
|
false
|
|
|
debug
|
Open the debug port for the app (at $DEBUG_PORT).
|
false
|
|
|
staging_failed_reason
|
Reason for application staging failures
|
|
|
|
staging_failed_description
|
Detailed description for the staging_failed_reason
|
|
|
|
ports
|
Ports on which application may listen. Overwrites previously configured ports. Ports must be in range 1024-65535. Supported for Diego only.
|
|
|
|
{
"name": "new_name"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps/7dc08d26-ca6b-4938-a07d-9aa8c7f713e9" -d '{
"name": "new_name"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQ1NyIsImVtYWlsIjoiZW1haWwtMzI4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTMzMTA5OTd9.rMBFJiU8LNu4hoTX_fE8lZcopNoV8lDZzNL9BvMXm08" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "7dc08d26-ca6b-4938-a07d-9aa8c7f713e9",
"url": "/v2/apps/7dc08d26-ca6b-4938-a07d-9aa8c7f713e9",
"created_at": "2016-01-13T17:29:56Z",
"updated_at": "2016-01-13T17:29:56Z"
},
"entity": {
"name": "new_name",
"production": false,
"space_guid": "01139b5d-e93b-4233-90b1-7d13f6d18c50",
"stack_guid": "c2015bbc-887b-4383-89d9-7bdab55fd99a",
"buildpack": null,
"detected_buildpack": null,
"environment_json": null,
"memory": 1024,
"instances": 1,
"disk_quota": 1024,
"state": "STOPPED",
"version": "825e19f2-c935-43d3-89db-a18cceee7725",
"command": null,
"console": false,
"debug": null,
"staging_task_id": null,
"package_state": "PENDING",
"health_check_type": "port",
"health_check_timeout": null,
"staging_failed_reason": null,
"staging_failed_description": null,
"diego": false,
"docker_image": null,
"package_updated_at": "2016-01-13T17:29:57Z",
"detected_start_command": "",
"enable_ssh": true,
"docker_credentials_json": {
"redacted_message": "[PRIVATE DATA HIDDEN]"
},
"ports": null,
"space_url": "/v2/spaces/01139b5d-e93b-4233-90b1-7d13f6d18c50",
"stack_url": "/v2/stacks/c2015bbc-887b-4383-89d9-7bdab55fd99a",
"events_url": "/v2/apps/7dc08d26-ca6b-4938-a07d-9aa8c7f713e9/events",
"service_bindings_url": "/v2/apps/7dc08d26-ca6b-4938-a07d-9aa8c7f713e9/service_bindings",
"routes_url": "/v2/apps/7dc08d26-ca6b-4938-a07d-9aa8c7f713e9/routes"
}
}
Headers