Stack settings operations return async action responses that track the progress and result of configuration changes to your stack settings.
id
integerThe unique identifier of the async action.
user
stringThe email of the user who initiated the action.
resource_type
stringThe type of resource being modified (typically "stack" for settings).
action
stringThe specific action being performed on the stack settings.
resource_id
stringThe ID of the resource being modified (stack ID for stack settings).
started_via
stringHow the action was initiated (e.g., "api", "web", "cli").
started_at
datetimeThe date and time when the action started, in ISO 8601 format.
finished_at
datetimeThe date and time when the action completed, in ISO 8601 format.
finished_success
booleanWhether the action completed successfully.
finished_message
stringA message describing the result of the action.
finished_result
objectDetailed results of the completed action.
metadata
objectAdditional metadata associated with the action.
Example
{
"id": 78901,
"user": "admin@example.com",
"resource_type": "stack",
"action": "update_settings",
"resource_id": "stack-550e8400-e29b-41d4-a716",
"started_via": "api",
"started_at": "2024-02-15T10:30:00Z",
"finished_at": "2024-02-15T10:32:45Z",
"finished_success": true,
"finished_message": "Stack settings updated successfully",
"finished_result": {
"updated_settings": [
"maintenance_mode",
"load_balancer_timeout"
],
"values_changed": 2
},
"metadata": {
"settings_updated": {
"maintenance_mode": false,
"load_balancer_timeout": 30
}
}
}