This API is used to query the list of flavors that can be switched during notebook instance creation.
None
GET /v1/{project_id}/notebooks/{id}/flavors
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
id |
Yes |
String |
Notebook instance ID, which can be obtained by calling the API for querying the notebook instance list. |
project_id |
Yes |
String |
Project ID. For details, see Obtaining a Project ID and Name. |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
limit |
No |
Integer |
Number of records on each page. (No limit by default) |
offset |
No |
Integer |
Start offset of the records on each page |
None
Status code: 200
Parameter |
Type |
Description |
|---|---|---|
current |
Integer |
Current page |
data |
Array of NotebookFlavor objects |
Pagination data |
flavors |
Array of NotebookFlavor objects |
List of specifications that can be switched. |
pages |
Integer |
Total number of pages |
size |
Integer |
Number of records on each page |
total |
Long |
Total number of records |
Parameter |
Type |
Description |
|---|---|---|
arch |
String |
Architecture type. |
billing |
BillingInfo object |
CDR information |
category |
String |
Processor type. Options: |
description |
String |
Specification description |
feature |
String |
Specification type. The options are as follows: |
free |
Boolean |
Specifies whether the flavor is free of charge. |
gpu |
GPUInfo object |
GPU information |
id |
String |
Flavor ID |
memory |
Long |
Memory size |
name |
String |
Flavor name |
sold_out |
Boolean |
Whether resources are sufficient. |
storages |
Array of strings |
Storage type. Options: |
vcpus |
Integer |
Number of vCPUs |
GET https://{endpoint}/v1/{project_id}/notebooks/{id}/flavors
Status code: 200
OK
{
"current" : 1,
"data" : [ {
"arch" : "aarch64",
"billing" : {
"code" : "modelarts.kat1.xlarge",
"unit_num" : 2
},
"category" : "CPU",
"description" : "The specification is suitable for deep learning code running and debugging",
"feature" : "NOTEBOOK",
"free" : false,
"id" : "modelarts.bm.snt9.xlarge.2",
"memory" : 201326592,
"name" : "CPU: 48vCPUs 192GB",
"sold_out" : false,
"storages" : [ "EFS" ],
"vcpus" : 48
}, {
"arch" : "aarch64",
"billing" : {
"code" : "modelarts.kat1.8xlarge",
"unit_num" : 1
},
"category" : "CPU",
"description" : "The specification is suitable for deep learning code running and debugging",
"feature" : "NOTEBOOK",
"free" : false,
"id" : "modelarts.bm.snt9.xlarge.8",
"memory" : 805306368,
"name" : "CPU: 192vCPUs 768GB",
"sold_out" : false,
"storages" : [ "EFS" ],
"vcpus" : 192
} ],
"flavors" : [ {
"arch" : "aarch64",
"billing" : {
"code" : "modelarts.kat1.xlarge",
"unit_num" : 2
},
"category" : "CPU",
"description" : "The specification is suitable for deep learning code running and debugging",
"feature" : "NOTEBOOK",
"free" : false,
"id" : "modelarts.bm.snt9.xlarge.2",
"memory" : 201326592,
"name" : "CPU: 48vCPUs 192GB",
"sold_out" : false,
"storages" : [ "EFS" ],
"vcpus" : 48
}, {
"arch" : "aarch64",
"billing" : {
"code" : "modelarts.kat1.8xlarge",
"unit_num" : 1
},
"category" : "CPU",
"description" : "The specification is suitable for deep learning code running and debugging",
"feature" : "NOTEBOOK",
"free" : false,
"id" : "modelarts.bm.snt9.xlarge.8",
"memory" : 805306368,
"name" : "CPU: 192vCPUs 768GB",
"sold_out" : false,
"storages" : [ "EFS" ],
"vcpus" : 192
} ],
"pages" : 1,
"size" : 2,
"total" : 2
}
Status Code |
Description |
|---|---|
200 |
OK |
401 |
Unauthorized |
403 |
Forbidden |
404 |
Not Found |
See Error Codes.