File tree Expand file tree Collapse file tree 4 files changed +9
-23
lines changed
src/main/java/com/datadog/api/client/v2/model Expand file tree Collapse file tree 4 files changed +9
-23
lines changed Original file line number Diff line number Diff line change @@ -24674,6 +24674,7 @@ components:
2467424674 authorizationCode:
2467524675 authorizationUrl: /oauth2/v1/authorize
2467624676 scopes:
24677+ ai_guard_evaluate: Evaluate AI Guard rules.
2467724678 apm_api_catalog_read: View API catalog and API definitions.
2467824679 apm_api_catalog_write: Add, modify, and delete API catalog definitions.
2467924680 apm_read: Read and query APM and Trace Analytics.
@@ -24766,6 +24767,10 @@ components:
2476624767 user_access_manage: Disable users, manage user roles, manage SAML-to-role
2476724768 mappings, and configure logs restriction queries.
2476824769 user_access_read: View users and their roles and settings.
24770+ user_self_profile_read: View information about your own user settings
24771+ like your profile information and all the organizations you belong to.
24772+ user_self_profile_write: Write information about your own user settings
24773+ like your profile information.
2476924774 workflows_read: View workflows.
2477024775 workflows_run: Run workflows.
2477124776 workflows_write: Create, edit, and delete workflows.
Original file line number Diff line number Diff line change @@ -19060,11 +19060,11 @@ components:
1906019060 type: string
1906119061 type: array
1906219062 hasOptionalGroupByFields:
19063- default: false
1906419063 description: When false, events without a group-by value are ignored by
1906519064 the query. When true, events with missing group-by fields are processed
1906619065 with `N/A`, replacing the missing values.
1906719066 example: false
19067+ readOnly: true
1906819068 type: boolean
1906919069 metrics:
1907019070 description: Group of target fields to aggregate over when using the sum,
@@ -39603,11 +39603,11 @@ components:
3960339603 type: string
3960439604 type: array
3960539605 hasOptionalGroupByFields:
39606- default: false
3960739606 description: When false, events without a group-by value are ignored by
3960839607 the rule. When true, events with missing group-by fields are processed
3960939608 with `N/A`, replacing the missing values.
3961039609 example: false
39610+ readOnly: true
3961139611 type: boolean
3961239612 index:
3961339613 description: '**This field is currently unstable and might be removed in
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class HistoricalJobQuery {
4848
4949 public static final String JSON_PROPERTY_HAS_OPTIONAL_GROUP_BY_FIELDS =
5050 "hasOptionalGroupByFields" ;
51- private Boolean hasOptionalGroupByFields = false ;
51+ private Boolean hasOptionalGroupByFields ;
5252
5353 public static final String JSON_PROPERTY_METRICS = "metrics" ;
5454 private List <String > metrics = null ;
@@ -167,11 +167,6 @@ public void setGroupByFields(List<String> groupByFields) {
167167 this .groupByFields = groupByFields ;
168168 }
169169
170- public HistoricalJobQuery hasOptionalGroupByFields (Boolean hasOptionalGroupByFields ) {
171- this .hasOptionalGroupByFields = hasOptionalGroupByFields ;
172- return this ;
173- }
174-
175170 /**
176171 * When false, events without a group-by value are ignored by the query. When true, events with
177172 * missing group-by fields are processed with <code>N/A</code>, replacing the missing values.
@@ -185,10 +180,6 @@ public Boolean getHasOptionalGroupByFields() {
185180 return hasOptionalGroupByFields ;
186181 }
187182
188- public void setHasOptionalGroupByFields (Boolean hasOptionalGroupByFields ) {
189- this .hasOptionalGroupByFields = hasOptionalGroupByFields ;
190- }
191-
192183 public HistoricalJobQuery metrics (List <String > metrics ) {
193184 this .metrics = metrics ;
194185 return this ;
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public class SecurityMonitoringStandardRuleQuery {
5454
5555 public static final String JSON_PROPERTY_HAS_OPTIONAL_GROUP_BY_FIELDS =
5656 "hasOptionalGroupByFields" ;
57- private Boolean hasOptionalGroupByFields = false ;
57+ private Boolean hasOptionalGroupByFields ;
5858
5959 public static final String JSON_PROPERTY_INDEX = "index" ;
6060 private String index ;
@@ -202,12 +202,6 @@ public void setGroupByFields(List<String> groupByFields) {
202202 this .groupByFields = groupByFields ;
203203 }
204204
205- public SecurityMonitoringStandardRuleQuery hasOptionalGroupByFields (
206- Boolean hasOptionalGroupByFields ) {
207- this .hasOptionalGroupByFields = hasOptionalGroupByFields ;
208- return this ;
209- }
210-
211205 /**
212206 * When false, events without a group-by value are ignored by the rule. When true, events with
213207 * missing group-by fields are processed with <code>N/A</code>, replacing the missing values.
@@ -221,10 +215,6 @@ public Boolean getHasOptionalGroupByFields() {
221215 return hasOptionalGroupByFields ;
222216 }
223217
224- public void setHasOptionalGroupByFields (Boolean hasOptionalGroupByFields ) {
225- this .hasOptionalGroupByFields = hasOptionalGroupByFields ;
226- }
227-
228218 public SecurityMonitoringStandardRuleQuery index (String index ) {
229219 this .index = index ;
230220 return this ;
You can’t perform that action at this time.
0 commit comments