---
title: "AppComponentResponse"
slug: "common-vapidatatype-appcomponentresponse"
updated: 2026-07-23T09:04:00Z
published: 2026-07-23T09:04:00Z
canonical: "api.ncloud-docs.com/common-vapidatatype-appcomponentresponse"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AppComponentResponse

VPC 환경에서 이용 가능합니다.

Data Forest 앱 컴포넌트입니다.

## 구문

구문은 다음과 같습니다.

```
private String name;
private String state;
private Integer desired;
private Integer allocated;
private Integer memoryMb;
private Integer cpuCount;
private String image;
private Integer containerCount;
private AppContainerResponse containers;
```

## 필드

필드에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `name` | String | Optional | 앱 컴포넌트의 이름 |
| `state` | String | Optional | 앱 컴포넌트의 상태 |
| `desired` | Integer | Optional | 앱 생성 시 사용자가 지정한 앱 컴포넌트의 컨테이너 개수 |
| `allocated` | Integer | Optional | 앱 컴포넌트에 할당된 컨테이너 개수 - <예시> DEV-1.0.0 앱 생성 시 사용자가 컨테이너 개수를 2개로 지정한 경우, 컨테이너는 2개로 할당되며 각 컨테이너 이름은 `shell-0`, `shell-1`로 생성됨 |
| `memoryMb` | Integer | Optional | 앱 컴포넌트의 컨테이너 메모리 용량(MB) - 앱 생성 시 사용자가 지정한 메모리 용량이 각각의 컨테이너에 할당됨 |
| `cpuCount` | Integer | Optional | 앱 생성 시 사용자가 지정한 앱 컴포넌트의 CPU 할당 개수 |
| `image` | String | Optional | 앱 컴포넌트의 컨테이너를 생성하기 위한 Docker 이미지 이름 - <예시> `rgstry.kr.df.naverncp.com/dataforest/zookeeper-webui:20201130` |
| `containerCount` | Integer | Optional | 앱 컴포넌트의 컨테이너 개수 |
| `containers` | [AppContainerResponse](/docs/common-vapidatatype-appcontainerresponse) | Optional | AppContainerReponse 데이터 타입 |
