arm-resource-interface-requires-decorator
@azure-tools/typespec-azure-resource-manager/arm-resource-interface-requires-decoratorEach resource interface must have an @armResourceOperations decorator to associate the interface with its ARM resource type.
โ Incorrect
Section titled โโ Incorrectโinterface FooResources extends TrackedResourceOperations<FooResource, FooProperties> {}โ Correct
Section titled โโ Correctโ@armResourceOperations(FooResource)interface FooResources extends TrackedResourceOperations<FooResource, FooProperties> {}