Skip to main content
Version: Latest (Core: 0.57.x, Azure: 0.43.x)

unsupported-types

@azure-tools/typespec-azure-core/unsupported-types

Check the ARM specification is not using types not supported in ARM.

Primitive types currently unsupported in ARM:

  • int8
  • int16
  • uint8
  • uint16
  • uint32
  • uint64

❌ Incorrect

model ResourceProperties {
count: uint32;
}

✅ Correct

model ResourceProperties {
count: int32;
}