mirror of https://github.com/databricks/cli.git
27 lines
405 B
TOML
27 lines
405 B
TOML
|
Cloud = false
|
||
|
RecordRequests = true
|
||
|
|
||
|
Ignore = [
|
||
|
'.databricks',
|
||
|
]
|
||
|
|
||
|
[[Server]]
|
||
|
Pattern = "POST /api/2.0/apps"
|
||
|
|
||
|
[[Server]]
|
||
|
Pattern = "GET /api/2.0/apps/myapp"
|
||
|
Response.Body = '''
|
||
|
{
|
||
|
"name": "myapp",
|
||
|
"description": "",
|
||
|
"compute_status": {
|
||
|
"state": "ACTIVE",
|
||
|
"message": "App compute is active."
|
||
|
},
|
||
|
"app_status": {
|
||
|
"state": "RUNNING",
|
||
|
"message": "Application is running."
|
||
|
}
|
||
|
}
|
||
|
'''
|