Skip to content

Commit

Permalink
Add documentation for Data Jobs Monitoring summary keys (#1808)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <[email protected]>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Sep 24, 2024
1 parent 847ca3f commit f2aa14b
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 4 deletions.
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-09-24 13:40:00.575999",
"spec_repo_commit": "7752efd3"
"regenerated": "2024-09-24 18:16:28.821186",
"spec_repo_commit": "2eb52c63"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-24 13:40:00.590776",
"spec_repo_commit": "7752efd3"
"regenerated": "2024-09-24 18:16:28.835857",
"spec_repo_commit": "2eb52c63"
}
}
}
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19283,6 +19283,11 @@ components:
over all hours in the current date for all organizations.
format: int64
type: integer
data_jobs_monitoring_host_hr_sum:
description: Shows the sum of all Data Jobs Monitoring hosts over all hours
in the current date for the given org.
format: int64
type: integer
date:
description: The date for the usage.
format: date-time
Expand Down Expand Up @@ -20018,6 +20023,11 @@ components:
over all hours in the current date for the given org.
format: int64
type: integer
data_jobs_monitoring_host_hr_sum:
description: Shows the sum of all Data Jobs Monitoring hosts over all hours
in the current date for the given org.
format: int64
type: integer
dbm_host_top99p_sum:
description: Shows the 99th percentile of all Database Monitoring hosts
over all hours in the current month for the given org.
Expand Down Expand Up @@ -20752,6 +20762,11 @@ components:
over all hours in the current month for all organizations.
format: int64
type: integer
data_jobs_monitoring_host_hr_agg_sum:
description: Shows the sum of Data Jobs Monitoring hosts over all hours
in the current months for all organizations
format: int64
type: integer
dbm_host_top99p_sum:
description: Shows the 99th percentile of all Database Monitoring hosts
over all hours in the current month for all organizations.
Expand Down
9 changes: 9 additions & 0 deletions packages/datadog-api-client-v1/models/UsageSummaryDate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@ export class UsageSummaryDate {
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations.
*/
"cwsHostTop99p"?: number;
/**
* Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
*/
"dataJobsMonitoringHostHrSum"?: number;
/**
* The date for the usage.
*/
Expand Down Expand Up @@ -811,6 +815,11 @@ export class UsageSummaryDate {
type: "number",
format: "int64",
},
dataJobsMonitoringHostHrSum: {
baseName: "data_jobs_monitoring_host_hr_sum",
type: "number",
format: "int64",
},
date: {
baseName: "date",
type: "Date",
Expand Down
9 changes: 9 additions & 0 deletions packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ export class UsageSummaryDateOrg {
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for the given org.
*/
"cwsHostTop99p"?: number;
/**
* Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
*/
"dataJobsMonitoringHostHrSum"?: number;
/**
* Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org.
*/
Expand Down Expand Up @@ -852,6 +856,11 @@ export class UsageSummaryDateOrg {
type: "number",
format: "int64",
},
dataJobsMonitoringHostHrSum: {
baseName: "data_jobs_monitoring_host_hr_sum",
type: "number",
format: "int64",
},
dbmHostTop99pSum: {
baseName: "dbm_host_top99p_sum",
type: "number",
Expand Down
9 changes: 9 additions & 0 deletions packages/datadog-api-client-v1/models/UsageSummaryResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ export class UsageSummaryResponse {
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current month for all organizations.
*/
"cwsHostTop99pSum"?: number;
/**
* Shows the sum of Data Jobs Monitoring hosts over all hours in the current months for all organizations
*/
"dataJobsMonitoringHostHrAggSum"?: number;
/**
* Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations.
*/
Expand Down Expand Up @@ -871,6 +875,11 @@ export class UsageSummaryResponse {
type: "number",
format: "int64",
},
dataJobsMonitoringHostHrAggSum: {
baseName: "data_jobs_monitoring_host_hr_agg_sum",
type: "number",
format: "int64",
},
dbmHostTop99pSum: {
baseName: "dbm_host_top99p_sum",
type: "number",
Expand Down

0 comments on commit f2aa14b

Please sign in to comment.