We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When signature name begins with $ like https://github.com/Azure/azure-rest-api-specs/blob/d1d028736d79183a6a420e29145887fb02d1b1a9/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-07-01/virtualMachineExtensionImage.json#L120-L124 Then the generated signature name in SDK is:
$
However, when migrate it to typespec https://github.com/Azure/azure-rest-api-specs/blob/d1d028736d79183a6a420e29145887fb02d1b1a9/specification/compute/Compute.Management/VirtualMachineExtensionImage.tsp#L79-L80
the signature name is changed to _filter which has breakings compared with before:
_filter
The text was updated successfully, but these errors were encountered:
We need to optimize the logic that converts camel case to snake case: https://github.com/microsoft/typespec/blob/477560b2be680a4fd52bbe769fd5341e7b5715f8/packages/http-client-python/emitter/src/utils.ts#L91-L97
Sorry, something went wrong.
msyyc
No branches or pull requests
When signature name begins with
$
like https://github.com/Azure/azure-rest-api-specs/blob/d1d028736d79183a6a420e29145887fb02d1b1a9/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-07-01/virtualMachineExtensionImage.json#L120-L124Then the generated signature name in SDK is:
However, when migrate it to typespec
https://github.com/Azure/azure-rest-api-specs/blob/d1d028736d79183a6a420e29145887fb02d1b1a9/specification/compute/Compute.Management/VirtualMachineExtensionImage.tsp#L79-L80
the signature name is changed to
_filter
which has breakings compared with before:The text was updated successfully, but these errors were encountered: