Laurent Mazuel

Results 46 comments of Laurent Mazuel

Got bitten by this one as well :( To answer @Lukasa question: > do the functions currently available suffice for your use case? I would say no, because `trust_env` is...

I'm not sure I'm ready to say "avoid all magic", but I surely feel that ignoring silently extension is bad. So either we fail (magic parameter ApiVersion do not support...

Could you clarify autorest behavior? It probably ignores the enum right?

@mikekistler could you PR this file with your expected behavior: https://github.com/Azure/autorest/blob/main/docs/extensions/readme.md We could use that PR to discuss on naming and details on how to express it. Once that PR...

I would vote for a separate config for clarity

We have discussion in progress with @johanste to get an easy standardized way to get dict representation of all models. Totally legit feedback, let's talk about doing it.

@rayluo if that helps, SDK world dropped Python 2 on Jan 1st 2022: https://github.com/Azure/azure-sdk-for-python/issues/20691

Was thinking about this this night, probably suggest a "after_generation" and "before_generation" node in the config file, where I just execute that, pushing as command line some info (package name,...

@veronicagg done https://github.com/lmazuel/swagger-to-sdk/pull/22 Comments are welcomed :)

Example from @mikekistler : ```python # Test for DetectChangePoint @AnomalyDetectorPreparer() def test_detect_change_point(self, anomalydetector_endpoint, anomalydetector_apikey): client = self.create_test_client(anomalydetector_endpoint, anomalydetector_apikey) with open("tests/examples/ChangePointDetect.json") as f: example = json.load(f) ret = client.detect_change_point(body=example["parameters"]["body"]) # structure...