Get Action
- 인쇄
- PDF
Get Action
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
개요
특정 액션을 조회합니다.
요청
요청 URL
GET {CLOUD_FUNCTIONS_API_URL}/packages/{packageName}/actions/{actionName}
x-ncp-apigw-timestamp: {Timestamp}
x-ncp-iam-access-key: {Sub Account Access Key}
x-ncp-apigw-signature-v2: {API Gateway Signature}
Path Variables
파라미터 | 필수 여부 | 타입 | 설명 |
---|---|---|---|
packageName | Yes | string | - 패키지 이름 package에 속하지 않은 action을 조회하는 경우, packageName에 -를 입력 바람 |
actionName | Yes | string | 액션 이름 |
응답
응답 바디
Basic Action
{
"content": {
"name": "string",
"path": "string",
"description": "string",
"web": "boolean",
"raw-http": "boolean",
"custom-options": "boolean",
"parameters": {
},
"exec": {
"binary": "boolean",
"code": "string",
"kind": "string",
"main": "string"
},
"limits": {
"memory": "number",
"timeout": "number"
},
"resourceId": "string"
}
}
항목 | 타입 | 설명 | 비고 |
---|---|---|---|
content.name | string | 액션 이름 | |
content.path | string | 액션의 path | |
content.description | string | 액션 설명 | |
content.web | boolean | 웹액션 설정 | |
content.raw-http | boolean | HTTP 원문 사용 여부 | |
content.custom-options | boolean | 헤더 옵션 설정 | |
content.parameters | object | 액션의 디폴트 파라미터 | |
content.exec.binary | boolean | 코드의 파일 바이너리 여부 | |
content.exec.code | string | 소스 코드 | |
content.exec.kind | string | 사용 언어 | |
content.exec.main | string | 코드 내의 실행할 함수 | |
content.limits.memory | number | 액션 컨테이너에 할당되는 메모리 크기 | |
content.limits.timeout | number | 액션이 실행될 수 있는 최대 시간 | |
content.resourceId | string | 액션의 resourceId |
Sequence Action
{
"content": {
"name": "string",
"path": "string",
"description": "string",
"resourceId": "string",
"web": "boolean",
"exec": {
"kind": "string",
"components": [
"string"
]
}
}
}
항목 | 타입 | 설명 | 비고 |
---|---|---|---|
content.name | string | 액션 이름 | |
content.path | string | 액션의 path | |
content.description | string | 액션 설명 | |
content.resourceId | string | 액션의 resourceId | |
content.web | boolean | 웹액션 설정 | |
content.exec.kind | string | 시퀀스 액션 | |
content.exec.components | string array | 연결된 액션 리스트 |
이 문서가 도움이 되었습니까?