All Products
Search
Document Center

Microservices Engine:FetchLosslessRuleList

Last Updated:Aug 12, 2024

Obtains the rules for graceful start and shutdown.

Operation description

You can call this operation to query the rules for graceful start and shutdown.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
mse:FetchLosslessRuleListget
  • All Resources
    *
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
RegionIdstringYes

The ID of the region.

cn-beijing
AppNamestringNo

The name of the application.

spring-boot-sample
NamespacestringNo

The namespace.

default
AppIdstringNo

The ID of the application.

hyaziyb6sc@86827c61f5ed8fc
PageNumberlongYes

The page number.

1
PageSizelongYes

The number of entries per page.

10
AcceptLanguagestringNo

The language of the response. Valid values:

  • zh: Chinese
  • en: English
zh-CN

Response parameters

ParameterTypeDescriptionExample
object

The data returned.

RequestIdstring

The ID of the request.

56D9E600-6348-4260-B35F-583413F****
Successboolean

Indicates whether the request was successful. Valid values:

  • true: The request was successful.
  • false: The request failed.
True
Codestring

The response code returned.

200
Messagestring

The message returned.

success
Dataobject

The returned result.

PageNumberlong

The page number of the returned page.

1
PageSizelong

The number of entries returned per page.

10
TotalSizelong

The total number of entries returned.

36
Resultsarray<object>

The returned data.

object

The returned data.

AppNamestring

The name of the application.

echo-demo
AppIdstring

The ID of the application.

hkhon1po62@24810bf4364aea1
Countlong

The number of instances.

3
Enableboolean

Indicates whether graceful start is enabled. Valid values:

  • true: enabled
  • false: disabled
true
WarmupTimelong

The prefetching duration. Unit: seconds.

60
DelayTimelong

The registration latency. Unit: seconds.

60
FuncTypelong

The slope of the prefetching curve.

2
Alignedboolean

Indicates whether service registration is complete before readiness probe.

true
Relatedboolean

Indicates whether service prefetching is complete before readiness probe.

false
LossLessDetailboolean

Indicates whether online and offline processing details are displayed.

false
Noticeboolean

Indicates whether notification is enabled.

true

Examples

Sample success responses

JSONformat

{
  "RequestId": "56D9E600-6348-4260-B35F-583413F****",
  "Success": true,
  "Code": "200",
  "ErrorCode": "Success",
  "HttpStatusCode": 200,
  "Message": "success",
  "Data": {
    "PageNumber": 1,
    "PageSize": 10,
    "TotalSize": 36,
    "Results": [
      {
        "AppName": "echo-demo",
        "AppId": "hkhon1po62@24810bf4364aea1",
        "Count": 3,
        "Enable": true,
        "WarmupTime": 60,
        "DelayTime": 60,
        "FuncType": 2,
        "Aligned": true,
        "Related": false,
        "LossLessDetail": false,
        "Notice": true
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidParameterParameter error:%sRequest parameter error: %s
400IllegalRequestInvalid request:%sInvalid request: %s
403NoPermissionYou are not authorized to perform this operation:%sYou do not have the permission to use this interface:%s
404NotFoundNot found:%sThe resource does not exist:%s
500InternalErrorConsole error. Try again later:%sConsole error. Try again later: %s

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2023-04-11The Error code has changed. The request parameters of the API has changed. The response structure of the API has changedView Change Details