Skip to content

Commit

Permalink
Fix miss spelling property name and case sensitive (#7616)
Browse files Browse the repository at this point in the history
  • Loading branch information
LingyunSu authored and mmyyrroonn committed Oct 29, 2019
1 parent f36ceea commit 7f1524d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
2 changes: 2 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,8 @@ exportdevices
exporterrors
exportstatus
externaldatasources
externalDNSIPAddress01
externalDNSIPAddress02
EYWQ
faceapi
facelists
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@
"description": "The deployment id of the stamp.",
"type": "string"
},
"externalDnsIPAddress01": {
"externalDNSIPAddress01": {
"description": "First external IP address of the DNS server.",
"type": "string"
},
"externalDnsIPAddress02": {
"externalDNSIPAddress02": {
"description": "Second external IP Address of the DNS server.",
"type": "string"
},
Expand Down
13 changes: 13 additions & 0 deletions specification/azsadmin/resource-manager/fabric/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,19 @@ input-file:
- "Microsoft.Fabric.Admin/preview/2019-05-01/Volume.json"
```

## Suppression
``` yaml
directive:
- suppress: DefinitionsPropertiesNamesCamelCase
from: FabricLocation.json
where: $.definitions.FabricLocationModel.properties.externalDNSIPAddress01
reason: externalDNSIPAddress01 is a customized name, no camel case restriction needed.
- suppress: DefinitionsPropertiesNamesCamelCase
from: FabricLocation.json
where: $.definitions.FabricLocationModel.properties.externalDNSIPAddress02
reason: externalDNSIPAddress02 is a customized name, no camel case restriction needed.
```

---
# Code Generation

Expand Down

0 comments on commit 7f1524d

Please sign in to comment.