Bicep 错误代码 - BCP062
当引用的声明出错时,会发生此错误。
错误说明
The referenced declaration with name <type-name> is not valid.
示例
以下示例会引发错误,因为引用的用户定义的数据类型有错误:
type ball = object.bar
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
可以通过修复 ball 定义来修复错误:
type ball = object
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。