Workload Quotas
get
https://$(tvm_address):8780/v1/$(tenant_id)
/projects_quota_types
List Quota Types
get
https://$(tvm_address):8780/v1/$(tenant_id)
/projects_quota_types/<quota_type_id>
Show Quota Type
post
https://$(tvm_address):8780/v1/$(tenant_id)
/project_allowed_quotas/<project_id>
Create allowed Quota
{
"allowed_quotas":[
{
"project_id":"<project_id>",
"quota_type_id":"<quota_type_id>",
"allowed_value":"<integer>",
"high_watermark":"<Integer>"
}
]
}
get
https://$(tvm_address):8780/v1/$(tenant_id)
/project_allowed_quotas/<project_id>
List allowed Quota
get
https://$(tvm_address):8780/v1/$(tenant_id)
/project_allowed_quota/<allowed_quota_id>
Show allowed Quota
put
https://$(tvm_address):8780/v1/$(tenant_id)
/update_allowed_quota/<allowed_quota_id>
Update allowed Quota
{
"allowed_quotas":{
"project_id":"c76b3355a164498aa95ddbc960adc238",
"allowed_value":"20000",
"high_watermark":"18000"
}
}
delete
https://$(tvm_address):8780/v1/$(tenant_id)
/project_allowed_quotas/<allowed_quota_id>
Delete allowed Quota
Last modified 1d ago