Mary Gao
Mary Gao
We have RLC integration testing for binary type : https://github.com/Azure/autorest.typescript/blob/main/packages/autorest.typescript/test/rlcIntegration/bodyFormDataRest.spec.ts. However if we upgrade @azure-rest/core-client to the latest GA or dev one we will meet below issue: ``` TSError: ⨯...
#### Swagger Response Structure One operation_id --> many responses One response --> one status code, body and headers etc #### CADL Response Structure One operation_id --> many responses One response...
Eventhough the code generator provides a pagination helper for RLCs but it only allows using `GET` to get next page link. If service's design both have `GET` or `POST` it...
- [ ] Enhance pagination Helper #1387 - [ ] Handle post in the nextLink operation - [ ] Sample Case List - [ ] body-string #1389 - [ ]...
Currently the generated sampleTest.ts only contains the replaceVariables and recorder creation. But after migration to test recorder v2 the created client would require default credential and testing options. So it's...
Type choice name is not matched between definition and reference if name is all uppercase After generation the definition of this type would be: ```typescript export type Sku = string;...
Currently in `hlcREADME.md.hbs` we hard coded the client example generation with fixed paramters, but it is not truly for all services. Sometimes the service constructor don't have the required `subscriptionId`,...
# Bug The autorest option `azureArm` extracting from method `getIsAzureArm` in `autorestOptions.ts` will return true if no azure-arm or openapi-type defined with below code snippet: ```typescript async function getIsAzureArm(host: AutorestExtensionHost):...
### Packages impacted by this PR ### Issues associated with this PR ### Describe the problem that is addressed by this PR ### What are the possible designs available to...
Currently we didn't do any parameter name normalization considering data will serialize and deserialize directly. Actually the parameter name could be normalized when appear in **URI** path. So we could...