Announcing the Appwrite OSS Fund, Learn More! 🤑
Docs

Deployment Object

Properties

Name Type Description
$id string

Deployment ID.

resourceId string

Resource ID.

resourceType string

Resource type.

dateCreated integer

The deployment creation date in Unix timestamp.

entrypoint string

The entrypoint file to use to execute the deployment code.

size integer

The code size in bytes.

buildId string

The current build ID.

activate boolean

Whether the deployment should be automatically activated.

status string

The deployment status.

buildStdout string

The build stdout.

buildStderr string

The build stderr.

Examples

JSON

{
    "$id": "5e5ea5c16897e",
    "resourceId": "5e5ea6g16897e",
    "resourceType": "functions",
    "dateCreated": 1592981250,
    "entrypoint": "enabled",
    "size": 128,
    "buildId": "5e5ea5c16897e",
    "activate": true,
    "status": "enabled",
    "buildStdout": "enabled",
    "buildStderr": "enabled"
}