missing-operations-endpoint
@azure-tools/typespec-azure-resource-manager/missing-operations-endpointCheck for missing Operations interface. All Azure Resource Manager services must expose the operations endpoint. Add the Operations interface to your service namespace.
❌ Incorrect
Section titled “❌ Incorrect”@armProviderNamespacenamespace MyService;✅ Correct
Section titled “✅ Correct”@armProviderNamespacenamespace MyService;
interface Operations extends Azure.ResourceManager.Operations {}Reviewer advice
Section titled “Reviewer advice”Impacts the API: this corresponds to the LintDiff rule OperationsAPIImplementation and causes an RPC violation. Ask the author to use the standard Operations template. Accept a suppression only for the few specs that may not need this endpoint.