diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index b8661d93ff71..14b2d035b579 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -19700,11 +19700,12 @@ components: - id type: object DeploymentRulesOptions: - description: Options for deployment rule response representing either faulty - deployment detection or monitor options. - oneOf: + anyOf: - $ref: '#/components/schemas/DeploymentRuleOptionsFaultyDeploymentDetection' - $ref: '#/components/schemas/DeploymentRuleOptionsMonitor' + description: Options for deployment rule response representing either faulty + deployment detection or monitor options. The actual type is determined by + the parent's 'type' field. DetachCaseRequest: description: Request for detaching security findings from their case. properties: diff --git a/features/v2/deployment_gates.feature b/features/v2/deployment_gates.feature index cb0c5a1262d6..7f9dd2ada605 100644 --- a/features/v2/deployment_gates.feature +++ b/features/v2/deployment_gates.feature @@ -49,7 +49,7 @@ Feature: Deployment Gates Given operation "CreateDeploymentRule" enabled And new "CreateDeploymentRule" request And request contains "gate_id" parameter from "REPLACE.ME" - And body with value {"data": {"attributes": {"dry_run": false, "name": "My deployment rule", "options": {"duration": 3600, "excluded_resources": ["resource1", "resource2"]}, "type": "faulty_deployment_detection"}, "type": "deployment_rule"}} + And body with value {"data": {"attributes": {"dry_run": false, "name": "My deployment rule", "type": "faulty_deployment_detection"}, "type": "deployment_rule"}} When the request is sent Then the response status is 400 Bad request. @@ -279,7 +279,7 @@ Feature: Deployment Gates And new "UpdateDeploymentRule" request And request contains "gate_id" parameter from "REPLACE.ME" And request contains "id" parameter from "REPLACE.ME" - And body with value {"data": {"attributes": {"dry_run": false, "name": "Updated deployment rule", "options": {"duration": 3600, "excluded_resources": ["resource1", "resource2"]}}, "type": "deployment_rule"}} + And body with value {"data": {"attributes": {"dry_run": false, "name": "Updated deployment rule"}, "type": "deployment_rule"}} When the request is sent Then the response status is 400 Bad request. @@ -289,7 +289,7 @@ Feature: Deployment Gates And new "UpdateDeploymentRule" request And request contains "gate_id" parameter from "REPLACE.ME" And request contains "id" parameter from "REPLACE.ME" - And body with value {"data": {"attributes": {"dry_run": false, "name": "Updated deployment rule", "options": {"duration": 3600, "excluded_resources": ["resource1", "resource2"]}}, "type": "deployment_rule"}} + And body with value {"data": {"attributes": {"dry_run": false, "name": "Updated deployment rule"}, "type": "deployment_rule"}} When the request is sent Then the response status is 404 Deployment rule not found. diff --git a/services/deployment_gates/src/v2/index.ts b/services/deployment_gates/src/v2/index.ts index ff42e5ab29d1..71f35e62666b 100644 --- a/services/deployment_gates/src/v2/index.ts +++ b/services/deployment_gates/src/v2/index.ts @@ -34,7 +34,6 @@ export { DeploymentRuleResponseDataAttributes } from "./models/DeploymentRuleRes export { DeploymentRuleResponseDataAttributesCreatedBy } from "./models/DeploymentRuleResponseDataAttributesCreatedBy"; export { DeploymentRuleResponseDataAttributesType } from "./models/DeploymentRuleResponseDataAttributesType"; export { DeploymentRuleResponseDataAttributesUpdatedBy } from "./models/DeploymentRuleResponseDataAttributesUpdatedBy"; -export { DeploymentRulesOptions } from "./models/DeploymentRulesOptions"; export { HTTPCDGatesBadRequestResponse } from "./models/HTTPCDGatesBadRequestResponse"; export { HTTPCDGatesNotFoundResponse } from "./models/HTTPCDGatesNotFoundResponse"; export { HTTPCDRulesNotFoundResponse } from "./models/HTTPCDRulesNotFoundResponse"; diff --git a/services/deployment_gates/src/v2/models/CreateDeploymentRuleParamsDataAttributes.ts b/services/deployment_gates/src/v2/models/CreateDeploymentRuleParamsDataAttributes.ts index 1bc9e12cb87f..7dd6c268319d 100644 --- a/services/deployment_gates/src/v2/models/CreateDeploymentRuleParamsDataAttributes.ts +++ b/services/deployment_gates/src/v2/models/CreateDeploymentRuleParamsDataAttributes.ts @@ -1,7 +1,5 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client"; -import { DeploymentRulesOptions } from "./DeploymentRulesOptions"; - /** * Parameters for creating a deployment rule. */ @@ -15,9 +13,9 @@ export class CreateDeploymentRuleParamsDataAttributes { */ "name": string; /** - * Options for deployment rule response representing either faulty deployment detection or monitor options. + * Options for deployment rule response representing either faulty deployment detection or monitor options. The actual type is determined by the parent's 'type' field. */ - "options": DeploymentRulesOptions; + "options": any; /** * The type of the deployment rule (faulty_deployment_detection or monitor). */ @@ -48,7 +46,7 @@ export class CreateDeploymentRuleParamsDataAttributes { }, options: { baseName: "options", - type: "DeploymentRulesOptions", + type: "any", required: true, }, type: { diff --git a/services/deployment_gates/src/v2/models/DeploymentRuleResponseDataAttributes.ts b/services/deployment_gates/src/v2/models/DeploymentRuleResponseDataAttributes.ts index 1f71608bd69f..46ec6f36bd2d 100644 --- a/services/deployment_gates/src/v2/models/DeploymentRuleResponseDataAttributes.ts +++ b/services/deployment_gates/src/v2/models/DeploymentRuleResponseDataAttributes.ts @@ -3,7 +3,6 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client"; import { DeploymentRuleResponseDataAttributesCreatedBy } from "./DeploymentRuleResponseDataAttributesCreatedBy"; import { DeploymentRuleResponseDataAttributesType } from "./DeploymentRuleResponseDataAttributesType"; import { DeploymentRuleResponseDataAttributesUpdatedBy } from "./DeploymentRuleResponseDataAttributesUpdatedBy"; -import { DeploymentRulesOptions } from "./DeploymentRulesOptions"; /** * Basic information about a deployment rule. @@ -30,9 +29,9 @@ export class DeploymentRuleResponseDataAttributes { */ "name": string; /** - * Options for deployment rule response representing either faulty deployment detection or monitor options. + * Options for deployment rule response representing either faulty deployment detection or monitor options. The actual type is determined by the parent's 'type' field. */ - "options": DeploymentRulesOptions; + "options": any; /** * The type of the deployment rule. */ @@ -88,7 +87,7 @@ export class DeploymentRuleResponseDataAttributes { }, options: { baseName: "options", - type: "DeploymentRulesOptions", + type: "any", required: true, }, type: { diff --git a/services/deployment_gates/src/v2/models/DeploymentRulesOptions.ts b/services/deployment_gates/src/v2/models/DeploymentRulesOptions.ts deleted file mode 100644 index 2b0f1af12eb2..000000000000 --- a/services/deployment_gates/src/v2/models/DeploymentRulesOptions.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { UnparsedObject } from "@datadog/datadog-api-client"; - -import { DeploymentRuleOptionsFaultyDeploymentDetection } from "./DeploymentRuleOptionsFaultyDeploymentDetection"; -import { DeploymentRuleOptionsMonitor } from "./DeploymentRuleOptionsMonitor"; - -/** - * Options for deployment rule response representing either faulty deployment detection or monitor options. - */ -export type DeploymentRulesOptions = - | DeploymentRuleOptionsFaultyDeploymentDetection - | DeploymentRuleOptionsMonitor - | UnparsedObject; diff --git a/services/deployment_gates/src/v2/models/TypingInfo.ts b/services/deployment_gates/src/v2/models/TypingInfo.ts index 13961d1329d9..637782c6fdf4 100644 --- a/services/deployment_gates/src/v2/models/TypingInfo.ts +++ b/services/deployment_gates/src/v2/models/TypingInfo.ts @@ -44,12 +44,7 @@ export const TypingInfo: ModelTypingInfo = { ], ListDeploymentRulesDataType: ["list_deployment_rules"], }, - oneOfMap: { - DeploymentRulesOptions: [ - "DeploymentRuleOptionsFaultyDeploymentDetection", - "DeploymentRuleOptionsMonitor", - ], - }, + oneOfMap: {}, typeMap: { APIErrorResponse: APIErrorResponse, CreateDeploymentGateParams: CreateDeploymentGateParams, diff --git a/services/deployment_gates/src/v2/models/UpdateDeploymentRuleParamsDataAttributes.ts b/services/deployment_gates/src/v2/models/UpdateDeploymentRuleParamsDataAttributes.ts index a9db02186bc6..e6058ea0b632 100644 --- a/services/deployment_gates/src/v2/models/UpdateDeploymentRuleParamsDataAttributes.ts +++ b/services/deployment_gates/src/v2/models/UpdateDeploymentRuleParamsDataAttributes.ts @@ -1,7 +1,5 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client"; -import { DeploymentRulesOptions } from "./DeploymentRulesOptions"; - /** * Parameters for updating a deployment rule. */ @@ -15,9 +13,9 @@ export class UpdateDeploymentRuleParamsDataAttributes { */ "name": string; /** - * Options for deployment rule response representing either faulty deployment detection or monitor options. + * Options for deployment rule response representing either faulty deployment detection or monitor options. The actual type is determined by the parent's 'type' field. */ - "options": DeploymentRulesOptions; + "options": any; /** * A container for additional, undeclared properties. * This is a holder for any undeclared properties as specified with @@ -45,7 +43,7 @@ export class UpdateDeploymentRuleParamsDataAttributes { }, options: { baseName: "options", - type: "DeploymentRulesOptions", + type: "any", required: true, }, additionalProperties: { diff --git a/services/usage_metering/src/v1/models/MonthlyUsageAttributionValues.ts b/services/usage_metering/src/v1/models/MonthlyUsageAttributionValues.ts index 34957f0119f4..60910f1ee7ab 100644 --- a/services/usage_metering/src/v1/models/MonthlyUsageAttributionValues.ts +++ b/services/usage_metering/src/v1/models/MonthlyUsageAttributionValues.ts @@ -352,83 +352,83 @@ export class MonthlyUsageAttributionValues { /** * The percentage of Indexed Logs (15-day Retention) usage by tag(s). */ - "logsIndexed15DayPercentage"?: number; + "logsIndexed15dayPercentage"?: number; /** * The total Indexed Logs (15-day Retention) usage by tag(s). */ - "logsIndexed15DayUsage"?: number; + "logsIndexed15dayUsage"?: number; /** * The percentage of Indexed Logs (180-day Retention) usage by tag(s). */ - "logsIndexed180DayPercentage"?: number; + "logsIndexed180dayPercentage"?: number; /** * The total Indexed Logs (180-day Retention) usage by tag(s). */ - "logsIndexed180DayUsage"?: number; + "logsIndexed180dayUsage"?: number; /** * The percentage of Indexed Logs (1-day Retention) usage by tag(s). */ - "logsIndexed1DayPercentage"?: number; + "logsIndexed1dayPercentage"?: number; /** * The total Indexed Logs (1-day Retention) usage by tag(s). */ - "logsIndexed1DayUsage"?: number; + "logsIndexed1dayUsage"?: number; /** * The percentage of Indexed Logs (30-day Retention) usage by tag(s). */ - "logsIndexed30DayPercentage"?: number; + "logsIndexed30dayPercentage"?: number; /** * The total Indexed Logs (30-day Retention) usage by tag(s). */ - "logsIndexed30DayUsage"?: number; + "logsIndexed30dayUsage"?: number; /** * The percentage of Indexed Logs (360-day Retention) usage by tag(s). */ - "logsIndexed360DayPercentage"?: number; + "logsIndexed360dayPercentage"?: number; /** * The total Indexed Logs (360-day Retention) usage by tag(s). */ - "logsIndexed360DayUsage"?: number; + "logsIndexed360dayUsage"?: number; /** * The percentage of Indexed Logs (3-day Retention) usage by tag(s). */ - "logsIndexed3DayPercentage"?: number; + "logsIndexed3dayPercentage"?: number; /** * The total Indexed Logs (3-day Retention) usage by tag(s). */ - "logsIndexed3DayUsage"?: number; + "logsIndexed3dayUsage"?: number; /** * The percentage of Indexed Logs (45-day Retention) usage by tag(s). */ - "logsIndexed45DayPercentage"?: number; + "logsIndexed45dayPercentage"?: number; /** * The total Indexed Logs (45-day Retention) usage by tag(s). */ - "logsIndexed45DayUsage"?: number; + "logsIndexed45dayUsage"?: number; /** * The percentage of Indexed Logs (60-day Retention) usage by tag(s). */ - "logsIndexed60DayPercentage"?: number; + "logsIndexed60dayPercentage"?: number; /** * The total Indexed Logs (60-day Retention) usage by tag(s). */ - "logsIndexed60DayUsage"?: number; + "logsIndexed60dayUsage"?: number; /** * The percentage of Indexed Logs (7-day Retention) usage by tag(s). */ - "logsIndexed7DayPercentage"?: number; + "logsIndexed7dayPercentage"?: number; /** * The total Indexed Logs (7-day Retention) usage by tag(s). */ - "logsIndexed7DayUsage"?: number; + "logsIndexed7dayUsage"?: number; /** * The percentage of Indexed Logs (90-day Retention) usage by tag(s). */ - "logsIndexed90DayPercentage"?: number; + "logsIndexed90dayPercentage"?: number; /** * The total Indexed Logs (90-day Retention) usage by tag(s). */ - "logsIndexed90DayUsage"?: number; + "logsIndexed90dayUsage"?: number; /** * The percentage of Indexed Logs (Custom Retention) usage by tag(s). */ @@ -1090,102 +1090,102 @@ export class MonthlyUsageAttributionValues { type: "number", format: "double", }, - logsIndexed15DayPercentage: { + logsIndexed15dayPercentage: { baseName: "logs_indexed_15day_percentage", type: "number", format: "double", }, - logsIndexed15DayUsage: { + logsIndexed15dayUsage: { baseName: "logs_indexed_15day_usage", type: "number", format: "double", }, - logsIndexed180DayPercentage: { + logsIndexed180dayPercentage: { baseName: "logs_indexed_180day_percentage", type: "number", format: "double", }, - logsIndexed180DayUsage: { + logsIndexed180dayUsage: { baseName: "logs_indexed_180day_usage", type: "number", format: "double", }, - logsIndexed1DayPercentage: { + logsIndexed1dayPercentage: { baseName: "logs_indexed_1day_percentage", type: "number", format: "double", }, - logsIndexed1DayUsage: { + logsIndexed1dayUsage: { baseName: "logs_indexed_1day_usage", type: "number", format: "double", }, - logsIndexed30DayPercentage: { + logsIndexed30dayPercentage: { baseName: "logs_indexed_30day_percentage", type: "number", format: "double", }, - logsIndexed30DayUsage: { + logsIndexed30dayUsage: { baseName: "logs_indexed_30day_usage", type: "number", format: "double", }, - logsIndexed360DayPercentage: { + logsIndexed360dayPercentage: { baseName: "logs_indexed_360day_percentage", type: "number", format: "double", }, - logsIndexed360DayUsage: { + logsIndexed360dayUsage: { baseName: "logs_indexed_360day_usage", type: "number", format: "double", }, - logsIndexed3DayPercentage: { + logsIndexed3dayPercentage: { baseName: "logs_indexed_3day_percentage", type: "number", format: "double", }, - logsIndexed3DayUsage: { + logsIndexed3dayUsage: { baseName: "logs_indexed_3day_usage", type: "number", format: "double", }, - logsIndexed45DayPercentage: { + logsIndexed45dayPercentage: { baseName: "logs_indexed_45day_percentage", type: "number", format: "double", }, - logsIndexed45DayUsage: { + logsIndexed45dayUsage: { baseName: "logs_indexed_45day_usage", type: "number", format: "double", }, - logsIndexed60DayPercentage: { + logsIndexed60dayPercentage: { baseName: "logs_indexed_60day_percentage", type: "number", format: "double", }, - logsIndexed60DayUsage: { + logsIndexed60dayUsage: { baseName: "logs_indexed_60day_usage", type: "number", format: "double", }, - logsIndexed7DayPercentage: { + logsIndexed7dayPercentage: { baseName: "logs_indexed_7day_percentage", type: "number", format: "double", }, - logsIndexed7DayUsage: { + logsIndexed7dayUsage: { baseName: "logs_indexed_7day_usage", type: "number", format: "double", }, - logsIndexed90DayPercentage: { + logsIndexed90dayPercentage: { baseName: "logs_indexed_90day_percentage", type: "number", format: "double", }, - logsIndexed90DayUsage: { + logsIndexed90dayUsage: { baseName: "logs_indexed_90day_usage", type: "number", format: "double", diff --git a/services/usage_metering/src/v1/models/UsageBillableSummaryKeys.ts b/services/usage_metering/src/v1/models/UsageBillableSummaryKeys.ts index ad7a49455e83..473ad4ba61a6 100644 --- a/services/usage_metering/src/v1/models/UsageBillableSummaryKeys.ts +++ b/services/usage_metering/src/v1/models/UsageBillableSummaryKeys.ts @@ -21,7 +21,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "apmHostTop99P"?: UsageBillableSummaryBody; + "apmHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -29,7 +29,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "apmProfilerHostTop99P"?: UsageBillableSummaryBody; + "apmProfilerHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -45,7 +45,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "applicationSecurityHostTop99P"?: UsageBillableSummaryBody; + "applicationSecurityHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -89,7 +89,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "cspmHostTop99P"?: UsageBillableSummaryBody; + "cspmHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -105,7 +105,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "cwsHostTop99P"?: UsageBillableSummaryBody; + "cwsHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -113,7 +113,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "dbmHostTop99P"?: UsageBillableSummaryBody; + "dbmHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -161,7 +161,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "infraAndApmHostTop99P"?: UsageBillableSummaryBody; + "infraAndApmHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -173,7 +173,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "infraHostTop99P"?: UsageBillableSummaryBody; + "infraHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -193,7 +193,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "iotTop99P"?: UsageBillableSummaryBody; + "iotTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -209,43 +209,43 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "logsIndexed15DaySum"?: UsageBillableSummaryBody; + "logsIndexed15daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed180DaySum"?: UsageBillableSummaryBody; + "logsIndexed180daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed1DaySum"?: UsageBillableSummaryBody; + "logsIndexed1daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed30DaySum"?: UsageBillableSummaryBody; + "logsIndexed30daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed360DaySum"?: UsageBillableSummaryBody; + "logsIndexed360daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed3DaySum"?: UsageBillableSummaryBody; + "logsIndexed3daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed45DaySum"?: UsageBillableSummaryBody; + "logsIndexed45daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed60DaySum"?: UsageBillableSummaryBody; + "logsIndexed60daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed7DaySum"?: UsageBillableSummaryBody; + "logsIndexed7daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ - "logsIndexed90DaySum"?: UsageBillableSummaryBody; + "logsIndexed90daySum"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -265,7 +265,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "networkDeviceTop99P"?: UsageBillableSummaryBody; + "networkDeviceTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -277,7 +277,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "npmHostTop99P"?: UsageBillableSummaryBody; + "npmHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -297,7 +297,7 @@ export class UsageBillableSummaryKeys { /** * Response with properties for each aggregated usage type. */ - "profHostTop99P"?: UsageBillableSummaryBody; + "profHostTop99p"?: UsageBillableSummaryBody; /** * Response with properties for each aggregated usage type. */ @@ -389,7 +389,7 @@ export class UsageBillableSummaryKeys { baseName: "apm_host_sum", type: "UsageBillableSummaryBody", }, - apmHostTop99P: { + apmHostTop99p: { baseName: "apm_host_top99p", type: "UsageBillableSummaryBody", }, @@ -397,7 +397,7 @@ export class UsageBillableSummaryKeys { baseName: "apm_profiler_host_sum", type: "UsageBillableSummaryBody", }, - apmProfilerHostTop99P: { + apmProfilerHostTop99p: { baseName: "apm_profiler_host_top99p", type: "UsageBillableSummaryBody", }, @@ -413,7 +413,7 @@ export class UsageBillableSummaryKeys { baseName: "application_security_host_sum", type: "UsageBillableSummaryBody", }, - applicationSecurityHostTop99P: { + applicationSecurityHostTop99p: { baseName: "application_security_host_top99p", type: "UsageBillableSummaryBody", }, @@ -457,7 +457,7 @@ export class UsageBillableSummaryKeys { baseName: "cspm_host_sum", type: "UsageBillableSummaryBody", }, - cspmHostTop99P: { + cspmHostTop99p: { baseName: "cspm_host_top99p", type: "UsageBillableSummaryBody", }, @@ -473,7 +473,7 @@ export class UsageBillableSummaryKeys { baseName: "cws_host_sum", type: "UsageBillableSummaryBody", }, - cwsHostTop99P: { + cwsHostTop99p: { baseName: "cws_host_top99p", type: "UsageBillableSummaryBody", }, @@ -481,7 +481,7 @@ export class UsageBillableSummaryKeys { baseName: "dbm_host_sum", type: "UsageBillableSummaryBody", }, - dbmHostTop99P: { + dbmHostTop99p: { baseName: "dbm_host_top99p", type: "UsageBillableSummaryBody", }, @@ -529,7 +529,7 @@ export class UsageBillableSummaryKeys { baseName: "infra_and_apm_host_sum", type: "UsageBillableSummaryBody", }, - infraAndApmHostTop99P: { + infraAndApmHostTop99p: { baseName: "infra_and_apm_host_top99p", type: "UsageBillableSummaryBody", }, @@ -541,7 +541,7 @@ export class UsageBillableSummaryKeys { baseName: "infra_host_sum", type: "UsageBillableSummaryBody", }, - infraHostTop99P: { + infraHostTop99p: { baseName: "infra_host_top99p", type: "UsageBillableSummaryBody", }, @@ -561,7 +561,7 @@ export class UsageBillableSummaryKeys { baseName: "iot_sum", type: "UsageBillableSummaryBody", }, - iotTop99P: { + iotTop99p: { baseName: "iot_top99p", type: "UsageBillableSummaryBody", }, @@ -577,43 +577,43 @@ export class UsageBillableSummaryKeys { baseName: "logs_forwarding_sum", type: "UsageBillableSummaryBody", }, - logsIndexed15DaySum: { + logsIndexed15daySum: { baseName: "logs_indexed_15day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed180DaySum: { + logsIndexed180daySum: { baseName: "logs_indexed_180day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed1DaySum: { + logsIndexed1daySum: { baseName: "logs_indexed_1day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed30DaySum: { + logsIndexed30daySum: { baseName: "logs_indexed_30day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed360DaySum: { + logsIndexed360daySum: { baseName: "logs_indexed_360day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed3DaySum: { + logsIndexed3daySum: { baseName: "logs_indexed_3day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed45DaySum: { + logsIndexed45daySum: { baseName: "logs_indexed_45day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed60DaySum: { + logsIndexed60daySum: { baseName: "logs_indexed_60day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed7DaySum: { + logsIndexed7daySum: { baseName: "logs_indexed_7day_sum", type: "UsageBillableSummaryBody", }, - logsIndexed90DaySum: { + logsIndexed90daySum: { baseName: "logs_indexed_90day_sum", type: "UsageBillableSummaryBody", }, @@ -633,7 +633,7 @@ export class UsageBillableSummaryKeys { baseName: "network_device_sum", type: "UsageBillableSummaryBody", }, - networkDeviceTop99P: { + networkDeviceTop99p: { baseName: "network_device_top99p", type: "UsageBillableSummaryBody", }, @@ -645,7 +645,7 @@ export class UsageBillableSummaryKeys { baseName: "npm_host_sum", type: "UsageBillableSummaryBody", }, - npmHostTop99P: { + npmHostTop99p: { baseName: "npm_host_top99p", type: "UsageBillableSummaryBody", }, @@ -665,7 +665,7 @@ export class UsageBillableSummaryKeys { baseName: "prof_host_sum", type: "UsageBillableSummaryBody", }, - profHostTop99P: { + profHostTop99p: { baseName: "prof_host_top99p", type: "UsageBillableSummaryBody", }, diff --git a/services/usage_metering/src/v1/models/UsageSummaryDate.ts b/services/usage_metering/src/v1/models/UsageSummaryDate.ts index 8c61a07f26bf..09b4115aedd9 100644 --- a/services/usage_metering/src/v1/models/UsageSummaryDate.ts +++ b/services/usage_metering/src/v1/models/UsageSummaryDate.ts @@ -9,19 +9,19 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all agent hosts over all hours in the current date for all organizations. */ - "agentHostTop99P"?: number; + "agentHostTop99p"?: number; /** * Shows the 99th percentile of all Azure app services using APM over all hours in the current date all organizations. */ - "apmAzureAppServiceHostTop99P"?: number; + "apmAzureAppServiceHostTop99p"?: number; /** * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org. */ - "apmDevsecopsHostTop99P"?: number; + "apmDevsecopsHostTop99p"?: number; /** * Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations. */ - "apmEnterpriseStandaloneHostsTop99P"?: number; + "apmEnterpriseStandaloneHostsTop99p"?: number; /** * Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations. */ @@ -29,11 +29,11 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations. */ - "apmHostTop99P"?: number; + "apmHostTop99p"?: number; /** * Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations. */ - "apmProStandaloneHostsTop99P"?: number; + "apmProStandaloneHostsTop99p"?: number; /** * Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations. */ @@ -57,7 +57,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all AWS hosts over all hours in the current date for all organizations. */ - "awsHostTop99P"?: number; + "awsHostTop99p"?: number; /** * Shows the average of the number of functions that executed 1 or more times each hour in the current date for all organizations. */ @@ -69,7 +69,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Azure app services over all hours in the current date for all organizations. */ - "azureAppServiceTop99P"?: number; + "azureAppServiceTop99p"?: number; /** * Shows the sum of all log bytes ingested over all hours in the current date for all organizations. */ @@ -153,7 +153,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Code Security hosts over all hours in the current date for the given org. */ - "codeSecurityHostTop99P"?: number; + "codeSecurityHostTop99p"?: number; /** * Shows the average of all distinct containers over all hours in the current date for all organizations. */ @@ -181,43 +181,43 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseAasHostCountTop99P"?: number; + "csmHostEnterpriseAasHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseAwsHostCountTop99P"?: number; + "csmHostEnterpriseAwsHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseAzureHostCountTop99P"?: number; + "csmHostEnterpriseAzureHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseComplianceHostCountTop99P"?: number; + "csmHostEnterpriseComplianceHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseCwsHostCountTop99P"?: number; + "csmHostEnterpriseCwsHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseGcpHostCountTop99P"?: number; + "csmHostEnterpriseGcpHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseTotalHostCountTop99P"?: number; + "csmHostEnterpriseTotalHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for all organizations. */ - "cspmAasHostTop99P"?: number; + "cspmAasHostTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for all organizations. */ - "cspmAwsHostTop99P"?: number; + "cspmAwsHostTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for all organizations. */ - "cspmAzureHostTop99P"?: number; + "cspmAzureHostTop99p"?: number; /** * Shows the average number of Cloud Security Management Pro containers over all hours in the current date for all organizations. */ @@ -229,11 +229,11 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for all organizations. */ - "cspmGcpHostTop99P"?: number; + "cspmGcpHostTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for all organizations. */ - "cspmHostTop99P"?: number; + "cspmHostTop99p"?: number; /** * Shows the average number of distinct custom metrics over all hours in the current date for all organizations. */ @@ -249,7 +249,7 @@ 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; + "cwsHostTop99p"?: number; /** * Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org. */ @@ -261,7 +261,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Database Monitoring hosts over all hours in the current date for all organizations. */ - "dbmHostTop99P"?: number; + "dbmHostTop99p"?: number; /** * Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations. */ @@ -409,11 +409,11 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all GCP hosts over all hours in the current date for all organizations. */ - "gcpHostTop99P"?: number; + "gcpHostTop99p"?: number; /** * Shows the 99th percentile of all Heroku dynos over all hours in the current date for all organizations. */ - "herokuHostTop99P"?: number; + "herokuHostTop99p"?: number; /** * Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations. */ @@ -429,7 +429,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations. */ - "infraHostTop99P"?: number; + "infraHostTop99p"?: number; /** * Shows the sum of all log bytes ingested over all hours in the current date for all organizations. */ @@ -441,7 +441,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all IoT devices over all hours in the current date all organizations. */ - "iotDeviceTop99P"?: number; + "iotDeviceTop99p"?: number; /** * Sum of all LLM observability minimum spend over all hours in the current date for all organizations. */ @@ -493,11 +493,11 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current date for all organizations. */ - "networkDeviceWirelessTop99P"?: number; + "networkDeviceWirelessTop99p"?: number; /** * Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for all organizations. */ - "npmHostTop99P"?: number; + "npmHostTop99p"?: number; /** * Sum of all observability pipelines bytes processed over all hours in the current date for the given org. */ @@ -509,7 +509,7 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. */ - "ociHostTop99P"?: number; + "ociHostTop99p"?: number; /** * Shows the high-water mark of On-Call seats over all hours in the current date for all organizations. */ @@ -521,11 +521,11 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations. */ - "opentelemetryApmHostTop99P"?: number; + "opentelemetryApmHostTop99p"?: number; /** * Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations. */ - "opentelemetryHostTop99P"?: number; + "opentelemetryHostTop99p"?: number; /** * Organizations associated with a user. */ @@ -537,11 +537,11 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations. */ - "profilingAasCountTop99P"?: number; + "profilingAasCountTop99p"?: number; /** * Shows the 99th percentile of all profiled hosts over all hours within the current date for all organizations. */ - "profilingHostTop99P"?: number; + "profilingHostTop99p"?: number; /** * Sum of all Proxmox hosts over all hours in the current date for all organizations. */ @@ -549,7 +549,7 @@ export class UsageSummaryDate { /** * 99th percentile of all Proxmox hosts over all hours in the current date for all organizations. */ - "proxmoxHostTop99P"?: number; + "proxmoxHostTop99p"?: number; /** * Shows the high-water mark of all published applications over all hours in the current date for all organizations. */ @@ -841,15 +841,15 @@ export class UsageSummaryDate { /** * Shows the 99th percentile of all universal service management hosts over all hours in the current date for the given org. */ - "universalServiceMonitoringHostTop99P"?: number; + "universalServiceMonitoringHostTop99p"?: number; /** * Shows the 99th percentile of all vSphere hosts over all hours in the current date for all organizations. */ - "vsphereHostTop99P"?: number; + "vsphereHostTop99p"?: number; /** * Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org. */ - "vulnManagementHostCountTop99P"?: number; + "vulnManagementHostCountTop99p"?: number; /** * Sum of all workflows executed over all hours in the current date for all organizations. */ @@ -869,22 +869,22 @@ export class UsageSummaryDate { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { - agentHostTop99P: { + agentHostTop99p: { baseName: "agent_host_top99p", type: "number", format: "int64", }, - apmAzureAppServiceHostTop99P: { + apmAzureAppServiceHostTop99p: { baseName: "apm_azure_app_service_host_top99p", type: "number", format: "int64", }, - apmDevsecopsHostTop99P: { + apmDevsecopsHostTop99p: { baseName: "apm_devsecops_host_top99p", type: "number", format: "int64", }, - apmEnterpriseStandaloneHostsTop99P: { + apmEnterpriseStandaloneHostsTop99p: { baseName: "apm_enterprise_standalone_hosts_top99p", type: "number", format: "int64", @@ -894,12 +894,12 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - apmHostTop99P: { + apmHostTop99p: { baseName: "apm_host_top99p", type: "number", format: "int64", }, - apmProStandaloneHostsTop99P: { + apmProStandaloneHostsTop99p: { baseName: "apm_pro_standalone_hosts_top99p", type: "number", format: "int64", @@ -929,7 +929,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - awsHostTop99P: { + awsHostTop99p: { baseName: "aws_host_top99p", type: "number", format: "int64", @@ -944,7 +944,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - azureAppServiceTop99P: { + azureAppServiceTop99p: { baseName: "azure_app_service_top99p", type: "number", format: "int64", @@ -1049,7 +1049,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - codeSecurityHostTop99P: { + codeSecurityHostTop99p: { baseName: "code_security_host_top99p", type: "number", format: "int64", @@ -1084,52 +1084,52 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - csmHostEnterpriseAasHostCountTop99P: { + csmHostEnterpriseAasHostCountTop99p: { baseName: "csm_host_enterprise_aas_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseAwsHostCountTop99P: { + csmHostEnterpriseAwsHostCountTop99p: { baseName: "csm_host_enterprise_aws_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseAzureHostCountTop99P: { + csmHostEnterpriseAzureHostCountTop99p: { baseName: "csm_host_enterprise_azure_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseComplianceHostCountTop99P: { + csmHostEnterpriseComplianceHostCountTop99p: { baseName: "csm_host_enterprise_compliance_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseCwsHostCountTop99P: { + csmHostEnterpriseCwsHostCountTop99p: { baseName: "csm_host_enterprise_cws_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseGcpHostCountTop99P: { + csmHostEnterpriseGcpHostCountTop99p: { baseName: "csm_host_enterprise_gcp_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseTotalHostCountTop99P: { + csmHostEnterpriseTotalHostCountTop99p: { baseName: "csm_host_enterprise_total_host_count_top99p", type: "number", format: "int64", }, - cspmAasHostTop99P: { + cspmAasHostTop99p: { baseName: "cspm_aas_host_top99p", type: "number", format: "int64", }, - cspmAwsHostTop99P: { + cspmAwsHostTop99p: { baseName: "cspm_aws_host_top99p", type: "number", format: "int64", }, - cspmAzureHostTop99P: { + cspmAzureHostTop99p: { baseName: "cspm_azure_host_top99p", type: "number", format: "int64", @@ -1144,12 +1144,12 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - cspmGcpHostTop99P: { + cspmGcpHostTop99p: { baseName: "cspm_gcp_host_top99p", type: "number", format: "int64", }, - cspmHostTop99P: { + cspmHostTop99p: { baseName: "cspm_host_top99p", type: "number", format: "int64", @@ -1169,7 +1169,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - cwsHostTop99P: { + cwsHostTop99p: { baseName: "cws_host_top99p", type: "number", format: "int64", @@ -1184,7 +1184,7 @@ export class UsageSummaryDate { type: "Date", format: "date-time", }, - dbmHostTop99P: { + dbmHostTop99p: { baseName: "dbm_host_top99p", type: "number", format: "int64", @@ -1369,12 +1369,12 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - gcpHostTop99P: { + gcpHostTop99p: { baseName: "gcp_host_top99p", type: "number", format: "int64", }, - herokuHostTop99P: { + herokuHostTop99p: { baseName: "heroku_host_top99p", type: "number", format: "int64", @@ -1394,7 +1394,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - infraHostTop99P: { + infraHostTop99p: { baseName: "infra_host_top99p", type: "number", format: "int64", @@ -1409,7 +1409,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - iotDeviceTop99P: { + iotDeviceTop99p: { baseName: "iot_device_top99p", type: "number", format: "int64", @@ -1474,12 +1474,12 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - networkDeviceWirelessTop99P: { + networkDeviceWirelessTop99p: { baseName: "network_device_wireless_top99p", type: "number", format: "int64", }, - npmHostTop99P: { + npmHostTop99p: { baseName: "npm_host_top99p", type: "number", format: "int64", @@ -1494,7 +1494,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - ociHostTop99P: { + ociHostTop99p: { baseName: "oci_host_top99p", type: "number", format: "int64", @@ -1509,12 +1509,12 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - opentelemetryApmHostTop99P: { + opentelemetryApmHostTop99p: { baseName: "opentelemetry_apm_host_top99p", type: "number", format: "int64", }, - opentelemetryHostTop99P: { + opentelemetryHostTop99p: { baseName: "opentelemetry_host_top99p", type: "number", format: "int64", @@ -1528,12 +1528,12 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - profilingAasCountTop99P: { + profilingAasCountTop99p: { baseName: "profiling_aas_count_top99p", type: "number", format: "int64", }, - profilingHostTop99P: { + profilingHostTop99p: { baseName: "profiling_host_top99p", type: "number", format: "int64", @@ -1543,7 +1543,7 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - proxmoxHostTop99P: { + proxmoxHostTop99p: { baseName: "proxmox_host_top99p", type: "number", format: "int64", @@ -1915,17 +1915,17 @@ export class UsageSummaryDate { type: "number", format: "int64", }, - universalServiceMonitoringHostTop99P: { + universalServiceMonitoringHostTop99p: { baseName: "universal_service_monitoring_host_top99p", type: "number", format: "int64", }, - vsphereHostTop99P: { + vsphereHostTop99p: { baseName: "vsphere_host_top99p", type: "number", format: "int64", }, - vulnManagementHostCountTop99P: { + vulnManagementHostCountTop99p: { baseName: "vuln_management_host_count_top99p", type: "number", format: "int64", diff --git a/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts b/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts index 06b002ba00f0..255d92080d43 100644 --- a/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts +++ b/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts @@ -15,19 +15,19 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all agent hosts over all hours in the current date for the given org. */ - "agentHostTop99P"?: number; + "agentHostTop99p"?: number; /** * Shows the 99th percentile of all Azure app services using APM over all hours in the current date for the given org. */ - "apmAzureAppServiceHostTop99P"?: number; + "apmAzureAppServiceHostTop99p"?: number; /** * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org. */ - "apmDevsecopsHostTop99P"?: number; + "apmDevsecopsHostTop99p"?: number; /** * Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for the given org. */ - "apmEnterpriseStandaloneHostsTop99P"?: number; + "apmEnterpriseStandaloneHostsTop99p"?: number; /** * Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org. */ @@ -35,11 +35,11 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org. */ - "apmHostTop99P"?: number; + "apmHostTop99p"?: number; /** * Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for the given org. */ - "apmProStandaloneHostsTop99P"?: number; + "apmProStandaloneHostsTop99p"?: number; /** * Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org. */ @@ -63,7 +63,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all AWS hosts over all hours in the current date for the given org. */ - "awsHostTop99P"?: number; + "awsHostTop99p"?: number; /** * Shows the sum of all AWS Lambda invocations over all hours in the current date for the given org. */ @@ -75,7 +75,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Azure app services over all hours in the current date for the given org. */ - "azureAppServiceTop99P"?: number; + "azureAppServiceTop99p"?: number; /** * Shows the sum of all log bytes ingested over all hours in the current date for the given org. */ @@ -159,7 +159,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Code Security hosts over all hours in the current date for the given org. */ - "codeSecurityHostTop99P"?: number; + "codeSecurityHostTop99p"?: number; /** * Shows the average of all distinct containers over all hours in the current date for the given org. */ @@ -187,43 +187,43 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseAasHostCountTop99P"?: number; + "csmHostEnterpriseAasHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseAwsHostCountTop99P"?: number; + "csmHostEnterpriseAwsHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseAzureHostCountTop99P"?: number; + "csmHostEnterpriseAzureHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseComplianceHostCountTop99P"?: number; + "csmHostEnterpriseComplianceHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseCwsHostCountTop99P"?: number; + "csmHostEnterpriseCwsHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseGcpHostCountTop99P"?: number; + "csmHostEnterpriseGcpHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org. */ - "csmHostEnterpriseTotalHostCountTop99P"?: number; + "csmHostEnterpriseTotalHostCountTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for the given org. */ - "cspmAasHostTop99P"?: number; + "cspmAasHostTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for the given org. */ - "cspmAwsHostTop99P"?: number; + "cspmAwsHostTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for the given org. */ - "cspmAzureHostTop99P"?: number; + "cspmAzureHostTop99p"?: number; /** * Shows the average number of Cloud Security Management Pro containers over all hours in the current date for the given org. */ @@ -235,11 +235,11 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for the given org. */ - "cspmGcpHostTop99P"?: number; + "cspmGcpHostTop99p"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for the given org. */ - "cspmHostTop99P"?: number; + "cspmHostTop99p"?: number; /** * Shows the average number of distinct historical custom metrics over all hours in the current date for the given org. */ @@ -263,7 +263,7 @@ 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; + "cwsHostTop99p"?: number; /** * Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org. */ @@ -271,7 +271,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org. */ - "dbmHostTop99PSum"?: number; + "dbmHostTop99pSum"?: number; /** * Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org. */ @@ -419,11 +419,11 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all GCP hosts over all hours in the current date for the given org. */ - "gcpHostTop99P"?: number; + "gcpHostTop99p"?: number; /** * Shows the 99th percentile of all Heroku dynos over all hours in the current date for the given org. */ - "herokuHostTop99P"?: number; + "herokuHostTop99p"?: number; /** * The organization id. */ @@ -443,7 +443,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org. */ - "infraHostTop99P"?: number; + "infraHostTop99p"?: number; /** * Shows the sum of all log bytes ingested over all hours in the current date for the given org. */ @@ -455,7 +455,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all IoT devices over all hours in the current date for the given org. */ - "iotDeviceTop99PSum"?: number; + "iotDeviceTop99pSum"?: number; /** * Shows the sum of all LLM Observability minimum spend over all hours in the current date for the given org. */ @@ -511,11 +511,11 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current date for the given org. */ - "networkDeviceWirelessTop99P"?: number; + "networkDeviceWirelessTop99p"?: number; /** * Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for the given org. */ - "npmHostTop99P"?: number; + "npmHostTop99p"?: number; /** * Sum of all observability pipelines bytes processed over all hours in the current date for the given org. */ @@ -527,7 +527,7 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. */ - "ociHostTop99P"?: number; + "ociHostTop99p"?: number; /** * Shows the high-water mark of On-Call seats over all hours in the current date for the given org. */ @@ -539,11 +539,11 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org. */ - "opentelemetryApmHostTop99P"?: number; + "opentelemetryApmHostTop99p"?: number; /** * Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org. */ - "opentelemetryHostTop99P"?: number; + "opentelemetryHostTop99p"?: number; /** * Shows the sum of all product analytics sessions over all hours in the current date for the given org. */ @@ -551,11 +551,11 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations. */ - "profilingAasCountTop99P"?: number; + "profilingAasCountTop99p"?: number; /** * Shows the 99th percentile of all profiled hosts over all hours within the current date for the given org. */ - "profilingHostTop99P"?: number; + "profilingHostTop99p"?: number; /** * Sum of all Proxmox hosts over all hours in the current date for the given organization. */ @@ -563,7 +563,7 @@ export class UsageSummaryDateOrg { /** * 99th percentile of all Proxmox hosts over all hours in the current date for the given organization. */ - "proxmoxHostTop99P"?: number; + "proxmoxHostTop99p"?: number; /** * The organization public id. */ @@ -863,15 +863,15 @@ export class UsageSummaryDateOrg { /** * Shows the 99th percentile of all Universal Service Monitoring hosts over all hours in the current date for the given org. */ - "universalServiceMonitoringHostTop99P"?: number; + "universalServiceMonitoringHostTop99p"?: number; /** * Shows the 99th percentile of all vSphere hosts over all hours in the current date for the given org. */ - "vsphereHostTop99P"?: number; + "vsphereHostTop99p"?: number; /** * Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org. */ - "vulnManagementHostCountTop99P"?: number; + "vulnManagementHostCountTop99p"?: number; /** * Sum of all workflows executed over all hours in the current date for the given org. */ @@ -899,22 +899,22 @@ export class UsageSummaryDateOrg { baseName: "account_public_id", type: "string", }, - agentHostTop99P: { + agentHostTop99p: { baseName: "agent_host_top99p", type: "number", format: "int64", }, - apmAzureAppServiceHostTop99P: { + apmAzureAppServiceHostTop99p: { baseName: "apm_azure_app_service_host_top99p", type: "number", format: "int64", }, - apmDevsecopsHostTop99P: { + apmDevsecopsHostTop99p: { baseName: "apm_devsecops_host_top99p", type: "number", format: "int64", }, - apmEnterpriseStandaloneHostsTop99P: { + apmEnterpriseStandaloneHostsTop99p: { baseName: "apm_enterprise_standalone_hosts_top99p", type: "number", format: "int64", @@ -924,12 +924,12 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - apmHostTop99P: { + apmHostTop99p: { baseName: "apm_host_top99p", type: "number", format: "int64", }, - apmProStandaloneHostsTop99P: { + apmProStandaloneHostsTop99p: { baseName: "apm_pro_standalone_hosts_top99p", type: "number", format: "int64", @@ -959,7 +959,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - awsHostTop99P: { + awsHostTop99p: { baseName: "aws_host_top99p", type: "number", format: "int64", @@ -974,7 +974,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - azureAppServiceTop99P: { + azureAppServiceTop99p: { baseName: "azure_app_service_top99p", type: "number", format: "int64", @@ -1079,7 +1079,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - codeSecurityHostTop99P: { + codeSecurityHostTop99p: { baseName: "code_security_host_top99p", type: "number", format: "int64", @@ -1114,52 +1114,52 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - csmHostEnterpriseAasHostCountTop99P: { + csmHostEnterpriseAasHostCountTop99p: { baseName: "csm_host_enterprise_aas_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseAwsHostCountTop99P: { + csmHostEnterpriseAwsHostCountTop99p: { baseName: "csm_host_enterprise_aws_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseAzureHostCountTop99P: { + csmHostEnterpriseAzureHostCountTop99p: { baseName: "csm_host_enterprise_azure_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseComplianceHostCountTop99P: { + csmHostEnterpriseComplianceHostCountTop99p: { baseName: "csm_host_enterprise_compliance_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseCwsHostCountTop99P: { + csmHostEnterpriseCwsHostCountTop99p: { baseName: "csm_host_enterprise_cws_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseGcpHostCountTop99P: { + csmHostEnterpriseGcpHostCountTop99p: { baseName: "csm_host_enterprise_gcp_host_count_top99p", type: "number", format: "int64", }, - csmHostEnterpriseTotalHostCountTop99P: { + csmHostEnterpriseTotalHostCountTop99p: { baseName: "csm_host_enterprise_total_host_count_top99p", type: "number", format: "int64", }, - cspmAasHostTop99P: { + cspmAasHostTop99p: { baseName: "cspm_aas_host_top99p", type: "number", format: "int64", }, - cspmAwsHostTop99P: { + cspmAwsHostTop99p: { baseName: "cspm_aws_host_top99p", type: "number", format: "int64", }, - cspmAzureHostTop99P: { + cspmAzureHostTop99p: { baseName: "cspm_azure_host_top99p", type: "number", format: "int64", @@ -1174,12 +1174,12 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - cspmGcpHostTop99P: { + cspmGcpHostTop99p: { baseName: "cspm_gcp_host_top99p", type: "number", format: "int64", }, - cspmHostTop99P: { + cspmHostTop99p: { baseName: "cspm_host_top99p", type: "number", format: "int64", @@ -1209,7 +1209,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - cwsHostTop99P: { + cwsHostTop99p: { baseName: "cws_host_top99p", type: "number", format: "int64", @@ -1219,7 +1219,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - dbmHostTop99PSum: { + dbmHostTop99pSum: { baseName: "dbm_host_top99p_sum", type: "number", format: "int64", @@ -1404,12 +1404,12 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - gcpHostTop99P: { + gcpHostTop99p: { baseName: "gcp_host_top99p", type: "number", format: "int64", }, - herokuHostTop99P: { + herokuHostTop99p: { baseName: "heroku_host_top99p", type: "number", format: "int64", @@ -1433,7 +1433,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - infraHostTop99P: { + infraHostTop99p: { baseName: "infra_host_top99p", type: "number", format: "int64", @@ -1448,7 +1448,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - iotDeviceTop99PSum: { + iotDeviceTop99pSum: { baseName: "iot_device_top99p_sum", type: "number", format: "int64", @@ -1517,12 +1517,12 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - networkDeviceWirelessTop99P: { + networkDeviceWirelessTop99p: { baseName: "network_device_wireless_top99p", type: "number", format: "int64", }, - npmHostTop99P: { + npmHostTop99p: { baseName: "npm_host_top99p", type: "number", format: "int64", @@ -1537,7 +1537,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - ociHostTop99P: { + ociHostTop99p: { baseName: "oci_host_top99p", type: "number", format: "int64", @@ -1552,12 +1552,12 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - opentelemetryApmHostTop99P: { + opentelemetryApmHostTop99p: { baseName: "opentelemetry_apm_host_top99p", type: "number", format: "int64", }, - opentelemetryHostTop99P: { + opentelemetryHostTop99p: { baseName: "opentelemetry_host_top99p", type: "number", format: "int64", @@ -1567,12 +1567,12 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - profilingAasCountTop99P: { + profilingAasCountTop99p: { baseName: "profiling_aas_count_top99p", type: "number", format: "int64", }, - profilingHostTop99P: { + profilingHostTop99p: { baseName: "profiling_host_top99p", type: "number", format: "int64", @@ -1582,7 +1582,7 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - proxmoxHostTop99P: { + proxmoxHostTop99p: { baseName: "proxmox_host_top99p", type: "number", format: "int64", @@ -1962,17 +1962,17 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, - universalServiceMonitoringHostTop99P: { + universalServiceMonitoringHostTop99p: { baseName: "universal_service_monitoring_host_top99p", type: "number", format: "int64", }, - vsphereHostTop99P: { + vsphereHostTop99p: { baseName: "vsphere_host_top99p", type: "number", format: "int64", }, - vulnManagementHostCountTop99P: { + vulnManagementHostCountTop99p: { baseName: "vuln_management_host_count_top99p", type: "number", format: "int64", diff --git a/services/usage_metering/src/v1/models/UsageSummaryResponse.ts b/services/usage_metering/src/v1/models/UsageSummaryResponse.ts index 69ac9267b05d..d08a23974d07 100644 --- a/services/usage_metering/src/v1/models/UsageSummaryResponse.ts +++ b/services/usage_metering/src/v1/models/UsageSummaryResponse.ts @@ -10,19 +10,19 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all agent hosts over all hours in the current month for all organizations. */ - "agentHostTop99PSum"?: number; + "agentHostTop99pSum"?: number; /** * Shows the 99th percentile of all Azure app services using APM over all hours in the current month all organizations. */ - "apmAzureAppServiceHostTop99PSum"?: number; + "apmAzureAppServiceHostTop99pSum"?: number; /** * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations. */ - "apmDevsecopsHostTop99PSum"?: number; + "apmDevsecopsHostTop99pSum"?: number; /** * Shows the sum of the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current month for all organizations. */ - "apmEnterpriseStandaloneHostsTop99PSum"?: number; + "apmEnterpriseStandaloneHostsTop99pSum"?: number; /** * Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations. */ @@ -30,11 +30,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations. */ - "apmHostTop99PSum"?: number; + "apmHostTop99pSum"?: number; /** * Shows the sum of the 99th percentile of all distinct standalone Pro hosts over all hours in the current month for all organizations. */ - "apmProStandaloneHostsTop99PSum"?: number; + "apmProStandaloneHostsTop99pSum"?: number; /** * Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations. */ @@ -58,7 +58,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all AWS hosts over all hours in the current month for all organizations. */ - "awsHostTop99PSum"?: number; + "awsHostTop99pSum"?: number; /** * Shows the average of the number of functions that executed 1 or more times each hour in the current month for all organizations. */ @@ -70,11 +70,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Azure app services over all hours in the current month for all organizations. */ - "azureAppServiceTop99PSum"?: number; + "azureAppServiceTop99pSum"?: number; /** * Shows the 99th percentile of all Azure hosts over all hours in the current month for all organizations. */ - "azureHostTop99PSum"?: number; + "azureHostTop99pSum"?: number; /** * Shows the sum of all log bytes ingested over all hours in the current month for all organizations. */ @@ -158,7 +158,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Code Security hosts over all hours in the current month for all organizations. */ - "codeSecurityHostTop99PSum"?: number; + "codeSecurityHostTop99pSum"?: number; /** * Shows the average of all distinct containers over all hours in the current month for all organizations. */ @@ -186,43 +186,43 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseAasHostCountTop99PSum"?: number; + "csmHostEnterpriseAasHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseAwsHostCountTop99PSum"?: number; + "csmHostEnterpriseAwsHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseAzureHostCountTop99PSum"?: number; + "csmHostEnterpriseAzureHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseComplianceHostCountTop99PSum"?: number; + "csmHostEnterpriseComplianceHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseCwsHostCountTop99PSum"?: number; + "csmHostEnterpriseCwsHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseGcpHostCountTop99PSum"?: number; + "csmHostEnterpriseGcpHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current month for all organizations. */ - "csmHostEnterpriseTotalHostCountTop99PSum"?: number; + "csmHostEnterpriseTotalHostCountTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current month for all organizations. */ - "cspmAasHostTop99PSum"?: number; + "cspmAasHostTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current month for all organizations. */ - "cspmAwsHostTop99PSum"?: number; + "cspmAwsHostTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current month for all organizations. */ - "cspmAzureHostTop99PSum"?: number; + "cspmAzureHostTop99pSum"?: number; /** * Shows the average number of Cloud Security Management Pro containers over all hours in the current month for all organizations. */ @@ -234,11 +234,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current month for all organizations. */ - "cspmGcpHostTop99PSum"?: number; + "cspmGcpHostTop99pSum"?: number; /** * Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current month for all organizations. */ - "cspmHostTop99PSum"?: number; + "cspmHostTop99pSum"?: number; /** * Shows the average number of distinct historical custom metrics over all hours in the current month for all organizations. */ @@ -262,7 +262,7 @@ 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; + "cwsHostTop99pSum"?: number; /** * Shows the sum of Data Jobs Monitoring hosts over all hours in the current months for all organizations */ @@ -270,7 +270,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations. */ - "dbmHostTop99PSum"?: number; + "dbmHostTop99pSum"?: number; /** * Shows the average of all distinct Database Monitoring Normalized Queries over all hours in the current month for all organizations. */ @@ -422,11 +422,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all GCP hosts over all hours in the current month for all organizations. */ - "gcpHostTop99PSum"?: number; + "gcpHostTop99pSum"?: number; /** * Shows the 99th percentile of all Heroku dynos over all hours in the current month for all organizations. */ - "herokuHostTop99PSum"?: number; + "herokuHostTop99pSum"?: number; /** * Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations. */ @@ -442,7 +442,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations. */ - "infraHostTop99PSum"?: number; + "infraHostTop99pSum"?: number; /** * Shows the sum of all log bytes ingested over all hours in the current month for all organizations. */ @@ -454,7 +454,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all IoT devices over all hours in the current month of all organizations. */ - "iotDeviceTop99PSum"?: number; + "iotDeviceTop99pSum"?: number; /** * Shows the most recent hour in the current month for all organizations for which all usages were calculated. */ @@ -522,11 +522,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current month for all organizations. */ - "networkDeviceWirelessTop99PSum"?: number; + "networkDeviceWirelessTop99pSum"?: number; /** * Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current month for all organizations. */ - "npmHostTop99PSum"?: number; + "npmHostTop99pSum"?: number; /** * Sum of all observability pipelines bytes processed over all hours in the current month for all organizations. */ @@ -538,7 +538,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations */ - "ociHostTop99PSum"?: number; + "ociHostTop99pSum"?: number; /** * Shows the sum of the high-water marks of On-Call seats over all hours in the current month for all organizations. */ @@ -550,11 +550,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations. */ - "opentelemetryApmHostTop99PSum"?: number; + "opentelemetryApmHostTop99pSum"?: number; /** * Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations. */ - "opentelemetryHostTop99PSum"?: number; + "opentelemetryHostTop99pSum"?: number; /** * Sum of all product analytics sessions for all hours in the current month for all organizations. */ @@ -562,7 +562,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all profiled Azure app services over all hours in the current month for all organizations. */ - "profilingAasCountTop99PSum"?: number; + "profilingAasCountTop99pSum"?: number; /** * Shows the average number of profiled containers over all hours in the current month for all organizations. */ @@ -570,7 +570,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all profiled hosts over all hours in the current month for all organizations. */ - "profilingHostCountTop99PSum"?: number; + "profilingHostCountTop99pSum"?: number; /** * Sum of all Proxmox hosts over all hours in the current month for all organizations. */ @@ -578,7 +578,7 @@ export class UsageSummaryResponse { /** * Sum of the 99th percentile of all Proxmox hosts over all hours in the current month for all organizations. */ - "proxmoxHostTop99PSum"?: number; + "proxmoxHostTop99pSum"?: number; /** * Shows the high-water mark of all published applications over all hours in the current month for all organizations. */ @@ -882,7 +882,7 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all Universal Service Monitoring hosts over all hours in the current month for all organizations. */ - "universalServiceMonitoringHostTop99PSum"?: number; + "universalServiceMonitoringHostTop99pSum"?: number; /** * An array of objects regarding hourly usage. */ @@ -890,11 +890,11 @@ export class UsageSummaryResponse { /** * Shows the 99th percentile of all vSphere hosts over all hours in the current month for all organizations. */ - "vsphereHostTop99PSum"?: number; + "vsphereHostTop99pSum"?: number; /** * Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current month for all organizations. */ - "vulnManagementHostCountTop99PSum"?: number; + "vulnManagementHostCountTop99pSum"?: number; /** * Sum of all workflows executed over all hours in the current month for all organizations. */ @@ -914,22 +914,22 @@ export class UsageSummaryResponse { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { - agentHostTop99PSum: { + agentHostTop99pSum: { baseName: "agent_host_top99p_sum", type: "number", format: "int64", }, - apmAzureAppServiceHostTop99PSum: { + apmAzureAppServiceHostTop99pSum: { baseName: "apm_azure_app_service_host_top99p_sum", type: "number", format: "int64", }, - apmDevsecopsHostTop99PSum: { + apmDevsecopsHostTop99pSum: { baseName: "apm_devsecops_host_top99p_sum", type: "number", format: "int64", }, - apmEnterpriseStandaloneHostsTop99PSum: { + apmEnterpriseStandaloneHostsTop99pSum: { baseName: "apm_enterprise_standalone_hosts_top99p_sum", type: "number", format: "int64", @@ -939,12 +939,12 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - apmHostTop99PSum: { + apmHostTop99pSum: { baseName: "apm_host_top99p_sum", type: "number", format: "int64", }, - apmProStandaloneHostsTop99PSum: { + apmProStandaloneHostsTop99pSum: { baseName: "apm_pro_standalone_hosts_top99p_sum", type: "number", format: "int64", @@ -974,7 +974,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - awsHostTop99PSum: { + awsHostTop99pSum: { baseName: "aws_host_top99p_sum", type: "number", format: "int64", @@ -989,12 +989,12 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - azureAppServiceTop99PSum: { + azureAppServiceTop99pSum: { baseName: "azure_app_service_top99p_sum", type: "number", format: "int64", }, - azureHostTop99PSum: { + azureHostTop99pSum: { baseName: "azure_host_top99p_sum", type: "number", format: "int64", @@ -1099,7 +1099,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - codeSecurityHostTop99PSum: { + codeSecurityHostTop99pSum: { baseName: "code_security_host_top99p_sum", type: "number", format: "int64", @@ -1134,52 +1134,52 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - csmHostEnterpriseAasHostCountTop99PSum: { + csmHostEnterpriseAasHostCountTop99pSum: { baseName: "csm_host_enterprise_aas_host_count_top99p_sum", type: "number", format: "int64", }, - csmHostEnterpriseAwsHostCountTop99PSum: { + csmHostEnterpriseAwsHostCountTop99pSum: { baseName: "csm_host_enterprise_aws_host_count_top99p_sum", type: "number", format: "int64", }, - csmHostEnterpriseAzureHostCountTop99PSum: { + csmHostEnterpriseAzureHostCountTop99pSum: { baseName: "csm_host_enterprise_azure_host_count_top99p_sum", type: "number", format: "int64", }, - csmHostEnterpriseComplianceHostCountTop99PSum: { + csmHostEnterpriseComplianceHostCountTop99pSum: { baseName: "csm_host_enterprise_compliance_host_count_top99p_sum", type: "number", format: "int64", }, - csmHostEnterpriseCwsHostCountTop99PSum: { + csmHostEnterpriseCwsHostCountTop99pSum: { baseName: "csm_host_enterprise_cws_host_count_top99p_sum", type: "number", format: "int64", }, - csmHostEnterpriseGcpHostCountTop99PSum: { + csmHostEnterpriseGcpHostCountTop99pSum: { baseName: "csm_host_enterprise_gcp_host_count_top99p_sum", type: "number", format: "int64", }, - csmHostEnterpriseTotalHostCountTop99PSum: { + csmHostEnterpriseTotalHostCountTop99pSum: { baseName: "csm_host_enterprise_total_host_count_top99p_sum", type: "number", format: "int64", }, - cspmAasHostTop99PSum: { + cspmAasHostTop99pSum: { baseName: "cspm_aas_host_top99p_sum", type: "number", format: "int64", }, - cspmAwsHostTop99PSum: { + cspmAwsHostTop99pSum: { baseName: "cspm_aws_host_top99p_sum", type: "number", format: "int64", }, - cspmAzureHostTop99PSum: { + cspmAzureHostTop99pSum: { baseName: "cspm_azure_host_top99p_sum", type: "number", format: "int64", @@ -1194,12 +1194,12 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - cspmGcpHostTop99PSum: { + cspmGcpHostTop99pSum: { baseName: "cspm_gcp_host_top99p_sum", type: "number", format: "int64", }, - cspmHostTop99PSum: { + cspmHostTop99pSum: { baseName: "cspm_host_top99p_sum", type: "number", format: "int64", @@ -1229,7 +1229,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - cwsHostTop99PSum: { + cwsHostTop99pSum: { baseName: "cws_host_top99p_sum", type: "number", format: "int64", @@ -1239,7 +1239,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - dbmHostTop99PSum: { + dbmHostTop99pSum: { baseName: "dbm_host_top99p_sum", type: "number", format: "int64", @@ -1430,12 +1430,12 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - gcpHostTop99PSum: { + gcpHostTop99pSum: { baseName: "gcp_host_top99p_sum", type: "number", format: "int64", }, - herokuHostTop99PSum: { + herokuHostTop99pSum: { baseName: "heroku_host_top99p_sum", type: "number", format: "int64", @@ -1455,7 +1455,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - infraHostTop99PSum: { + infraHostTop99pSum: { baseName: "infra_host_top99p_sum", type: "number", format: "int64", @@ -1470,7 +1470,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - iotDeviceTop99PSum: { + iotDeviceTop99pSum: { baseName: "iot_device_top99p_sum", type: "number", format: "int64", @@ -1554,12 +1554,12 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - networkDeviceWirelessTop99PSum: { + networkDeviceWirelessTop99pSum: { baseName: "network_device_wireless_top99p_sum", type: "number", format: "int64", }, - npmHostTop99PSum: { + npmHostTop99pSum: { baseName: "npm_host_top99p_sum", type: "number", format: "int64", @@ -1574,7 +1574,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - ociHostTop99PSum: { + ociHostTop99pSum: { baseName: "oci_host_top99p_sum", type: "number", format: "int64", @@ -1589,12 +1589,12 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - opentelemetryApmHostTop99PSum: { + opentelemetryApmHostTop99pSum: { baseName: "opentelemetry_apm_host_top99p_sum", type: "number", format: "int64", }, - opentelemetryHostTop99PSum: { + opentelemetryHostTop99pSum: { baseName: "opentelemetry_host_top99p_sum", type: "number", format: "int64", @@ -1604,7 +1604,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - profilingAasCountTop99PSum: { + profilingAasCountTop99pSum: { baseName: "profiling_aas_count_top99p_sum", type: "number", format: "int64", @@ -1614,7 +1614,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - profilingHostCountTop99PSum: { + profilingHostCountTop99pSum: { baseName: "profiling_host_count_top99p_sum", type: "number", format: "int64", @@ -1624,7 +1624,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - proxmoxHostTop99PSum: { + proxmoxHostTop99pSum: { baseName: "proxmox_host_top99p_sum", type: "number", format: "int64", @@ -2013,7 +2013,7 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, - universalServiceMonitoringHostTop99PSum: { + universalServiceMonitoringHostTop99pSum: { baseName: "universal_service_monitoring_host_top99p_sum", type: "number", format: "int64", @@ -2022,12 +2022,12 @@ export class UsageSummaryResponse { baseName: "usage", type: "Array", }, - vsphereHostTop99PSum: { + vsphereHostTop99pSum: { baseName: "vsphere_host_top99p_sum", type: "number", format: "int64", }, - vulnManagementHostCountTop99PSum: { + vulnManagementHostCountTop99pSum: { baseName: "vuln_management_host_count_top99p_sum", type: "number", format: "int64",