Skip to content

Commit a7f77d1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 2a5e035c of spec repo
1 parent 362c924 commit a7f77d1

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
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 15:21:50.433195",
8+
"spec_repo_commit": "2a5e035c"
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 15:21:50.451378",
13+
"spec_repo_commit": "2a5e035c"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21680,11 +21680,15 @@ components:
2168021680
format: int64
2168121681
type: integer
2168221682
has_highlight_enabled:
21683-
description: Whether or not scanned events are highlighted in Logs or RUM
21684-
for the org.
21683+
default: true
21684+
deprecated: true
21685+
description: (Deprecated) Whether or not scanned events are highlighted
21686+
in Logs or RUM for the org. Can no longer be configured user-side.
2168521687
type: boolean
2168621688
has_multi_pass_enabled:
21687-
description: Whether or not scanned events have multi-pass enabled.
21689+
deprecated: true
21690+
description: (Deprecated) Whether or not scanned events have multi-pass
21691+
enabled.
2168821692
type: boolean
2168921693
is_pci_compliant:
2169021694
description: Whether or not the org is compliant to the payment card industry

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

Lines changed: 10 additions & 3 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+
* (Deprecated) Whether or not scanned events are highlighted in Logs or RUM for the org. Can no
99+
* longer be 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
}
@@ -116,17 +120,20 @@ public SensitiveDataScannerMeta hasMultiPassEnabled(Boolean hasMultiPassEnabled)
116120
}
117121

118122
/**
119-
* Whether or not scanned events have multi-pass enabled.
123+
* (Deprecated) 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)