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
In version 5 and above of the common types, a format attribute was introduced to certain model properties. For example, the id property of Resource now uses the arm-id format: https://github.com/Azure/azure-rest-api-specs/blob/main/specification/common-types/resource-management/v5/types.json#L17 And subscriptionId is uuid: https://github.com/Azure/azure-rest-api-specs/blob/main/specification/common-types/resource-management/v5/types.json#L637
format
id
Resource
arm-id
subscriptionId
uuid
This change disrupts the existing type reference logic in CodeGen, so we need to enhance CodeGen to support it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In version 5 and above of the common types, a
format
attribute was introduced to certain model properties. For example, theid
property ofResource
now uses thearm-id
format:https://github.com/Azure/azure-rest-api-specs/blob/main/specification/common-types/resource-management/v5/types.json#L17
And
subscriptionId
isuuid
:https://github.com/Azure/azure-rest-api-specs/blob/main/specification/common-types/resource-management/v5/types.json#L637
This change disrupts the existing type reference logic in CodeGen, so we need to enhance CodeGen to support it.
The text was updated successfully, but these errors were encountered: