Bicep 오류 코드 - BCP302
이 오류는 잘못된 데이터 형식 또는 사용자 정의 데이터 형식을 사용할 때 발생합니다.
오류 설명
The name <type-name> is not a valid type. Please specify one of the following types: <type-names>.
해결 방법
올바른 데이터 형식 또는 사용자 정의 데이터 형식을 사용합니다.
예제
다음 예제에서는 오타처럼 보이기 때문에 balla
오류를 발생합니다.
type ball = {
name: string
color: string
}
output tennisBall balla = {
name: 'tennis'
color: 'yellow'
}
오타를 수정하여 오류를 수정할 수 있습니다.
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
다음 단계
Bicep 오류 및 경고 코드에 대한 자세한 내용은 Bicep 코어 진단을 참조 하세요.