次の方法で共有


Bicep エラー コード - BCP302

このエラーは、無効な data 型 またはユーザー定義データ型 使用した場合に発生します

エラーの説明

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 コア診断を参照してください。