Mengkueri konfigurasi instans yang disediakan.
Coba sekarang
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
fc:ListProvisionConfigs |
get |
*All Resource
|
None | None |
Sintaks permintaan
GET /2021-04-06/provision-configs HTTP/1.1
Parameter permintaan
|
Parameter |
Type |
Required |
Description |
Example |
| limit |
integer |
No |
Jumlah maksimum hasil yang akan dikembalikan. Nilai default: 20. Nilai maksimum: 100. Jumlah sumber daya yang dikembalikan kurang dari atau sama dengan jumlah yang ditentukan. |
20 |
| nextToken |
string |
No |
Token yang diperlukan untuk mendapatkan hasil lainnya. Anda tidak perlu menentukan parameter ini pada panggilan pertama. Jika nilai NextToken dikembalikan oleh panggilan sebelumnya, hasil lainnya tersedia. |
demoNextToken |
| serviceName |
string |
No |
Nama layanan tempat sumber daya berada. |
serviceName |
| qualifier |
string |
No |
Kualifikasi layanan tempat sumber daya berada. Qualifier harus berupa aliasName dan digunakan bersama parameter serviceName. |
prod |
| X-Fc-Account-Id |
string |
No |
ID akun Alibaba Cloud Anda. |
188077086902**** |
| X-Fc-Date |
string |
No |
Pengatur waktu saat fungsi dipanggil. Nilai dalam format EEE,d MMM yyyy HH:mm:ss GMT. |
Wed, 11 May 2022 09:00:00 GMT |
| X-Fc-Trace-Id |
string |
No |
ID jejak permintaan untuk API Function Compute. |
rid281s****** |
Elemen respons
|
Element |
Type |
Description |
Example |
|
object |
The list of provisioned instance configurations. |
||
| nextToken |
string |
The token used to obtain more results. |
demoNextToken |
| provisionConfigs |
array<object> |
The provisioned instance configurations. |
|
|
object |
The provisioned configuration details. |
||
| resource |
string |
The description of the resource. |
12345#servierName#qualifier#functionName |
| target |
integer |
The expected number of resources. |
5 |
| current |
integer |
The number of current resources. |
5 |
| scheduledActions |
array |
The configurations of scheduled auto scaling. |
|
| ScheduledActions |
The details about the scheduled scaling policy. You can use the scheduled scaling policy to flexibly configure provisioned instances. You can set the number of provisioned instances to a desired value at the scheduled time. This way, the number of provisioned instances can meet the concurrency requirements of your business. |
[ { "Name": "action_1", "StartTime": "2020-11-01T10:00:00Z", "EndTime": "2020-11-30T10:00:00Z", "TargetValue": 50, "ScheduleExpression": "cron(0 0 20 * * *)" }, { "Name": "action_2", "StartTime": "2020-11-01T10:00:00Z", "EndTime": "2020-11-30T10:00:00Z", "TargetValue": 10, "ScheduleExpression": "cron(0 0 22 * * *)" } ] |
|
| targetTrackingPolicies |
array |
The metric-based scaling policy. |
|
| TargetTrackingPolicies |
The details about the metric-based scaling policy. Provisioned instances are scaled every minute based on the concurrency usage rate of provisioned instances.
If you specify the maximum and minimum numbers of provisioned instances, the system scales provisioned instances within the range. If the number of provisioned instances reaches the specified maximum or minimum number, scaling stops. |
[ { "Name": "action_1", "StartTime": "2020-11-01T10:00:00Z", "EndTime": "2020-11-30T10:00:00Z", "MetricType": "ProvisionedConcurrencyUtilization", "MetricTarget": 0.6, "MinCapacity": 10, "MaxCapacity": 100, } ] |
|
| currentError |
string |
The error message returned if a provisioned instance fails to be created. |
image not found |
| alwaysAllocateCPU |
boolean |
Specifies whether to always allocate CPU resources to function instances. |
true |
Contoh
Respons sukses
JSONformat
{
"nextToken": "demoNextToken",
"provisionConfigs": [
{
"resource": "12345#servierName#qualifier#functionName",
"target": 5,
"current": 5,
"scheduledActions": [
{
"name": "name",
"startTime": "2020-10-10T10:10:10Z",
"endTime": "2021-10-10T10:10:10Z",
"target": 50,
"scheduleExpression": "cron(0/30 * * * *)"
}
],
"targetTrackingPolicies": [
{
"name": "test_1",
"startTime": "2020-10-10T10:10:10Z",
"endTime": "2020-10-10T10:10:10Z",
"metricType": "CPUUtilization",
"metricTarget": 0.6,
"minCapacity": 10,
"maxCapacity": 100
}
],
"currentError": "image not found",
"alwaysAllocateCPU": true
}
]
}
Kode kesalahan
Lihat Error Codes untuk daftar lengkap.
Catatan rilis
Lihat Release Notes untuk daftar lengkap.