-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Fix casing #32483
New issue
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
Fix casing #32483
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -291,7 +291,7 @@ | |
| ] | ||
| }, | ||
| "LakeHouseLocation": { | ||
| "description": "The location of Microsoft Fabric LakeHouse Files dataset.", | ||
| "description": "The location of Microsoft Fabric Lakehouse Files dataset.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
|
|
@@ -3712,8 +3712,8 @@ | |
| } | ||
| }, | ||
| "LakeHouseTableDataset": { | ||
| "x-ms-discriminator-value": "LakeHouseTable", | ||
| "description": "Microsoft Fabric LakeHouse Table.", | ||
| "x-ms-discriminator-value": "LakehouseTable", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @JeffreyRichter @mikeharder I feel like this is an api layer breaking here, but it's not getting detected correctly. because if customers want to pass an object for but as @JaylenZ8 confirmed offline, since service backend is backward compatible for this, and it can still recognize "LakeHouseTable" I guess it's probably okay for this one? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @qiaozha: Please open an issue at https://github.com/Azure/openapi-diff/issues to suggest a bug fix or feature request for the breaking changes detector. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, issue created here Azure/openapi-diff#350 |
||
| "description": "Microsoft Fabric Lakehouse Table.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
|
|
@@ -3722,25 +3722,25 @@ | |
| ], | ||
| "properties": { | ||
| "typeProperties": { | ||
| "description": "Microsoft Fabric LakeHouse Table dataset properties.", | ||
| "description": "Microsoft Fabric Lakehouse Table dataset properties.", | ||
| "x-ms-client-flatten": true, | ||
| "$ref": "#/definitions/LakeHouseTableDatasetTypeProperties" | ||
| } | ||
| } | ||
| }, | ||
| "LakeHouseTableDatasetTypeProperties": { | ||
| "description": "Microsoft Fabric LakeHouse Table dataset properties.", | ||
| "description": "Microsoft Fabric Lakehouse Table dataset properties.", | ||
| "type": "object", | ||
| "properties": { | ||
| "schema": { | ||
| "type": "object", | ||
| "x-ms-format": "dfe-string", | ||
| "description": "The schema name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string)." | ||
| "description": "The schema name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string)." | ||
| }, | ||
| "table": { | ||
| "type": "object", | ||
| "x-ms-format": "dfe-string", | ||
| "description": "The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string)." | ||
| "description": "The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string)." | ||
| } | ||
| } | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.