Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1424,10 +1424,12 @@
"type": "object",
"properties": {
"atlasKafkaPrimaryEndpoint": {
"x-ms-secret": true,
"description": "Gets or sets the primary connection string.",
"type": "string"
},
"atlasKafkaSecondaryEndpoint": {
"x-ms-secret": true,
"description": "Gets or sets the secondary connection string.",
"type": "string"
}
Expand Down
11 changes: 0 additions & 11 deletions specification/purview/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,6 @@ go:
namespace: purview
clear-output-folder: true
```
## Suppression

``` yaml
directive:
- suppress: R3018 # EnumInsteadOfBoolean
where:
- $.definitions.CheckNameAvailabilityResult.properties.nameAvailable
- $.definitions.DimensionProperties.properties.toBeExportedForCustomer
reason:
- Check name model is set by ARM team https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/proxy-api-reference.md#check-name-availability-requests
```

### Go multi-api

Expand Down
17 changes: 17 additions & 0 deletions specification/purview/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,20 @@ See configuration in [readme.python.md](./readme.python.md)
## Go

See configuration in [readme.go.md](./readme.go.md)

## Suppression

``` yaml
directive:
- suppress: SECRET_PROPERTY
where:
- $.definitions.AccessKeys.properties.atlasKafkaPrimaryEndpoint
- $.definitions.AccessKeys.properties.atlasKafkaSecondaryEndpoint
reason: Secrets are OK to return in a POST response.
- suppress: R3018 # EnumInsteadOfBoolean
where:
- $.definitions.CheckNameAvailabilityResult.properties.nameAvailable
- $.definitions.DimensionProperties.properties.toBeExportedForCustomer
reason:
- Check name model is set by ARM team https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/proxy-api-reference.md#check-name-availability-requests
```