Bicep 诊断代码 - BCP302
说明
名称 <type-name> 不是有效类型。 请指定以下类型之一:<type-names>。
Level
错误
解决方案
使用正确的数据类型或用户定义的数据类型。
示例
以下示例会引发诊断,因为 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 核心诊断。