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 | 앱 컴포넌트에 할당된 컨테이너 개수
|
memoryMb |
Integer | Optional | 앱 컴포넌트의 컨테이너 메모리 용량(MB)
|
cpuCount |
Integer | Optional | 앱 생성 시 사용자가 지정한 앱 컴포넌트의 CPU 할당 개수 |
image |
String | Optional | 앱 컴포넌트의 컨테이너를 생성하기 위한 Docker 이미지 이름
|
containerCount |
Integer | Optional | 앱 컴포넌트의 컨테이너 개수 |
containers |
AppContainerResponse | Optional | AppContainerReponse 데이터 타입 |