Bicep 錯誤碼 - BCP292
當您的裝飾專案後面接著 或 或 param
output
type
宣告,但遺漏宣告時,就會發生此錯誤。
錯誤描述
Expected a parameter, output, or type declaration after the decorator.
範例
下列範例會引發錯誤,因為 、、@maxValue()
、、 @maxLength()
@discriminator()
或 @sealed()
裝飾項目之後@metadata
沒有類型宣告。@minLength()
@minValue()
@minLength()
您可以移除裝飾專案並新增正確的類型宣告,以修正錯誤。
@minLength(3)
param name string
如需詳細資訊,請參閱 裝飾專案。
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 核心診斷。