Skip to content

Commit e7ef338

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 45509e8e of spec repo
1 parent 362c924 commit e7ef338

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-10-10 19:45:58.829299",
8-
"spec_repo_commit": "049920eb"
7+
"regenerated": "2024-10-15 14:57:10.311603",
8+
"spec_repo_commit": "45509e8e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-10-10 19:45:58.847651",
13-
"spec_repo_commit": "049920eb"
12+
"regenerated": "2024-10-15 14:57:10.330227",
13+
"spec_repo_commit": "45509e8e"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21680,10 +21680,13 @@ components:
2168021680
format: int64
2168121681
type: integer
2168221682
has_highlight_enabled:
21683+
default: true
21684+
deprecated: true
2168321685
description: Whether or not scanned events are highlighted in Logs or RUM
21684-
for the org.
21686+
for the org. Can no longer be configured user-side.
2168521687
type: boolean
2168621688
has_multi_pass_enabled:
21689+
deprecated: true
2168721690
description: Whether or not scanned events have multi-pass enabled.
2168821691
type: boolean
2168921692
is_pci_compliant:

src/main/java/com/datadog/api/client/v2/model/SensitiveDataScannerMeta.java

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class SensitiveDataScannerMeta {
3636
private Long groupCountLimit;
3737

3838
public static final String JSON_PROPERTY_HAS_HIGHLIGHT_ENABLED = "has_highlight_enabled";
39-
private Boolean hasHighlightEnabled;
39+
private Boolean hasHighlightEnabled = true;
4040

4141
public static final String JSON_PROPERTY_HAS_MULTI_PASS_ENABLED = "has_multi_pass_enabled";
4242
private Boolean hasMultiPassEnabled;
@@ -95,17 +95,21 @@ public SensitiveDataScannerMeta hasHighlightEnabled(Boolean hasHighlightEnabled)
9595
}
9696

9797
/**
98-
* Whether or not scanned events are highlighted in Logs or RUM for the org.
98+
* Whether or not scanned events are highlighted in Logs or RUM for the org. Can no longer be
99+
* configured user-side.
99100
*
100101
* @return hasHighlightEnabled
102+
* @deprecated
101103
*/
104+
@Deprecated
102105
@jakarta.annotation.Nullable
103106
@JsonProperty(JSON_PROPERTY_HAS_HIGHLIGHT_ENABLED)
104107
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
105108
public Boolean getHasHighlightEnabled() {
106109
return hasHighlightEnabled;
107110
}
108111

112+
@Deprecated
109113
public void setHasHighlightEnabled(Boolean hasHighlightEnabled) {
110114
this.hasHighlightEnabled = hasHighlightEnabled;
111115
}
@@ -119,14 +123,17 @@ public SensitiveDataScannerMeta hasMultiPassEnabled(Boolean hasMultiPassEnabled)
119123
* Whether or not scanned events have multi-pass enabled.
120124
*
121125
* @return hasMultiPassEnabled
126+
* @deprecated
122127
*/
128+
@Deprecated
123129
@jakarta.annotation.Nullable
124130
@JsonProperty(JSON_PROPERTY_HAS_MULTI_PASS_ENABLED)
125131
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
126132
public Boolean getHasMultiPassEnabled() {
127133
return hasMultiPassEnabled;
128134
}
129135

136+
@Deprecated
130137
public void setHasMultiPassEnabled(Boolean hasMultiPassEnabled) {
131138
this.hasMultiPassEnabled = hasMultiPassEnabled;
132139
}

0 commit comments

Comments
 (0)