Updated on 2022-02-22 GMT+08:00

Querying the Code of a Function

Function

This API is used to query the code of a function.

URI

GET /v2/{project_id}/fgs/functions/{function_urn}/code

Table 1 describes the URI parameters.

Table 1 URI parameters

Parameter

Type

Mandatory

Description

project_id

String

Yes

Project ID.

function_urn

String

Yes

Function URN. See Function Model.

Request

None

Response

Table 2 describes the response parameters.
Table 2 Response parameters

Parameter

Type

Description

func_urn

String

Function URN.

func_name

String

Function name.

domain_id

String

Domain ID.

runtime

String

Environment for executing the function. FunctionGraph supports Node.js 6.10, Node.js 8.10, Node.js 10.16, Node.js 12.13, Python 2.7, Python 3.6, Java 8, Go 1.8, C# (.NET Core 2.0), C# (.NET Core 2.1), C# (.NET Core 3.1), and PHP 7.3.

concurrency

Int

  • 0: The function is disabled.
  • -1: The function is enabled.

code_type

String

Function code type. Options:

  • inline: inline code
  • zip: ZIP file
  • jar: JAR file (mainly for Java functions)
  • obs: function code stored in an Object Storage Service (OBS) bucket

code_url

String

  • When code_type is set to obs, this parameter indicates the address of a function code package in OBS.
  • When code_type is set to inline, zip, or jar, this parameter is left blank.

code_filename

String

Function file name.

  • When code_type is set to zip or jar, this parameter is required.
  • When code_type is set to obs or inline, this parameter is not required.

code_size

String

Code size in bytes.

func_code

String

Function code. See Table 3.

digest

String

SHA512 hash value of function code, which is used to determine whether the function is changed.

last_modified

String

Time when the function was last updated.

depend_list

String

Dependency list.

strategy_config

String

Function policy configuration. See Table 4.

func_vpc

func_vpc

Virtual Private Cloud (VPC) configuration. See Table 6.

Table 3 func_code parameters

Parameter

Type

Description

file

String

Function code (deprecated).

link

String

Function code link (code can be downloaded through the OBS SDK).

Table 4 strategy_config parameter

Parameter

Type

Description

concurrency

Int

  • 0: The function is disabled.
  • -1: The function is enabled.

Example

Example request

GET /v2/7aad83af3e8d42e99ac194e8419e2c9b/fgs/functions/urn:fss:xxxxxxx:7aad83af3e8d42e99ac194e8419e2c9b:function:default:test:latest/code HTTP/1.1

Example response

The format of the response for a successful request is as follows:

HTTP/1.1 200 OK 
{ 
  "code_filename": "index.js", 
  "code_size": 272, 
  "code_type": "inline", 
  "digest": "decbce6939297b0b5ec6d1a23bf9c725870f5e69fc338a89a6a4029264688dc26338f56d08b6535de47f15ad538e22ca66613b9a46f807d50b687bb53fded1c6", 
  "func_code": { 
   "file": "",
   "link": "https://functionstorage-hk06.obs.xx-xxx.xxxxxxxxcloud.com/xxx/d2b0xxxf6e65/default/test143/latest/index.zip" 
  }, 
  "func_name": "test", 
  "func_urn": "urn:fss:xxxxxxxxxx:7aad83af3e8d42e99ac194e8419e2c9b:function:default:test:latest", 
  "last_modified": "2018-03-28T11:30:32+08:00", 
  "runtime": "Node.js6.10",
  "strategy_config": {
      "concurrency": -1
  },
 }

The format of the response for a failed request is as follows:

HTTP/1.1 404 Not Found  
{ 
  "error_code": "FSS.1052", 
  "error_msg": "Not found the function version" 
 }

Status Code

See Status Codes.