Skip to content

Commit c76ee62

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add incident management seats to spec (#3253)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 84ed978 commit c76ee62

File tree

4 files changed

+114
-0
lines changed

4 files changed

+114
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21196,6 +21196,11 @@ components:
2119621196
users over all hours in the current date for all organizations.
2119721197
format: int64
2119821198
type: integer
21199+
incident_management_seats_hwm:
21200+
description: Shows the high-water mark of Incident Management seats over
21201+
all hours on the current date for all organizations.
21202+
format: int64
21203+
type: integer
2119921204
indexed_events_count_sum:
2120021205
description: Shows the sum of all log events indexed over all hours in the
2120121206
current date for all organizations.
@@ -22312,6 +22317,11 @@ components:
2231222317
users over all hours in the current date for the given org.
2231322318
format: int64
2231422319
type: integer
22320+
incident_management_seats_hwm:
22321+
description: Shows the high-water mark of Incident Management seats over
22322+
all hours on the current date for the given organization.
22323+
format: int64
22324+
type: integer
2231522325
indexed_events_count_sum:
2231622326
deprecated: true
2231722327
description: Shows the sum of all log events indexed over all hours in the
@@ -23429,6 +23439,11 @@ components:
2342923439
active users in the current month for all organizations.
2343023440
format: int64
2343123441
type: integer
23442+
incident_management_seats_hwm_sum:
23443+
description: Shows the sum of the high-water marks of Incident Management
23444+
seats over all hours in the current month for all organizations.
23445+
format: int64
23446+
type: integer
2343223447
indexed_events_count_agg_sum:
2343323448
deprecated: true
2343423449
description: Shows the sum of all log events indexed over all hours in the

src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
UsageSummaryDate.JSON_PROPERTY_GCP_HOST_TOP99P,
121121
UsageSummaryDate.JSON_PROPERTY_HEROKU_HOST_TOP99P,
122122
UsageSummaryDate.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM,
123+
UsageSummaryDate.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM,
123124
UsageSummaryDate.JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM,
124125
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_TOP99P,
125126
UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
@@ -587,6 +588,10 @@ public class UsageSummaryDate {
587588
"incident_management_monthly_active_users_hwm";
588589
private Long incidentManagementMonthlyActiveUsersHwm;
589590

591+
public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM =
592+
"incident_management_seats_hwm";
593+
private Long incidentManagementSeatsHwm;
594+
590595
public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM = "indexed_events_count_sum";
591596
private Long indexedEventsCountSum;
592597

@@ -3213,6 +3218,28 @@ public void setIncidentManagementMonthlyActiveUsersHwm(
32133218
this.incidentManagementMonthlyActiveUsersHwm = incidentManagementMonthlyActiveUsersHwm;
32143219
}
32153220

3221+
public UsageSummaryDate incidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
3222+
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
3223+
return this;
3224+
}
3225+
3226+
/**
3227+
* Shows the high-water mark of Incident Management seats over all hours on the current date for
3228+
* all organizations.
3229+
*
3230+
* @return incidentManagementSeatsHwm
3231+
*/
3232+
@jakarta.annotation.Nullable
3233+
@JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM)
3234+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3235+
public Long getIncidentManagementSeatsHwm() {
3236+
return incidentManagementSeatsHwm;
3237+
}
3238+
3239+
public void setIncidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
3240+
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
3241+
}
3242+
32163243
public UsageSummaryDate indexedEventsCountSum(Long indexedEventsCountSum) {
32173244
this.indexedEventsCountSum = indexedEventsCountSum;
32183245
return this;
@@ -5899,6 +5926,8 @@ public boolean equals(Object o) {
58995926
&& Objects.equals(
59005927
this.incidentManagementMonthlyActiveUsersHwm,
59015928
usageSummaryDate.incidentManagementMonthlyActiveUsersHwm)
5929+
&& Objects.equals(
5930+
this.incidentManagementSeatsHwm, usageSummaryDate.incidentManagementSeatsHwm)
59025931
&& Objects.equals(this.indexedEventsCountSum, usageSummaryDate.indexedEventsCountSum)
59035932
&& Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p)
59045933
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum)
@@ -6220,6 +6249,7 @@ public int hashCode() {
62206249
gcpHostTop99p,
62216250
herokuHostTop99p,
62226251
incidentManagementMonthlyActiveUsersHwm,
6252+
incidentManagementSeatsHwm,
62236253
indexedEventsCountSum,
62246254
infraHostTop99p,
62256255
ingestedEventsBytesSum,
@@ -6570,6 +6600,9 @@ public String toString() {
65706600
sb.append(" incidentManagementMonthlyActiveUsersHwm: ")
65716601
.append(toIndentedString(incidentManagementMonthlyActiveUsersHwm))
65726602
.append("\n");
6603+
sb.append(" incidentManagementSeatsHwm: ")
6604+
.append(toIndentedString(incidentManagementSeatsHwm))
6605+
.append("\n");
65736606
sb.append(" indexedEventsCountSum: ")
65746607
.append(toIndentedString(indexedEventsCountSum))
65756608
.append("\n");

src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
UsageSummaryDateOrg.JSON_PROPERTY_HEROKU_HOST_TOP99P,
122122
UsageSummaryDateOrg.JSON_PROPERTY_ID,
123123
UsageSummaryDateOrg.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM,
124+
UsageSummaryDateOrg.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM,
124125
UsageSummaryDateOrg.JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM,
125126
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_TOP99P,
126127
UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
@@ -603,6 +604,10 @@ public class UsageSummaryDateOrg {
603604
"incident_management_monthly_active_users_hwm";
604605
private Long incidentManagementMonthlyActiveUsersHwm;
605606

607+
public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM =
608+
"incident_management_seats_hwm";
609+
private Long incidentManagementSeatsHwm;
610+
606611
public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM = "indexed_events_count_sum";
607612
private Long indexedEventsCountSum;
608613

@@ -3317,6 +3322,28 @@ public void setIncidentManagementMonthlyActiveUsersHwm(
33173322
this.incidentManagementMonthlyActiveUsersHwm = incidentManagementMonthlyActiveUsersHwm;
33183323
}
33193324

3325+
public UsageSummaryDateOrg incidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
3326+
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
3327+
return this;
3328+
}
3329+
3330+
/**
3331+
* Shows the high-water mark of Incident Management seats over all hours on the current date for
3332+
* the given organization.
3333+
*
3334+
* @return incidentManagementSeatsHwm
3335+
*/
3336+
@jakarta.annotation.Nullable
3337+
@JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM)
3338+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3339+
public Long getIncidentManagementSeatsHwm() {
3340+
return incidentManagementSeatsHwm;
3341+
}
3342+
3343+
public void setIncidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
3344+
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
3345+
}
3346+
33203347
public UsageSummaryDateOrg indexedEventsCountSum(Long indexedEventsCountSum) {
33213348
this.indexedEventsCountSum = indexedEventsCountSum;
33223349
return this;
@@ -6049,6 +6076,8 @@ public boolean equals(Object o) {
60496076
&& Objects.equals(
60506077
this.incidentManagementMonthlyActiveUsersHwm,
60516078
usageSummaryDateOrg.incidentManagementMonthlyActiveUsersHwm)
6079+
&& Objects.equals(
6080+
this.incidentManagementSeatsHwm, usageSummaryDateOrg.incidentManagementSeatsHwm)
60526081
&& Objects.equals(this.indexedEventsCountSum, usageSummaryDateOrg.indexedEventsCountSum)
60536082
&& Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p)
60546083
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum)
@@ -6387,6 +6416,7 @@ public int hashCode() {
63876416
herokuHostTop99p,
63886417
id,
63896418
incidentManagementMonthlyActiveUsersHwm,
6419+
incidentManagementSeatsHwm,
63906420
indexedEventsCountSum,
63916421
infraHostTop99p,
63926422
ingestedEventsBytesSum,
@@ -6745,6 +6775,9 @@ public String toString() {
67456775
sb.append(" incidentManagementMonthlyActiveUsersHwm: ")
67466776
.append(toIndentedString(incidentManagementMonthlyActiveUsersHwm))
67476777
.append("\n");
6778+
sb.append(" incidentManagementSeatsHwm: ")
6779+
.append(toIndentedString(incidentManagementSeatsHwm))
6780+
.append("\n");
67486781
sb.append(" indexedEventsCountSum: ")
67496782
.append(toIndentedString(indexedEventsCountSum))
67506783
.append("\n");

src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
UsageSummaryResponse.JSON_PROPERTY_GCP_HOST_TOP99P_SUM,
127127
UsageSummaryResponse.JSON_PROPERTY_HEROKU_HOST_TOP99P_SUM,
128128
UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM,
129+
UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM,
129130
UsageSummaryResponse.JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM,
130131
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM,
131132
UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM,
@@ -634,6 +635,10 @@ public class UsageSummaryResponse {
634635
"incident_management_monthly_active_users_hwm_sum";
635636
private Long incidentManagementMonthlyActiveUsersHwmSum;
636637

638+
public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM =
639+
"incident_management_seats_hwm_sum";
640+
private Long incidentManagementSeatsHwmSum;
641+
637642
public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM =
638643
"indexed_events_count_agg_sum";
639644
private Long indexedEventsCountAggSum;
@@ -3395,6 +3400,28 @@ public void setIncidentManagementMonthlyActiveUsersHwmSum(
33953400
this.incidentManagementMonthlyActiveUsersHwmSum = incidentManagementMonthlyActiveUsersHwmSum;
33963401
}
33973402

3403+
public UsageSummaryResponse incidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) {
3404+
this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum;
3405+
return this;
3406+
}
3407+
3408+
/**
3409+
* Shows the sum of the high-water marks of Incident Management seats over all hours in the
3410+
* current month for all organizations.
3411+
*
3412+
* @return incidentManagementSeatsHwmSum
3413+
*/
3414+
@jakarta.annotation.Nullable
3415+
@JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM)
3416+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3417+
public Long getIncidentManagementSeatsHwmSum() {
3418+
return incidentManagementSeatsHwmSum;
3419+
}
3420+
3421+
public void setIncidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) {
3422+
this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum;
3423+
}
3424+
33983425
public UsageSummaryResponse indexedEventsCountAggSum(Long indexedEventsCountAggSum) {
33993426
this.indexedEventsCountAggSum = indexedEventsCountAggSum;
34003427
return this;
@@ -6356,6 +6383,8 @@ public boolean equals(Object o) {
63566383
&& Objects.equals(
63576384
this.incidentManagementMonthlyActiveUsersHwmSum,
63586385
usageSummaryResponse.incidentManagementMonthlyActiveUsersHwmSum)
6386+
&& Objects.equals(
6387+
this.incidentManagementSeatsHwmSum, usageSummaryResponse.incidentManagementSeatsHwmSum)
63596388
&& Objects.equals(
63606389
this.indexedEventsCountAggSum, usageSummaryResponse.indexedEventsCountAggSum)
63616390
&& Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum)
@@ -6734,6 +6763,7 @@ public int hashCode() {
67346763
gcpHostTop99pSum,
67356764
herokuHostTop99pSum,
67366765
incidentManagementMonthlyActiveUsersHwmSum,
6766+
incidentManagementSeatsHwmSum,
67376767
indexedEventsCountAggSum,
67386768
infraHostTop99pSum,
67396769
ingestedEventsBytesAggSum,
@@ -7129,6 +7159,9 @@ public String toString() {
71297159
sb.append(" incidentManagementMonthlyActiveUsersHwmSum: ")
71307160
.append(toIndentedString(incidentManagementMonthlyActiveUsersHwmSum))
71317161
.append("\n");
7162+
sb.append(" incidentManagementSeatsHwmSum: ")
7163+
.append(toIndentedString(incidentManagementSeatsHwmSum))
7164+
.append("\n");
71327165
sb.append(" indexedEventsCountAggSum: ")
71337166
.append(toIndentedString(indexedEventsCountAggSum))
71347167
.append("\n");

0 commit comments

Comments
 (0)