All Products
Search
Document Center

Enterprise Distributed Application Service:GetContainerConfiguration

Last Updated:Mar 01, 2024

Queries the Tomcat configuration of an application or an instance group in which an application is deployed.

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
edas:ReadApplicationRead
  • Application
    acs:edas:{#regionId}:{#accountId}:namespace/{#NameSpaceId}/application/{#AppId}
    none
none

Request syntax

GET /pop/v5/app/container_config

Request parameters

ParameterTypeRequiredDescriptionExample
AppIdstringYes

The ID of the application.

3616cdca-4f92-**************
GroupIdstringNo

The ID of the instance group.

  • If this parameter is specified, this operation queries the Tomcat configuration of the instance group.
  • If this parameter is not specified, this operation queries the Tomcat configuration of the application.
8123db90-880f-**************

Response parameters

ParameterTypeDescriptionExample
object
Codeinteger

The HTTP status code that is returned.

200
Messagestring

The message returned for the request.

success
RequestIdstring

The ID of the request.

34F8-FDG9-*****************
ContainerConfigurationobject

The Tomcat configuration.

HttpPortinteger

The application port number for the Tomcat container. The value specified in the application configuration is returned.

8080
ContextPathstring

The context path of the Tomcat container.

/
UseBodyEncodingboolean

Indicates whether useBodyEncodingForURI is enabled in the Tomcat container.

  • If no instance group is specified, the configuration of the application is returned.
  • If no application is specified, the default configuration is returned.
true
MaxThreadsinteger

The maximum number of threads in the Tomcat container.

  • If no instance group is specified, the configuration of the application is returned.
  • If no application is specified, the default configuration is returned.
400
URIEncodingstring

The Uniform Resource Identifier (URI) encoding scheme. Valid values: ISO-8859-1, GBK, GB2312, and UTF-8.

  • If no instance group is specified, the configuration of the application is returned.
  • If no application is specified, the default configuration is returned.
ISO-8859-1

Examples

Sample success responses

JSONformat

{
  "Code": 200,
  "Message": "success",
  "RequestId": "34F8-FDG9-*****************",
  "ContainerConfiguration": {
    "HttpPort": 8080,
    "ContextPath": "/",
    "UseBodyEncoding": true,
    "MaxThreads": 400,
    "URIEncoding": "ISO-8859-1"
  }
}

Error codes

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