Skip to content
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

Deprecate two sds metadata fields #1868

Merged
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-23 16:37:04.850584",
"spec_repo_commit": "a916f673"
"regenerated": "2024-10-24 20:04:19.143316",
"spec_repo_commit": "aaacb8db"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-23 16:37:04.869465",
"spec_repo_commit": "a916f673"
"regenerated": "2024-10-24 20:04:19.162468",
"spec_repo_commit": "aaacb8db"
}
}
}
10 changes: 7 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21679,11 +21679,15 @@ components:
format: int64
type: integer
has_highlight_enabled:
description: Whether or not scanned events are highlighted in Logs or RUM
for the org.
default: true
deprecated: true
description: (Deprecated) Whether or not scanned events are highlighted
in Logs or RUM for the org.
type: boolean
has_multi_pass_enabled:
description: Whether or not scanned events have multi-pass enabled.
deprecated: true
description: (Deprecated) Whether or not scanned events have multi-pass
enabled.
type: boolean
is_pci_compliant:
description: Whether or not the org is compliant to the payment card industry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ export class SensitiveDataScannerMeta {
*/
"groupCountLimit"?: number;
/**
* Whether or not scanned events are highlighted in Logs or RUM for the org.
* (Deprecated) Whether or not scanned events are highlighted in Logs or RUM for the org.
*/
"hasHighlightEnabled"?: boolean;
/**
* Whether or not scanned events have multi-pass enabled.
* (Deprecated) Whether or not scanned events have multi-pass enabled.
*/
"hasMultiPassEnabled"?: boolean;
/**
Expand Down
Loading