Timothee Guerin

Results 124 comments of Timothee Guerin

There isn't anything that I know of and it seems unlikely that every generated language is not working. Autorest itself doesn't really generate much of the authentication it just consume...

You can use directives to remove operations [See docs](https://github.com/Azure/autorest/blob/main/docs%2Fgenerate%2Fdirectives.md) there is a set of [built-in directives](https://github.com/Azure/autorest/blob/main/docs/generate/built-in-directives.md) which might be useful `remove-operation` in particular.

There currently isn't a way to remove unused models. One of the issue is that a spec could have unreferenced models that aren't really unused. In Swagger 2.0 as you...

clear output folder will delete files that were not added during the current run and is case insensitive which would explain why the file wasn't renamed. This seems to always...

Well I think git is the other problem but not the only one(Like even if autorest was to rename the file correctly git would not pickup the change as you...

Look to make sure when using writeFile that the file has the same casing

@allenjzhang @AlexanderSher Problem happening here: [Spec where the issue is](https://github.com/Azure/azure-rest-api-specs/blob/d9cf7c7ed3d674ebd482836e82b274014245ae67/specification/attestation/data-plane/Microsoft.Attestation/preview/2018-09-01-preview/attestation.json#L73) Swagger 2.0 only lets you define the produce content type at the operation level(or global) but not per status code....

Duplicate of #4303, is this a demand from services? I did brings this up in autorest scrum a while back and there wasn't much interest in supporting it in the...

I think this would significantly slow down the loading of configuration when readme files are remote. It would have to ping every single combination for each require. I think this...

There is a few issue I have with this. 1. The configuration loading in autorest is already extremely complex, adding additional abstraction will make it hard to implement, understand and...