From 79ccf12eb005ca0e32c3ea5445a09cb24ca5d63c Mon Sep 17 00:00:00 2001 From: Charlie Zhang Date: Mon, 8 Jun 2026 09:47:29 -0400 Subject: [PATCH 1/3] Support x-keep-typed-in-additional-properties in Java model generator When a schema sets `x-keep-typed-in-additional-properties: true`, each typed property setter also calls putAdditionalProperty so all fields are accessible via getAdditionalProperties() alongside untyped fields. Co-Authored-By: Claude Sonnet 4.6 --- .generator/src/generator/templates/modelSimple.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.generator/src/generator/templates/modelSimple.j2 b/.generator/src/generator/templates/modelSimple.j2 index 7d8a556535e..becccff46dd 100644 --- a/.generator/src/generator/templates/modelSimple.j2 +++ b/.generator/src/generator/templates/modelSimple.j2 @@ -258,6 +258,9 @@ public class {{ name }} {%- if model.get("x-generate-alias-as-model") %} extends {%- else %} this.{{ variableName }} = {{ variableName }}; {%- endif %} + {%- if model.get("x-keep-typed-in-additional-properties") %} + putAdditionalProperty(JSON_PROPERTY_{{ attr|snake_case|upper }}, {%- if not isRequired and isNullable %} this.{{ variableName }}.orElse(null){%- else %} {{ variableName }}{%- endif %}); + {%- endif %} } {%- endif %} {%- endfor %} From 344b32c40ec12e1f983c2ecffc465ba485ac6750 Mon Sep 17 00:00:00 2001 From: Charlie Zhang Date: Mon, 8 Jun 2026 10:11:05 -0400 Subject: [PATCH 2/3] fix: guard putAdditionalProperty in setter against models without additionalProperties Generating the putAdditionalProperty call when additionalProperties is false would cause a compile error because putAdditionalProperty is only generated for models that have an additionalProperties schema. Co-Authored-By: Claude Sonnet 4.6 --- .generator/src/generator/templates/modelSimple.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.generator/src/generator/templates/modelSimple.j2 b/.generator/src/generator/templates/modelSimple.j2 index becccff46dd..60e2acc14ce 100644 --- a/.generator/src/generator/templates/modelSimple.j2 +++ b/.generator/src/generator/templates/modelSimple.j2 @@ -258,7 +258,7 @@ public class {{ name }} {%- if model.get("x-generate-alias-as-model") %} extends {%- else %} this.{{ variableName }} = {{ variableName }}; {%- endif %} - {%- if model.get("x-keep-typed-in-additional-properties") %} + {%- if model.get("x-keep-typed-in-additional-properties") and model.additionalProperties is not false %} putAdditionalProperty(JSON_PROPERTY_{{ attr|snake_case|upper }}, {%- if not isRequired and isNullable %} this.{{ variableName }}.orElse(null){%- else %} {{ variableName }}{%- endif %}); {%- endif %} } From 55b96bf0b7de387c0c8ddb1be420003bd81c90ca Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 16 Jun 2026 17:56:41 +0000 Subject: [PATCH 3/3] Regenerate client from commit 3677df7 of spec repo --- .generator/schemas/v1/openapi.yaml | 3 + .generator/schemas/v2/openapi.yaml | 388 ++++++ .../GetAsmServiceByName.java | 25 + .../com/datadog/api/client/ApiClient.java | 1 + .../api/client/v1/model/UsageSummaryDate.java | 562 ++++++++ .../client/v1/model/UsageSummaryDateOrg.java | 568 ++++++++ .../client/v1/model/UsageSummaryResponse.java | 617 +++++++++ .../client/v2/api/ApplicationSecurityApi.java | 167 +++ .../ApplicationSecurityServiceAttributes.java | 1205 +++++++++++++++++ .../ApplicationSecurityServiceResource.java | 214 +++ .../model/ApplicationSecurityServiceType.java | 58 + .../ApplicationSecurityServicesMetadata.java | 149 ++ .../ApplicationSecurityServicesResponse.java | 191 +++ .../v2/api/application_security.feature | 8 + .../com/datadog/api/client/v2/api/undo.json | 6 + 15 files changed, 4162 insertions(+) create mode 100644 examples/v2/application-security/GetAsmServiceByName.java create mode 100644 src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceAttributes.java create mode 100644 src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceResource.java create mode 100644 src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceType.java create mode 100644 src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesMetadata.java create mode 100644 src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesResponse.java diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 1a0f742ff68..e9a5dfa9bc9 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -24110,6 +24110,7 @@ components: format: int64 type: integer type: object + x-keep-typed-in-additional-properties: true UsageSummaryDateOrg: description: |- Global hourly report of all data billed by Datadog for a given organization. @@ -25429,6 +25430,7 @@ components: format: int64 type: integer type: object + x-keep-typed-in-additional-properties: true UsageSummaryResponse: description: |- Response summarizing all usage aggregated across the months in the request for @@ -26776,6 +26778,7 @@ components: format: int64 type: integer type: object + x-keep-typed-in-additional-properties: true UsageSyntheticsAPIHour: description: Number of Synthetics API tests run for each hour for a given organization. properties: diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 92c1c1fc720..842f6f5c46f 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -215,6 +215,16 @@ components: required: true schema: type: string + ApplicationSecurityServiceNameParam: + description: |- + The name of the service to retrieve Application Security details for. + Returns all matching services across environments. + example: web-store + in: path + name: service_filter + required: true + schema: + type: string ApplicationSecurityWafCustomRuleIDParam: description: The ID of the custom rule. example: 3b5-v82-ns6 @@ -8309,6 +8319,303 @@ components: required: - data type: object + ApplicationSecurityServiceAttributes: + description: Application Security details describing a service in a given environment. + properties: + agent_versions: + description: The Datadog Agent versions reporting for the service. + example: + - 7.50.0 + items: + description: A Datadog Agent version reporting for the service. + example: 7.50.0 + type: string + type: array + app_type: + description: The application type of the service, such as `web` or `serverless`. + example: web + type: string + asm_threat_compatible: + description: Whether the service is compatible with Application Security Management (Threats). + example: true + type: boolean + backend_waf_event_count: + description: The number of backend WAF events detected for the service. + example: 10 + format: int64 + type: integer + business_logic: + description: The enabled business logic detection rules for the service. + example: + - users.login.success + items: + description: A business logic detection rule enabled for the service. + example: users.login.success + type: string + type: array + color: + deprecated: true + description: "Deprecated: a display color associated with the service in the UI." + example: "" + type: string + env: + description: The environment the service runs in. + example: prod + type: string + event_count: + description: The number of Application Security events detected for the service. + example: 42 + format: int64 + type: integer + event_trend: + deprecated: true + description: "Deprecated: the trend of Application Security events over time." + example: + - 0 + items: + description: A point in the Application Security events trend. + example: 0 + format: int64 + type: integer + type: array + has_appsec_enabled: + description: Whether Application Security Management (Threats) is enabled for the service. + example: true + type: boolean + hits: + deprecated: true + description: "Deprecated: the number of hits for the service." + example: 0 + format: int64 + type: integer + iast_product_activation: + description: Whether Interactive Application Security Testing (IAST) is enabled for the service. + example: false + type: boolean + iast_product_compatibility: + description: The Interactive Application Security Testing (IAST) compatibility status of the service. + example: compatible + type: string + iast_product_compatibility_reasons: + description: The reasons explaining the Interactive Application Security Testing (IAST) compatibility status. + example: + - service_not_compatible + items: + description: A reason explaining the Interactive Application Security Testing (IAST) compatibility status. + example: service_not_compatible + type: string + type: array + languages: + description: The programming languages detected for the service. + example: + - go + items: + description: A programming language detected for the service. + example: go + type: string + type: array + last_ingested_spans: + description: The Unix timestamp, in seconds, of the last ingested span for the service. + example: 1610000000 + format: int64 + type: integer + rc_capabilities: + description: The Remote Configuration capabilities reported by the service. + example: + - ASM_DD_RULES + items: + description: A Remote Configuration capability reported by the service. + example: ASM_DD_RULES + type: string + type: array + recommended_business_logic: + description: The recommended business logic detection rules for the service. + example: + - users.login.success + items: + description: A recommended business logic detection rule for the service. + example: users.login.success + type: string + type: array + risk_product_activation: + description: Whether Software Composition Analysis (SCA) is enabled for the service. + example: false + type: boolean + risk_product_compatibility: + description: The Software Composition Analysis (SCA) compatibility status of the service. + example: compatible + type: string + risk_product_compatibility_reasons: + description: The reasons explaining the Software Composition Analysis (SCA) compatibility status. + example: + - service_not_compatible + items: + description: A reason explaining the Software Composition Analysis (SCA) compatibility status. + example: service_not_compatible + type: string + type: array + rules_version: + description: The WAF rules versions applied to the service. + example: + - 1.13.0 + items: + description: A WAF rules version applied to the service. + example: 1.13.0 + type: string + type: array + service: + description: The name of the service. + example: web-store + type: string + signal_count: + deprecated: true + description: "Deprecated: the number of security signals for the service." + example: 0 + format: int64 + type: integer + signal_trend: + deprecated: true + description: "Deprecated: the trend of security signals over time." + example: + - 0 + items: + description: A point in the security signals trend. + example: 0 + format: int64 + type: integer + type: array + source: + description: The data sources that contributed information about the service. + example: + - services-activity + items: + description: A data source that contributed information about the service. + example: services-activity + type: string + type: array + teams: + description: The teams that own the service. + example: + - security-team + items: + description: A team that owns the service. + example: security-team + type: string + type: array + tracer_versions: + description: The Datadog tracing library versions reporting for the service. + example: + - 1.60.0 + items: + description: A Datadog tracing library version reporting for the service. + example: 1.60.0 + type: string + type: array + vm-activation: + description: The Vulnerability Management activation status of the service. + example: enabled + type: string + vuln_critical_count: + deprecated: true + description: "Deprecated: the number of critical-severity vulnerabilities for the service." + example: 0 + format: int64 + type: integer + vuln_high_count: + deprecated: true + description: "Deprecated: the number of high-severity vulnerabilities for the service." + example: 0 + format: int64 + type: integer + without_filter_services: + description: The total number of services available without applying the service filter. + example: 0 + format: int64 + type: integer + required: + - service + - env + - app_type + - has_appsec_enabled + - asm_threat_compatible + - languages + - teams + - event_count + - backend_waf_event_count + - risk_product_activation + - risk_product_compatibility + - risk_product_compatibility_reasons + - iast_product_activation + - iast_product_compatibility + - iast_product_compatibility_reasons + - vm-activation + - agent_versions + - tracer_versions + - rules_version + - rc_capabilities + - source + - last_ingested_spans + - business_logic + - recommended_business_logic + - without_filter_services + - color + - event_trend + - signal_trend + - signal_count + - hits + - vuln_high_count + - vuln_critical_count + type: object + ApplicationSecurityServiceResource: + description: A JSON:API resource describing a service and its Application Security details. + properties: + attributes: + $ref: "#/components/schemas/ApplicationSecurityServiceAttributes" + id: + description: The unique identifier of the service, formatted as `_`. + example: web-store_prod + type: string + type: + $ref: "#/components/schemas/ApplicationSecurityServiceType" + required: + - id + - type + - attributes + type: object + ApplicationSecurityServiceType: + default: service_env + description: The type of the resource. The value should always be `service_env`. + enum: + - service_env + example: service_env + type: string + x-enum-varnames: + - SERVICE_ENV + ApplicationSecurityServicesMetadata: + description: Metadata returned alongside the list of services. + properties: + num_services_with_appsec: + description: The number of services with Application Security Management (Threats) enabled. + example: 1 + format: int64 + type: integer + required: + - num_services_with_appsec + type: object + ApplicationSecurityServicesResponse: + description: Response object containing the list of services matching the requested name. + properties: + data: + description: The list of services matching the requested name. + items: + $ref: "#/components/schemas/ApplicationSecurityServiceResource" + type: array + meta: + $ref: "#/components/schemas/ApplicationSecurityServicesMetadata" + required: + - data + - meta + type: object ApplicationSecurityWafCustomRuleAction: description: The definition of `ApplicationSecurityWafCustomRuleAction` object. properties: @@ -165752,6 +166059,87 @@ paths: x-unstable: |- **Note**: This endpoint is in public beta and it's subject to change. If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/). + /api/v2/security/asm/services/{service_filter}: + get: + description: |- + Retrieve Application Security details for services matching the given name. + Returns Application Security activation, compatibility, and product enablement + information for each matching `(service, environment)` pair, along with a count + of services that have Application Security Management (Threats) enabled. + operationId: GetAsmServiceByName + parameters: + - $ref: "#/components/parameters/ApplicationSecurityServiceNameParam" + responses: + "200": + content: + application/json: + examples: + default: + value: + data: + - attributes: + agent_versions: + - 7.50.0 + app_type: web + asm_threat_compatible: true + backend_waf_event_count: 10 + business_logic: [] + color: "" + env: prod + event_count: 42 + event_trend: [] + has_appsec_enabled: true + hits: 0 + iast_product_activation: false + iast_product_compatibility: compatible + iast_product_compatibility_reasons: [] + languages: + - go + last_ingested_spans: 1610000000 + rc_capabilities: + - ASM_DD_RULES + recommended_business_logic: [] + risk_product_activation: false + risk_product_compatibility: compatible + risk_product_compatibility_reasons: [] + rules_version: + - 1.13.0 + service: web-store + signal_count: 0 + signal_trend: [] + source: + - services-activity + teams: + - security-team + tracer_versions: + - 1.60.0 + vm-activation: enabled + vuln_critical_count: 0 + vuln_high_count: 0 + without_filter_services: 0 + id: web-store_prod + type: service_env + meta: + num_services_with_appsec: 1 + schema: + $ref: "#/components/schemas/ApplicationSecurityServicesResponse" + description: OK + "403": + $ref: "#/components/responses/NotAuthorizedResponse" + "429": + $ref: "#/components/responses/TooManyRequestsResponse" + summary: Get Application Security details for a service + tags: + - "Application Security" + "x-permission": + operator: OR + permissions: + - apm_service_catalog_read + - appsec_protect_read + - apm_read + x-unstable: |- + **Note**: This endpoint is in preview and is subject to change. + If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/). /api/v2/security/cloud_workload/policy/download: get: description: |- diff --git a/examples/v2/application-security/GetAsmServiceByName.java b/examples/v2/application-security/GetAsmServiceByName.java new file mode 100644 index 00000000000..1c82c2c30f6 --- /dev/null +++ b/examples/v2/application-security/GetAsmServiceByName.java @@ -0,0 +1,25 @@ +// Get Application Security details for a service returns "OK" response + +import com.datadog.api.client.ApiClient; +import com.datadog.api.client.ApiException; +import com.datadog.api.client.v2.api.ApplicationSecurityApi; +import com.datadog.api.client.v2.model.ApplicationSecurityServicesResponse; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = ApiClient.getDefaultApiClient(); + defaultClient.setUnstableOperationEnabled("v2.getAsmServiceByName", true); + ApplicationSecurityApi apiInstance = new ApplicationSecurityApi(defaultClient); + + try { + ApplicationSecurityServicesResponse result = apiInstance.getAsmServiceByName("web-store"); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling ApplicationSecurityApi#getAsmServiceByName"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} diff --git a/src/main/java/com/datadog/api/client/ApiClient.java b/src/main/java/com/datadog/api/client/ApiClient.java index 6b04064ee34..2f1b54ed2b3 100644 --- a/src/main/java/com/datadog/api/client/ApiClient.java +++ b/src/main/java/com/datadog/api/client/ApiClient.java @@ -1177,6 +1177,7 @@ public class ApiClient { put("v2.updateConnection", false); put("v2.getPrunedTraceByID", false); put("v2.getTraceByID", false); + put("v2.getAsmServiceByName", false); put("v2.createReportSchedule", false); put("v2.patchReportSchedule", false); put("v2.deleteSourcemaps", false); diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java index a2b272d361d..1f0bd83a534 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java @@ -1472,6 +1472,7 @@ public Long getAgentHostTop99p() { public void setAgentHostTop99p(Long agentHostTop99p) { this.agentHostTop99p = agentHostTop99p; + putAdditionalProperty(JSON_PROPERTY_AGENT_HOST_TOP99P, agentHostTop99p); } public UsageSummaryDate aiCreditsAgentBuilderAiCreditsSum( @@ -1495,6 +1496,8 @@ public Long getAiCreditsAgentBuilderAiCreditsSum() { public void setAiCreditsAgentBuilderAiCreditsSum(Long aiCreditsAgentBuilderAiCreditsSum) { this.aiCreditsAgentBuilderAiCreditsSum = aiCreditsAgentBuilderAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_AGENT_BUILDER_AI_CREDITS_SUM, aiCreditsAgentBuilderAiCreditsSum); } public UsageSummaryDate aiCreditsBitsAssistantAiCreditsSum( @@ -1519,6 +1522,8 @@ public Long getAiCreditsBitsAssistantAiCreditsSum() { public void setAiCreditsBitsAssistantAiCreditsSum(Long aiCreditsBitsAssistantAiCreditsSum) { this.aiCreditsBitsAssistantAiCreditsSum = aiCreditsBitsAssistantAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_ASSISTANT_AI_CREDITS_SUM, aiCreditsBitsAssistantAiCreditsSum); } public UsageSummaryDate aiCreditsBitsDevAiCreditsSum(Long aiCreditsBitsDevAiCreditsSum) { @@ -1541,6 +1546,8 @@ public Long getAiCreditsBitsDevAiCreditsSum() { public void setAiCreditsBitsDevAiCreditsSum(Long aiCreditsBitsDevAiCreditsSum) { this.aiCreditsBitsDevAiCreditsSum = aiCreditsBitsDevAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_DEV_AI_CREDITS_SUM, aiCreditsBitsDevAiCreditsSum); } public UsageSummaryDate aiCreditsBitsSreAiCreditsSum(Long aiCreditsBitsSreAiCreditsSum) { @@ -1563,6 +1570,8 @@ public Long getAiCreditsBitsSreAiCreditsSum() { public void setAiCreditsBitsSreAiCreditsSum(Long aiCreditsBitsSreAiCreditsSum) { this.aiCreditsBitsSreAiCreditsSum = aiCreditsBitsSreAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_SRE_AI_CREDITS_SUM, aiCreditsBitsSreAiCreditsSum); } public UsageSummaryDate aiCreditsSum(Long aiCreditsSum) { @@ -1585,6 +1594,7 @@ public Long getAiCreditsSum() { public void setAiCreditsSum(Long aiCreditsSum) { this.aiCreditsSum = aiCreditsSum; + putAdditionalProperty(JSON_PROPERTY_AI_CREDITS_SUM, aiCreditsSum); } public UsageSummaryDate apmAzureAppServiceHostTop99p(Long apmAzureAppServiceHostTop99p) { @@ -1607,6 +1617,8 @@ public Long getApmAzureAppServiceHostTop99p() { public void setApmAzureAppServiceHostTop99p(Long apmAzureAppServiceHostTop99p) { this.apmAzureAppServiceHostTop99p = apmAzureAppServiceHostTop99p; + putAdditionalProperty( + JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P, apmAzureAppServiceHostTop99p); } public UsageSummaryDate apmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) { @@ -1629,6 +1641,7 @@ public Long getApmDevsecopsHostTop99p() { public void setApmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) { this.apmDevsecopsHostTop99p = apmDevsecopsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P, apmDevsecopsHostTop99p); } public UsageSummaryDate apmEnterpriseStandaloneHostsTop99p( @@ -1652,6 +1665,8 @@ public Long getApmEnterpriseStandaloneHostsTop99p() { public void setApmEnterpriseStandaloneHostsTop99p(Long apmEnterpriseStandaloneHostsTop99p) { this.apmEnterpriseStandaloneHostsTop99p = apmEnterpriseStandaloneHostsTop99p; + putAdditionalProperty( + JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P, apmEnterpriseStandaloneHostsTop99p); } public UsageSummaryDate apmFargateCountAvg(Long apmFargateCountAvg) { @@ -1674,6 +1689,7 @@ public Long getApmFargateCountAvg() { public void setApmFargateCountAvg(Long apmFargateCountAvg) { this.apmFargateCountAvg = apmFargateCountAvg; + putAdditionalProperty(JSON_PROPERTY_APM_FARGATE_COUNT_AVG, apmFargateCountAvg); } public UsageSummaryDate apmHostTop99p(Long apmHostTop99p) { @@ -1696,6 +1712,7 @@ public Long getApmHostTop99p() { public void setApmHostTop99p(Long apmHostTop99p) { this.apmHostTop99p = apmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_APM_HOST_TOP99P, apmHostTop99p); } public UsageSummaryDate apmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) { @@ -1718,6 +1735,8 @@ public Long getApmProStandaloneHostsTop99p() { public void setApmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) { this.apmProStandaloneHostsTop99p = apmProStandaloneHostsTop99p; + putAdditionalProperty( + JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P, apmProStandaloneHostsTop99p); } public UsageSummaryDate appsecFargateCountAvg(Long appsecFargateCountAvg) { @@ -1740,6 +1759,7 @@ public Long getAppsecFargateCountAvg() { public void setAppsecFargateCountAvg(Long appsecFargateCountAvg) { this.appsecFargateCountAvg = appsecFargateCountAvg; + putAdditionalProperty(JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG, appsecFargateCountAvg); } public UsageSummaryDate asmServerlessSum(Long asmServerlessSum) { @@ -1762,6 +1782,7 @@ public Long getAsmServerlessSum() { public void setAsmServerlessSum(Long asmServerlessSum) { this.asmServerlessSum = asmServerlessSum; + putAdditionalProperty(JSON_PROPERTY_ASM_SERVERLESS_SUM, asmServerlessSum); } public UsageSummaryDate auditLogsLinesIndexedSum(Long auditLogsLinesIndexedSum) { @@ -1787,6 +1808,7 @@ public Long getAuditLogsLinesIndexedSum() { @Deprecated public void setAuditLogsLinesIndexedSum(Long auditLogsLinesIndexedSum) { this.auditLogsLinesIndexedSum = auditLogsLinesIndexedSum; + putAdditionalProperty(JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_SUM, auditLogsLinesIndexedSum); } public UsageSummaryDate auditTrailEnabledHwm(Long auditTrailEnabledHwm) { @@ -1808,6 +1830,7 @@ public Long getAuditTrailEnabledHwm() { public void setAuditTrailEnabledHwm(Long auditTrailEnabledHwm) { this.auditTrailEnabledHwm = auditTrailEnabledHwm; + putAdditionalProperty(JSON_PROPERTY_AUDIT_TRAIL_ENABLED_HWM, auditTrailEnabledHwm); } public UsageSummaryDate auditTrailEventForwardingEventsSum( @@ -1831,6 +1854,8 @@ public Long getAuditTrailEventForwardingEventsSum() { public void setAuditTrailEventForwardingEventsSum(Long auditTrailEventForwardingEventsSum) { this.auditTrailEventForwardingEventsSum = auditTrailEventForwardingEventsSum; + putAdditionalProperty( + JSON_PROPERTY_AUDIT_TRAIL_EVENT_FORWARDING_EVENTS_SUM, auditTrailEventForwardingEventsSum); } public UsageSummaryDate avgProfiledFargateTasks(Long avgProfiledFargateTasks) { @@ -1853,6 +1878,7 @@ public Long getAvgProfiledFargateTasks() { public void setAvgProfiledFargateTasks(Long avgProfiledFargateTasks) { this.avgProfiledFargateTasks = avgProfiledFargateTasks; + putAdditionalProperty(JSON_PROPERTY_AVG_PROFILED_FARGATE_TASKS, avgProfiledFargateTasks); } public UsageSummaryDate awsHostTop99p(Long awsHostTop99p) { @@ -1875,6 +1901,7 @@ public Long getAwsHostTop99p() { public void setAwsHostTop99p(Long awsHostTop99p) { this.awsHostTop99p = awsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_AWS_HOST_TOP99P, awsHostTop99p); } public UsageSummaryDate awsLambdaFuncCount(Long awsLambdaFuncCount) { @@ -1897,6 +1924,7 @@ public Long getAwsLambdaFuncCount() { public void setAwsLambdaFuncCount(Long awsLambdaFuncCount) { this.awsLambdaFuncCount = awsLambdaFuncCount; + putAdditionalProperty(JSON_PROPERTY_AWS_LAMBDA_FUNC_COUNT, awsLambdaFuncCount); } public UsageSummaryDate awsLambdaInvocationsSum(Long awsLambdaInvocationsSum) { @@ -1919,6 +1947,7 @@ public Long getAwsLambdaInvocationsSum() { public void setAwsLambdaInvocationsSum(Long awsLambdaInvocationsSum) { this.awsLambdaInvocationsSum = awsLambdaInvocationsSum; + putAdditionalProperty(JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM, awsLambdaInvocationsSum); } public UsageSummaryDate azureAppServiceTop99p(Long azureAppServiceTop99p) { @@ -1941,6 +1970,7 @@ public Long getAzureAppServiceTop99p() { public void setAzureAppServiceTop99p(Long azureAppServiceTop99p) { this.azureAppServiceTop99p = azureAppServiceTop99p; + putAdditionalProperty(JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P, azureAppServiceTop99p); } public UsageSummaryDate billableIngestedBytesSum(Long billableIngestedBytesSum) { @@ -1963,6 +1993,7 @@ public Long getBillableIngestedBytesSum() { public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) { this.billableIngestedBytesSum = billableIngestedBytesSum; + putAdditionalProperty(JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM, billableIngestedBytesSum); } public UsageSummaryDate bitsAiInvestigationsSum(Long bitsAiInvestigationsSum) { @@ -1985,6 +2016,7 @@ public Long getBitsAiInvestigationsSum() { public void setBitsAiInvestigationsSum(Long bitsAiInvestigationsSum) { this.bitsAiInvestigationsSum = bitsAiInvestigationsSum; + putAdditionalProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM, bitsAiInvestigationsSum); } public UsageSummaryDate browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) { @@ -2010,6 +2042,8 @@ public Long getBrowserRumLiteSessionCountSum() { @Deprecated public void setBrowserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) { this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM, browserRumLiteSessionCountSum); } public UsageSummaryDate browserRumReplaySessionCountSum(Long browserRumReplaySessionCountSum) { @@ -2032,6 +2066,8 @@ public Long getBrowserRumReplaySessionCountSum() { public void setBrowserRumReplaySessionCountSum(Long browserRumReplaySessionCountSum) { this.browserRumReplaySessionCountSum = browserRumReplaySessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM, browserRumReplaySessionCountSum); } public UsageSummaryDate browserRumUnitsSum(Long browserRumUnitsSum) { @@ -2057,6 +2093,7 @@ public Long getBrowserRumUnitsSum() { @Deprecated public void setBrowserRumUnitsSum(Long browserRumUnitsSum) { this.browserRumUnitsSum = browserRumUnitsSum; + putAdditionalProperty(JSON_PROPERTY_BROWSER_RUM_UNITS_SUM, browserRumUnitsSum); } public UsageSummaryDate ccmAnthropicSpendLast(Long ccmAnthropicSpendLast) { @@ -2079,6 +2116,7 @@ public Long getCcmAnthropicSpendLast() { public void setCcmAnthropicSpendLast(Long ccmAnthropicSpendLast) { this.ccmAnthropicSpendLast = ccmAnthropicSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_ANTHROPIC_SPEND_LAST, ccmAnthropicSpendLast); } public UsageSummaryDate ccmAwsSpendLast(Long ccmAwsSpendLast) { @@ -2101,6 +2139,7 @@ public Long getCcmAwsSpendLast() { public void setCcmAwsSpendLast(Long ccmAwsSpendLast) { this.ccmAwsSpendLast = ccmAwsSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_AWS_SPEND_LAST, ccmAwsSpendLast); } public UsageSummaryDate ccmAzureSpendLast(Long ccmAzureSpendLast) { @@ -2123,6 +2162,7 @@ public Long getCcmAzureSpendLast() { public void setCcmAzureSpendLast(Long ccmAzureSpendLast) { this.ccmAzureSpendLast = ccmAzureSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_AZURE_SPEND_LAST, ccmAzureSpendLast); } public UsageSummaryDate ccmConfluentSpendLast(Long ccmConfluentSpendLast) { @@ -2145,6 +2185,7 @@ public Long getCcmConfluentSpendLast() { public void setCcmConfluentSpendLast(Long ccmConfluentSpendLast) { this.ccmConfluentSpendLast = ccmConfluentSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_CONFLUENT_SPEND_LAST, ccmConfluentSpendLast); } public UsageSummaryDate ccmDatabricksSpendLast(Long ccmDatabricksSpendLast) { @@ -2167,6 +2208,7 @@ public Long getCcmDatabricksSpendLast() { public void setCcmDatabricksSpendLast(Long ccmDatabricksSpendLast) { this.ccmDatabricksSpendLast = ccmDatabricksSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_DATABRICKS_SPEND_LAST, ccmDatabricksSpendLast); } public UsageSummaryDate ccmElasticSpendLast(Long ccmElasticSpendLast) { @@ -2189,6 +2231,7 @@ public Long getCcmElasticSpendLast() { public void setCcmElasticSpendLast(Long ccmElasticSpendLast) { this.ccmElasticSpendLast = ccmElasticSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_ELASTIC_SPEND_LAST, ccmElasticSpendLast); } public UsageSummaryDate ccmFastlySpendLast(Long ccmFastlySpendLast) { @@ -2211,6 +2254,7 @@ public Long getCcmFastlySpendLast() { public void setCcmFastlySpendLast(Long ccmFastlySpendLast) { this.ccmFastlySpendLast = ccmFastlySpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_FASTLY_SPEND_LAST, ccmFastlySpendLast); } public UsageSummaryDate ccmGcpSpendLast(Long ccmGcpSpendLast) { @@ -2233,6 +2277,7 @@ public Long getCcmGcpSpendLast() { public void setCcmGcpSpendLast(Long ccmGcpSpendLast) { this.ccmGcpSpendLast = ccmGcpSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_GCP_SPEND_LAST, ccmGcpSpendLast); } public UsageSummaryDate ccmGithubSpendLast(Long ccmGithubSpendLast) { @@ -2255,6 +2300,7 @@ public Long getCcmGithubSpendLast() { public void setCcmGithubSpendLast(Long ccmGithubSpendLast) { this.ccmGithubSpendLast = ccmGithubSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_GITHUB_SPEND_LAST, ccmGithubSpendLast); } public UsageSummaryDate ccmMongodbSpendLast(Long ccmMongodbSpendLast) { @@ -2277,6 +2323,7 @@ public Long getCcmMongodbSpendLast() { public void setCcmMongodbSpendLast(Long ccmMongodbSpendLast) { this.ccmMongodbSpendLast = ccmMongodbSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_MONGODB_SPEND_LAST, ccmMongodbSpendLast); } public UsageSummaryDate ccmOciSpendLast(Long ccmOciSpendLast) { @@ -2299,6 +2346,7 @@ public Long getCcmOciSpendLast() { public void setCcmOciSpendLast(Long ccmOciSpendLast) { this.ccmOciSpendLast = ccmOciSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_OCI_SPEND_LAST, ccmOciSpendLast); } public UsageSummaryDate ccmOpenaiSpendLast(Long ccmOpenaiSpendLast) { @@ -2321,6 +2369,7 @@ public Long getCcmOpenaiSpendLast() { public void setCcmOpenaiSpendLast(Long ccmOpenaiSpendLast) { this.ccmOpenaiSpendLast = ccmOpenaiSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_OPENAI_SPEND_LAST, ccmOpenaiSpendLast); } public UsageSummaryDate ccmSnowflakeSpendLast(Long ccmSnowflakeSpendLast) { @@ -2343,6 +2392,7 @@ public Long getCcmSnowflakeSpendLast() { public void setCcmSnowflakeSpendLast(Long ccmSnowflakeSpendLast) { this.ccmSnowflakeSpendLast = ccmSnowflakeSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_SNOWFLAKE_SPEND_LAST, ccmSnowflakeSpendLast); } public UsageSummaryDate ccmSpendMonitoredEntLast(Long ccmSpendMonitoredEntLast) { @@ -2365,6 +2415,7 @@ public Long getCcmSpendMonitoredEntLast() { public void setCcmSpendMonitoredEntLast(Long ccmSpendMonitoredEntLast) { this.ccmSpendMonitoredEntLast = ccmSpendMonitoredEntLast; + putAdditionalProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST, ccmSpendMonitoredEntLast); } public UsageSummaryDate ccmSpendMonitoredProLast(Long ccmSpendMonitoredProLast) { @@ -2387,6 +2438,7 @@ public Long getCcmSpendMonitoredProLast() { public void setCcmSpendMonitoredProLast(Long ccmSpendMonitoredProLast) { this.ccmSpendMonitoredProLast = ccmSpendMonitoredProLast; + putAdditionalProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST, ccmSpendMonitoredProLast); } public UsageSummaryDate ccmTwilioSpendLast(Long ccmTwilioSpendLast) { @@ -2409,6 +2461,7 @@ public Long getCcmTwilioSpendLast() { public void setCcmTwilioSpendLast(Long ccmTwilioSpendLast) { this.ccmTwilioSpendLast = ccmTwilioSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_TWILIO_SPEND_LAST, ccmTwilioSpendLast); } public UsageSummaryDate ciPipelineIndexedSpansSum(Long ciPipelineIndexedSpansSum) { @@ -2431,6 +2484,7 @@ public Long getCiPipelineIndexedSpansSum() { public void setCiPipelineIndexedSpansSum(Long ciPipelineIndexedSpansSum) { this.ciPipelineIndexedSpansSum = ciPipelineIndexedSpansSum; + putAdditionalProperty(JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_SUM, ciPipelineIndexedSpansSum); } public UsageSummaryDate ciTestIndexedSpansSum(Long ciTestIndexedSpansSum) { @@ -2453,6 +2507,7 @@ public Long getCiTestIndexedSpansSum() { public void setCiTestIndexedSpansSum(Long ciTestIndexedSpansSum) { this.ciTestIndexedSpansSum = ciTestIndexedSpansSum; + putAdditionalProperty(JSON_PROPERTY_CI_TEST_INDEXED_SPANS_SUM, ciTestIndexedSpansSum); } public UsageSummaryDate ciVisibilityItrCommittersHwm(Long ciVisibilityItrCommittersHwm) { @@ -2475,6 +2530,8 @@ public Long getCiVisibilityItrCommittersHwm() { public void setCiVisibilityItrCommittersHwm(Long ciVisibilityItrCommittersHwm) { this.ciVisibilityItrCommittersHwm = ciVisibilityItrCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM, ciVisibilityItrCommittersHwm); } public UsageSummaryDate ciVisibilityPipelineCommittersHwm( @@ -2498,6 +2555,8 @@ public Long getCiVisibilityPipelineCommittersHwm() { public void setCiVisibilityPipelineCommittersHwm(Long ciVisibilityPipelineCommittersHwm) { this.ciVisibilityPipelineCommittersHwm = ciVisibilityPipelineCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_PIPELINE_COMMITTERS_HWM, ciVisibilityPipelineCommittersHwm); } public UsageSummaryDate ciVisibilityTestCommittersHwm(Long ciVisibilityTestCommittersHwm) { @@ -2520,6 +2579,8 @@ public Long getCiVisibilityTestCommittersHwm() { public void setCiVisibilityTestCommittersHwm(Long ciVisibilityTestCommittersHwm) { this.ciVisibilityTestCommittersHwm = ciVisibilityTestCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_TEST_COMMITTERS_HWM, ciVisibilityTestCommittersHwm); } public UsageSummaryDate cloudCostManagementAwsHostCountAvg( @@ -2542,6 +2603,8 @@ public Long getCloudCostManagementAwsHostCountAvg() { public void setCloudCostManagementAwsHostCountAvg(Long cloudCostManagementAwsHostCountAvg) { this.cloudCostManagementAwsHostCountAvg = cloudCostManagementAwsHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AWS_HOST_COUNT_AVG, cloudCostManagementAwsHostCountAvg); } public UsageSummaryDate cloudCostManagementAzureHostCountAvg( @@ -2565,6 +2628,9 @@ public Long getCloudCostManagementAzureHostCountAvg() { public void setCloudCostManagementAzureHostCountAvg(Long cloudCostManagementAzureHostCountAvg) { this.cloudCostManagementAzureHostCountAvg = cloudCostManagementAzureHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AZURE_HOST_COUNT_AVG, + cloudCostManagementAzureHostCountAvg); } public UsageSummaryDate cloudCostManagementGcpHostCountAvg( @@ -2587,6 +2653,8 @@ public Long getCloudCostManagementGcpHostCountAvg() { public void setCloudCostManagementGcpHostCountAvg(Long cloudCostManagementGcpHostCountAvg) { this.cloudCostManagementGcpHostCountAvg = cloudCostManagementGcpHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_GCP_HOST_COUNT_AVG, cloudCostManagementGcpHostCountAvg); } public UsageSummaryDate cloudCostManagementHostCountAvg(Long cloudCostManagementHostCountAvg) { @@ -2609,6 +2677,8 @@ public Long getCloudCostManagementHostCountAvg() { public void setCloudCostManagementHostCountAvg(Long cloudCostManagementHostCountAvg) { this.cloudCostManagementHostCountAvg = cloudCostManagementHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_HOST_COUNT_AVG, cloudCostManagementHostCountAvg); } public UsageSummaryDate cloudCostManagementOciHostCountAvg( @@ -2631,6 +2701,8 @@ public Long getCloudCostManagementOciHostCountAvg() { public void setCloudCostManagementOciHostCountAvg(Long cloudCostManagementOciHostCountAvg) { this.cloudCostManagementOciHostCountAvg = cloudCostManagementOciHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_OCI_HOST_COUNT_AVG, cloudCostManagementOciHostCountAvg); } public UsageSummaryDate cloudSiemEventsSum(Long cloudSiemEventsSum) { @@ -2653,6 +2725,7 @@ public Long getCloudSiemEventsSum() { public void setCloudSiemEventsSum(Long cloudSiemEventsSum) { this.cloudSiemEventsSum = cloudSiemEventsSum; + putAdditionalProperty(JSON_PROPERTY_CLOUD_SIEM_EVENTS_SUM, cloudSiemEventsSum); } public UsageSummaryDate cloudSiemIndexedLogsSum(Long cloudSiemIndexedLogsSum) { @@ -2675,6 +2748,7 @@ public Long getCloudSiemIndexedLogsSum() { public void setCloudSiemIndexedLogsSum(Long cloudSiemIndexedLogsSum) { this.cloudSiemIndexedLogsSum = cloudSiemIndexedLogsSum; + putAdditionalProperty(JSON_PROPERTY_CLOUD_SIEM_INDEXED_LOGS_SUM, cloudSiemIndexedLogsSum); } public UsageSummaryDate codeAnalysisSaCommittersHwm(Long codeAnalysisSaCommittersHwm) { @@ -2697,6 +2771,8 @@ public Long getCodeAnalysisSaCommittersHwm() { public void setCodeAnalysisSaCommittersHwm(Long codeAnalysisSaCommittersHwm) { this.codeAnalysisSaCommittersHwm = codeAnalysisSaCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CODE_ANALYSIS_SA_COMMITTERS_HWM, codeAnalysisSaCommittersHwm); } public UsageSummaryDate codeAnalysisScaCommittersHwm(Long codeAnalysisScaCommittersHwm) { @@ -2719,6 +2795,8 @@ public Long getCodeAnalysisScaCommittersHwm() { public void setCodeAnalysisScaCommittersHwm(Long codeAnalysisScaCommittersHwm) { this.codeAnalysisScaCommittersHwm = codeAnalysisScaCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CODE_ANALYSIS_SCA_COMMITTERS_HWM, codeAnalysisScaCommittersHwm); } public UsageSummaryDate codeSecurityHostTop99p(Long codeSecurityHostTop99p) { @@ -2741,6 +2819,7 @@ public Long getCodeSecurityHostTop99p() { public void setCodeSecurityHostTop99p(Long codeSecurityHostTop99p) { this.codeSecurityHostTop99p = codeSecurityHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CODE_SECURITY_HOST_TOP99P, codeSecurityHostTop99p); } public UsageSummaryDate containerAvg(Long containerAvg) { @@ -2763,6 +2842,7 @@ public Long getContainerAvg() { public void setContainerAvg(Long containerAvg) { this.containerAvg = containerAvg; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_AVG, containerAvg); } public UsageSummaryDate containerExclAgentAvg(Long containerExclAgentAvg) { @@ -2785,6 +2865,7 @@ public Long getContainerExclAgentAvg() { public void setContainerExclAgentAvg(Long containerExclAgentAvg) { this.containerExclAgentAvg = containerExclAgentAvg; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_EXCL_AGENT_AVG, containerExclAgentAvg); } public UsageSummaryDate containerHwm(Long containerHwm) { @@ -2807,6 +2888,7 @@ public Long getContainerHwm() { public void setContainerHwm(Long containerHwm) { this.containerHwm = containerHwm; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_HWM, containerHwm); } public UsageSummaryDate csmContainerEnterpriseComplianceCountSum( @@ -2831,6 +2913,9 @@ public Long getCsmContainerEnterpriseComplianceCountSum() { public void setCsmContainerEnterpriseComplianceCountSum( Long csmContainerEnterpriseComplianceCountSum) { this.csmContainerEnterpriseComplianceCountSum = csmContainerEnterpriseComplianceCountSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_COMPLIANCE_COUNT_SUM, + csmContainerEnterpriseComplianceCountSum); } public UsageSummaryDate csmContainerEnterpriseCwsCountSum( @@ -2854,6 +2939,8 @@ public Long getCsmContainerEnterpriseCwsCountSum() { public void setCsmContainerEnterpriseCwsCountSum(Long csmContainerEnterpriseCwsCountSum) { this.csmContainerEnterpriseCwsCountSum = csmContainerEnterpriseCwsCountSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_CWS_COUNT_SUM, csmContainerEnterpriseCwsCountSum); } public UsageSummaryDate csmContainerEnterpriseTotalCountSum( @@ -2877,6 +2964,9 @@ public Long getCsmContainerEnterpriseTotalCountSum() { public void setCsmContainerEnterpriseTotalCountSum(Long csmContainerEnterpriseTotalCountSum) { this.csmContainerEnterpriseTotalCountSum = csmContainerEnterpriseTotalCountSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_TOTAL_COUNT_SUM, + csmContainerEnterpriseTotalCountSum); } public UsageSummaryDate csmHostEnterpriseAasHostCountTop99p( @@ -2900,6 +2990,9 @@ public Long getCsmHostEnterpriseAasHostCountTop99p() { public void setCsmHostEnterpriseAasHostCountTop99p(Long csmHostEnterpriseAasHostCountTop99p) { this.csmHostEnterpriseAasHostCountTop99p = csmHostEnterpriseAasHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AAS_HOST_COUNT_TOP99P, + csmHostEnterpriseAasHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseAwsHostCountTop99p( @@ -2923,6 +3016,9 @@ public Long getCsmHostEnterpriseAwsHostCountTop99p() { public void setCsmHostEnterpriseAwsHostCountTop99p(Long csmHostEnterpriseAwsHostCountTop99p) { this.csmHostEnterpriseAwsHostCountTop99p = csmHostEnterpriseAwsHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AWS_HOST_COUNT_TOP99P, + csmHostEnterpriseAwsHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseAzureHostCountTop99p( @@ -2946,6 +3042,9 @@ public Long getCsmHostEnterpriseAzureHostCountTop99p() { public void setCsmHostEnterpriseAzureHostCountTop99p(Long csmHostEnterpriseAzureHostCountTop99p) { this.csmHostEnterpriseAzureHostCountTop99p = csmHostEnterpriseAzureHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AZURE_HOST_COUNT_TOP99P, + csmHostEnterpriseAzureHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseComplianceHostCountTop99p( @@ -2970,6 +3069,9 @@ public Long getCsmHostEnterpriseComplianceHostCountTop99p() { public void setCsmHostEnterpriseComplianceHostCountTop99p( Long csmHostEnterpriseComplianceHostCountTop99p) { this.csmHostEnterpriseComplianceHostCountTop99p = csmHostEnterpriseComplianceHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_COMPLIANCE_HOST_COUNT_TOP99P, + csmHostEnterpriseComplianceHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseCwsHostCountTop99p( @@ -2993,6 +3095,9 @@ public Long getCsmHostEnterpriseCwsHostCountTop99p() { public void setCsmHostEnterpriseCwsHostCountTop99p(Long csmHostEnterpriseCwsHostCountTop99p) { this.csmHostEnterpriseCwsHostCountTop99p = csmHostEnterpriseCwsHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_CWS_HOST_COUNT_TOP99P, + csmHostEnterpriseCwsHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseGcpHostCountTop99p( @@ -3016,6 +3121,9 @@ public Long getCsmHostEnterpriseGcpHostCountTop99p() { public void setCsmHostEnterpriseGcpHostCountTop99p(Long csmHostEnterpriseGcpHostCountTop99p) { this.csmHostEnterpriseGcpHostCountTop99p = csmHostEnterpriseGcpHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_GCP_HOST_COUNT_TOP99P, + csmHostEnterpriseGcpHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseOciHostCountTop99p( @@ -3039,6 +3147,9 @@ public Long getCsmHostEnterpriseOciHostCountTop99p() { public void setCsmHostEnterpriseOciHostCountTop99p(Long csmHostEnterpriseOciHostCountTop99p) { this.csmHostEnterpriseOciHostCountTop99p = csmHostEnterpriseOciHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_OCI_HOST_COUNT_TOP99P, + csmHostEnterpriseOciHostCountTop99p); } public UsageSummaryDate csmHostEnterpriseTotalHostCountTop99p( @@ -3062,6 +3173,9 @@ public Long getCsmHostEnterpriseTotalHostCountTop99p() { public void setCsmHostEnterpriseTotalHostCountTop99p(Long csmHostEnterpriseTotalHostCountTop99p) { this.csmHostEnterpriseTotalHostCountTop99p = csmHostEnterpriseTotalHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_TOTAL_HOST_COUNT_TOP99P, + csmHostEnterpriseTotalHostCountTop99p); } public UsageSummaryDate csmHostProHostsAgentlessScannersSum( @@ -3085,6 +3199,9 @@ public Long getCsmHostProHostsAgentlessScannersSum() { public void setCsmHostProHostsAgentlessScannersSum(Long csmHostProHostsAgentlessScannersSum) { this.csmHostProHostsAgentlessScannersSum = csmHostProHostsAgentlessScannersSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_SUM, + csmHostProHostsAgentlessScannersSum); } public UsageSummaryDate csmHostProHostsAgentlessScannersTop99p( @@ -3109,6 +3226,9 @@ public Long getCsmHostProHostsAgentlessScannersTop99p() { public void setCsmHostProHostsAgentlessScannersTop99p( Long csmHostProHostsAgentlessScannersTop99p) { this.csmHostProHostsAgentlessScannersTop99p = csmHostProHostsAgentlessScannersTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_TOP99P, + csmHostProHostsAgentlessScannersTop99p); } public UsageSummaryDate csmHostProOciHostCountTop99p(Long csmHostProOciHostCountTop99p) { @@ -3131,6 +3251,8 @@ public Long getCsmHostProOciHostCountTop99p() { public void setCsmHostProOciHostCountTop99p(Long csmHostProOciHostCountTop99p) { this.csmHostProOciHostCountTop99p = csmHostProOciHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_OCI_HOST_COUNT_TOP99P, csmHostProOciHostCountTop99p); } public UsageSummaryDate cspmAasHostTop99p(Long cspmAasHostTop99p) { @@ -3153,6 +3275,7 @@ public Long getCspmAasHostTop99p() { public void setCspmAasHostTop99p(Long cspmAasHostTop99p) { this.cspmAasHostTop99p = cspmAasHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_AAS_HOST_TOP99P, cspmAasHostTop99p); } public UsageSummaryDate cspmAwsHostTop99p(Long cspmAwsHostTop99p) { @@ -3175,6 +3298,7 @@ public Long getCspmAwsHostTop99p() { public void setCspmAwsHostTop99p(Long cspmAwsHostTop99p) { this.cspmAwsHostTop99p = cspmAwsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_AWS_HOST_TOP99P, cspmAwsHostTop99p); } public UsageSummaryDate cspmAzureHostTop99p(Long cspmAzureHostTop99p) { @@ -3197,6 +3321,7 @@ public Long getCspmAzureHostTop99p() { public void setCspmAzureHostTop99p(Long cspmAzureHostTop99p) { this.cspmAzureHostTop99p = cspmAzureHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_AZURE_HOST_TOP99P, cspmAzureHostTop99p); } public UsageSummaryDate cspmContainerAvg(Long cspmContainerAvg) { @@ -3219,6 +3344,7 @@ public Long getCspmContainerAvg() { public void setCspmContainerAvg(Long cspmContainerAvg) { this.cspmContainerAvg = cspmContainerAvg; + putAdditionalProperty(JSON_PROPERTY_CSPM_CONTAINER_AVG, cspmContainerAvg); } public UsageSummaryDate cspmContainerHwm(Long cspmContainerHwm) { @@ -3241,6 +3367,7 @@ public Long getCspmContainerHwm() { public void setCspmContainerHwm(Long cspmContainerHwm) { this.cspmContainerHwm = cspmContainerHwm; + putAdditionalProperty(JSON_PROPERTY_CSPM_CONTAINER_HWM, cspmContainerHwm); } public UsageSummaryDate cspmGcpHostTop99p(Long cspmGcpHostTop99p) { @@ -3263,6 +3390,7 @@ public Long getCspmGcpHostTop99p() { public void setCspmGcpHostTop99p(Long cspmGcpHostTop99p) { this.cspmGcpHostTop99p = cspmGcpHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_GCP_HOST_TOP99P, cspmGcpHostTop99p); } public UsageSummaryDate cspmHostTop99p(Long cspmHostTop99p) { @@ -3285,6 +3413,7 @@ public Long getCspmHostTop99p() { public void setCspmHostTop99p(Long cspmHostTop99p) { this.cspmHostTop99p = cspmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_HOST_TOP99P, cspmHostTop99p); } public UsageSummaryDate cspmHostsAgentlessScannersSum(Long cspmHostsAgentlessScannersSum) { @@ -3307,6 +3436,8 @@ public Long getCspmHostsAgentlessScannersSum() { public void setCspmHostsAgentlessScannersSum(Long cspmHostsAgentlessScannersSum) { this.cspmHostsAgentlessScannersSum = cspmHostsAgentlessScannersSum; + putAdditionalProperty( + JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_SUM, cspmHostsAgentlessScannersSum); } public UsageSummaryDate cspmHostsAgentlessScannersTop99p(Long cspmHostsAgentlessScannersTop99p) { @@ -3329,6 +3460,8 @@ public Long getCspmHostsAgentlessScannersTop99p() { public void setCspmHostsAgentlessScannersTop99p(Long cspmHostsAgentlessScannersTop99p) { this.cspmHostsAgentlessScannersTop99p = cspmHostsAgentlessScannersTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_TOP99P, cspmHostsAgentlessScannersTop99p); } public UsageSummaryDate customTsAvg(Long customTsAvg) { @@ -3351,6 +3484,7 @@ public Long getCustomTsAvg() { public void setCustomTsAvg(Long customTsAvg) { this.customTsAvg = customTsAvg; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_TS_AVG, customTsAvg); } public UsageSummaryDate cwsContainerCountAvg(Long cwsContainerCountAvg) { @@ -3373,6 +3507,7 @@ public Long getCwsContainerCountAvg() { public void setCwsContainerCountAvg(Long cwsContainerCountAvg) { this.cwsContainerCountAvg = cwsContainerCountAvg; + putAdditionalProperty(JSON_PROPERTY_CWS_CONTAINER_COUNT_AVG, cwsContainerCountAvg); } public UsageSummaryDate cwsFargateTaskAvg(Long cwsFargateTaskAvg) { @@ -3395,6 +3530,7 @@ public Long getCwsFargateTaskAvg() { public void setCwsFargateTaskAvg(Long cwsFargateTaskAvg) { this.cwsFargateTaskAvg = cwsFargateTaskAvg; + putAdditionalProperty(JSON_PROPERTY_CWS_FARGATE_TASK_AVG, cwsFargateTaskAvg); } public UsageSummaryDate cwsHostTop99p(Long cwsHostTop99p) { @@ -3417,6 +3553,7 @@ public Long getCwsHostTop99p() { public void setCwsHostTop99p(Long cwsHostTop99p) { this.cwsHostTop99p = cwsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CWS_HOST_TOP99P, cwsHostTop99p); } public UsageSummaryDate dataJobsMonitoringHostHrSum(Long dataJobsMonitoringHostHrSum) { @@ -3439,6 +3576,8 @@ public Long getDataJobsMonitoringHostHrSum() { public void setDataJobsMonitoringHostHrSum(Long dataJobsMonitoringHostHrSum) { this.dataJobsMonitoringHostHrSum = dataJobsMonitoringHostHrSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_JOBS_MONITORING_HOST_HR_SUM, dataJobsMonitoringHostHrSum); } public UsageSummaryDate dataStreamMonitoringHostCountSum(Long dataStreamMonitoringHostCountSum) { @@ -3461,6 +3600,8 @@ public Long getDataStreamMonitoringHostCountSum() { public void setDataStreamMonitoringHostCountSum(Long dataStreamMonitoringHostCountSum) { this.dataStreamMonitoringHostCountSum = dataStreamMonitoringHostCountSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_STREAM_MONITORING_HOST_COUNT_SUM, dataStreamMonitoringHostCountSum); } public UsageSummaryDate dataStreamMonitoringHostCountTop99p( @@ -3484,6 +3625,9 @@ public Long getDataStreamMonitoringHostCountTop99p() { public void setDataStreamMonitoringHostCountTop99p(Long dataStreamMonitoringHostCountTop99p) { this.dataStreamMonitoringHostCountTop99p = dataStreamMonitoringHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_DATA_STREAM_MONITORING_HOST_COUNT_TOP99P, + dataStreamMonitoringHostCountTop99p); } public UsageSummaryDate date(OffsetDateTime date) { @@ -3505,6 +3649,7 @@ public OffsetDateTime getDate() { public void setDate(OffsetDateTime date) { this.date = date; + putAdditionalProperty(JSON_PROPERTY_DATE, date); } public UsageSummaryDate dbmHostTop99p(Long dbmHostTop99p) { @@ -3527,6 +3672,7 @@ public Long getDbmHostTop99p() { public void setDbmHostTop99p(Long dbmHostTop99p) { this.dbmHostTop99p = dbmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_DBM_HOST_TOP99P, dbmHostTop99p); } public UsageSummaryDate dbmQueriesCountAvg(Long dbmQueriesCountAvg) { @@ -3549,6 +3695,7 @@ public Long getDbmQueriesCountAvg() { public void setDbmQueriesCountAvg(Long dbmQueriesCountAvg) { this.dbmQueriesCountAvg = dbmQueriesCountAvg; + putAdditionalProperty(JSON_PROPERTY_DBM_QUERIES_COUNT_AVG, dbmQueriesCountAvg); } public UsageSummaryDate doJobsMonitoringOrchestratorsJobHoursSum( @@ -3573,6 +3720,9 @@ public Long getDoJobsMonitoringOrchestratorsJobHoursSum() { public void setDoJobsMonitoringOrchestratorsJobHoursSum( Long doJobsMonitoringOrchestratorsJobHoursSum) { this.doJobsMonitoringOrchestratorsJobHoursSum = doJobsMonitoringOrchestratorsJobHoursSum; + putAdditionalProperty( + JSON_PROPERTY_DO_JOBS_MONITORING_ORCHESTRATORS_JOB_HOURS_SUM, + doJobsMonitoringOrchestratorsJobHoursSum); } public UsageSummaryDate ephInfraHostAgentSum(Long ephInfraHostAgentSum) { @@ -3595,6 +3745,7 @@ public Long getEphInfraHostAgentSum() { public void setEphInfraHostAgentSum(Long ephInfraHostAgentSum) { this.ephInfraHostAgentSum = ephInfraHostAgentSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AGENT_SUM, ephInfraHostAgentSum); } public UsageSummaryDate ephInfraHostAlibabaSum(Long ephInfraHostAlibabaSum) { @@ -3617,6 +3768,7 @@ public Long getEphInfraHostAlibabaSum() { public void setEphInfraHostAlibabaSum(Long ephInfraHostAlibabaSum) { this.ephInfraHostAlibabaSum = ephInfraHostAlibabaSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ALIBABA_SUM, ephInfraHostAlibabaSum); } public UsageSummaryDate ephInfraHostAwsSum(Long ephInfraHostAwsSum) { @@ -3639,6 +3791,7 @@ public Long getEphInfraHostAwsSum() { public void setEphInfraHostAwsSum(Long ephInfraHostAwsSum) { this.ephInfraHostAwsSum = ephInfraHostAwsSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AWS_SUM, ephInfraHostAwsSum); } public UsageSummaryDate ephInfraHostAzureSum(Long ephInfraHostAzureSum) { @@ -3661,6 +3814,7 @@ public Long getEphInfraHostAzureSum() { public void setEphInfraHostAzureSum(Long ephInfraHostAzureSum) { this.ephInfraHostAzureSum = ephInfraHostAzureSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AZURE_SUM, ephInfraHostAzureSum); } public UsageSummaryDate ephInfraHostBasicInfraBasicAgentSum( @@ -3684,6 +3838,9 @@ public Long getEphInfraHostBasicInfraBasicAgentSum() { public void setEphInfraHostBasicInfraBasicAgentSum(Long ephInfraHostBasicInfraBasicAgentSum) { this.ephInfraHostBasicInfraBasicAgentSum = ephInfraHostBasicInfraBasicAgentSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_BASIC_INFRA_BASIC_AGENT_SUM, + ephInfraHostBasicInfraBasicAgentSum); } public UsageSummaryDate ephInfraHostBasicInfraBasicVsphereSum( @@ -3707,6 +3864,9 @@ public Long getEphInfraHostBasicInfraBasicVsphereSum() { public void setEphInfraHostBasicInfraBasicVsphereSum(Long ephInfraHostBasicInfraBasicVsphereSum) { this.ephInfraHostBasicInfraBasicVsphereSum = ephInfraHostBasicInfraBasicVsphereSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_SUM, + ephInfraHostBasicInfraBasicVsphereSum); } public UsageSummaryDate ephInfraHostBasicSum(Long ephInfraHostBasicSum) { @@ -3729,6 +3889,7 @@ public Long getEphInfraHostBasicSum() { public void setEphInfraHostBasicSum(Long ephInfraHostBasicSum) { this.ephInfraHostBasicSum = ephInfraHostBasicSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_BASIC_SUM, ephInfraHostBasicSum); } public UsageSummaryDate ephInfraHostEntSum(Long ephInfraHostEntSum) { @@ -3751,6 +3912,7 @@ public Long getEphInfraHostEntSum() { public void setEphInfraHostEntSum(Long ephInfraHostEntSum) { this.ephInfraHostEntSum = ephInfraHostEntSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ENT_SUM, ephInfraHostEntSum); } public UsageSummaryDate ephInfraHostGcpSum(Long ephInfraHostGcpSum) { @@ -3773,6 +3935,7 @@ public Long getEphInfraHostGcpSum() { public void setEphInfraHostGcpSum(Long ephInfraHostGcpSum) { this.ephInfraHostGcpSum = ephInfraHostGcpSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_GCP_SUM, ephInfraHostGcpSum); } public UsageSummaryDate ephInfraHostHerokuSum(Long ephInfraHostHerokuSum) { @@ -3795,6 +3958,7 @@ public Long getEphInfraHostHerokuSum() { public void setEphInfraHostHerokuSum(Long ephInfraHostHerokuSum) { this.ephInfraHostHerokuSum = ephInfraHostHerokuSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_HEROKU_SUM, ephInfraHostHerokuSum); } public UsageSummaryDate ephInfraHostOnlyAasSum(Long ephInfraHostOnlyAasSum) { @@ -3817,6 +3981,7 @@ public Long getEphInfraHostOnlyAasSum() { public void setEphInfraHostOnlyAasSum(Long ephInfraHostOnlyAasSum) { this.ephInfraHostOnlyAasSum = ephInfraHostOnlyAasSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ONLY_AAS_SUM, ephInfraHostOnlyAasSum); } public UsageSummaryDate ephInfraHostOnlyVsphereSum(Long ephInfraHostOnlyVsphereSum) { @@ -3839,6 +4004,8 @@ public Long getEphInfraHostOnlyVsphereSum() { public void setEphInfraHostOnlyVsphereSum(Long ephInfraHostOnlyVsphereSum) { this.ephInfraHostOnlyVsphereSum = ephInfraHostOnlyVsphereSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_ONLY_VSPHERE_SUM, ephInfraHostOnlyVsphereSum); } public UsageSummaryDate ephInfraHostOpentelemetryApmSum(Long ephInfraHostOpentelemetryApmSum) { @@ -3861,6 +4028,8 @@ public Long getEphInfraHostOpentelemetryApmSum() { public void setEphInfraHostOpentelemetryApmSum(Long ephInfraHostOpentelemetryApmSum) { this.ephInfraHostOpentelemetryApmSum = ephInfraHostOpentelemetryApmSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_SUM, ephInfraHostOpentelemetryApmSum); } public UsageSummaryDate ephInfraHostOpentelemetrySum(Long ephInfraHostOpentelemetrySum) { @@ -3883,6 +4052,8 @@ public Long getEphInfraHostOpentelemetrySum() { public void setEphInfraHostOpentelemetrySum(Long ephInfraHostOpentelemetrySum) { this.ephInfraHostOpentelemetrySum = ephInfraHostOpentelemetrySum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_SUM, ephInfraHostOpentelemetrySum); } public UsageSummaryDate ephInfraHostProSum(Long ephInfraHostProSum) { @@ -3905,6 +4076,7 @@ public Long getEphInfraHostProSum() { public void setEphInfraHostProSum(Long ephInfraHostProSum) { this.ephInfraHostProSum = ephInfraHostProSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PRO_SUM, ephInfraHostProSum); } public UsageSummaryDate ephInfraHostProplusSum(Long ephInfraHostProplusSum) { @@ -3927,6 +4099,7 @@ public Long getEphInfraHostProplusSum() { public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) { this.ephInfraHostProplusSum = ephInfraHostProplusSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_SUM, ephInfraHostProplusSum); } public UsageSummaryDate ephInfraHostProxmoxSum(Long ephInfraHostProxmoxSum) { @@ -3949,6 +4122,7 @@ public Long getEphInfraHostProxmoxSum() { public void setEphInfraHostProxmoxSum(Long ephInfraHostProxmoxSum) { this.ephInfraHostProxmoxSum = ephInfraHostProxmoxSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PROXMOX_SUM, ephInfraHostProxmoxSum); } public UsageSummaryDate errorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) { @@ -3971,6 +4145,8 @@ public Long getErrorTrackingApmErrorEventsSum() { public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) { this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM, errorTrackingApmErrorEventsSum); } public UsageSummaryDate errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) { @@ -3993,6 +4169,8 @@ public Long getErrorTrackingErrorEventsSum() { public void setErrorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) { this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM, errorTrackingErrorEventsSum); } public UsageSummaryDate errorTrackingEventsSum(Long errorTrackingEventsSum) { @@ -4015,6 +4193,7 @@ public Long getErrorTrackingEventsSum() { public void setErrorTrackingEventsSum(Long errorTrackingEventsSum) { this.errorTrackingEventsSum = errorTrackingEventsSum; + putAdditionalProperty(JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM, errorTrackingEventsSum); } public UsageSummaryDate errorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSum) { @@ -4037,6 +4216,8 @@ public Long getErrorTrackingRumErrorEventsSum() { public void setErrorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSum) { this.errorTrackingRumErrorEventsSum = errorTrackingRumErrorEventsSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM, errorTrackingRumErrorEventsSum); } public UsageSummaryDate eventManagementCorrelationCorrelatedEventsSum( @@ -4063,6 +4244,9 @@ public void setEventManagementCorrelationCorrelatedEventsSum( Long eventManagementCorrelationCorrelatedEventsSum) { this.eventManagementCorrelationCorrelatedEventsSum = eventManagementCorrelationCorrelatedEventsSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_EVENTS_SUM, + eventManagementCorrelationCorrelatedEventsSum); } public UsageSummaryDate eventManagementCorrelationCorrelatedRelatedEventsSum( @@ -4089,6 +4273,9 @@ public void setEventManagementCorrelationCorrelatedRelatedEventsSum( Long eventManagementCorrelationCorrelatedRelatedEventsSum) { this.eventManagementCorrelationCorrelatedRelatedEventsSum = eventManagementCorrelationCorrelatedRelatedEventsSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_RELATED_EVENTS_SUM, + eventManagementCorrelationCorrelatedRelatedEventsSum); } public UsageSummaryDate eventManagementCorrelationSum(Long eventManagementCorrelationSum) { @@ -4111,6 +4298,8 @@ public Long getEventManagementCorrelationSum() { public void setEventManagementCorrelationSum(Long eventManagementCorrelationSum) { this.eventManagementCorrelationSum = eventManagementCorrelationSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_SUM, eventManagementCorrelationSum); } public UsageSummaryDate fargateContainerProfilerProfilingFargateAvg( @@ -4135,6 +4324,9 @@ public Long getFargateContainerProfilerProfilingFargateAvg() { public void setFargateContainerProfilerProfilingFargateAvg( Long fargateContainerProfilerProfilingFargateAvg) { this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg; + putAdditionalProperty( + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG, + fargateContainerProfilerProfilingFargateAvg); } public UsageSummaryDate fargateContainerProfilerProfilingFargateEksAvg( @@ -4161,6 +4353,9 @@ public void setFargateContainerProfilerProfilingFargateEksAvg( Long fargateContainerProfilerProfilingFargateEksAvg) { this.fargateContainerProfilerProfilingFargateEksAvg = fargateContainerProfilerProfilingFargateEksAvg; + putAdditionalProperty( + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG, + fargateContainerProfilerProfilingFargateEksAvg); } public UsageSummaryDate fargateTasksCountAvg(Long fargateTasksCountAvg) { @@ -4183,6 +4378,7 @@ public Long getFargateTasksCountAvg() { public void setFargateTasksCountAvg(Long fargateTasksCountAvg) { this.fargateTasksCountAvg = fargateTasksCountAvg; + putAdditionalProperty(JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG, fargateTasksCountAvg); } public UsageSummaryDate fargateTasksCountHwm(Long fargateTasksCountHwm) { @@ -4205,6 +4401,7 @@ public Long getFargateTasksCountHwm() { public void setFargateTasksCountHwm(Long fargateTasksCountHwm) { this.fargateTasksCountHwm = fargateTasksCountHwm; + putAdditionalProperty(JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM, fargateTasksCountHwm); } public UsageSummaryDate featureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) { @@ -4227,6 +4424,8 @@ public Long getFeatureFlagsConfigRequestsSum() { public void setFeatureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) { this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum; + putAdditionalProperty( + JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM, featureFlagsConfigRequestsSum); } public UsageSummaryDate flexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) { @@ -4249,6 +4448,7 @@ public Long getFlexLogsComputeLargeAvg() { public void setFlexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) { this.flexLogsComputeLargeAvg = flexLogsComputeLargeAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG, flexLogsComputeLargeAvg); } public UsageSummaryDate flexLogsComputeMediumAvg(Long flexLogsComputeMediumAvg) { @@ -4271,6 +4471,7 @@ public Long getFlexLogsComputeMediumAvg() { public void setFlexLogsComputeMediumAvg(Long flexLogsComputeMediumAvg) { this.flexLogsComputeMediumAvg = flexLogsComputeMediumAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG, flexLogsComputeMediumAvg); } public UsageSummaryDate flexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) { @@ -4293,6 +4494,7 @@ public Long getFlexLogsComputeSmallAvg() { public void setFlexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) { this.flexLogsComputeSmallAvg = flexLogsComputeSmallAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG, flexLogsComputeSmallAvg); } public UsageSummaryDate flexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) { @@ -4315,6 +4517,7 @@ public Long getFlexLogsComputeXlargeAvg() { public void setFlexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) { this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG, flexLogsComputeXlargeAvg); } public UsageSummaryDate flexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) { @@ -4337,6 +4540,7 @@ public Long getFlexLogsComputeXsmallAvg() { public void setFlexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) { this.flexLogsComputeXsmallAvg = flexLogsComputeXsmallAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG, flexLogsComputeXsmallAvg); } public UsageSummaryDate flexLogsStarterAvg(Long flexLogsStarterAvg) { @@ -4359,6 +4563,7 @@ public Long getFlexLogsStarterAvg() { public void setFlexLogsStarterAvg(Long flexLogsStarterAvg) { this.flexLogsStarterAvg = flexLogsStarterAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_AVG, flexLogsStarterAvg); } public UsageSummaryDate flexLogsStarterStorageIndexAvg(Long flexLogsStarterStorageIndexAvg) { @@ -4381,6 +4586,8 @@ public Long getFlexLogsStarterStorageIndexAvg() { public void setFlexLogsStarterStorageIndexAvg(Long flexLogsStarterStorageIndexAvg) { this.flexLogsStarterStorageIndexAvg = flexLogsStarterStorageIndexAvg; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG, flexLogsStarterStorageIndexAvg); } public UsageSummaryDate flexLogsStarterStorageRetentionAdjustmentAvg( @@ -4407,6 +4614,9 @@ public void setFlexLogsStarterStorageRetentionAdjustmentAvg( Long flexLogsStarterStorageRetentionAdjustmentAvg) { this.flexLogsStarterStorageRetentionAdjustmentAvg = flexLogsStarterStorageRetentionAdjustmentAvg; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_RETENTION_ADJUSTMENT_AVG, + flexLogsStarterStorageRetentionAdjustmentAvg); } public UsageSummaryDate flexStoredLogsAvg(Long flexStoredLogsAvg) { @@ -4428,6 +4638,7 @@ public Long getFlexStoredLogsAvg() { public void setFlexStoredLogsAvg(Long flexStoredLogsAvg) { this.flexStoredLogsAvg = flexStoredLogsAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_STORED_LOGS_AVG, flexStoredLogsAvg); } public UsageSummaryDate forwardingEventsBytesSum(Long forwardingEventsBytesSum) { @@ -4450,6 +4661,7 @@ public Long getForwardingEventsBytesSum() { public void setForwardingEventsBytesSum(Long forwardingEventsBytesSum) { this.forwardingEventsBytesSum = forwardingEventsBytesSum; + putAdditionalProperty(JSON_PROPERTY_FORWARDING_EVENTS_BYTES_SUM, forwardingEventsBytesSum); } public UsageSummaryDate gcpHostTop99p(Long gcpHostTop99p) { @@ -4472,6 +4684,7 @@ public Long getGcpHostTop99p() { public void setGcpHostTop99p(Long gcpHostTop99p) { this.gcpHostTop99p = gcpHostTop99p; + putAdditionalProperty(JSON_PROPERTY_GCP_HOST_TOP99P, gcpHostTop99p); } public UsageSummaryDate herokuHostTop99p(Long herokuHostTop99p) { @@ -4494,6 +4707,7 @@ public Long getHerokuHostTop99p() { public void setHerokuHostTop99p(Long herokuHostTop99p) { this.herokuHostTop99p = herokuHostTop99p; + putAdditionalProperty(JSON_PROPERTY_HEROKU_HOST_TOP99P, herokuHostTop99p); } public UsageSummaryDate incidentManagementMonthlyActiveUsersHwm( @@ -4518,6 +4732,9 @@ public Long getIncidentManagementMonthlyActiveUsersHwm() { public void setIncidentManagementMonthlyActiveUsersHwm( Long incidentManagementMonthlyActiveUsersHwm) { this.incidentManagementMonthlyActiveUsersHwm = incidentManagementMonthlyActiveUsersHwm; + putAdditionalProperty( + JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM, + incidentManagementMonthlyActiveUsersHwm); } public UsageSummaryDate incidentManagementSeatsHwm(Long incidentManagementSeatsHwm) { @@ -4540,6 +4757,7 @@ public Long getIncidentManagementSeatsHwm() { public void setIncidentManagementSeatsHwm(Long incidentManagementSeatsHwm) { this.incidentManagementSeatsHwm = incidentManagementSeatsHwm; + putAdditionalProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM, incidentManagementSeatsHwm); } public UsageSummaryDate indexedEventsCountSum(Long indexedEventsCountSum) { @@ -4562,6 +4780,7 @@ public Long getIndexedEventsCountSum() { public void setIndexedEventsCountSum(Long indexedEventsCountSum) { this.indexedEventsCountSum = indexedEventsCountSum; + putAdditionalProperty(JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM, indexedEventsCountSum); } public UsageSummaryDate indexedPointsSum(Long indexedPointsSum) { @@ -4584,6 +4803,7 @@ public Long getIndexedPointsSum() { public void setIndexedPointsSum(Long indexedPointsSum) { this.indexedPointsSum = indexedPointsSum; + putAdditionalProperty(JSON_PROPERTY_INDEXED_POINTS_SUM, indexedPointsSum); } public UsageSummaryDate infraCpuAvg(Long infraCpuAvg) { @@ -4606,6 +4826,7 @@ public Long getInfraCpuAvg() { public void setInfraCpuAvg(Long infraCpuAvg) { this.infraCpuAvg = infraCpuAvg; + putAdditionalProperty(JSON_PROPERTY_INFRA_CPU_AVG, infraCpuAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAgentAvg( @@ -4630,6 +4851,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentAvg() { public void setInfraCpuDefaultInfraHostVcpuAgentAvg(Long infraCpuDefaultInfraHostVcpuAgentAvg) { this.infraCpuDefaultInfraHostVcpuAgentAvg = infraCpuDefaultInfraHostVcpuAgentAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_AVG, + infraCpuDefaultInfraHostVcpuAgentAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAgentBasicAvg( @@ -4655,6 +4879,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentBasicAvg() { public void setInfraCpuDefaultInfraHostVcpuAgentBasicAvg( Long infraCpuDefaultInfraHostVcpuAgentBasicAvg) { this.infraCpuDefaultInfraHostVcpuAgentBasicAvg = infraCpuDefaultInfraHostVcpuAgentBasicAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_BASIC_AVG, + infraCpuDefaultInfraHostVcpuAgentBasicAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAgentBasicSum( @@ -4680,6 +4907,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentBasicSum() { public void setInfraCpuDefaultInfraHostVcpuAgentBasicSum( Long infraCpuDefaultInfraHostVcpuAgentBasicSum) { this.infraCpuDefaultInfraHostVcpuAgentBasicSum = infraCpuDefaultInfraHostVcpuAgentBasicSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_BASIC_SUM, + infraCpuDefaultInfraHostVcpuAgentBasicSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAgentSum( @@ -4704,6 +4934,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentSum() { public void setInfraCpuDefaultInfraHostVcpuAgentSum(Long infraCpuDefaultInfraHostVcpuAgentSum) { this.infraCpuDefaultInfraHostVcpuAgentSum = infraCpuDefaultInfraHostVcpuAgentSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_SUM, + infraCpuDefaultInfraHostVcpuAgentSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAwsAvg( @@ -4728,6 +4961,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAwsAvg() { public void setInfraCpuDefaultInfraHostVcpuAwsAvg(Long infraCpuDefaultInfraHostVcpuAwsAvg) { this.infraCpuDefaultInfraHostVcpuAwsAvg = infraCpuDefaultInfraHostVcpuAwsAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AWS_AVG, + infraCpuDefaultInfraHostVcpuAwsAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAwsSum( @@ -4752,6 +4988,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAwsSum() { public void setInfraCpuDefaultInfraHostVcpuAwsSum(Long infraCpuDefaultInfraHostVcpuAwsSum) { this.infraCpuDefaultInfraHostVcpuAwsSum = infraCpuDefaultInfraHostVcpuAwsSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AWS_SUM, + infraCpuDefaultInfraHostVcpuAwsSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAzureAvg( @@ -4776,6 +5015,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAzureAvg() { public void setInfraCpuDefaultInfraHostVcpuAzureAvg(Long infraCpuDefaultInfraHostVcpuAzureAvg) { this.infraCpuDefaultInfraHostVcpuAzureAvg = infraCpuDefaultInfraHostVcpuAzureAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AZURE_AVG, + infraCpuDefaultInfraHostVcpuAzureAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuAzureSum( @@ -4800,6 +5042,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAzureSum() { public void setInfraCpuDefaultInfraHostVcpuAzureSum(Long infraCpuDefaultInfraHostVcpuAzureSum) { this.infraCpuDefaultInfraHostVcpuAzureSum = infraCpuDefaultInfraHostVcpuAzureSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AZURE_SUM, + infraCpuDefaultInfraHostVcpuAzureSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuGcpAvg( @@ -4824,6 +5069,9 @@ public Long getInfraCpuDefaultInfraHostVcpuGcpAvg() { public void setInfraCpuDefaultInfraHostVcpuGcpAvg(Long infraCpuDefaultInfraHostVcpuGcpAvg) { this.infraCpuDefaultInfraHostVcpuGcpAvg = infraCpuDefaultInfraHostVcpuGcpAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_GCP_AVG, + infraCpuDefaultInfraHostVcpuGcpAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuGcpSum( @@ -4848,6 +5096,9 @@ public Long getInfraCpuDefaultInfraHostVcpuGcpSum() { public void setInfraCpuDefaultInfraHostVcpuGcpSum(Long infraCpuDefaultInfraHostVcpuGcpSum) { this.infraCpuDefaultInfraHostVcpuGcpSum = infraCpuDefaultInfraHostVcpuGcpSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_GCP_SUM, + infraCpuDefaultInfraHostVcpuGcpSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuNutanixAvg( @@ -4873,6 +5124,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixAvg() { public void setInfraCpuDefaultInfraHostVcpuNutanixAvg( Long infraCpuDefaultInfraHostVcpuNutanixAvg) { this.infraCpuDefaultInfraHostVcpuNutanixAvg = infraCpuDefaultInfraHostVcpuNutanixAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_AVG, + infraCpuDefaultInfraHostVcpuNutanixAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuNutanixBasicAvg( @@ -4898,6 +5152,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixBasicAvg() { public void setInfraCpuDefaultInfraHostVcpuNutanixBasicAvg( Long infraCpuDefaultInfraHostVcpuNutanixBasicAvg) { this.infraCpuDefaultInfraHostVcpuNutanixBasicAvg = infraCpuDefaultInfraHostVcpuNutanixBasicAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_BASIC_AVG, + infraCpuDefaultInfraHostVcpuNutanixBasicAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuNutanixBasicSum( @@ -4923,6 +5180,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixBasicSum() { public void setInfraCpuDefaultInfraHostVcpuNutanixBasicSum( Long infraCpuDefaultInfraHostVcpuNutanixBasicSum) { this.infraCpuDefaultInfraHostVcpuNutanixBasicSum = infraCpuDefaultInfraHostVcpuNutanixBasicSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_BASIC_SUM, + infraCpuDefaultInfraHostVcpuNutanixBasicSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuNutanixSum( @@ -4948,6 +5208,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixSum() { public void setInfraCpuDefaultInfraHostVcpuNutanixSum( Long infraCpuDefaultInfraHostVcpuNutanixSum) { this.infraCpuDefaultInfraHostVcpuNutanixSum = infraCpuDefaultInfraHostVcpuNutanixSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_SUM, + infraCpuDefaultInfraHostVcpuNutanixSum); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuOpentelemetryAvg( @@ -4975,6 +5238,9 @@ public void setInfraCpuDefaultInfraHostVcpuOpentelemetryAvg( Long infraCpuDefaultInfraHostVcpuOpentelemetryAvg) { this.infraCpuDefaultInfraHostVcpuOpentelemetryAvg = infraCpuDefaultInfraHostVcpuOpentelemetryAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_OPENTELEMETRY_AVG, + infraCpuDefaultInfraHostVcpuOpentelemetryAvg); } public UsageSummaryDate infraCpuDefaultInfraHostVcpuOpentelemetrySum( @@ -5002,6 +5268,9 @@ public void setInfraCpuDefaultInfraHostVcpuOpentelemetrySum( Long infraCpuDefaultInfraHostVcpuOpentelemetrySum) { this.infraCpuDefaultInfraHostVcpuOpentelemetrySum = infraCpuDefaultInfraHostVcpuOpentelemetrySum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_OPENTELEMETRY_SUM, + infraCpuDefaultInfraHostVcpuOpentelemetrySum); } public UsageSummaryDate infraCpuObservedInfraHostVcpuAgentAvg( @@ -5026,6 +5295,9 @@ public Long getInfraCpuObservedInfraHostVcpuAgentAvg() { public void setInfraCpuObservedInfraHostVcpuAgentAvg(Long infraCpuObservedInfraHostVcpuAgentAvg) { this.infraCpuObservedInfraHostVcpuAgentAvg = infraCpuObservedInfraHostVcpuAgentAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AGENT_AVG, + infraCpuObservedInfraHostVcpuAgentAvg); } public UsageSummaryDate infraCpuObservedInfraHostVcpuAgentSum( @@ -5050,6 +5322,9 @@ public Long getInfraCpuObservedInfraHostVcpuAgentSum() { public void setInfraCpuObservedInfraHostVcpuAgentSum(Long infraCpuObservedInfraHostVcpuAgentSum) { this.infraCpuObservedInfraHostVcpuAgentSum = infraCpuObservedInfraHostVcpuAgentSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AGENT_SUM, + infraCpuObservedInfraHostVcpuAgentSum); } public UsageSummaryDate infraCpuObservedInfraHostVcpuAwsAvg( @@ -5074,6 +5349,9 @@ public Long getInfraCpuObservedInfraHostVcpuAwsAvg() { public void setInfraCpuObservedInfraHostVcpuAwsAvg(Long infraCpuObservedInfraHostVcpuAwsAvg) { this.infraCpuObservedInfraHostVcpuAwsAvg = infraCpuObservedInfraHostVcpuAwsAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AWS_AVG, + infraCpuObservedInfraHostVcpuAwsAvg); } public UsageSummaryDate infraCpuObservedInfraHostVcpuAwsSum( @@ -5098,6 +5376,9 @@ public Long getInfraCpuObservedInfraHostVcpuAwsSum() { public void setInfraCpuObservedInfraHostVcpuAwsSum(Long infraCpuObservedInfraHostVcpuAwsSum) { this.infraCpuObservedInfraHostVcpuAwsSum = infraCpuObservedInfraHostVcpuAwsSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AWS_SUM, + infraCpuObservedInfraHostVcpuAwsSum); } public UsageSummaryDate infraCpuObservedInfraHostVcpuAzureAvg( @@ -5122,6 +5403,9 @@ public Long getInfraCpuObservedInfraHostVcpuAzureAvg() { public void setInfraCpuObservedInfraHostVcpuAzureAvg(Long infraCpuObservedInfraHostVcpuAzureAvg) { this.infraCpuObservedInfraHostVcpuAzureAvg = infraCpuObservedInfraHostVcpuAzureAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AZURE_AVG, + infraCpuObservedInfraHostVcpuAzureAvg); } public UsageSummaryDate infraCpuObservedInfraHostVcpuAzureSum( @@ -5146,6 +5430,9 @@ public Long getInfraCpuObservedInfraHostVcpuAzureSum() { public void setInfraCpuObservedInfraHostVcpuAzureSum(Long infraCpuObservedInfraHostVcpuAzureSum) { this.infraCpuObservedInfraHostVcpuAzureSum = infraCpuObservedInfraHostVcpuAzureSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AZURE_SUM, + infraCpuObservedInfraHostVcpuAzureSum); } public UsageSummaryDate infraCpuObservedInfraHostVcpuGcpAvg( @@ -5170,6 +5457,9 @@ public Long getInfraCpuObservedInfraHostVcpuGcpAvg() { public void setInfraCpuObservedInfraHostVcpuGcpAvg(Long infraCpuObservedInfraHostVcpuGcpAvg) { this.infraCpuObservedInfraHostVcpuGcpAvg = infraCpuObservedInfraHostVcpuGcpAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_GCP_AVG, + infraCpuObservedInfraHostVcpuGcpAvg); } public UsageSummaryDate infraCpuObservedInfraHostVcpuGcpSum( @@ -5194,6 +5484,9 @@ public Long getInfraCpuObservedInfraHostVcpuGcpSum() { public void setInfraCpuObservedInfraHostVcpuGcpSum(Long infraCpuObservedInfraHostVcpuGcpSum) { this.infraCpuObservedInfraHostVcpuGcpSum = infraCpuObservedInfraHostVcpuGcpSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_GCP_SUM, + infraCpuObservedInfraHostVcpuGcpSum); } public UsageSummaryDate infraCpuObservedInfraHostVcpuNutanixAvg( @@ -5219,6 +5512,9 @@ public Long getInfraCpuObservedInfraHostVcpuNutanixAvg() { public void setInfraCpuObservedInfraHostVcpuNutanixAvg( Long infraCpuObservedInfraHostVcpuNutanixAvg) { this.infraCpuObservedInfraHostVcpuNutanixAvg = infraCpuObservedInfraHostVcpuNutanixAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_NUTANIX_AVG, + infraCpuObservedInfraHostVcpuNutanixAvg); } public UsageSummaryDate infraCpuObservedInfraHostVcpuNutanixSum( @@ -5244,6 +5540,9 @@ public Long getInfraCpuObservedInfraHostVcpuNutanixSum() { public void setInfraCpuObservedInfraHostVcpuNutanixSum( Long infraCpuObservedInfraHostVcpuNutanixSum) { this.infraCpuObservedInfraHostVcpuNutanixSum = infraCpuObservedInfraHostVcpuNutanixSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_NUTANIX_SUM, + infraCpuObservedInfraHostVcpuNutanixSum); } public UsageSummaryDate infraCpuObservedInfraHostVcpuOpentelemetryAvg( @@ -5271,6 +5570,9 @@ public void setInfraCpuObservedInfraHostVcpuOpentelemetryAvg( Long infraCpuObservedInfraHostVcpuOpentelemetryAvg) { this.infraCpuObservedInfraHostVcpuOpentelemetryAvg = infraCpuObservedInfraHostVcpuOpentelemetryAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_OPENTELEMETRY_AVG, + infraCpuObservedInfraHostVcpuOpentelemetryAvg); } public UsageSummaryDate infraCpuObservedInfraHostVcpuOpentelemetrySum( @@ -5298,6 +5600,9 @@ public void setInfraCpuObservedInfraHostVcpuOpentelemetrySum( Long infraCpuObservedInfraHostVcpuOpentelemetrySum) { this.infraCpuObservedInfraHostVcpuOpentelemetrySum = infraCpuObservedInfraHostVcpuOpentelemetrySum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_OPENTELEMETRY_SUM, + infraCpuObservedInfraHostVcpuOpentelemetrySum); } public UsageSummaryDate infraCpuSum(Long infraCpuSum) { @@ -5320,6 +5625,7 @@ public Long getInfraCpuSum() { public void setInfraCpuSum(Long infraCpuSum) { this.infraCpuSum = infraCpuSum; + putAdditionalProperty(JSON_PROPERTY_INFRA_CPU_SUM, infraCpuSum); } public UsageSummaryDate infraEdgeMonitoringDevicesTop99p(Long infraEdgeMonitoringDevicesTop99p) { @@ -5342,6 +5648,8 @@ public Long getInfraEdgeMonitoringDevicesTop99p() { public void setInfraEdgeMonitoringDevicesTop99p(Long infraEdgeMonitoringDevicesTop99p) { this.infraEdgeMonitoringDevicesTop99p = infraEdgeMonitoringDevicesTop99p; + putAdditionalProperty( + JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P, infraEdgeMonitoringDevicesTop99p); } public UsageSummaryDate infraHostBasicInfraBasicAgentTop99p( @@ -5365,6 +5673,9 @@ public Long getInfraHostBasicInfraBasicAgentTop99p() { public void setInfraHostBasicInfraBasicAgentTop99p(Long infraHostBasicInfraBasicAgentTop99p) { this.infraHostBasicInfraBasicAgentTop99p = infraHostBasicInfraBasicAgentTop99p; + putAdditionalProperty( + JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_AGENT_TOP99P, + infraHostBasicInfraBasicAgentTop99p); } public UsageSummaryDate infraHostBasicInfraBasicVsphereTop99p( @@ -5388,6 +5699,9 @@ public Long getInfraHostBasicInfraBasicVsphereTop99p() { public void setInfraHostBasicInfraBasicVsphereTop99p(Long infraHostBasicInfraBasicVsphereTop99p) { this.infraHostBasicInfraBasicVsphereTop99p = infraHostBasicInfraBasicVsphereTop99p; + putAdditionalProperty( + JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P, + infraHostBasicInfraBasicVsphereTop99p); } public UsageSummaryDate infraHostBasicTop99p(Long infraHostBasicTop99p) { @@ -5410,6 +5724,7 @@ public Long getInfraHostBasicTop99p() { public void setInfraHostBasicTop99p(Long infraHostBasicTop99p) { this.infraHostBasicTop99p = infraHostBasicTop99p; + putAdditionalProperty(JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P, infraHostBasicTop99p); } public UsageSummaryDate infraHostTop99p(Long infraHostTop99p) { @@ -5432,6 +5747,7 @@ public Long getInfraHostTop99p() { public void setInfraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; + putAdditionalProperty(JSON_PROPERTY_INFRA_HOST_TOP99P, infraHostTop99p); } public UsageSummaryDate infraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { @@ -5454,6 +5770,8 @@ public Long getInfraStorageMgmtObjectsCountAvg() { public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG, infraStorageMgmtObjectsCountAvg); } public UsageSummaryDate ingestPointsSum(Long ingestPointsSum) { @@ -5476,6 +5794,7 @@ public Long getIngestPointsSum() { public void setIngestPointsSum(Long ingestPointsSum) { this.ingestPointsSum = ingestPointsSum; + putAdditionalProperty(JSON_PROPERTY_INGEST_POINTS_SUM, ingestPointsSum); } public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) { @@ -5498,6 +5817,7 @@ public Long getIngestedEventsBytesSum() { public void setIngestedEventsBytesSum(Long ingestedEventsBytesSum) { this.ingestedEventsBytesSum = ingestedEventsBytesSum; + putAdditionalProperty(JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, ingestedEventsBytesSum); } public UsageSummaryDate iotApmHostSum(Long iotApmHostSum) { @@ -5520,6 +5840,7 @@ public Long getIotApmHostSum() { public void setIotApmHostSum(Long iotApmHostSum) { this.iotApmHostSum = iotApmHostSum; + putAdditionalProperty(JSON_PROPERTY_IOT_APM_HOST_SUM, iotApmHostSum); } public UsageSummaryDate iotApmHostTop99p(Long iotApmHostTop99p) { @@ -5542,6 +5863,7 @@ public Long getIotApmHostTop99p() { public void setIotApmHostTop99p(Long iotApmHostTop99p) { this.iotApmHostTop99p = iotApmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_IOT_APM_HOST_TOP99P, iotApmHostTop99p); } public UsageSummaryDate iotDeviceSum(Long iotDeviceSum) { @@ -5563,6 +5885,7 @@ public Long getIotDeviceSum() { public void setIotDeviceSum(Long iotDeviceSum) { this.iotDeviceSum = iotDeviceSum; + putAdditionalProperty(JSON_PROPERTY_IOT_DEVICE_SUM, iotDeviceSum); } public UsageSummaryDate iotDeviceTop99p(Long iotDeviceTop99p) { @@ -5585,6 +5908,7 @@ public Long getIotDeviceTop99p() { public void setIotDeviceTop99p(Long iotDeviceTop99p) { this.iotDeviceTop99p = iotDeviceTop99p; + putAdditionalProperty(JSON_PROPERTY_IOT_DEVICE_TOP99P, iotDeviceTop99p); } public UsageSummaryDate llmObservability15dayRetentionSpansSum( @@ -5609,6 +5933,9 @@ public Long getLlmObservability15dayRetentionSpansSum() { public void setLlmObservability15dayRetentionSpansSum( Long llmObservability15dayRetentionSpansSum) { this.llmObservability15dayRetentionSpansSum = llmObservability15dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_15DAY_RETENTION_SPANS_SUM, + llmObservability15dayRetentionSpansSum); } public UsageSummaryDate llmObservability30dayRetentionSpansSum( @@ -5633,6 +5960,9 @@ public Long getLlmObservability30dayRetentionSpansSum() { public void setLlmObservability30dayRetentionSpansSum( Long llmObservability30dayRetentionSpansSum) { this.llmObservability30dayRetentionSpansSum = llmObservability30dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_30DAY_RETENTION_SPANS_SUM, + llmObservability30dayRetentionSpansSum); } public UsageSummaryDate llmObservability60dayRetentionSpansSum( @@ -5657,6 +5987,9 @@ public Long getLlmObservability60dayRetentionSpansSum() { public void setLlmObservability60dayRetentionSpansSum( Long llmObservability60dayRetentionSpansSum) { this.llmObservability60dayRetentionSpansSum = llmObservability60dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_60DAY_RETENTION_SPANS_SUM, + llmObservability60dayRetentionSpansSum); } public UsageSummaryDate llmObservability90dayRetentionSpansSum( @@ -5681,6 +6014,9 @@ public Long getLlmObservability90dayRetentionSpansSum() { public void setLlmObservability90dayRetentionSpansSum( Long llmObservability90dayRetentionSpansSum) { this.llmObservability90dayRetentionSpansSum = llmObservability90dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_90DAY_RETENTION_SPANS_SUM, + llmObservability90dayRetentionSpansSum); } public UsageSummaryDate llmObservabilityMinSpendSum(Long llmObservabilityMinSpendSum) { @@ -5703,6 +6039,8 @@ public Long getLlmObservabilityMinSpendSum() { public void setLlmObservabilityMinSpendSum(Long llmObservabilityMinSpendSum) { this.llmObservabilityMinSpendSum = llmObservabilityMinSpendSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_MIN_SPEND_SUM, llmObservabilityMinSpendSum); } public UsageSummaryDate llmObservabilitySum(Long llmObservabilitySum) { @@ -5724,6 +6062,7 @@ public Long getLlmObservabilitySum() { public void setLlmObservabilitySum(Long llmObservabilitySum) { this.llmObservabilitySum = llmObservabilitySum; + putAdditionalProperty(JSON_PROPERTY_LLM_OBSERVABILITY_SUM, llmObservabilitySum); } public UsageSummaryDate logsArchiveSearchGbScannedSum(Long logsArchiveSearchGbScannedSum) { @@ -5746,6 +6085,8 @@ public Long getLogsArchiveSearchGbScannedSum() { public void setLogsArchiveSearchGbScannedSum(Long logsArchiveSearchGbScannedSum) { this.logsArchiveSearchGbScannedSum = logsArchiveSearchGbScannedSum; + putAdditionalProperty( + JSON_PROPERTY_LOGS_ARCHIVE_SEARCH_GB_SCANNED_SUM, logsArchiveSearchGbScannedSum); } public UsageSummaryDate metricNamesSum(Long metricNamesSum) { @@ -5768,6 +6109,7 @@ public Long getMetricNamesSum() { public void setMetricNamesSum(Long metricNamesSum) { this.metricNamesSum = metricNamesSum; + putAdditionalProperty(JSON_PROPERTY_METRIC_NAMES_SUM, metricNamesSum); } public UsageSummaryDate mobileRumLiteSessionCountSum(Long mobileRumLiteSessionCountSum) { @@ -5793,6 +6135,8 @@ public Long getMobileRumLiteSessionCountSum() { @Deprecated public void setMobileRumLiteSessionCountSum(Long mobileRumLiteSessionCountSum) { this.mobileRumLiteSessionCountSum = mobileRumLiteSessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_LITE_SESSION_COUNT_SUM, mobileRumLiteSessionCountSum); } public UsageSummaryDate mobileRumSessionCountAndroidSum(Long mobileRumSessionCountAndroidSum) { @@ -5818,6 +6162,8 @@ public Long getMobileRumSessionCountAndroidSum() { @Deprecated public void setMobileRumSessionCountAndroidSum(Long mobileRumSessionCountAndroidSum) { this.mobileRumSessionCountAndroidSum = mobileRumSessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ANDROID_SUM, mobileRumSessionCountAndroidSum); } public UsageSummaryDate mobileRumSessionCountFlutterSum(Long mobileRumSessionCountFlutterSum) { @@ -5843,6 +6189,8 @@ public Long getMobileRumSessionCountFlutterSum() { @Deprecated public void setMobileRumSessionCountFlutterSum(Long mobileRumSessionCountFlutterSum) { this.mobileRumSessionCountFlutterSum = mobileRumSessionCountFlutterSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_FLUTTER_SUM, mobileRumSessionCountFlutterSum); } public UsageSummaryDate mobileRumSessionCountIosSum(Long mobileRumSessionCountIosSum) { @@ -5868,6 +6216,8 @@ public Long getMobileRumSessionCountIosSum() { @Deprecated public void setMobileRumSessionCountIosSum(Long mobileRumSessionCountIosSum) { this.mobileRumSessionCountIosSum = mobileRumSessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_IOS_SUM, mobileRumSessionCountIosSum); } public UsageSummaryDate mobileRumSessionCountReactnativeSum( @@ -5894,6 +6244,9 @@ public Long getMobileRumSessionCountReactnativeSum() { @Deprecated public void setMobileRumSessionCountReactnativeSum(Long mobileRumSessionCountReactnativeSum) { this.mobileRumSessionCountReactnativeSum = mobileRumSessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_REACTNATIVE_SUM, + mobileRumSessionCountReactnativeSum); } public UsageSummaryDate mobileRumSessionCountRokuSum(Long mobileRumSessionCountRokuSum) { @@ -5919,6 +6272,8 @@ public Long getMobileRumSessionCountRokuSum() { @Deprecated public void setMobileRumSessionCountRokuSum(Long mobileRumSessionCountRokuSum) { this.mobileRumSessionCountRokuSum = mobileRumSessionCountRokuSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ROKU_SUM, mobileRumSessionCountRokuSum); } public UsageSummaryDate mobileRumSessionCountSum(Long mobileRumSessionCountSum) { @@ -5944,6 +6299,7 @@ public Long getMobileRumSessionCountSum() { @Deprecated public void setMobileRumSessionCountSum(Long mobileRumSessionCountSum) { this.mobileRumSessionCountSum = mobileRumSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_SUM, mobileRumSessionCountSum); } public UsageSummaryDate mobileRumUnitsSum(Long mobileRumUnitsSum) { @@ -5969,6 +6325,7 @@ public Long getMobileRumUnitsSum() { @Deprecated public void setMobileRumUnitsSum(Long mobileRumUnitsSum) { this.mobileRumUnitsSum = mobileRumUnitsSum; + putAdditionalProperty(JSON_PROPERTY_MOBILE_RUM_UNITS_SUM, mobileRumUnitsSum); } public UsageSummaryDate ndmNetflowEventsSum(Long ndmNetflowEventsSum) { @@ -5991,6 +6348,7 @@ public Long getNdmNetflowEventsSum() { public void setNdmNetflowEventsSum(Long ndmNetflowEventsSum) { this.ndmNetflowEventsSum = ndmNetflowEventsSum; + putAdditionalProperty(JSON_PROPERTY_NDM_NETFLOW_EVENTS_SUM, ndmNetflowEventsSum); } public UsageSummaryDate netflowIndexedEventsCountSum(Long netflowIndexedEventsCountSum) { @@ -6016,6 +6374,8 @@ public Long getNetflowIndexedEventsCountSum() { @Deprecated public void setNetflowIndexedEventsCountSum(Long netflowIndexedEventsCountSum) { this.netflowIndexedEventsCountSum = netflowIndexedEventsCountSum; + putAdditionalProperty( + JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_SUM, netflowIndexedEventsCountSum); } public UsageSummaryDate networkDeviceWirelessTop99p(Long networkDeviceWirelessTop99p) { @@ -6038,6 +6398,8 @@ public Long getNetworkDeviceWirelessTop99p() { public void setNetworkDeviceWirelessTop99p(Long networkDeviceWirelessTop99p) { this.networkDeviceWirelessTop99p = networkDeviceWirelessTop99p; + putAdditionalProperty( + JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P, networkDeviceWirelessTop99p); } public UsageSummaryDate networkPathSum(Long networkPathSum) { @@ -6060,6 +6422,7 @@ public Long getNetworkPathSum() { public void setNetworkPathSum(Long networkPathSum) { this.networkPathSum = networkPathSum; + putAdditionalProperty(JSON_PROPERTY_NETWORK_PATH_SUM, networkPathSum); } public UsageSummaryDate npmHostTop99p(Long npmHostTop99p) { @@ -6082,6 +6445,7 @@ public Long getNpmHostTop99p() { public void setNpmHostTop99p(Long npmHostTop99p) { this.npmHostTop99p = npmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_NPM_HOST_TOP99P, npmHostTop99p); } public UsageSummaryDate observabilityPipelinesBytesProcessedSum( @@ -6106,6 +6470,9 @@ public Long getObservabilityPipelinesBytesProcessedSum() { public void setObservabilityPipelinesBytesProcessedSum( Long observabilityPipelinesBytesProcessedSum) { this.observabilityPipelinesBytesProcessedSum = observabilityPipelinesBytesProcessedSum; + putAdditionalProperty( + JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM, + observabilityPipelinesBytesProcessedSum); } public UsageSummaryDate ociHostSum(Long ociHostSum) { @@ -6128,6 +6495,7 @@ public Long getOciHostSum() { public void setOciHostSum(Long ociHostSum) { this.ociHostSum = ociHostSum; + putAdditionalProperty(JSON_PROPERTY_OCI_HOST_SUM, ociHostSum); } public UsageSummaryDate ociHostTop99p(Long ociHostTop99p) { @@ -6150,6 +6518,7 @@ public Long getOciHostTop99p() { public void setOciHostTop99p(Long ociHostTop99p) { this.ociHostTop99p = ociHostTop99p; + putAdditionalProperty(JSON_PROPERTY_OCI_HOST_TOP99P, ociHostTop99p); } public UsageSummaryDate onCallSeatHwm(Long onCallSeatHwm) { @@ -6172,6 +6541,7 @@ public Long getOnCallSeatHwm() { public void setOnCallSeatHwm(Long onCallSeatHwm) { this.onCallSeatHwm = onCallSeatHwm; + putAdditionalProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM, onCallSeatHwm); } public UsageSummaryDate onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) { @@ -6193,6 +6563,8 @@ public Long getOnlineArchiveEventsCountSum() { public void setOnlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) { this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum; + putAdditionalProperty( + JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM, onlineArchiveEventsCountSum); } public UsageSummaryDate opentelemetryApmHostTop99p(Long opentelemetryApmHostTop99p) { @@ -6215,6 +6587,7 @@ public Long getOpentelemetryApmHostTop99p() { public void setOpentelemetryApmHostTop99p(Long opentelemetryApmHostTop99p) { this.opentelemetryApmHostTop99p = opentelemetryApmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P, opentelemetryApmHostTop99p); } public UsageSummaryDate opentelemetryHostTop99p(Long opentelemetryHostTop99p) { @@ -6237,6 +6610,7 @@ public Long getOpentelemetryHostTop99p() { public void setOpentelemetryHostTop99p(Long opentelemetryHostTop99p) { this.opentelemetryHostTop99p = opentelemetryHostTop99p; + putAdditionalProperty(JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P, opentelemetryHostTop99p); } public UsageSummaryDate orgs(List orgs) { @@ -6270,6 +6644,7 @@ public List getOrgs() { public void setOrgs(List orgs) { this.orgs = orgs; + putAdditionalProperty(JSON_PROPERTY_ORGS, orgs); } public UsageSummaryDate productAnalyticsSum(Long productAnalyticsSum) { @@ -6291,6 +6666,7 @@ public Long getProductAnalyticsSum() { public void setProductAnalyticsSum(Long productAnalyticsSum) { this.productAnalyticsSum = productAnalyticsSum; + putAdditionalProperty(JSON_PROPERTY_PRODUCT_ANALYTICS_SUM, productAnalyticsSum); } public UsageSummaryDate profilingAasCountTop99p(Long profilingAasCountTop99p) { @@ -6313,6 +6689,7 @@ public Long getProfilingAasCountTop99p() { public void setProfilingAasCountTop99p(Long profilingAasCountTop99p) { this.profilingAasCountTop99p = profilingAasCountTop99p; + putAdditionalProperty(JSON_PROPERTY_PROFILING_AAS_COUNT_TOP99P, profilingAasCountTop99p); } public UsageSummaryDate profilingHostTop99p(Long profilingHostTop99p) { @@ -6335,6 +6712,7 @@ public Long getProfilingHostTop99p() { public void setProfilingHostTop99p(Long profilingHostTop99p) { this.profilingHostTop99p = profilingHostTop99p; + putAdditionalProperty(JSON_PROPERTY_PROFILING_HOST_TOP99P, profilingHostTop99p); } public UsageSummaryDate proxmoxHostSum(Long proxmoxHostSum) { @@ -6356,6 +6734,7 @@ public Long getProxmoxHostSum() { public void setProxmoxHostSum(Long proxmoxHostSum) { this.proxmoxHostSum = proxmoxHostSum; + putAdditionalProperty(JSON_PROPERTY_PROXMOX_HOST_SUM, proxmoxHostSum); } public UsageSummaryDate proxmoxHostTop99p(Long proxmoxHostTop99p) { @@ -6377,6 +6756,7 @@ public Long getProxmoxHostTop99p() { public void setProxmoxHostTop99p(Long proxmoxHostTop99p) { this.proxmoxHostTop99p = proxmoxHostTop99p; + putAdditionalProperty(JSON_PROPERTY_PROXMOX_HOST_TOP99P, proxmoxHostTop99p); } public UsageSummaryDate publishedAppHwm(Long publishedAppHwm) { @@ -6399,6 +6779,7 @@ public Long getPublishedAppHwm() { public void setPublishedAppHwm(Long publishedAppHwm) { this.publishedAppHwm = publishedAppHwm; + putAdditionalProperty(JSON_PROPERTY_PUBLISHED_APP_HWM, publishedAppHwm); } public UsageSummaryDate rumBrowserAndMobileSessionCount(Long rumBrowserAndMobileSessionCount) { @@ -6421,6 +6802,8 @@ public Long getRumBrowserAndMobileSessionCount() { public void setRumBrowserAndMobileSessionCount(Long rumBrowserAndMobileSessionCount) { this.rumBrowserAndMobileSessionCount = rumBrowserAndMobileSessionCount; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_AND_MOBILE_SESSION_COUNT, rumBrowserAndMobileSessionCount); } public UsageSummaryDate rumBrowserLegacySessionCountSum(Long rumBrowserLegacySessionCountSum) { @@ -6443,6 +6826,8 @@ public Long getRumBrowserLegacySessionCountSum() { public void setRumBrowserLegacySessionCountSum(Long rumBrowserLegacySessionCountSum) { this.rumBrowserLegacySessionCountSum = rumBrowserLegacySessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_LEGACY_SESSION_COUNT_SUM, rumBrowserLegacySessionCountSum); } public UsageSummaryDate rumBrowserLiteSessionCountSum(Long rumBrowserLiteSessionCountSum) { @@ -6465,6 +6850,8 @@ public Long getRumBrowserLiteSessionCountSum() { public void setRumBrowserLiteSessionCountSum(Long rumBrowserLiteSessionCountSum) { this.rumBrowserLiteSessionCountSum = rumBrowserLiteSessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_LITE_SESSION_COUNT_SUM, rumBrowserLiteSessionCountSum); } public UsageSummaryDate rumBrowserReplaySessionCountSum(Long rumBrowserReplaySessionCountSum) { @@ -6487,6 +6874,8 @@ public Long getRumBrowserReplaySessionCountSum() { public void setRumBrowserReplaySessionCountSum(Long rumBrowserReplaySessionCountSum) { this.rumBrowserReplaySessionCountSum = rumBrowserReplaySessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_REPLAY_SESSION_COUNT_SUM, rumBrowserReplaySessionCountSum); } public UsageSummaryDate rumIndexedSessionsSum(Long rumIndexedSessionsSum) { @@ -6508,6 +6897,7 @@ public Long getRumIndexedSessionsSum() { public void setRumIndexedSessionsSum(Long rumIndexedSessionsSum) { this.rumIndexedSessionsSum = rumIndexedSessionsSum; + putAdditionalProperty(JSON_PROPERTY_RUM_INDEXED_SESSIONS_SUM, rumIndexedSessionsSum); } public UsageSummaryDate rumIngestedSessionsSum(Long rumIngestedSessionsSum) { @@ -6529,6 +6919,7 @@ public Long getRumIngestedSessionsSum() { public void setRumIngestedSessionsSum(Long rumIngestedSessionsSum) { this.rumIngestedSessionsSum = rumIngestedSessionsSum; + putAdditionalProperty(JSON_PROPERTY_RUM_INGESTED_SESSIONS_SUM, rumIngestedSessionsSum); } public UsageSummaryDate rumLiteSessionCountSum(Long rumLiteSessionCountSum) { @@ -6551,6 +6942,7 @@ public Long getRumLiteSessionCountSum() { public void setRumLiteSessionCountSum(Long rumLiteSessionCountSum) { this.rumLiteSessionCountSum = rumLiteSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_LITE_SESSION_COUNT_SUM, rumLiteSessionCountSum); } public UsageSummaryDate rumMobileLegacySessionCountAndroidSum( @@ -6574,6 +6966,9 @@ public Long getRumMobileLegacySessionCountAndroidSum() { public void setRumMobileLegacySessionCountAndroidSum(Long rumMobileLegacySessionCountAndroidSum) { this.rumMobileLegacySessionCountAndroidSum = rumMobileLegacySessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ANDROID_SUM, + rumMobileLegacySessionCountAndroidSum); } public UsageSummaryDate rumMobileLegacySessionCountFlutterSum( @@ -6597,6 +6992,9 @@ public Long getRumMobileLegacySessionCountFlutterSum() { public void setRumMobileLegacySessionCountFlutterSum(Long rumMobileLegacySessionCountFlutterSum) { this.rumMobileLegacySessionCountFlutterSum = rumMobileLegacySessionCountFlutterSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_FLUTTER_SUM, + rumMobileLegacySessionCountFlutterSum); } public UsageSummaryDate rumMobileLegacySessionCountIosSum( @@ -6620,6 +7018,8 @@ public Long getRumMobileLegacySessionCountIosSum() { public void setRumMobileLegacySessionCountIosSum(Long rumMobileLegacySessionCountIosSum) { this.rumMobileLegacySessionCountIosSum = rumMobileLegacySessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_IOS_SUM, rumMobileLegacySessionCountIosSum); } public UsageSummaryDate rumMobileLegacySessionCountReactnativeSum( @@ -6644,6 +7044,9 @@ public Long getRumMobileLegacySessionCountReactnativeSum() { public void setRumMobileLegacySessionCountReactnativeSum( Long rumMobileLegacySessionCountReactnativeSum) { this.rumMobileLegacySessionCountReactnativeSum = rumMobileLegacySessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_REACTNATIVE_SUM, + rumMobileLegacySessionCountReactnativeSum); } public UsageSummaryDate rumMobileLegacySessionCountRokuSum( @@ -6667,6 +7070,8 @@ public Long getRumMobileLegacySessionCountRokuSum() { public void setRumMobileLegacySessionCountRokuSum(Long rumMobileLegacySessionCountRokuSum) { this.rumMobileLegacySessionCountRokuSum = rumMobileLegacySessionCountRokuSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ROKU_SUM, rumMobileLegacySessionCountRokuSum); } public UsageSummaryDate rumMobileLiteSessionCountAndroidSum( @@ -6690,6 +7095,9 @@ public Long getRumMobileLiteSessionCountAndroidSum() { public void setRumMobileLiteSessionCountAndroidSum(Long rumMobileLiteSessionCountAndroidSum) { this.rumMobileLiteSessionCountAndroidSum = rumMobileLiteSessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ANDROID_SUM, + rumMobileLiteSessionCountAndroidSum); } public UsageSummaryDate rumMobileLiteSessionCountFlutterSum( @@ -6713,6 +7121,9 @@ public Long getRumMobileLiteSessionCountFlutterSum() { public void setRumMobileLiteSessionCountFlutterSum(Long rumMobileLiteSessionCountFlutterSum) { this.rumMobileLiteSessionCountFlutterSum = rumMobileLiteSessionCountFlutterSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_FLUTTER_SUM, + rumMobileLiteSessionCountFlutterSum); } public UsageSummaryDate rumMobileLiteSessionCountIosSum(Long rumMobileLiteSessionCountIosSum) { @@ -6735,6 +7146,8 @@ public Long getRumMobileLiteSessionCountIosSum() { public void setRumMobileLiteSessionCountIosSum(Long rumMobileLiteSessionCountIosSum) { this.rumMobileLiteSessionCountIosSum = rumMobileLiteSessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_IOS_SUM, rumMobileLiteSessionCountIosSum); } public UsageSummaryDate rumMobileLiteSessionCountKotlinmultiplatformSum( @@ -6761,6 +7174,9 @@ public void setRumMobileLiteSessionCountKotlinmultiplatformSum( Long rumMobileLiteSessionCountKotlinmultiplatformSum) { this.rumMobileLiteSessionCountKotlinmultiplatformSum = rumMobileLiteSessionCountKotlinmultiplatformSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_KOTLINMULTIPLATFORM_SUM, + rumMobileLiteSessionCountKotlinmultiplatformSum); } public UsageSummaryDate rumMobileLiteSessionCountReactnativeSum( @@ -6785,6 +7201,9 @@ public Long getRumMobileLiteSessionCountReactnativeSum() { public void setRumMobileLiteSessionCountReactnativeSum( Long rumMobileLiteSessionCountReactnativeSum) { this.rumMobileLiteSessionCountReactnativeSum = rumMobileLiteSessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_REACTNATIVE_SUM, + rumMobileLiteSessionCountReactnativeSum); } public UsageSummaryDate rumMobileLiteSessionCountRokuSum(Long rumMobileLiteSessionCountRokuSum) { @@ -6807,6 +7226,8 @@ public Long getRumMobileLiteSessionCountRokuSum() { public void setRumMobileLiteSessionCountRokuSum(Long rumMobileLiteSessionCountRokuSum) { this.rumMobileLiteSessionCountRokuSum = rumMobileLiteSessionCountRokuSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ROKU_SUM, rumMobileLiteSessionCountRokuSum); } public UsageSummaryDate rumMobileLiteSessionCountUnitySum( @@ -6830,6 +7251,8 @@ public Long getRumMobileLiteSessionCountUnitySum() { public void setRumMobileLiteSessionCountUnitySum(Long rumMobileLiteSessionCountUnitySum) { this.rumMobileLiteSessionCountUnitySum = rumMobileLiteSessionCountUnitySum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_UNITY_SUM, rumMobileLiteSessionCountUnitySum); } public UsageSummaryDate rumMobileReplaySessionCountAndroidSum( @@ -6853,6 +7276,9 @@ public Long getRumMobileReplaySessionCountAndroidSum() { public void setRumMobileReplaySessionCountAndroidSum(Long rumMobileReplaySessionCountAndroidSum) { this.rumMobileReplaySessionCountAndroidSum = rumMobileReplaySessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_SUM, + rumMobileReplaySessionCountAndroidSum); } public UsageSummaryDate rumMobileReplaySessionCountIosSum( @@ -6876,6 +7302,8 @@ public Long getRumMobileReplaySessionCountIosSum() { public void setRumMobileReplaySessionCountIosSum(Long rumMobileReplaySessionCountIosSum) { this.rumMobileReplaySessionCountIosSum = rumMobileReplaySessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_SUM, rumMobileReplaySessionCountIosSum); } public UsageSummaryDate rumMobileReplaySessionCountKotlinmultiplatformSum( @@ -6902,6 +7330,9 @@ public void setRumMobileReplaySessionCountKotlinmultiplatformSum( Long rumMobileReplaySessionCountKotlinmultiplatformSum) { this.rumMobileReplaySessionCountKotlinmultiplatformSum = rumMobileReplaySessionCountKotlinmultiplatformSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_KOTLINMULTIPLATFORM_SUM, + rumMobileReplaySessionCountKotlinmultiplatformSum); } public UsageSummaryDate rumMobileReplaySessionCountReactnativeSum( @@ -6926,6 +7357,9 @@ public Long getRumMobileReplaySessionCountReactnativeSum() { public void setRumMobileReplaySessionCountReactnativeSum( Long rumMobileReplaySessionCountReactnativeSum) { this.rumMobileReplaySessionCountReactnativeSum = rumMobileReplaySessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_SUM, + rumMobileReplaySessionCountReactnativeSum); } public UsageSummaryDate rumReplaySessionCountSum(Long rumReplaySessionCountSum) { @@ -6948,6 +7382,7 @@ public Long getRumReplaySessionCountSum() { public void setRumReplaySessionCountSum(Long rumReplaySessionCountSum) { this.rumReplaySessionCountSum = rumReplaySessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_SUM, rumReplaySessionCountSum); } public UsageSummaryDate rumSessionCountSum(Long rumSessionCountSum) { @@ -6973,6 +7408,7 @@ public Long getRumSessionCountSum() { @Deprecated public void setRumSessionCountSum(Long rumSessionCountSum) { this.rumSessionCountSum = rumSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_SESSION_COUNT_SUM, rumSessionCountSum); } public UsageSummaryDate rumSessionReplayAddOnSum(Long rumSessionReplayAddOnSum) { @@ -6995,6 +7431,7 @@ public Long getRumSessionReplayAddOnSum() { public void setRumSessionReplayAddOnSum(Long rumSessionReplayAddOnSum) { this.rumSessionReplayAddOnSum = rumSessionReplayAddOnSum; + putAdditionalProperty(JSON_PROPERTY_RUM_SESSION_REPLAY_ADD_ON_SUM, rumSessionReplayAddOnSum); } public UsageSummaryDate rumTotalSessionCountSum(Long rumTotalSessionCountSum) { @@ -7017,6 +7454,7 @@ public Long getRumTotalSessionCountSum() { public void setRumTotalSessionCountSum(Long rumTotalSessionCountSum) { this.rumTotalSessionCountSum = rumTotalSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_TOTAL_SESSION_COUNT_SUM, rumTotalSessionCountSum); } public UsageSummaryDate rumUnitsSum(Long rumUnitsSum) { @@ -7042,6 +7480,7 @@ public Long getRumUnitsSum() { @Deprecated public void setRumUnitsSum(Long rumUnitsSum) { this.rumUnitsSum = rumUnitsSum; + putAdditionalProperty(JSON_PROPERTY_RUM_UNITS_SUM, rumUnitsSum); } public UsageSummaryDate scaFargateCountAvg(Long scaFargateCountAvg) { @@ -7064,6 +7503,7 @@ public Long getScaFargateCountAvg() { public void setScaFargateCountAvg(Long scaFargateCountAvg) { this.scaFargateCountAvg = scaFargateCountAvg; + putAdditionalProperty(JSON_PROPERTY_SCA_FARGATE_COUNT_AVG, scaFargateCountAvg); } public UsageSummaryDate scaFargateCountHwm(Long scaFargateCountHwm) { @@ -7086,6 +7526,7 @@ public Long getScaFargateCountHwm() { public void setScaFargateCountHwm(Long scaFargateCountHwm) { this.scaFargateCountHwm = scaFargateCountHwm; + putAdditionalProperty(JSON_PROPERTY_SCA_FARGATE_COUNT_HWM, scaFargateCountHwm); } public UsageSummaryDate sdsApmScannedBytesSum(Long sdsApmScannedBytesSum) { @@ -7108,6 +7549,7 @@ public Long getSdsApmScannedBytesSum() { public void setSdsApmScannedBytesSum(Long sdsApmScannedBytesSum) { this.sdsApmScannedBytesSum = sdsApmScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_APM_SCANNED_BYTES_SUM, sdsApmScannedBytesSum); } public UsageSummaryDate sdsEventsScannedBytesSum(Long sdsEventsScannedBytesSum) { @@ -7130,6 +7572,7 @@ public Long getSdsEventsScannedBytesSum() { public void setSdsEventsScannedBytesSum(Long sdsEventsScannedBytesSum) { this.sdsEventsScannedBytesSum = sdsEventsScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_EVENTS_SCANNED_BYTES_SUM, sdsEventsScannedBytesSum); } public UsageSummaryDate sdsLogsScannedBytesSum(Long sdsLogsScannedBytesSum) { @@ -7152,6 +7595,7 @@ public Long getSdsLogsScannedBytesSum() { public void setSdsLogsScannedBytesSum(Long sdsLogsScannedBytesSum) { this.sdsLogsScannedBytesSum = sdsLogsScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_LOGS_SCANNED_BYTES_SUM, sdsLogsScannedBytesSum); } public UsageSummaryDate sdsRumScannedBytesSum(Long sdsRumScannedBytesSum) { @@ -7174,6 +7618,7 @@ public Long getSdsRumScannedBytesSum() { public void setSdsRumScannedBytesSum(Long sdsRumScannedBytesSum) { this.sdsRumScannedBytesSum = sdsRumScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_RUM_SCANNED_BYTES_SUM, sdsRumScannedBytesSum); } public UsageSummaryDate sdsTotalScannedBytesSum(Long sdsTotalScannedBytesSum) { @@ -7196,6 +7641,7 @@ public Long getSdsTotalScannedBytesSum() { public void setSdsTotalScannedBytesSum(Long sdsTotalScannedBytesSum) { this.sdsTotalScannedBytesSum = sdsTotalScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_TOTAL_SCANNED_BYTES_SUM, sdsTotalScannedBytesSum); } public UsageSummaryDate serverlessAppsApmApmAzureAppserviceInstancesAvg( @@ -7222,6 +7668,9 @@ public void setServerlessAppsApmApmAzureAppserviceInstancesAvg( Long serverlessAppsApmApmAzureAppserviceInstancesAvg) { this.serverlessAppsApmApmAzureAppserviceInstancesAvg = serverlessAppsApmApmAzureAppserviceInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_APPSERVICE_INSTANCES_AVG, + serverlessAppsApmApmAzureAppserviceInstancesAvg); } public UsageSummaryDate serverlessAppsApmApmAzureAzurefunctionInstancesAvg( @@ -7248,6 +7697,9 @@ public void setServerlessAppsApmApmAzureAzurefunctionInstancesAvg( Long serverlessAppsApmApmAzureAzurefunctionInstancesAvg) { this.serverlessAppsApmApmAzureAzurefunctionInstancesAvg = serverlessAppsApmApmAzureAzurefunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG, + serverlessAppsApmApmAzureAzurefunctionInstancesAvg); } public UsageSummaryDate serverlessAppsApmApmAzureContainerappInstancesAvg( @@ -7274,6 +7726,9 @@ public void setServerlessAppsApmApmAzureContainerappInstancesAvg( Long serverlessAppsApmApmAzureContainerappInstancesAvg) { this.serverlessAppsApmApmAzureContainerappInstancesAvg = serverlessAppsApmApmAzureContainerappInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_CONTAINERAPP_INSTANCES_AVG, + serverlessAppsApmApmAzureContainerappInstancesAvg); } public UsageSummaryDate serverlessAppsApmApmFargateEcsTasksAvg( @@ -7298,6 +7753,9 @@ public Long getServerlessAppsApmApmFargateEcsTasksAvg() { public void setServerlessAppsApmApmFargateEcsTasksAvg( Long serverlessAppsApmApmFargateEcsTasksAvg) { this.serverlessAppsApmApmFargateEcsTasksAvg = serverlessAppsApmApmFargateEcsTasksAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_FARGATE_ECS_TASKS_AVG, + serverlessAppsApmApmFargateEcsTasksAvg); } public UsageSummaryDate serverlessAppsApmApmGcpCloudfunctionInstancesAvg( @@ -7324,6 +7782,9 @@ public void setServerlessAppsApmApmGcpCloudfunctionInstancesAvg( Long serverlessAppsApmApmGcpCloudfunctionInstancesAvg) { this.serverlessAppsApmApmGcpCloudfunctionInstancesAvg = serverlessAppsApmApmGcpCloudfunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG, + serverlessAppsApmApmGcpCloudfunctionInstancesAvg); } public UsageSummaryDate serverlessAppsApmApmGcpCloudrunInstancesAvg( @@ -7348,6 +7809,9 @@ public Long getServerlessAppsApmApmGcpCloudrunInstancesAvg() { public void setServerlessAppsApmApmGcpCloudrunInstancesAvg( Long serverlessAppsApmApmGcpCloudrunInstancesAvg) { this.serverlessAppsApmApmGcpCloudrunInstancesAvg = serverlessAppsApmApmGcpCloudrunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDRUN_INSTANCES_AVG, + serverlessAppsApmApmGcpCloudrunInstancesAvg); } public UsageSummaryDate serverlessAppsApmApmGcpGkeAutopilotPodsAvg( @@ -7372,6 +7836,9 @@ public Long getServerlessAppsApmApmGcpGkeAutopilotPodsAvg() { public void setServerlessAppsApmApmGcpGkeAutopilotPodsAvg( Long serverlessAppsApmApmGcpGkeAutopilotPodsAvg) { this.serverlessAppsApmApmGcpGkeAutopilotPodsAvg = serverlessAppsApmApmGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsApmApmGcpGkeAutopilotPodsAvg); } public UsageSummaryDate serverlessAppsApmAvg(Long serverlessAppsApmAvg) { @@ -7394,6 +7861,7 @@ public Long getServerlessAppsApmAvg() { public void setServerlessAppsApmAvg(Long serverlessAppsApmAvg) { this.serverlessAppsApmAvg = serverlessAppsApmAvg; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_APM_AVG, serverlessAppsApmAvg); } public UsageSummaryDate serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg( @@ -7420,6 +7888,9 @@ public void setServerlessAppsApmExclFargateApmAzureAppserviceInstancesAvg( Long serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg) { this.serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg = serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_APPSERVICE_INSTANCES_AVG, + serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg); } public UsageSummaryDate serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg( @@ -7447,6 +7918,9 @@ public void setServerlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg( Long serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg) { this.serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg = serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG, + serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg); } public UsageSummaryDate serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg( @@ -7473,6 +7947,9 @@ public void setServerlessAppsApmExclFargateApmAzureContainerappInstancesAvg( Long serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg) { this.serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg = serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_CONTAINERAPP_INSTANCES_AVG, + serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg); } public UsageSummaryDate serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg( @@ -7500,6 +7977,9 @@ public void setServerlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg( Long serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg) { this.serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg = serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG, + serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg); } public UsageSummaryDate serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg( @@ -7527,6 +8007,9 @@ public void setServerlessAppsApmExclFargateApmGcpCloudrunInstancesAvg( Long serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg) { this.serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg = serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDRUN_INSTANCES_AVG, + serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg); } public UsageSummaryDate serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg( @@ -7553,6 +8036,9 @@ public void setServerlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg( Long serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg) { this.serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg = serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg); } public UsageSummaryDate serverlessAppsApmExclFargateAvg(Long serverlessAppsApmExclFargateAvg) { @@ -7575,6 +8061,8 @@ public Long getServerlessAppsApmExclFargateAvg() { public void setServerlessAppsApmExclFargateAvg(Long serverlessAppsApmExclFargateAvg) { this.serverlessAppsApmExclFargateAvg = serverlessAppsApmExclFargateAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_AVG, serverlessAppsApmExclFargateAvg); } public UsageSummaryDate serverlessAppsAzureContainerAppInstancesAvg( @@ -7599,6 +8087,9 @@ public Long getServerlessAppsAzureContainerAppInstancesAvg() { public void setServerlessAppsAzureContainerAppInstancesAvg( Long serverlessAppsAzureContainerAppInstancesAvg) { this.serverlessAppsAzureContainerAppInstancesAvg = serverlessAppsAzureContainerAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_CONTAINER_APP_INSTANCES_AVG, + serverlessAppsAzureContainerAppInstancesAvg); } public UsageSummaryDate serverlessAppsAzureCountAvg(Long serverlessAppsAzureCountAvg) { @@ -7620,6 +8111,8 @@ public Long getServerlessAppsAzureCountAvg() { public void setServerlessAppsAzureCountAvg(Long serverlessAppsAzureCountAvg) { this.serverlessAppsAzureCountAvg = serverlessAppsAzureCountAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_COUNT_AVG, serverlessAppsAzureCountAvg); } public UsageSummaryDate serverlessAppsAzureFunctionAppInstancesAvg( @@ -7644,6 +8137,9 @@ public Long getServerlessAppsAzureFunctionAppInstancesAvg() { public void setServerlessAppsAzureFunctionAppInstancesAvg( Long serverlessAppsAzureFunctionAppInstancesAvg) { this.serverlessAppsAzureFunctionAppInstancesAvg = serverlessAppsAzureFunctionAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_FUNCTION_APP_INSTANCES_AVG, + serverlessAppsAzureFunctionAppInstancesAvg); } public UsageSummaryDate serverlessAppsAzureWebAppInstancesAvg( @@ -7667,6 +8163,9 @@ public Long getServerlessAppsAzureWebAppInstancesAvg() { public void setServerlessAppsAzureWebAppInstancesAvg(Long serverlessAppsAzureWebAppInstancesAvg) { this.serverlessAppsAzureWebAppInstancesAvg = serverlessAppsAzureWebAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_WEB_APP_INSTANCES_AVG, + serverlessAppsAzureWebAppInstancesAvg); } public UsageSummaryDate serverlessAppsDsmFargateTasksAvg(Long serverlessAppsDsmFargateTasksAvg) { @@ -7689,6 +8188,8 @@ public Long getServerlessAppsDsmFargateTasksAvg() { public void setServerlessAppsDsmFargateTasksAvg(Long serverlessAppsDsmFargateTasksAvg) { this.serverlessAppsDsmFargateTasksAvg = serverlessAppsDsmFargateTasksAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_DSM_FARGATE_TASKS_AVG, serverlessAppsDsmFargateTasksAvg); } public UsageSummaryDate serverlessAppsEcsAvg(Long serverlessAppsEcsAvg) { @@ -7711,6 +8212,7 @@ public Long getServerlessAppsEcsAvg() { public void setServerlessAppsEcsAvg(Long serverlessAppsEcsAvg) { this.serverlessAppsEcsAvg = serverlessAppsEcsAvg; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_ECS_AVG, serverlessAppsEcsAvg); } public UsageSummaryDate serverlessAppsEksAvg(Long serverlessAppsEksAvg) { @@ -7733,6 +8235,7 @@ public Long getServerlessAppsEksAvg() { public void setServerlessAppsEksAvg(Long serverlessAppsEksAvg) { this.serverlessAppsEksAvg = serverlessAppsEksAvg; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_EKS_AVG, serverlessAppsEksAvg); } public UsageSummaryDate serverlessAppsExclFargateAvg(Long serverlessAppsExclFargateAvg) { @@ -7755,6 +8258,8 @@ public Long getServerlessAppsExclFargateAvg() { public void setServerlessAppsExclFargateAvg(Long serverlessAppsExclFargateAvg) { this.serverlessAppsExclFargateAvg = serverlessAppsExclFargateAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AVG, serverlessAppsExclFargateAvg); } public UsageSummaryDate serverlessAppsExclFargateAzureContainerAppInstancesAvg( @@ -7781,6 +8286,9 @@ public void setServerlessAppsExclFargateAzureContainerAppInstancesAvg( Long serverlessAppsExclFargateAzureContainerAppInstancesAvg) { this.serverlessAppsExclFargateAzureContainerAppInstancesAvg = serverlessAppsExclFargateAzureContainerAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_CONTAINER_APP_INSTANCES_AVG, + serverlessAppsExclFargateAzureContainerAppInstancesAvg); } public UsageSummaryDate serverlessAppsExclFargateAzureFunctionAppInstancesAvg( @@ -7807,6 +8315,9 @@ public void setServerlessAppsExclFargateAzureFunctionAppInstancesAvg( Long serverlessAppsExclFargateAzureFunctionAppInstancesAvg) { this.serverlessAppsExclFargateAzureFunctionAppInstancesAvg = serverlessAppsExclFargateAzureFunctionAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_FUNCTION_APP_INSTANCES_AVG, + serverlessAppsExclFargateAzureFunctionAppInstancesAvg); } public UsageSummaryDate serverlessAppsExclFargateAzureWebAppInstancesAvg( @@ -7833,6 +8344,9 @@ public void setServerlessAppsExclFargateAzureWebAppInstancesAvg( Long serverlessAppsExclFargateAzureWebAppInstancesAvg) { this.serverlessAppsExclFargateAzureWebAppInstancesAvg = serverlessAppsExclFargateAzureWebAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_WEB_APP_INSTANCES_AVG, + serverlessAppsExclFargateAzureWebAppInstancesAvg); } public UsageSummaryDate serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg( @@ -7859,6 +8373,9 @@ public void setServerlessAppsExclFargateGoogleCloudFunctionsInstancesAvg( Long serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg) { this.serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg = serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG, + serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg); } public UsageSummaryDate serverlessAppsExclFargateGoogleCloudRunInstancesAvg( @@ -7885,6 +8402,9 @@ public void setServerlessAppsExclFargateGoogleCloudRunInstancesAvg( Long serverlessAppsExclFargateGoogleCloudRunInstancesAvg) { this.serverlessAppsExclFargateGoogleCloudRunInstancesAvg = serverlessAppsExclFargateGoogleCloudRunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_RUN_INSTANCES_AVG, + serverlessAppsExclFargateGoogleCloudRunInstancesAvg); } public UsageSummaryDate serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg( @@ -7911,6 +8431,9 @@ public void setServerlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg( Long serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg) { this.serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg = serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg); } public UsageSummaryDate serverlessAppsGoogleCloudFunctionsInstancesAvg( @@ -7937,6 +8460,9 @@ public void setServerlessAppsGoogleCloudFunctionsInstancesAvg( Long serverlessAppsGoogleCloudFunctionsInstancesAvg) { this.serverlessAppsGoogleCloudFunctionsInstancesAvg = serverlessAppsGoogleCloudFunctionsInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG, + serverlessAppsGoogleCloudFunctionsInstancesAvg); } public UsageSummaryDate serverlessAppsGoogleCloudRunInstancesAvg( @@ -7961,6 +8487,9 @@ public Long getServerlessAppsGoogleCloudRunInstancesAvg() { public void setServerlessAppsGoogleCloudRunInstancesAvg( Long serverlessAppsGoogleCloudRunInstancesAvg) { this.serverlessAppsGoogleCloudRunInstancesAvg = serverlessAppsGoogleCloudRunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_RUN_INSTANCES_AVG, + serverlessAppsGoogleCloudRunInstancesAvg); } public UsageSummaryDate serverlessAppsGoogleCountAvg(Long serverlessAppsGoogleCountAvg) { @@ -7982,6 +8511,8 @@ public Long getServerlessAppsGoogleCountAvg() { public void setServerlessAppsGoogleCountAvg(Long serverlessAppsGoogleCountAvg) { this.serverlessAppsGoogleCountAvg = serverlessAppsGoogleCountAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_COUNT_AVG, serverlessAppsGoogleCountAvg); } public UsageSummaryDate serverlessAppsInfraGcpGkeAutopilotPodsAvg( @@ -8006,6 +8537,9 @@ public Long getServerlessAppsInfraGcpGkeAutopilotPodsAvg() { public void setServerlessAppsInfraGcpGkeAutopilotPodsAvg( Long serverlessAppsInfraGcpGkeAutopilotPodsAvg) { this.serverlessAppsInfraGcpGkeAutopilotPodsAvg = serverlessAppsInfraGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsInfraGcpGkeAutopilotPodsAvg); } public UsageSummaryDate serverlessAppsTotalCountAvg(Long serverlessAppsTotalCountAvg) { @@ -8028,6 +8562,8 @@ public Long getServerlessAppsTotalCountAvg() { public void setServerlessAppsTotalCountAvg(Long serverlessAppsTotalCountAvg) { this.serverlessAppsTotalCountAvg = serverlessAppsTotalCountAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG, serverlessAppsTotalCountAvg); } public UsageSummaryDate siem12moRetentionSum(Long siem12moRetentionSum) { @@ -8050,6 +8586,7 @@ public Long getSiem12moRetentionSum() { public void setSiem12moRetentionSum(Long siem12moRetentionSum) { this.siem12moRetentionSum = siem12moRetentionSum; + putAdditionalProperty(JSON_PROPERTY_SIEM_12MO_RETENTION_SUM, siem12moRetentionSum); } public UsageSummaryDate siem6moRetentionSum(Long siem6moRetentionSum) { @@ -8072,6 +8609,7 @@ public Long getSiem6moRetentionSum() { public void setSiem6moRetentionSum(Long siem6moRetentionSum) { this.siem6moRetentionSum = siem6moRetentionSum; + putAdditionalProperty(JSON_PROPERTY_SIEM_6MO_RETENTION_SUM, siem6moRetentionSum); } public UsageSummaryDate siemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) { @@ -8094,6 +8632,8 @@ public Long getSiemAnalyzedLogsAddOnCountSum() { public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) { this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum; + putAdditionalProperty( + JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM, siemAnalyzedLogsAddOnCountSum); } public UsageSummaryDate snmpDeviceCountSum(Long snmpDeviceCountSum) { @@ -8116,6 +8656,7 @@ public Long getSnmpDeviceCountSum() { public void setSnmpDeviceCountSum(Long snmpDeviceCountSum) { this.snmpDeviceCountSum = snmpDeviceCountSum; + putAdditionalProperty(JSON_PROPERTY_SNMP_DEVICE_COUNT_SUM, snmpDeviceCountSum); } public UsageSummaryDate snmpDeviceCountTop99p(Long snmpDeviceCountTop99p) { @@ -8138,6 +8679,7 @@ public Long getSnmpDeviceCountTop99p() { public void setSnmpDeviceCountTop99p(Long snmpDeviceCountTop99p) { this.snmpDeviceCountTop99p = snmpDeviceCountTop99p; + putAdditionalProperty(JSON_PROPERTY_SNMP_DEVICE_COUNT_TOP99P, snmpDeviceCountTop99p); } public UsageSummaryDate syntheticsBrowserCheckCallsCountSum( @@ -8161,6 +8703,9 @@ public Long getSyntheticsBrowserCheckCallsCountSum() { public void setSyntheticsBrowserCheckCallsCountSum(Long syntheticsBrowserCheckCallsCountSum) { this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM, + syntheticsBrowserCheckCallsCountSum); } public UsageSummaryDate syntheticsCheckCallsCountSum(Long syntheticsCheckCallsCountSum) { @@ -8183,6 +8728,8 @@ public Long getSyntheticsCheckCallsCountSum() { public void setSyntheticsCheckCallsCountSum(Long syntheticsCheckCallsCountSum) { this.syntheticsCheckCallsCountSum = syntheticsCheckCallsCountSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM, syntheticsCheckCallsCountSum); } public UsageSummaryDate syntheticsMobileTestRunsSum(Long syntheticsMobileTestRunsSum) { @@ -8205,6 +8752,8 @@ public Long getSyntheticsMobileTestRunsSum() { public void setSyntheticsMobileTestRunsSum(Long syntheticsMobileTestRunsSum) { this.syntheticsMobileTestRunsSum = syntheticsMobileTestRunsSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM, syntheticsMobileTestRunsSum); } public UsageSummaryDate syntheticsParallelTestingMaxSlotsHwm( @@ -8228,6 +8777,9 @@ public Long getSyntheticsParallelTestingMaxSlotsHwm() { public void setSyntheticsParallelTestingMaxSlotsHwm(Long syntheticsParallelTestingMaxSlotsHwm) { this.syntheticsParallelTestingMaxSlotsHwm = syntheticsParallelTestingMaxSlotsHwm; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_PARALLEL_TESTING_MAX_SLOTS_HWM, + syntheticsParallelTestingMaxSlotsHwm); } public UsageSummaryDate traceSearchIndexedEventsCountSum(Long traceSearchIndexedEventsCountSum) { @@ -8250,6 +8802,8 @@ public Long getTraceSearchIndexedEventsCountSum() { public void setTraceSearchIndexedEventsCountSum(Long traceSearchIndexedEventsCountSum) { this.traceSearchIndexedEventsCountSum = traceSearchIndexedEventsCountSum; + putAdditionalProperty( + JSON_PROPERTY_TRACE_SEARCH_INDEXED_EVENTS_COUNT_SUM, traceSearchIndexedEventsCountSum); } public UsageSummaryDate twolIngestedEventsBytesSum(Long twolIngestedEventsBytesSum) { @@ -8272,6 +8826,7 @@ public Long getTwolIngestedEventsBytesSum() { public void setTwolIngestedEventsBytesSum(Long twolIngestedEventsBytesSum) { this.twolIngestedEventsBytesSum = twolIngestedEventsBytesSum; + putAdditionalProperty(JSON_PROPERTY_TWOL_INGESTED_EVENTS_BYTES_SUM, twolIngestedEventsBytesSum); } public UsageSummaryDate universalServiceMonitoringHostTop99p( @@ -8295,6 +8850,9 @@ public Long getUniversalServiceMonitoringHostTop99p() { public void setUniversalServiceMonitoringHostTop99p(Long universalServiceMonitoringHostTop99p) { this.universalServiceMonitoringHostTop99p = universalServiceMonitoringHostTop99p; + putAdditionalProperty( + JSON_PROPERTY_UNIVERSAL_SERVICE_MONITORING_HOST_TOP99P, + universalServiceMonitoringHostTop99p); } public UsageSummaryDate vsphereHostTop99p(Long vsphereHostTop99p) { @@ -8317,6 +8875,7 @@ public Long getVsphereHostTop99p() { public void setVsphereHostTop99p(Long vsphereHostTop99p) { this.vsphereHostTop99p = vsphereHostTop99p; + putAdditionalProperty(JSON_PROPERTY_VSPHERE_HOST_TOP99P, vsphereHostTop99p); } public UsageSummaryDate vulnManagementHostCountTop99p(Long vulnManagementHostCountTop99p) { @@ -8339,6 +8898,8 @@ public Long getVulnManagementHostCountTop99p() { public void setVulnManagementHostCountTop99p(Long vulnManagementHostCountTop99p) { this.vulnManagementHostCountTop99p = vulnManagementHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_VULN_MANAGEMENT_HOST_COUNT_TOP99P, vulnManagementHostCountTop99p); } public UsageSummaryDate workflowExecutionsUsageSum(Long workflowExecutionsUsageSum) { @@ -8360,6 +8921,7 @@ public Long getWorkflowExecutionsUsageSum() { public void setWorkflowExecutionsUsageSum(Long workflowExecutionsUsageSum) { this.workflowExecutionsUsageSum = workflowExecutionsUsageSum; + putAdditionalProperty(JSON_PROPERTY_WORKFLOW_EXECUTIONS_USAGE_SUM, workflowExecutionsUsageSum); } /** diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java index adcf43d0aa1..a7ec1a1d356 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java @@ -1493,6 +1493,7 @@ public String getAccountName() { public void setAccountName(String accountName) { this.accountName = accountName; + putAdditionalProperty(JSON_PROPERTY_ACCOUNT_NAME, accountName); } public UsageSummaryDateOrg accountPublicId(String accountPublicId) { @@ -1514,6 +1515,7 @@ public String getAccountPublicId() { public void setAccountPublicId(String accountPublicId) { this.accountPublicId = accountPublicId; + putAdditionalProperty(JSON_PROPERTY_ACCOUNT_PUBLIC_ID, accountPublicId); } public UsageSummaryDateOrg agentHostTop99p(Long agentHostTop99p) { @@ -1536,6 +1538,7 @@ public Long getAgentHostTop99p() { public void setAgentHostTop99p(Long agentHostTop99p) { this.agentHostTop99p = agentHostTop99p; + putAdditionalProperty(JSON_PROPERTY_AGENT_HOST_TOP99P, agentHostTop99p); } public UsageSummaryDateOrg aiCreditsAgentBuilderAiCreditsSum( @@ -1559,6 +1562,8 @@ public Long getAiCreditsAgentBuilderAiCreditsSum() { public void setAiCreditsAgentBuilderAiCreditsSum(Long aiCreditsAgentBuilderAiCreditsSum) { this.aiCreditsAgentBuilderAiCreditsSum = aiCreditsAgentBuilderAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_AGENT_BUILDER_AI_CREDITS_SUM, aiCreditsAgentBuilderAiCreditsSum); } public UsageSummaryDateOrg aiCreditsBitsAssistantAiCreditsSum( @@ -1582,6 +1587,8 @@ public Long getAiCreditsBitsAssistantAiCreditsSum() { public void setAiCreditsBitsAssistantAiCreditsSum(Long aiCreditsBitsAssistantAiCreditsSum) { this.aiCreditsBitsAssistantAiCreditsSum = aiCreditsBitsAssistantAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_ASSISTANT_AI_CREDITS_SUM, aiCreditsBitsAssistantAiCreditsSum); } public UsageSummaryDateOrg aiCreditsBitsDevAiCreditsSum(Long aiCreditsBitsDevAiCreditsSum) { @@ -1604,6 +1611,8 @@ public Long getAiCreditsBitsDevAiCreditsSum() { public void setAiCreditsBitsDevAiCreditsSum(Long aiCreditsBitsDevAiCreditsSum) { this.aiCreditsBitsDevAiCreditsSum = aiCreditsBitsDevAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_DEV_AI_CREDITS_SUM, aiCreditsBitsDevAiCreditsSum); } public UsageSummaryDateOrg aiCreditsBitsSreAiCreditsSum(Long aiCreditsBitsSreAiCreditsSum) { @@ -1626,6 +1635,8 @@ public Long getAiCreditsBitsSreAiCreditsSum() { public void setAiCreditsBitsSreAiCreditsSum(Long aiCreditsBitsSreAiCreditsSum) { this.aiCreditsBitsSreAiCreditsSum = aiCreditsBitsSreAiCreditsSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_SRE_AI_CREDITS_SUM, aiCreditsBitsSreAiCreditsSum); } public UsageSummaryDateOrg aiCreditsSum(Long aiCreditsSum) { @@ -1648,6 +1659,7 @@ public Long getAiCreditsSum() { public void setAiCreditsSum(Long aiCreditsSum) { this.aiCreditsSum = aiCreditsSum; + putAdditionalProperty(JSON_PROPERTY_AI_CREDITS_SUM, aiCreditsSum); } public UsageSummaryDateOrg apmAzureAppServiceHostTop99p(Long apmAzureAppServiceHostTop99p) { @@ -1670,6 +1682,8 @@ public Long getApmAzureAppServiceHostTop99p() { public void setApmAzureAppServiceHostTop99p(Long apmAzureAppServiceHostTop99p) { this.apmAzureAppServiceHostTop99p = apmAzureAppServiceHostTop99p; + putAdditionalProperty( + JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P, apmAzureAppServiceHostTop99p); } public UsageSummaryDateOrg apmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) { @@ -1692,6 +1706,7 @@ public Long getApmDevsecopsHostTop99p() { public void setApmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) { this.apmDevsecopsHostTop99p = apmDevsecopsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P, apmDevsecopsHostTop99p); } public UsageSummaryDateOrg apmEnterpriseStandaloneHostsTop99p( @@ -1715,6 +1730,8 @@ public Long getApmEnterpriseStandaloneHostsTop99p() { public void setApmEnterpriseStandaloneHostsTop99p(Long apmEnterpriseStandaloneHostsTop99p) { this.apmEnterpriseStandaloneHostsTop99p = apmEnterpriseStandaloneHostsTop99p; + putAdditionalProperty( + JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P, apmEnterpriseStandaloneHostsTop99p); } public UsageSummaryDateOrg apmFargateCountAvg(Long apmFargateCountAvg) { @@ -1737,6 +1754,7 @@ public Long getApmFargateCountAvg() { public void setApmFargateCountAvg(Long apmFargateCountAvg) { this.apmFargateCountAvg = apmFargateCountAvg; + putAdditionalProperty(JSON_PROPERTY_APM_FARGATE_COUNT_AVG, apmFargateCountAvg); } public UsageSummaryDateOrg apmHostTop99p(Long apmHostTop99p) { @@ -1759,6 +1777,7 @@ public Long getApmHostTop99p() { public void setApmHostTop99p(Long apmHostTop99p) { this.apmHostTop99p = apmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_APM_HOST_TOP99P, apmHostTop99p); } public UsageSummaryDateOrg apmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) { @@ -1781,6 +1800,8 @@ public Long getApmProStandaloneHostsTop99p() { public void setApmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) { this.apmProStandaloneHostsTop99p = apmProStandaloneHostsTop99p; + putAdditionalProperty( + JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P, apmProStandaloneHostsTop99p); } public UsageSummaryDateOrg appsecFargateCountAvg(Long appsecFargateCountAvg) { @@ -1803,6 +1824,7 @@ public Long getAppsecFargateCountAvg() { public void setAppsecFargateCountAvg(Long appsecFargateCountAvg) { this.appsecFargateCountAvg = appsecFargateCountAvg; + putAdditionalProperty(JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG, appsecFargateCountAvg); } public UsageSummaryDateOrg asmServerlessSum(Long asmServerlessSum) { @@ -1825,6 +1847,7 @@ public Long getAsmServerlessSum() { public void setAsmServerlessSum(Long asmServerlessSum) { this.asmServerlessSum = asmServerlessSum; + putAdditionalProperty(JSON_PROPERTY_ASM_SERVERLESS_SUM, asmServerlessSum); } public UsageSummaryDateOrg auditLogsLinesIndexedSum(Long auditLogsLinesIndexedSum) { @@ -1850,6 +1873,7 @@ public Long getAuditLogsLinesIndexedSum() { @Deprecated public void setAuditLogsLinesIndexedSum(Long auditLogsLinesIndexedSum) { this.auditLogsLinesIndexedSum = auditLogsLinesIndexedSum; + putAdditionalProperty(JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_SUM, auditLogsLinesIndexedSum); } public UsageSummaryDateOrg auditTrailEnabledHwm(Long auditTrailEnabledHwm) { @@ -1871,6 +1895,7 @@ public Long getAuditTrailEnabledHwm() { public void setAuditTrailEnabledHwm(Long auditTrailEnabledHwm) { this.auditTrailEnabledHwm = auditTrailEnabledHwm; + putAdditionalProperty(JSON_PROPERTY_AUDIT_TRAIL_ENABLED_HWM, auditTrailEnabledHwm); } public UsageSummaryDateOrg auditTrailEventForwardingEventsSum( @@ -1894,6 +1919,8 @@ public Long getAuditTrailEventForwardingEventsSum() { public void setAuditTrailEventForwardingEventsSum(Long auditTrailEventForwardingEventsSum) { this.auditTrailEventForwardingEventsSum = auditTrailEventForwardingEventsSum; + putAdditionalProperty( + JSON_PROPERTY_AUDIT_TRAIL_EVENT_FORWARDING_EVENTS_SUM, auditTrailEventForwardingEventsSum); } public UsageSummaryDateOrg avgProfiledFargateTasks(Long avgProfiledFargateTasks) { @@ -1916,6 +1943,7 @@ public Long getAvgProfiledFargateTasks() { public void setAvgProfiledFargateTasks(Long avgProfiledFargateTasks) { this.avgProfiledFargateTasks = avgProfiledFargateTasks; + putAdditionalProperty(JSON_PROPERTY_AVG_PROFILED_FARGATE_TASKS, avgProfiledFargateTasks); } public UsageSummaryDateOrg awsHostTop99p(Long awsHostTop99p) { @@ -1938,6 +1966,7 @@ public Long getAwsHostTop99p() { public void setAwsHostTop99p(Long awsHostTop99p) { this.awsHostTop99p = awsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_AWS_HOST_TOP99P, awsHostTop99p); } public UsageSummaryDateOrg awsLambdaFuncCount(Long awsLambdaFuncCount) { @@ -1960,6 +1989,7 @@ public Long getAwsLambdaFuncCount() { public void setAwsLambdaFuncCount(Long awsLambdaFuncCount) { this.awsLambdaFuncCount = awsLambdaFuncCount; + putAdditionalProperty(JSON_PROPERTY_AWS_LAMBDA_FUNC_COUNT, awsLambdaFuncCount); } public UsageSummaryDateOrg awsLambdaInvocationsSum(Long awsLambdaInvocationsSum) { @@ -1982,6 +2012,7 @@ public Long getAwsLambdaInvocationsSum() { public void setAwsLambdaInvocationsSum(Long awsLambdaInvocationsSum) { this.awsLambdaInvocationsSum = awsLambdaInvocationsSum; + putAdditionalProperty(JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM, awsLambdaInvocationsSum); } public UsageSummaryDateOrg azureAppServiceTop99p(Long azureAppServiceTop99p) { @@ -2004,6 +2035,7 @@ public Long getAzureAppServiceTop99p() { public void setAzureAppServiceTop99p(Long azureAppServiceTop99p) { this.azureAppServiceTop99p = azureAppServiceTop99p; + putAdditionalProperty(JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P, azureAppServiceTop99p); } public UsageSummaryDateOrg billableIngestedBytesSum(Long billableIngestedBytesSum) { @@ -2025,6 +2057,7 @@ public Long getBillableIngestedBytesSum() { public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) { this.billableIngestedBytesSum = billableIngestedBytesSum; + putAdditionalProperty(JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM, billableIngestedBytesSum); } public UsageSummaryDateOrg bitsAiInvestigationsSum(Long bitsAiInvestigationsSum) { @@ -2047,6 +2080,7 @@ public Long getBitsAiInvestigationsSum() { public void setBitsAiInvestigationsSum(Long bitsAiInvestigationsSum) { this.bitsAiInvestigationsSum = bitsAiInvestigationsSum; + putAdditionalProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM, bitsAiInvestigationsSum); } public UsageSummaryDateOrg browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) { @@ -2072,6 +2106,8 @@ public Long getBrowserRumLiteSessionCountSum() { @Deprecated public void setBrowserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) { this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM, browserRumLiteSessionCountSum); } public UsageSummaryDateOrg browserRumReplaySessionCountSum(Long browserRumReplaySessionCountSum) { @@ -2094,6 +2130,8 @@ public Long getBrowserRumReplaySessionCountSum() { public void setBrowserRumReplaySessionCountSum(Long browserRumReplaySessionCountSum) { this.browserRumReplaySessionCountSum = browserRumReplaySessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM, browserRumReplaySessionCountSum); } public UsageSummaryDateOrg browserRumUnitsSum(Long browserRumUnitsSum) { @@ -2119,6 +2157,7 @@ public Long getBrowserRumUnitsSum() { @Deprecated public void setBrowserRumUnitsSum(Long browserRumUnitsSum) { this.browserRumUnitsSum = browserRumUnitsSum; + putAdditionalProperty(JSON_PROPERTY_BROWSER_RUM_UNITS_SUM, browserRumUnitsSum); } public UsageSummaryDateOrg ccmAnthropicSpendLast(Long ccmAnthropicSpendLast) { @@ -2141,6 +2180,7 @@ public Long getCcmAnthropicSpendLast() { public void setCcmAnthropicSpendLast(Long ccmAnthropicSpendLast) { this.ccmAnthropicSpendLast = ccmAnthropicSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_ANTHROPIC_SPEND_LAST, ccmAnthropicSpendLast); } public UsageSummaryDateOrg ccmAwsSpendLast(Long ccmAwsSpendLast) { @@ -2163,6 +2203,7 @@ public Long getCcmAwsSpendLast() { public void setCcmAwsSpendLast(Long ccmAwsSpendLast) { this.ccmAwsSpendLast = ccmAwsSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_AWS_SPEND_LAST, ccmAwsSpendLast); } public UsageSummaryDateOrg ccmAzureSpendLast(Long ccmAzureSpendLast) { @@ -2185,6 +2226,7 @@ public Long getCcmAzureSpendLast() { public void setCcmAzureSpendLast(Long ccmAzureSpendLast) { this.ccmAzureSpendLast = ccmAzureSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_AZURE_SPEND_LAST, ccmAzureSpendLast); } public UsageSummaryDateOrg ccmConfluentSpendLast(Long ccmConfluentSpendLast) { @@ -2207,6 +2249,7 @@ public Long getCcmConfluentSpendLast() { public void setCcmConfluentSpendLast(Long ccmConfluentSpendLast) { this.ccmConfluentSpendLast = ccmConfluentSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_CONFLUENT_SPEND_LAST, ccmConfluentSpendLast); } public UsageSummaryDateOrg ccmDatabricksSpendLast(Long ccmDatabricksSpendLast) { @@ -2229,6 +2272,7 @@ public Long getCcmDatabricksSpendLast() { public void setCcmDatabricksSpendLast(Long ccmDatabricksSpendLast) { this.ccmDatabricksSpendLast = ccmDatabricksSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_DATABRICKS_SPEND_LAST, ccmDatabricksSpendLast); } public UsageSummaryDateOrg ccmElasticSpendLast(Long ccmElasticSpendLast) { @@ -2251,6 +2295,7 @@ public Long getCcmElasticSpendLast() { public void setCcmElasticSpendLast(Long ccmElasticSpendLast) { this.ccmElasticSpendLast = ccmElasticSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_ELASTIC_SPEND_LAST, ccmElasticSpendLast); } public UsageSummaryDateOrg ccmFastlySpendLast(Long ccmFastlySpendLast) { @@ -2273,6 +2318,7 @@ public Long getCcmFastlySpendLast() { public void setCcmFastlySpendLast(Long ccmFastlySpendLast) { this.ccmFastlySpendLast = ccmFastlySpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_FASTLY_SPEND_LAST, ccmFastlySpendLast); } public UsageSummaryDateOrg ccmGcpSpendLast(Long ccmGcpSpendLast) { @@ -2295,6 +2341,7 @@ public Long getCcmGcpSpendLast() { public void setCcmGcpSpendLast(Long ccmGcpSpendLast) { this.ccmGcpSpendLast = ccmGcpSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_GCP_SPEND_LAST, ccmGcpSpendLast); } public UsageSummaryDateOrg ccmGithubSpendLast(Long ccmGithubSpendLast) { @@ -2317,6 +2364,7 @@ public Long getCcmGithubSpendLast() { public void setCcmGithubSpendLast(Long ccmGithubSpendLast) { this.ccmGithubSpendLast = ccmGithubSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_GITHUB_SPEND_LAST, ccmGithubSpendLast); } public UsageSummaryDateOrg ccmMongodbSpendLast(Long ccmMongodbSpendLast) { @@ -2339,6 +2387,7 @@ public Long getCcmMongodbSpendLast() { public void setCcmMongodbSpendLast(Long ccmMongodbSpendLast) { this.ccmMongodbSpendLast = ccmMongodbSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_MONGODB_SPEND_LAST, ccmMongodbSpendLast); } public UsageSummaryDateOrg ccmOciSpendLast(Long ccmOciSpendLast) { @@ -2361,6 +2410,7 @@ public Long getCcmOciSpendLast() { public void setCcmOciSpendLast(Long ccmOciSpendLast) { this.ccmOciSpendLast = ccmOciSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_OCI_SPEND_LAST, ccmOciSpendLast); } public UsageSummaryDateOrg ccmOpenaiSpendLast(Long ccmOpenaiSpendLast) { @@ -2383,6 +2433,7 @@ public Long getCcmOpenaiSpendLast() { public void setCcmOpenaiSpendLast(Long ccmOpenaiSpendLast) { this.ccmOpenaiSpendLast = ccmOpenaiSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_OPENAI_SPEND_LAST, ccmOpenaiSpendLast); } public UsageSummaryDateOrg ccmSnowflakeSpendLast(Long ccmSnowflakeSpendLast) { @@ -2405,6 +2456,7 @@ public Long getCcmSnowflakeSpendLast() { public void setCcmSnowflakeSpendLast(Long ccmSnowflakeSpendLast) { this.ccmSnowflakeSpendLast = ccmSnowflakeSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_SNOWFLAKE_SPEND_LAST, ccmSnowflakeSpendLast); } public UsageSummaryDateOrg ccmSpendMonitoredEntLast(Long ccmSpendMonitoredEntLast) { @@ -2427,6 +2479,7 @@ public Long getCcmSpendMonitoredEntLast() { public void setCcmSpendMonitoredEntLast(Long ccmSpendMonitoredEntLast) { this.ccmSpendMonitoredEntLast = ccmSpendMonitoredEntLast; + putAdditionalProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST, ccmSpendMonitoredEntLast); } public UsageSummaryDateOrg ccmSpendMonitoredProLast(Long ccmSpendMonitoredProLast) { @@ -2449,6 +2502,7 @@ public Long getCcmSpendMonitoredProLast() { public void setCcmSpendMonitoredProLast(Long ccmSpendMonitoredProLast) { this.ccmSpendMonitoredProLast = ccmSpendMonitoredProLast; + putAdditionalProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST, ccmSpendMonitoredProLast); } public UsageSummaryDateOrg ccmTwilioSpendLast(Long ccmTwilioSpendLast) { @@ -2471,6 +2525,7 @@ public Long getCcmTwilioSpendLast() { public void setCcmTwilioSpendLast(Long ccmTwilioSpendLast) { this.ccmTwilioSpendLast = ccmTwilioSpendLast; + putAdditionalProperty(JSON_PROPERTY_CCM_TWILIO_SPEND_LAST, ccmTwilioSpendLast); } public UsageSummaryDateOrg ciPipelineIndexedSpansSum(Long ciPipelineIndexedSpansSum) { @@ -2493,6 +2548,7 @@ public Long getCiPipelineIndexedSpansSum() { public void setCiPipelineIndexedSpansSum(Long ciPipelineIndexedSpansSum) { this.ciPipelineIndexedSpansSum = ciPipelineIndexedSpansSum; + putAdditionalProperty(JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_SUM, ciPipelineIndexedSpansSum); } public UsageSummaryDateOrg ciTestIndexedSpansSum(Long ciTestIndexedSpansSum) { @@ -2515,6 +2571,7 @@ public Long getCiTestIndexedSpansSum() { public void setCiTestIndexedSpansSum(Long ciTestIndexedSpansSum) { this.ciTestIndexedSpansSum = ciTestIndexedSpansSum; + putAdditionalProperty(JSON_PROPERTY_CI_TEST_INDEXED_SPANS_SUM, ciTestIndexedSpansSum); } public UsageSummaryDateOrg ciVisibilityItrCommittersHwm(Long ciVisibilityItrCommittersHwm) { @@ -2537,6 +2594,8 @@ public Long getCiVisibilityItrCommittersHwm() { public void setCiVisibilityItrCommittersHwm(Long ciVisibilityItrCommittersHwm) { this.ciVisibilityItrCommittersHwm = ciVisibilityItrCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM, ciVisibilityItrCommittersHwm); } public UsageSummaryDateOrg ciVisibilityPipelineCommittersHwm( @@ -2560,6 +2619,8 @@ public Long getCiVisibilityPipelineCommittersHwm() { public void setCiVisibilityPipelineCommittersHwm(Long ciVisibilityPipelineCommittersHwm) { this.ciVisibilityPipelineCommittersHwm = ciVisibilityPipelineCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_PIPELINE_COMMITTERS_HWM, ciVisibilityPipelineCommittersHwm); } public UsageSummaryDateOrg ciVisibilityTestCommittersHwm(Long ciVisibilityTestCommittersHwm) { @@ -2582,6 +2643,8 @@ public Long getCiVisibilityTestCommittersHwm() { public void setCiVisibilityTestCommittersHwm(Long ciVisibilityTestCommittersHwm) { this.ciVisibilityTestCommittersHwm = ciVisibilityTestCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_TEST_COMMITTERS_HWM, ciVisibilityTestCommittersHwm); } public UsageSummaryDateOrg cloudCostManagementAwsHostCountAvg( @@ -2604,6 +2667,8 @@ public Long getCloudCostManagementAwsHostCountAvg() { public void setCloudCostManagementAwsHostCountAvg(Long cloudCostManagementAwsHostCountAvg) { this.cloudCostManagementAwsHostCountAvg = cloudCostManagementAwsHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AWS_HOST_COUNT_AVG, cloudCostManagementAwsHostCountAvg); } public UsageSummaryDateOrg cloudCostManagementAzureHostCountAvg( @@ -2626,6 +2691,9 @@ public Long getCloudCostManagementAzureHostCountAvg() { public void setCloudCostManagementAzureHostCountAvg(Long cloudCostManagementAzureHostCountAvg) { this.cloudCostManagementAzureHostCountAvg = cloudCostManagementAzureHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AZURE_HOST_COUNT_AVG, + cloudCostManagementAzureHostCountAvg); } public UsageSummaryDateOrg cloudCostManagementGcpHostCountAvg( @@ -2648,6 +2716,8 @@ public Long getCloudCostManagementGcpHostCountAvg() { public void setCloudCostManagementGcpHostCountAvg(Long cloudCostManagementGcpHostCountAvg) { this.cloudCostManagementGcpHostCountAvg = cloudCostManagementGcpHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_GCP_HOST_COUNT_AVG, cloudCostManagementGcpHostCountAvg); } public UsageSummaryDateOrg cloudCostManagementHostCountAvg(Long cloudCostManagementHostCountAvg) { @@ -2670,6 +2740,8 @@ public Long getCloudCostManagementHostCountAvg() { public void setCloudCostManagementHostCountAvg(Long cloudCostManagementHostCountAvg) { this.cloudCostManagementHostCountAvg = cloudCostManagementHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_HOST_COUNT_AVG, cloudCostManagementHostCountAvg); } public UsageSummaryDateOrg cloudCostManagementOciHostCountAvg( @@ -2692,6 +2764,8 @@ public Long getCloudCostManagementOciHostCountAvg() { public void setCloudCostManagementOciHostCountAvg(Long cloudCostManagementOciHostCountAvg) { this.cloudCostManagementOciHostCountAvg = cloudCostManagementOciHostCountAvg; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_OCI_HOST_COUNT_AVG, cloudCostManagementOciHostCountAvg); } public UsageSummaryDateOrg cloudSiemEventsSum(Long cloudSiemEventsSum) { @@ -2714,6 +2788,7 @@ public Long getCloudSiemEventsSum() { public void setCloudSiemEventsSum(Long cloudSiemEventsSum) { this.cloudSiemEventsSum = cloudSiemEventsSum; + putAdditionalProperty(JSON_PROPERTY_CLOUD_SIEM_EVENTS_SUM, cloudSiemEventsSum); } public UsageSummaryDateOrg cloudSiemIndexedLogsSum(Long cloudSiemIndexedLogsSum) { @@ -2736,6 +2811,7 @@ public Long getCloudSiemIndexedLogsSum() { public void setCloudSiemIndexedLogsSum(Long cloudSiemIndexedLogsSum) { this.cloudSiemIndexedLogsSum = cloudSiemIndexedLogsSum; + putAdditionalProperty(JSON_PROPERTY_CLOUD_SIEM_INDEXED_LOGS_SUM, cloudSiemIndexedLogsSum); } public UsageSummaryDateOrg codeAnalysisSaCommittersHwm(Long codeAnalysisSaCommittersHwm) { @@ -2758,6 +2834,8 @@ public Long getCodeAnalysisSaCommittersHwm() { public void setCodeAnalysisSaCommittersHwm(Long codeAnalysisSaCommittersHwm) { this.codeAnalysisSaCommittersHwm = codeAnalysisSaCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CODE_ANALYSIS_SA_COMMITTERS_HWM, codeAnalysisSaCommittersHwm); } public UsageSummaryDateOrg codeAnalysisScaCommittersHwm(Long codeAnalysisScaCommittersHwm) { @@ -2780,6 +2858,8 @@ public Long getCodeAnalysisScaCommittersHwm() { public void setCodeAnalysisScaCommittersHwm(Long codeAnalysisScaCommittersHwm) { this.codeAnalysisScaCommittersHwm = codeAnalysisScaCommittersHwm; + putAdditionalProperty( + JSON_PROPERTY_CODE_ANALYSIS_SCA_COMMITTERS_HWM, codeAnalysisScaCommittersHwm); } public UsageSummaryDateOrg codeSecurityHostTop99p(Long codeSecurityHostTop99p) { @@ -2802,6 +2882,7 @@ public Long getCodeSecurityHostTop99p() { public void setCodeSecurityHostTop99p(Long codeSecurityHostTop99p) { this.codeSecurityHostTop99p = codeSecurityHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CODE_SECURITY_HOST_TOP99P, codeSecurityHostTop99p); } public UsageSummaryDateOrg containerAvg(Long containerAvg) { @@ -2824,6 +2905,7 @@ public Long getContainerAvg() { public void setContainerAvg(Long containerAvg) { this.containerAvg = containerAvg; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_AVG, containerAvg); } public UsageSummaryDateOrg containerExclAgentAvg(Long containerExclAgentAvg) { @@ -2846,6 +2928,7 @@ public Long getContainerExclAgentAvg() { public void setContainerExclAgentAvg(Long containerExclAgentAvg) { this.containerExclAgentAvg = containerExclAgentAvg; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_EXCL_AGENT_AVG, containerExclAgentAvg); } public UsageSummaryDateOrg containerHwm(Long containerHwm) { @@ -2868,6 +2951,7 @@ public Long getContainerHwm() { public void setContainerHwm(Long containerHwm) { this.containerHwm = containerHwm; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_HWM, containerHwm); } public UsageSummaryDateOrg csmContainerEnterpriseComplianceCountSum( @@ -2892,6 +2976,9 @@ public Long getCsmContainerEnterpriseComplianceCountSum() { public void setCsmContainerEnterpriseComplianceCountSum( Long csmContainerEnterpriseComplianceCountSum) { this.csmContainerEnterpriseComplianceCountSum = csmContainerEnterpriseComplianceCountSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_COMPLIANCE_COUNT_SUM, + csmContainerEnterpriseComplianceCountSum); } public UsageSummaryDateOrg csmContainerEnterpriseCwsCountSum( @@ -2915,6 +3002,8 @@ public Long getCsmContainerEnterpriseCwsCountSum() { public void setCsmContainerEnterpriseCwsCountSum(Long csmContainerEnterpriseCwsCountSum) { this.csmContainerEnterpriseCwsCountSum = csmContainerEnterpriseCwsCountSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_CWS_COUNT_SUM, csmContainerEnterpriseCwsCountSum); } public UsageSummaryDateOrg csmContainerEnterpriseTotalCountSum( @@ -2938,6 +3027,9 @@ public Long getCsmContainerEnterpriseTotalCountSum() { public void setCsmContainerEnterpriseTotalCountSum(Long csmContainerEnterpriseTotalCountSum) { this.csmContainerEnterpriseTotalCountSum = csmContainerEnterpriseTotalCountSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_TOTAL_COUNT_SUM, + csmContainerEnterpriseTotalCountSum); } public UsageSummaryDateOrg csmHostEnterpriseAasHostCountTop99p( @@ -2961,6 +3053,9 @@ public Long getCsmHostEnterpriseAasHostCountTop99p() { public void setCsmHostEnterpriseAasHostCountTop99p(Long csmHostEnterpriseAasHostCountTop99p) { this.csmHostEnterpriseAasHostCountTop99p = csmHostEnterpriseAasHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AAS_HOST_COUNT_TOP99P, + csmHostEnterpriseAasHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseAwsHostCountTop99p( @@ -2984,6 +3079,9 @@ public Long getCsmHostEnterpriseAwsHostCountTop99p() { public void setCsmHostEnterpriseAwsHostCountTop99p(Long csmHostEnterpriseAwsHostCountTop99p) { this.csmHostEnterpriseAwsHostCountTop99p = csmHostEnterpriseAwsHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AWS_HOST_COUNT_TOP99P, + csmHostEnterpriseAwsHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseAzureHostCountTop99p( @@ -3007,6 +3105,9 @@ public Long getCsmHostEnterpriseAzureHostCountTop99p() { public void setCsmHostEnterpriseAzureHostCountTop99p(Long csmHostEnterpriseAzureHostCountTop99p) { this.csmHostEnterpriseAzureHostCountTop99p = csmHostEnterpriseAzureHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AZURE_HOST_COUNT_TOP99P, + csmHostEnterpriseAzureHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseComplianceHostCountTop99p( @@ -3031,6 +3132,9 @@ public Long getCsmHostEnterpriseComplianceHostCountTop99p() { public void setCsmHostEnterpriseComplianceHostCountTop99p( Long csmHostEnterpriseComplianceHostCountTop99p) { this.csmHostEnterpriseComplianceHostCountTop99p = csmHostEnterpriseComplianceHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_COMPLIANCE_HOST_COUNT_TOP99P, + csmHostEnterpriseComplianceHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseCwsHostCountTop99p( @@ -3054,6 +3158,9 @@ public Long getCsmHostEnterpriseCwsHostCountTop99p() { public void setCsmHostEnterpriseCwsHostCountTop99p(Long csmHostEnterpriseCwsHostCountTop99p) { this.csmHostEnterpriseCwsHostCountTop99p = csmHostEnterpriseCwsHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_CWS_HOST_COUNT_TOP99P, + csmHostEnterpriseCwsHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseGcpHostCountTop99p( @@ -3077,6 +3184,9 @@ public Long getCsmHostEnterpriseGcpHostCountTop99p() { public void setCsmHostEnterpriseGcpHostCountTop99p(Long csmHostEnterpriseGcpHostCountTop99p) { this.csmHostEnterpriseGcpHostCountTop99p = csmHostEnterpriseGcpHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_GCP_HOST_COUNT_TOP99P, + csmHostEnterpriseGcpHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseOciHostCountTop99p( @@ -3100,6 +3210,9 @@ public Long getCsmHostEnterpriseOciHostCountTop99p() { public void setCsmHostEnterpriseOciHostCountTop99p(Long csmHostEnterpriseOciHostCountTop99p) { this.csmHostEnterpriseOciHostCountTop99p = csmHostEnterpriseOciHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_OCI_HOST_COUNT_TOP99P, + csmHostEnterpriseOciHostCountTop99p); } public UsageSummaryDateOrg csmHostEnterpriseTotalHostCountTop99p( @@ -3123,6 +3236,9 @@ public Long getCsmHostEnterpriseTotalHostCountTop99p() { public void setCsmHostEnterpriseTotalHostCountTop99p(Long csmHostEnterpriseTotalHostCountTop99p) { this.csmHostEnterpriseTotalHostCountTop99p = csmHostEnterpriseTotalHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_TOTAL_HOST_COUNT_TOP99P, + csmHostEnterpriseTotalHostCountTop99p); } public UsageSummaryDateOrg csmHostProHostsAgentlessScannersSum( @@ -3146,6 +3262,9 @@ public Long getCsmHostProHostsAgentlessScannersSum() { public void setCsmHostProHostsAgentlessScannersSum(Long csmHostProHostsAgentlessScannersSum) { this.csmHostProHostsAgentlessScannersSum = csmHostProHostsAgentlessScannersSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_SUM, + csmHostProHostsAgentlessScannersSum); } public UsageSummaryDateOrg csmHostProHostsAgentlessScannersTop99p( @@ -3170,6 +3289,9 @@ public Long getCsmHostProHostsAgentlessScannersTop99p() { public void setCsmHostProHostsAgentlessScannersTop99p( Long csmHostProHostsAgentlessScannersTop99p) { this.csmHostProHostsAgentlessScannersTop99p = csmHostProHostsAgentlessScannersTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_TOP99P, + csmHostProHostsAgentlessScannersTop99p); } public UsageSummaryDateOrg csmHostProOciHostCountTop99p(Long csmHostProOciHostCountTop99p) { @@ -3192,6 +3314,8 @@ public Long getCsmHostProOciHostCountTop99p() { public void setCsmHostProOciHostCountTop99p(Long csmHostProOciHostCountTop99p) { this.csmHostProOciHostCountTop99p = csmHostProOciHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_OCI_HOST_COUNT_TOP99P, csmHostProOciHostCountTop99p); } public UsageSummaryDateOrg cspmAasHostTop99p(Long cspmAasHostTop99p) { @@ -3214,6 +3338,7 @@ public Long getCspmAasHostTop99p() { public void setCspmAasHostTop99p(Long cspmAasHostTop99p) { this.cspmAasHostTop99p = cspmAasHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_AAS_HOST_TOP99P, cspmAasHostTop99p); } public UsageSummaryDateOrg cspmAwsHostTop99p(Long cspmAwsHostTop99p) { @@ -3236,6 +3361,7 @@ public Long getCspmAwsHostTop99p() { public void setCspmAwsHostTop99p(Long cspmAwsHostTop99p) { this.cspmAwsHostTop99p = cspmAwsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_AWS_HOST_TOP99P, cspmAwsHostTop99p); } public UsageSummaryDateOrg cspmAzureHostTop99p(Long cspmAzureHostTop99p) { @@ -3258,6 +3384,7 @@ public Long getCspmAzureHostTop99p() { public void setCspmAzureHostTop99p(Long cspmAzureHostTop99p) { this.cspmAzureHostTop99p = cspmAzureHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_AZURE_HOST_TOP99P, cspmAzureHostTop99p); } public UsageSummaryDateOrg cspmContainerAvg(Long cspmContainerAvg) { @@ -3280,6 +3407,7 @@ public Long getCspmContainerAvg() { public void setCspmContainerAvg(Long cspmContainerAvg) { this.cspmContainerAvg = cspmContainerAvg; + putAdditionalProperty(JSON_PROPERTY_CSPM_CONTAINER_AVG, cspmContainerAvg); } public UsageSummaryDateOrg cspmContainerHwm(Long cspmContainerHwm) { @@ -3302,6 +3430,7 @@ public Long getCspmContainerHwm() { public void setCspmContainerHwm(Long cspmContainerHwm) { this.cspmContainerHwm = cspmContainerHwm; + putAdditionalProperty(JSON_PROPERTY_CSPM_CONTAINER_HWM, cspmContainerHwm); } public UsageSummaryDateOrg cspmGcpHostTop99p(Long cspmGcpHostTop99p) { @@ -3324,6 +3453,7 @@ public Long getCspmGcpHostTop99p() { public void setCspmGcpHostTop99p(Long cspmGcpHostTop99p) { this.cspmGcpHostTop99p = cspmGcpHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_GCP_HOST_TOP99P, cspmGcpHostTop99p); } public UsageSummaryDateOrg cspmHostTop99p(Long cspmHostTop99p) { @@ -3346,6 +3476,7 @@ public Long getCspmHostTop99p() { public void setCspmHostTop99p(Long cspmHostTop99p) { this.cspmHostTop99p = cspmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CSPM_HOST_TOP99P, cspmHostTop99p); } public UsageSummaryDateOrg cspmHostsAgentlessScannersSum(Long cspmHostsAgentlessScannersSum) { @@ -3368,6 +3499,8 @@ public Long getCspmHostsAgentlessScannersSum() { public void setCspmHostsAgentlessScannersSum(Long cspmHostsAgentlessScannersSum) { this.cspmHostsAgentlessScannersSum = cspmHostsAgentlessScannersSum; + putAdditionalProperty( + JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_SUM, cspmHostsAgentlessScannersSum); } public UsageSummaryDateOrg cspmHostsAgentlessScannersTop99p( @@ -3391,6 +3524,8 @@ public Long getCspmHostsAgentlessScannersTop99p() { public void setCspmHostsAgentlessScannersTop99p(Long cspmHostsAgentlessScannersTop99p) { this.cspmHostsAgentlessScannersTop99p = cspmHostsAgentlessScannersTop99p; + putAdditionalProperty( + JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_TOP99P, cspmHostsAgentlessScannersTop99p); } public UsageSummaryDateOrg customHistoricalTsAvg(Long customHistoricalTsAvg) { @@ -3413,6 +3548,7 @@ public Long getCustomHistoricalTsAvg() { public void setCustomHistoricalTsAvg(Long customHistoricalTsAvg) { this.customHistoricalTsAvg = customHistoricalTsAvg; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_HISTORICAL_TS_AVG, customHistoricalTsAvg); } public UsageSummaryDateOrg customLiveTsAvg(Long customLiveTsAvg) { @@ -3435,6 +3571,7 @@ public Long getCustomLiveTsAvg() { public void setCustomLiveTsAvg(Long customLiveTsAvg) { this.customLiveTsAvg = customLiveTsAvg; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_LIVE_TS_AVG, customLiveTsAvg); } public UsageSummaryDateOrg customTsAvg(Long customTsAvg) { @@ -3457,6 +3594,7 @@ public Long getCustomTsAvg() { public void setCustomTsAvg(Long customTsAvg) { this.customTsAvg = customTsAvg; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_TS_AVG, customTsAvg); } public UsageSummaryDateOrg cwsContainerCountAvg(Long cwsContainerCountAvg) { @@ -3479,6 +3617,7 @@ public Long getCwsContainerCountAvg() { public void setCwsContainerCountAvg(Long cwsContainerCountAvg) { this.cwsContainerCountAvg = cwsContainerCountAvg; + putAdditionalProperty(JSON_PROPERTY_CWS_CONTAINER_COUNT_AVG, cwsContainerCountAvg); } public UsageSummaryDateOrg cwsFargateTaskAvg(Long cwsFargateTaskAvg) { @@ -3501,6 +3640,7 @@ public Long getCwsFargateTaskAvg() { public void setCwsFargateTaskAvg(Long cwsFargateTaskAvg) { this.cwsFargateTaskAvg = cwsFargateTaskAvg; + putAdditionalProperty(JSON_PROPERTY_CWS_FARGATE_TASK_AVG, cwsFargateTaskAvg); } public UsageSummaryDateOrg cwsHostTop99p(Long cwsHostTop99p) { @@ -3523,6 +3663,7 @@ public Long getCwsHostTop99p() { public void setCwsHostTop99p(Long cwsHostTop99p) { this.cwsHostTop99p = cwsHostTop99p; + putAdditionalProperty(JSON_PROPERTY_CWS_HOST_TOP99P, cwsHostTop99p); } public UsageSummaryDateOrg dataJobsMonitoringHostHrSum(Long dataJobsMonitoringHostHrSum) { @@ -3545,6 +3686,8 @@ public Long getDataJobsMonitoringHostHrSum() { public void setDataJobsMonitoringHostHrSum(Long dataJobsMonitoringHostHrSum) { this.dataJobsMonitoringHostHrSum = dataJobsMonitoringHostHrSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_JOBS_MONITORING_HOST_HR_SUM, dataJobsMonitoringHostHrSum); } public UsageSummaryDateOrg dataStreamMonitoringHostCountSum( @@ -3568,6 +3711,8 @@ public Long getDataStreamMonitoringHostCountSum() { public void setDataStreamMonitoringHostCountSum(Long dataStreamMonitoringHostCountSum) { this.dataStreamMonitoringHostCountSum = dataStreamMonitoringHostCountSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_STREAM_MONITORING_HOST_COUNT_SUM, dataStreamMonitoringHostCountSum); } public UsageSummaryDateOrg dataStreamMonitoringHostCountTop99p( @@ -3591,6 +3736,9 @@ public Long getDataStreamMonitoringHostCountTop99p() { public void setDataStreamMonitoringHostCountTop99p(Long dataStreamMonitoringHostCountTop99p) { this.dataStreamMonitoringHostCountTop99p = dataStreamMonitoringHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_DATA_STREAM_MONITORING_HOST_COUNT_TOP99P, + dataStreamMonitoringHostCountTop99p); } public UsageSummaryDateOrg dbmHostTop99pSum(Long dbmHostTop99pSum) { @@ -3613,6 +3761,7 @@ public Long getDbmHostTop99pSum() { public void setDbmHostTop99pSum(Long dbmHostTop99pSum) { this.dbmHostTop99pSum = dbmHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_DBM_HOST_TOP99P_SUM, dbmHostTop99pSum); } public UsageSummaryDateOrg dbmQueriesAvgSum(Long dbmQueriesAvgSum) { @@ -3635,6 +3784,7 @@ public Long getDbmQueriesAvgSum() { public void setDbmQueriesAvgSum(Long dbmQueriesAvgSum) { this.dbmQueriesAvgSum = dbmQueriesAvgSum; + putAdditionalProperty(JSON_PROPERTY_DBM_QUERIES_AVG_SUM, dbmQueriesAvgSum); } public UsageSummaryDateOrg doJobsMonitoringOrchestratorsJobHoursSum( @@ -3659,6 +3809,9 @@ public Long getDoJobsMonitoringOrchestratorsJobHoursSum() { public void setDoJobsMonitoringOrchestratorsJobHoursSum( Long doJobsMonitoringOrchestratorsJobHoursSum) { this.doJobsMonitoringOrchestratorsJobHoursSum = doJobsMonitoringOrchestratorsJobHoursSum; + putAdditionalProperty( + JSON_PROPERTY_DO_JOBS_MONITORING_ORCHESTRATORS_JOB_HOURS_SUM, + doJobsMonitoringOrchestratorsJobHoursSum); } public UsageSummaryDateOrg ephInfraHostAgentSum(Long ephInfraHostAgentSum) { @@ -3681,6 +3834,7 @@ public Long getEphInfraHostAgentSum() { public void setEphInfraHostAgentSum(Long ephInfraHostAgentSum) { this.ephInfraHostAgentSum = ephInfraHostAgentSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AGENT_SUM, ephInfraHostAgentSum); } public UsageSummaryDateOrg ephInfraHostAlibabaSum(Long ephInfraHostAlibabaSum) { @@ -3703,6 +3857,7 @@ public Long getEphInfraHostAlibabaSum() { public void setEphInfraHostAlibabaSum(Long ephInfraHostAlibabaSum) { this.ephInfraHostAlibabaSum = ephInfraHostAlibabaSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ALIBABA_SUM, ephInfraHostAlibabaSum); } public UsageSummaryDateOrg ephInfraHostAwsSum(Long ephInfraHostAwsSum) { @@ -3725,6 +3880,7 @@ public Long getEphInfraHostAwsSum() { public void setEphInfraHostAwsSum(Long ephInfraHostAwsSum) { this.ephInfraHostAwsSum = ephInfraHostAwsSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AWS_SUM, ephInfraHostAwsSum); } public UsageSummaryDateOrg ephInfraHostAzureSum(Long ephInfraHostAzureSum) { @@ -3747,6 +3903,7 @@ public Long getEphInfraHostAzureSum() { public void setEphInfraHostAzureSum(Long ephInfraHostAzureSum) { this.ephInfraHostAzureSum = ephInfraHostAzureSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AZURE_SUM, ephInfraHostAzureSum); } public UsageSummaryDateOrg ephInfraHostBasicInfraBasicAgentSum( @@ -3770,6 +3927,9 @@ public Long getEphInfraHostBasicInfraBasicAgentSum() { public void setEphInfraHostBasicInfraBasicAgentSum(Long ephInfraHostBasicInfraBasicAgentSum) { this.ephInfraHostBasicInfraBasicAgentSum = ephInfraHostBasicInfraBasicAgentSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_BASIC_INFRA_BASIC_AGENT_SUM, + ephInfraHostBasicInfraBasicAgentSum); } public UsageSummaryDateOrg ephInfraHostBasicInfraBasicVsphereSum( @@ -3793,6 +3953,9 @@ public Long getEphInfraHostBasicInfraBasicVsphereSum() { public void setEphInfraHostBasicInfraBasicVsphereSum(Long ephInfraHostBasicInfraBasicVsphereSum) { this.ephInfraHostBasicInfraBasicVsphereSum = ephInfraHostBasicInfraBasicVsphereSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_SUM, + ephInfraHostBasicInfraBasicVsphereSum); } public UsageSummaryDateOrg ephInfraHostBasicSum(Long ephInfraHostBasicSum) { @@ -3815,6 +3978,7 @@ public Long getEphInfraHostBasicSum() { public void setEphInfraHostBasicSum(Long ephInfraHostBasicSum) { this.ephInfraHostBasicSum = ephInfraHostBasicSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_BASIC_SUM, ephInfraHostBasicSum); } public UsageSummaryDateOrg ephInfraHostEntSum(Long ephInfraHostEntSum) { @@ -3837,6 +4001,7 @@ public Long getEphInfraHostEntSum() { public void setEphInfraHostEntSum(Long ephInfraHostEntSum) { this.ephInfraHostEntSum = ephInfraHostEntSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ENT_SUM, ephInfraHostEntSum); } public UsageSummaryDateOrg ephInfraHostGcpSum(Long ephInfraHostGcpSum) { @@ -3859,6 +4024,7 @@ public Long getEphInfraHostGcpSum() { public void setEphInfraHostGcpSum(Long ephInfraHostGcpSum) { this.ephInfraHostGcpSum = ephInfraHostGcpSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_GCP_SUM, ephInfraHostGcpSum); } public UsageSummaryDateOrg ephInfraHostHerokuSum(Long ephInfraHostHerokuSum) { @@ -3881,6 +4047,7 @@ public Long getEphInfraHostHerokuSum() { public void setEphInfraHostHerokuSum(Long ephInfraHostHerokuSum) { this.ephInfraHostHerokuSum = ephInfraHostHerokuSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_HEROKU_SUM, ephInfraHostHerokuSum); } public UsageSummaryDateOrg ephInfraHostOnlyAasSum(Long ephInfraHostOnlyAasSum) { @@ -3903,6 +4070,7 @@ public Long getEphInfraHostOnlyAasSum() { public void setEphInfraHostOnlyAasSum(Long ephInfraHostOnlyAasSum) { this.ephInfraHostOnlyAasSum = ephInfraHostOnlyAasSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ONLY_AAS_SUM, ephInfraHostOnlyAasSum); } public UsageSummaryDateOrg ephInfraHostOnlyVsphereSum(Long ephInfraHostOnlyVsphereSum) { @@ -3925,6 +4093,8 @@ public Long getEphInfraHostOnlyVsphereSum() { public void setEphInfraHostOnlyVsphereSum(Long ephInfraHostOnlyVsphereSum) { this.ephInfraHostOnlyVsphereSum = ephInfraHostOnlyVsphereSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_ONLY_VSPHERE_SUM, ephInfraHostOnlyVsphereSum); } public UsageSummaryDateOrg ephInfraHostOpentelemetryApmSum(Long ephInfraHostOpentelemetryApmSum) { @@ -3947,6 +4117,8 @@ public Long getEphInfraHostOpentelemetryApmSum() { public void setEphInfraHostOpentelemetryApmSum(Long ephInfraHostOpentelemetryApmSum) { this.ephInfraHostOpentelemetryApmSum = ephInfraHostOpentelemetryApmSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_SUM, ephInfraHostOpentelemetryApmSum); } public UsageSummaryDateOrg ephInfraHostOpentelemetrySum(Long ephInfraHostOpentelemetrySum) { @@ -3969,6 +4141,8 @@ public Long getEphInfraHostOpentelemetrySum() { public void setEphInfraHostOpentelemetrySum(Long ephInfraHostOpentelemetrySum) { this.ephInfraHostOpentelemetrySum = ephInfraHostOpentelemetrySum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_SUM, ephInfraHostOpentelemetrySum); } public UsageSummaryDateOrg ephInfraHostProSum(Long ephInfraHostProSum) { @@ -3991,6 +4165,7 @@ public Long getEphInfraHostProSum() { public void setEphInfraHostProSum(Long ephInfraHostProSum) { this.ephInfraHostProSum = ephInfraHostProSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PRO_SUM, ephInfraHostProSum); } public UsageSummaryDateOrg ephInfraHostProplusSum(Long ephInfraHostProplusSum) { @@ -4013,6 +4188,7 @@ public Long getEphInfraHostProplusSum() { public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) { this.ephInfraHostProplusSum = ephInfraHostProplusSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_SUM, ephInfraHostProplusSum); } public UsageSummaryDateOrg ephInfraHostProxmoxSum(Long ephInfraHostProxmoxSum) { @@ -4035,6 +4211,7 @@ public Long getEphInfraHostProxmoxSum() { public void setEphInfraHostProxmoxSum(Long ephInfraHostProxmoxSum) { this.ephInfraHostProxmoxSum = ephInfraHostProxmoxSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PROXMOX_SUM, ephInfraHostProxmoxSum); } public UsageSummaryDateOrg errorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) { @@ -4057,6 +4234,8 @@ public Long getErrorTrackingApmErrorEventsSum() { public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) { this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM, errorTrackingApmErrorEventsSum); } public UsageSummaryDateOrg errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) { @@ -4079,6 +4258,8 @@ public Long getErrorTrackingErrorEventsSum() { public void setErrorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) { this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM, errorTrackingErrorEventsSum); } public UsageSummaryDateOrg errorTrackingEventsSum(Long errorTrackingEventsSum) { @@ -4101,6 +4282,7 @@ public Long getErrorTrackingEventsSum() { public void setErrorTrackingEventsSum(Long errorTrackingEventsSum) { this.errorTrackingEventsSum = errorTrackingEventsSum; + putAdditionalProperty(JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM, errorTrackingEventsSum); } public UsageSummaryDateOrg errorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSum) { @@ -4123,6 +4305,8 @@ public Long getErrorTrackingRumErrorEventsSum() { public void setErrorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSum) { this.errorTrackingRumErrorEventsSum = errorTrackingRumErrorEventsSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM, errorTrackingRumErrorEventsSum); } public UsageSummaryDateOrg eventManagementCorrelationCorrelatedEventsSum( @@ -4149,6 +4333,9 @@ public void setEventManagementCorrelationCorrelatedEventsSum( Long eventManagementCorrelationCorrelatedEventsSum) { this.eventManagementCorrelationCorrelatedEventsSum = eventManagementCorrelationCorrelatedEventsSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_EVENTS_SUM, + eventManagementCorrelationCorrelatedEventsSum); } public UsageSummaryDateOrg eventManagementCorrelationCorrelatedRelatedEventsSum( @@ -4175,6 +4362,9 @@ public void setEventManagementCorrelationCorrelatedRelatedEventsSum( Long eventManagementCorrelationCorrelatedRelatedEventsSum) { this.eventManagementCorrelationCorrelatedRelatedEventsSum = eventManagementCorrelationCorrelatedRelatedEventsSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_RELATED_EVENTS_SUM, + eventManagementCorrelationCorrelatedRelatedEventsSum); } public UsageSummaryDateOrg eventManagementCorrelationSum(Long eventManagementCorrelationSum) { @@ -4197,6 +4387,8 @@ public Long getEventManagementCorrelationSum() { public void setEventManagementCorrelationSum(Long eventManagementCorrelationSum) { this.eventManagementCorrelationSum = eventManagementCorrelationSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_SUM, eventManagementCorrelationSum); } public UsageSummaryDateOrg fargateContainerProfilerProfilingFargateAvg( @@ -4221,6 +4413,9 @@ public Long getFargateContainerProfilerProfilingFargateAvg() { public void setFargateContainerProfilerProfilingFargateAvg( Long fargateContainerProfilerProfilingFargateAvg) { this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg; + putAdditionalProperty( + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG, + fargateContainerProfilerProfilingFargateAvg); } public UsageSummaryDateOrg fargateContainerProfilerProfilingFargateEksAvg( @@ -4247,6 +4442,9 @@ public void setFargateContainerProfilerProfilingFargateEksAvg( Long fargateContainerProfilerProfilingFargateEksAvg) { this.fargateContainerProfilerProfilingFargateEksAvg = fargateContainerProfilerProfilingFargateEksAvg; + putAdditionalProperty( + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG, + fargateContainerProfilerProfilingFargateEksAvg); } public UsageSummaryDateOrg fargateTasksCountAvg(Long fargateTasksCountAvg) { @@ -4268,6 +4466,7 @@ public Long getFargateTasksCountAvg() { public void setFargateTasksCountAvg(Long fargateTasksCountAvg) { this.fargateTasksCountAvg = fargateTasksCountAvg; + putAdditionalProperty(JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG, fargateTasksCountAvg); } public UsageSummaryDateOrg fargateTasksCountHwm(Long fargateTasksCountHwm) { @@ -4290,6 +4489,7 @@ public Long getFargateTasksCountHwm() { public void setFargateTasksCountHwm(Long fargateTasksCountHwm) { this.fargateTasksCountHwm = fargateTasksCountHwm; + putAdditionalProperty(JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM, fargateTasksCountHwm); } public UsageSummaryDateOrg featureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) { @@ -4312,6 +4512,8 @@ public Long getFeatureFlagsConfigRequestsSum() { public void setFeatureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) { this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum; + putAdditionalProperty( + JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM, featureFlagsConfigRequestsSum); } public UsageSummaryDateOrg flexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) { @@ -4334,6 +4536,7 @@ public Long getFlexLogsComputeLargeAvg() { public void setFlexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) { this.flexLogsComputeLargeAvg = flexLogsComputeLargeAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG, flexLogsComputeLargeAvg); } public UsageSummaryDateOrg flexLogsComputeMediumAvg(Long flexLogsComputeMediumAvg) { @@ -4356,6 +4559,7 @@ public Long getFlexLogsComputeMediumAvg() { public void setFlexLogsComputeMediumAvg(Long flexLogsComputeMediumAvg) { this.flexLogsComputeMediumAvg = flexLogsComputeMediumAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG, flexLogsComputeMediumAvg); } public UsageSummaryDateOrg flexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) { @@ -4378,6 +4582,7 @@ public Long getFlexLogsComputeSmallAvg() { public void setFlexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) { this.flexLogsComputeSmallAvg = flexLogsComputeSmallAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG, flexLogsComputeSmallAvg); } public UsageSummaryDateOrg flexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) { @@ -4400,6 +4605,7 @@ public Long getFlexLogsComputeXlargeAvg() { public void setFlexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) { this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG, flexLogsComputeXlargeAvg); } public UsageSummaryDateOrg flexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) { @@ -4422,6 +4628,7 @@ public Long getFlexLogsComputeXsmallAvg() { public void setFlexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) { this.flexLogsComputeXsmallAvg = flexLogsComputeXsmallAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG, flexLogsComputeXsmallAvg); } public UsageSummaryDateOrg flexLogsStarterAvg(Long flexLogsStarterAvg) { @@ -4444,6 +4651,7 @@ public Long getFlexLogsStarterAvg() { public void setFlexLogsStarterAvg(Long flexLogsStarterAvg) { this.flexLogsStarterAvg = flexLogsStarterAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_AVG, flexLogsStarterAvg); } public UsageSummaryDateOrg flexLogsStarterStorageIndexAvg(Long flexLogsStarterStorageIndexAvg) { @@ -4466,6 +4674,8 @@ public Long getFlexLogsStarterStorageIndexAvg() { public void setFlexLogsStarterStorageIndexAvg(Long flexLogsStarterStorageIndexAvg) { this.flexLogsStarterStorageIndexAvg = flexLogsStarterStorageIndexAvg; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG, flexLogsStarterStorageIndexAvg); } public UsageSummaryDateOrg flexLogsStarterStorageRetentionAdjustmentAvg( @@ -4492,6 +4702,9 @@ public void setFlexLogsStarterStorageRetentionAdjustmentAvg( Long flexLogsStarterStorageRetentionAdjustmentAvg) { this.flexLogsStarterStorageRetentionAdjustmentAvg = flexLogsStarterStorageRetentionAdjustmentAvg; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_RETENTION_ADJUSTMENT_AVG, + flexLogsStarterStorageRetentionAdjustmentAvg); } public UsageSummaryDateOrg flexStoredLogsAvg(Long flexStoredLogsAvg) { @@ -4513,6 +4726,7 @@ public Long getFlexStoredLogsAvg() { public void setFlexStoredLogsAvg(Long flexStoredLogsAvg) { this.flexStoredLogsAvg = flexStoredLogsAvg; + putAdditionalProperty(JSON_PROPERTY_FLEX_STORED_LOGS_AVG, flexStoredLogsAvg); } public UsageSummaryDateOrg forwardingEventsBytesSum(Long forwardingEventsBytesSum) { @@ -4534,6 +4748,7 @@ public Long getForwardingEventsBytesSum() { public void setForwardingEventsBytesSum(Long forwardingEventsBytesSum) { this.forwardingEventsBytesSum = forwardingEventsBytesSum; + putAdditionalProperty(JSON_PROPERTY_FORWARDING_EVENTS_BYTES_SUM, forwardingEventsBytesSum); } public UsageSummaryDateOrg gcpHostTop99p(Long gcpHostTop99p) { @@ -4556,6 +4771,7 @@ public Long getGcpHostTop99p() { public void setGcpHostTop99p(Long gcpHostTop99p) { this.gcpHostTop99p = gcpHostTop99p; + putAdditionalProperty(JSON_PROPERTY_GCP_HOST_TOP99P, gcpHostTop99p); } public UsageSummaryDateOrg herokuHostTop99p(Long herokuHostTop99p) { @@ -4578,6 +4794,7 @@ public Long getHerokuHostTop99p() { public void setHerokuHostTop99p(Long herokuHostTop99p) { this.herokuHostTop99p = herokuHostTop99p; + putAdditionalProperty(JSON_PROPERTY_HEROKU_HOST_TOP99P, herokuHostTop99p); } public UsageSummaryDateOrg id(String id) { @@ -4599,6 +4816,7 @@ public String getId() { public void setId(String id) { this.id = id; + putAdditionalProperty(JSON_PROPERTY_ID, id); } public UsageSummaryDateOrg incidentManagementMonthlyActiveUsersHwm( @@ -4623,6 +4841,9 @@ public Long getIncidentManagementMonthlyActiveUsersHwm() { public void setIncidentManagementMonthlyActiveUsersHwm( Long incidentManagementMonthlyActiveUsersHwm) { this.incidentManagementMonthlyActiveUsersHwm = incidentManagementMonthlyActiveUsersHwm; + putAdditionalProperty( + JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM, + incidentManagementMonthlyActiveUsersHwm); } public UsageSummaryDateOrg incidentManagementSeatsHwm(Long incidentManagementSeatsHwm) { @@ -4645,6 +4866,7 @@ public Long getIncidentManagementSeatsHwm() { public void setIncidentManagementSeatsHwm(Long incidentManagementSeatsHwm) { this.incidentManagementSeatsHwm = incidentManagementSeatsHwm; + putAdditionalProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM, incidentManagementSeatsHwm); } public UsageSummaryDateOrg indexedEventsCountSum(Long indexedEventsCountSum) { @@ -4670,6 +4892,7 @@ public Long getIndexedEventsCountSum() { @Deprecated public void setIndexedEventsCountSum(Long indexedEventsCountSum) { this.indexedEventsCountSum = indexedEventsCountSum; + putAdditionalProperty(JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM, indexedEventsCountSum); } public UsageSummaryDateOrg indexedPointsSum(Long indexedPointsSum) { @@ -4692,6 +4915,7 @@ public Long getIndexedPointsSum() { public void setIndexedPointsSum(Long indexedPointsSum) { this.indexedPointsSum = indexedPointsSum; + putAdditionalProperty(JSON_PROPERTY_INDEXED_POINTS_SUM, indexedPointsSum); } public UsageSummaryDateOrg infraCpuAvg(Long infraCpuAvg) { @@ -4714,6 +4938,7 @@ public Long getInfraCpuAvg() { public void setInfraCpuAvg(Long infraCpuAvg) { this.infraCpuAvg = infraCpuAvg; + putAdditionalProperty(JSON_PROPERTY_INFRA_CPU_AVG, infraCpuAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAgentAvg( @@ -4738,6 +4963,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentAvg() { public void setInfraCpuDefaultInfraHostVcpuAgentAvg(Long infraCpuDefaultInfraHostVcpuAgentAvg) { this.infraCpuDefaultInfraHostVcpuAgentAvg = infraCpuDefaultInfraHostVcpuAgentAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_AVG, + infraCpuDefaultInfraHostVcpuAgentAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAgentBasicAvg( @@ -4763,6 +4991,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentBasicAvg() { public void setInfraCpuDefaultInfraHostVcpuAgentBasicAvg( Long infraCpuDefaultInfraHostVcpuAgentBasicAvg) { this.infraCpuDefaultInfraHostVcpuAgentBasicAvg = infraCpuDefaultInfraHostVcpuAgentBasicAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_BASIC_AVG, + infraCpuDefaultInfraHostVcpuAgentBasicAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAgentBasicSum( @@ -4788,6 +5019,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentBasicSum() { public void setInfraCpuDefaultInfraHostVcpuAgentBasicSum( Long infraCpuDefaultInfraHostVcpuAgentBasicSum) { this.infraCpuDefaultInfraHostVcpuAgentBasicSum = infraCpuDefaultInfraHostVcpuAgentBasicSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_BASIC_SUM, + infraCpuDefaultInfraHostVcpuAgentBasicSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAgentSum( @@ -4812,6 +5046,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentSum() { public void setInfraCpuDefaultInfraHostVcpuAgentSum(Long infraCpuDefaultInfraHostVcpuAgentSum) { this.infraCpuDefaultInfraHostVcpuAgentSum = infraCpuDefaultInfraHostVcpuAgentSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_SUM, + infraCpuDefaultInfraHostVcpuAgentSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAwsAvg( @@ -4836,6 +5073,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAwsAvg() { public void setInfraCpuDefaultInfraHostVcpuAwsAvg(Long infraCpuDefaultInfraHostVcpuAwsAvg) { this.infraCpuDefaultInfraHostVcpuAwsAvg = infraCpuDefaultInfraHostVcpuAwsAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AWS_AVG, + infraCpuDefaultInfraHostVcpuAwsAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAwsSum( @@ -4860,6 +5100,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAwsSum() { public void setInfraCpuDefaultInfraHostVcpuAwsSum(Long infraCpuDefaultInfraHostVcpuAwsSum) { this.infraCpuDefaultInfraHostVcpuAwsSum = infraCpuDefaultInfraHostVcpuAwsSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AWS_SUM, + infraCpuDefaultInfraHostVcpuAwsSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAzureAvg( @@ -4884,6 +5127,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAzureAvg() { public void setInfraCpuDefaultInfraHostVcpuAzureAvg(Long infraCpuDefaultInfraHostVcpuAzureAvg) { this.infraCpuDefaultInfraHostVcpuAzureAvg = infraCpuDefaultInfraHostVcpuAzureAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AZURE_AVG, + infraCpuDefaultInfraHostVcpuAzureAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuAzureSum( @@ -4908,6 +5154,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAzureSum() { public void setInfraCpuDefaultInfraHostVcpuAzureSum(Long infraCpuDefaultInfraHostVcpuAzureSum) { this.infraCpuDefaultInfraHostVcpuAzureSum = infraCpuDefaultInfraHostVcpuAzureSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AZURE_SUM, + infraCpuDefaultInfraHostVcpuAzureSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuGcpAvg( @@ -4932,6 +5181,9 @@ public Long getInfraCpuDefaultInfraHostVcpuGcpAvg() { public void setInfraCpuDefaultInfraHostVcpuGcpAvg(Long infraCpuDefaultInfraHostVcpuGcpAvg) { this.infraCpuDefaultInfraHostVcpuGcpAvg = infraCpuDefaultInfraHostVcpuGcpAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_GCP_AVG, + infraCpuDefaultInfraHostVcpuGcpAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuGcpSum( @@ -4956,6 +5208,9 @@ public Long getInfraCpuDefaultInfraHostVcpuGcpSum() { public void setInfraCpuDefaultInfraHostVcpuGcpSum(Long infraCpuDefaultInfraHostVcpuGcpSum) { this.infraCpuDefaultInfraHostVcpuGcpSum = infraCpuDefaultInfraHostVcpuGcpSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_GCP_SUM, + infraCpuDefaultInfraHostVcpuGcpSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuNutanixAvg( @@ -4981,6 +5236,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixAvg() { public void setInfraCpuDefaultInfraHostVcpuNutanixAvg( Long infraCpuDefaultInfraHostVcpuNutanixAvg) { this.infraCpuDefaultInfraHostVcpuNutanixAvg = infraCpuDefaultInfraHostVcpuNutanixAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_AVG, + infraCpuDefaultInfraHostVcpuNutanixAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuNutanixBasicAvg( @@ -5006,6 +5264,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixBasicAvg() { public void setInfraCpuDefaultInfraHostVcpuNutanixBasicAvg( Long infraCpuDefaultInfraHostVcpuNutanixBasicAvg) { this.infraCpuDefaultInfraHostVcpuNutanixBasicAvg = infraCpuDefaultInfraHostVcpuNutanixBasicAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_BASIC_AVG, + infraCpuDefaultInfraHostVcpuNutanixBasicAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuNutanixBasicSum( @@ -5031,6 +5292,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixBasicSum() { public void setInfraCpuDefaultInfraHostVcpuNutanixBasicSum( Long infraCpuDefaultInfraHostVcpuNutanixBasicSum) { this.infraCpuDefaultInfraHostVcpuNutanixBasicSum = infraCpuDefaultInfraHostVcpuNutanixBasicSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_BASIC_SUM, + infraCpuDefaultInfraHostVcpuNutanixBasicSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuNutanixSum( @@ -5056,6 +5320,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixSum() { public void setInfraCpuDefaultInfraHostVcpuNutanixSum( Long infraCpuDefaultInfraHostVcpuNutanixSum) { this.infraCpuDefaultInfraHostVcpuNutanixSum = infraCpuDefaultInfraHostVcpuNutanixSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_SUM, + infraCpuDefaultInfraHostVcpuNutanixSum); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuOpentelemetryAvg( @@ -5083,6 +5350,9 @@ public void setInfraCpuDefaultInfraHostVcpuOpentelemetryAvg( Long infraCpuDefaultInfraHostVcpuOpentelemetryAvg) { this.infraCpuDefaultInfraHostVcpuOpentelemetryAvg = infraCpuDefaultInfraHostVcpuOpentelemetryAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_OPENTELEMETRY_AVG, + infraCpuDefaultInfraHostVcpuOpentelemetryAvg); } public UsageSummaryDateOrg infraCpuDefaultInfraHostVcpuOpentelemetrySum( @@ -5110,6 +5380,9 @@ public void setInfraCpuDefaultInfraHostVcpuOpentelemetrySum( Long infraCpuDefaultInfraHostVcpuOpentelemetrySum) { this.infraCpuDefaultInfraHostVcpuOpentelemetrySum = infraCpuDefaultInfraHostVcpuOpentelemetrySum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_OPENTELEMETRY_SUM, + infraCpuDefaultInfraHostVcpuOpentelemetrySum); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuAgentAvg( @@ -5134,6 +5407,9 @@ public Long getInfraCpuObservedInfraHostVcpuAgentAvg() { public void setInfraCpuObservedInfraHostVcpuAgentAvg(Long infraCpuObservedInfraHostVcpuAgentAvg) { this.infraCpuObservedInfraHostVcpuAgentAvg = infraCpuObservedInfraHostVcpuAgentAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AGENT_AVG, + infraCpuObservedInfraHostVcpuAgentAvg); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuAgentSum( @@ -5158,6 +5434,9 @@ public Long getInfraCpuObservedInfraHostVcpuAgentSum() { public void setInfraCpuObservedInfraHostVcpuAgentSum(Long infraCpuObservedInfraHostVcpuAgentSum) { this.infraCpuObservedInfraHostVcpuAgentSum = infraCpuObservedInfraHostVcpuAgentSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AGENT_SUM, + infraCpuObservedInfraHostVcpuAgentSum); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuAwsAvg( @@ -5182,6 +5461,9 @@ public Long getInfraCpuObservedInfraHostVcpuAwsAvg() { public void setInfraCpuObservedInfraHostVcpuAwsAvg(Long infraCpuObservedInfraHostVcpuAwsAvg) { this.infraCpuObservedInfraHostVcpuAwsAvg = infraCpuObservedInfraHostVcpuAwsAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AWS_AVG, + infraCpuObservedInfraHostVcpuAwsAvg); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuAwsSum( @@ -5206,6 +5488,9 @@ public Long getInfraCpuObservedInfraHostVcpuAwsSum() { public void setInfraCpuObservedInfraHostVcpuAwsSum(Long infraCpuObservedInfraHostVcpuAwsSum) { this.infraCpuObservedInfraHostVcpuAwsSum = infraCpuObservedInfraHostVcpuAwsSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AWS_SUM, + infraCpuObservedInfraHostVcpuAwsSum); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuAzureAvg( @@ -5230,6 +5515,9 @@ public Long getInfraCpuObservedInfraHostVcpuAzureAvg() { public void setInfraCpuObservedInfraHostVcpuAzureAvg(Long infraCpuObservedInfraHostVcpuAzureAvg) { this.infraCpuObservedInfraHostVcpuAzureAvg = infraCpuObservedInfraHostVcpuAzureAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AZURE_AVG, + infraCpuObservedInfraHostVcpuAzureAvg); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuAzureSum( @@ -5254,6 +5542,9 @@ public Long getInfraCpuObservedInfraHostVcpuAzureSum() { public void setInfraCpuObservedInfraHostVcpuAzureSum(Long infraCpuObservedInfraHostVcpuAzureSum) { this.infraCpuObservedInfraHostVcpuAzureSum = infraCpuObservedInfraHostVcpuAzureSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AZURE_SUM, + infraCpuObservedInfraHostVcpuAzureSum); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuGcpAvg( @@ -5278,6 +5569,9 @@ public Long getInfraCpuObservedInfraHostVcpuGcpAvg() { public void setInfraCpuObservedInfraHostVcpuGcpAvg(Long infraCpuObservedInfraHostVcpuGcpAvg) { this.infraCpuObservedInfraHostVcpuGcpAvg = infraCpuObservedInfraHostVcpuGcpAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_GCP_AVG, + infraCpuObservedInfraHostVcpuGcpAvg); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuGcpSum( @@ -5302,6 +5596,9 @@ public Long getInfraCpuObservedInfraHostVcpuGcpSum() { public void setInfraCpuObservedInfraHostVcpuGcpSum(Long infraCpuObservedInfraHostVcpuGcpSum) { this.infraCpuObservedInfraHostVcpuGcpSum = infraCpuObservedInfraHostVcpuGcpSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_GCP_SUM, + infraCpuObservedInfraHostVcpuGcpSum); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuNutanixAvg( @@ -5327,6 +5624,9 @@ public Long getInfraCpuObservedInfraHostVcpuNutanixAvg() { public void setInfraCpuObservedInfraHostVcpuNutanixAvg( Long infraCpuObservedInfraHostVcpuNutanixAvg) { this.infraCpuObservedInfraHostVcpuNutanixAvg = infraCpuObservedInfraHostVcpuNutanixAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_NUTANIX_AVG, + infraCpuObservedInfraHostVcpuNutanixAvg); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuNutanixSum( @@ -5352,6 +5652,9 @@ public Long getInfraCpuObservedInfraHostVcpuNutanixSum() { public void setInfraCpuObservedInfraHostVcpuNutanixSum( Long infraCpuObservedInfraHostVcpuNutanixSum) { this.infraCpuObservedInfraHostVcpuNutanixSum = infraCpuObservedInfraHostVcpuNutanixSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_NUTANIX_SUM, + infraCpuObservedInfraHostVcpuNutanixSum); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuOpentelemetryAvg( @@ -5379,6 +5682,9 @@ public void setInfraCpuObservedInfraHostVcpuOpentelemetryAvg( Long infraCpuObservedInfraHostVcpuOpentelemetryAvg) { this.infraCpuObservedInfraHostVcpuOpentelemetryAvg = infraCpuObservedInfraHostVcpuOpentelemetryAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_OPENTELEMETRY_AVG, + infraCpuObservedInfraHostVcpuOpentelemetryAvg); } public UsageSummaryDateOrg infraCpuObservedInfraHostVcpuOpentelemetrySum( @@ -5406,6 +5712,9 @@ public void setInfraCpuObservedInfraHostVcpuOpentelemetrySum( Long infraCpuObservedInfraHostVcpuOpentelemetrySum) { this.infraCpuObservedInfraHostVcpuOpentelemetrySum = infraCpuObservedInfraHostVcpuOpentelemetrySum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_OPENTELEMETRY_SUM, + infraCpuObservedInfraHostVcpuOpentelemetrySum); } public UsageSummaryDateOrg infraCpuSum(Long infraCpuSum) { @@ -5428,6 +5737,7 @@ public Long getInfraCpuSum() { public void setInfraCpuSum(Long infraCpuSum) { this.infraCpuSum = infraCpuSum; + putAdditionalProperty(JSON_PROPERTY_INFRA_CPU_SUM, infraCpuSum); } public UsageSummaryDateOrg infraEdgeMonitoringDevicesTop99p( @@ -5451,6 +5761,8 @@ public Long getInfraEdgeMonitoringDevicesTop99p() { public void setInfraEdgeMonitoringDevicesTop99p(Long infraEdgeMonitoringDevicesTop99p) { this.infraEdgeMonitoringDevicesTop99p = infraEdgeMonitoringDevicesTop99p; + putAdditionalProperty( + JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P, infraEdgeMonitoringDevicesTop99p); } public UsageSummaryDateOrg infraHostBasicInfraBasicAgentTop99p( @@ -5474,6 +5786,9 @@ public Long getInfraHostBasicInfraBasicAgentTop99p() { public void setInfraHostBasicInfraBasicAgentTop99p(Long infraHostBasicInfraBasicAgentTop99p) { this.infraHostBasicInfraBasicAgentTop99p = infraHostBasicInfraBasicAgentTop99p; + putAdditionalProperty( + JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_AGENT_TOP99P, + infraHostBasicInfraBasicAgentTop99p); } public UsageSummaryDateOrg infraHostBasicInfraBasicVsphereTop99p( @@ -5497,6 +5812,9 @@ public Long getInfraHostBasicInfraBasicVsphereTop99p() { public void setInfraHostBasicInfraBasicVsphereTop99p(Long infraHostBasicInfraBasicVsphereTop99p) { this.infraHostBasicInfraBasicVsphereTop99p = infraHostBasicInfraBasicVsphereTop99p; + putAdditionalProperty( + JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P, + infraHostBasicInfraBasicVsphereTop99p); } public UsageSummaryDateOrg infraHostBasicTop99p(Long infraHostBasicTop99p) { @@ -5519,6 +5837,7 @@ public Long getInfraHostBasicTop99p() { public void setInfraHostBasicTop99p(Long infraHostBasicTop99p) { this.infraHostBasicTop99p = infraHostBasicTop99p; + putAdditionalProperty(JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P, infraHostBasicTop99p); } public UsageSummaryDateOrg infraHostTop99p(Long infraHostTop99p) { @@ -5541,6 +5860,7 @@ public Long getInfraHostTop99p() { public void setInfraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; + putAdditionalProperty(JSON_PROPERTY_INFRA_HOST_TOP99P, infraHostTop99p); } public UsageSummaryDateOrg infraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { @@ -5563,6 +5883,8 @@ public Long getInfraStorageMgmtObjectsCountAvg() { public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg; + putAdditionalProperty( + JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG, infraStorageMgmtObjectsCountAvg); } public UsageSummaryDateOrg ingestPointsSum(Long ingestPointsSum) { @@ -5585,6 +5907,7 @@ public Long getIngestPointsSum() { public void setIngestPointsSum(Long ingestPointsSum) { this.ingestPointsSum = ingestPointsSum; + putAdditionalProperty(JSON_PROPERTY_INGEST_POINTS_SUM, ingestPointsSum); } public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) { @@ -5606,6 +5929,7 @@ public Long getIngestedEventsBytesSum() { public void setIngestedEventsBytesSum(Long ingestedEventsBytesSum) { this.ingestedEventsBytesSum = ingestedEventsBytesSum; + putAdditionalProperty(JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, ingestedEventsBytesSum); } public UsageSummaryDateOrg iotApmHostSum(Long iotApmHostSum) { @@ -5628,6 +5952,7 @@ public Long getIotApmHostSum() { public void setIotApmHostSum(Long iotApmHostSum) { this.iotApmHostSum = iotApmHostSum; + putAdditionalProperty(JSON_PROPERTY_IOT_APM_HOST_SUM, iotApmHostSum); } public UsageSummaryDateOrg iotApmHostTop99p(Long iotApmHostTop99p) { @@ -5650,6 +5975,7 @@ public Long getIotApmHostTop99p() { public void setIotApmHostTop99p(Long iotApmHostTop99p) { this.iotApmHostTop99p = iotApmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_IOT_APM_HOST_TOP99P, iotApmHostTop99p); } public UsageSummaryDateOrg iotDeviceAggSum(Long iotDeviceAggSum) { @@ -5671,6 +5997,7 @@ public Long getIotDeviceAggSum() { public void setIotDeviceAggSum(Long iotDeviceAggSum) { this.iotDeviceAggSum = iotDeviceAggSum; + putAdditionalProperty(JSON_PROPERTY_IOT_DEVICE_AGG_SUM, iotDeviceAggSum); } public UsageSummaryDateOrg iotDeviceTop99pSum(Long iotDeviceTop99pSum) { @@ -5693,6 +6020,7 @@ public Long getIotDeviceTop99pSum() { public void setIotDeviceTop99pSum(Long iotDeviceTop99pSum) { this.iotDeviceTop99pSum = iotDeviceTop99pSum; + putAdditionalProperty(JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, iotDeviceTop99pSum); } public UsageSummaryDateOrg llmObservability15dayRetentionSpansSum( @@ -5717,6 +6045,9 @@ public Long getLlmObservability15dayRetentionSpansSum() { public void setLlmObservability15dayRetentionSpansSum( Long llmObservability15dayRetentionSpansSum) { this.llmObservability15dayRetentionSpansSum = llmObservability15dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_15DAY_RETENTION_SPANS_SUM, + llmObservability15dayRetentionSpansSum); } public UsageSummaryDateOrg llmObservability30dayRetentionSpansSum( @@ -5741,6 +6072,9 @@ public Long getLlmObservability30dayRetentionSpansSum() { public void setLlmObservability30dayRetentionSpansSum( Long llmObservability30dayRetentionSpansSum) { this.llmObservability30dayRetentionSpansSum = llmObservability30dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_30DAY_RETENTION_SPANS_SUM, + llmObservability30dayRetentionSpansSum); } public UsageSummaryDateOrg llmObservability60dayRetentionSpansSum( @@ -5765,6 +6099,9 @@ public Long getLlmObservability60dayRetentionSpansSum() { public void setLlmObservability60dayRetentionSpansSum( Long llmObservability60dayRetentionSpansSum) { this.llmObservability60dayRetentionSpansSum = llmObservability60dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_60DAY_RETENTION_SPANS_SUM, + llmObservability60dayRetentionSpansSum); } public UsageSummaryDateOrg llmObservability90dayRetentionSpansSum( @@ -5789,6 +6126,9 @@ public Long getLlmObservability90dayRetentionSpansSum() { public void setLlmObservability90dayRetentionSpansSum( Long llmObservability90dayRetentionSpansSum) { this.llmObservability90dayRetentionSpansSum = llmObservability90dayRetentionSpansSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_90DAY_RETENTION_SPANS_SUM, + llmObservability90dayRetentionSpansSum); } public UsageSummaryDateOrg llmObservabilityMinSpendSum(Long llmObservabilityMinSpendSum) { @@ -5811,6 +6151,8 @@ public Long getLlmObservabilityMinSpendSum() { public void setLlmObservabilityMinSpendSum(Long llmObservabilityMinSpendSum) { this.llmObservabilityMinSpendSum = llmObservabilityMinSpendSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_MIN_SPEND_SUM, llmObservabilityMinSpendSum); } public UsageSummaryDateOrg llmObservabilitySum(Long llmObservabilitySum) { @@ -5833,6 +6175,7 @@ public Long getLlmObservabilitySum() { public void setLlmObservabilitySum(Long llmObservabilitySum) { this.llmObservabilitySum = llmObservabilitySum; + putAdditionalProperty(JSON_PROPERTY_LLM_OBSERVABILITY_SUM, llmObservabilitySum); } public UsageSummaryDateOrg logsArchiveSearchGbScannedSum(Long logsArchiveSearchGbScannedSum) { @@ -5855,6 +6198,8 @@ public Long getLogsArchiveSearchGbScannedSum() { public void setLogsArchiveSearchGbScannedSum(Long logsArchiveSearchGbScannedSum) { this.logsArchiveSearchGbScannedSum = logsArchiveSearchGbScannedSum; + putAdditionalProperty( + JSON_PROPERTY_LOGS_ARCHIVE_SEARCH_GB_SCANNED_SUM, logsArchiveSearchGbScannedSum); } public UsageSummaryDateOrg metricNamesSum(Long metricNamesSum) { @@ -5876,6 +6221,7 @@ public Long getMetricNamesSum() { public void setMetricNamesSum(Long metricNamesSum) { this.metricNamesSum = metricNamesSum; + putAdditionalProperty(JSON_PROPERTY_METRIC_NAMES_SUM, metricNamesSum); } public UsageSummaryDateOrg mobileRumLiteSessionCountSum(Long mobileRumLiteSessionCountSum) { @@ -5901,6 +6247,8 @@ public Long getMobileRumLiteSessionCountSum() { @Deprecated public void setMobileRumLiteSessionCountSum(Long mobileRumLiteSessionCountSum) { this.mobileRumLiteSessionCountSum = mobileRumLiteSessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_LITE_SESSION_COUNT_SUM, mobileRumLiteSessionCountSum); } public UsageSummaryDateOrg mobileRumSessionCountAndroidSum(Long mobileRumSessionCountAndroidSum) { @@ -5926,6 +6274,8 @@ public Long getMobileRumSessionCountAndroidSum() { @Deprecated public void setMobileRumSessionCountAndroidSum(Long mobileRumSessionCountAndroidSum) { this.mobileRumSessionCountAndroidSum = mobileRumSessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ANDROID_SUM, mobileRumSessionCountAndroidSum); } public UsageSummaryDateOrg mobileRumSessionCountFlutterSum(Long mobileRumSessionCountFlutterSum) { @@ -5951,6 +6301,8 @@ public Long getMobileRumSessionCountFlutterSum() { @Deprecated public void setMobileRumSessionCountFlutterSum(Long mobileRumSessionCountFlutterSum) { this.mobileRumSessionCountFlutterSum = mobileRumSessionCountFlutterSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_FLUTTER_SUM, mobileRumSessionCountFlutterSum); } public UsageSummaryDateOrg mobileRumSessionCountIosSum(Long mobileRumSessionCountIosSum) { @@ -5976,6 +6328,8 @@ public Long getMobileRumSessionCountIosSum() { @Deprecated public void setMobileRumSessionCountIosSum(Long mobileRumSessionCountIosSum) { this.mobileRumSessionCountIosSum = mobileRumSessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_IOS_SUM, mobileRumSessionCountIosSum); } public UsageSummaryDateOrg mobileRumSessionCountReactnativeSum( @@ -6002,6 +6356,9 @@ public Long getMobileRumSessionCountReactnativeSum() { @Deprecated public void setMobileRumSessionCountReactnativeSum(Long mobileRumSessionCountReactnativeSum) { this.mobileRumSessionCountReactnativeSum = mobileRumSessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_REACTNATIVE_SUM, + mobileRumSessionCountReactnativeSum); } public UsageSummaryDateOrg mobileRumSessionCountRokuSum(Long mobileRumSessionCountRokuSum) { @@ -6027,6 +6384,8 @@ public Long getMobileRumSessionCountRokuSum() { @Deprecated public void setMobileRumSessionCountRokuSum(Long mobileRumSessionCountRokuSum) { this.mobileRumSessionCountRokuSum = mobileRumSessionCountRokuSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ROKU_SUM, mobileRumSessionCountRokuSum); } public UsageSummaryDateOrg mobileRumSessionCountSum(Long mobileRumSessionCountSum) { @@ -6052,6 +6411,7 @@ public Long getMobileRumSessionCountSum() { @Deprecated public void setMobileRumSessionCountSum(Long mobileRumSessionCountSum) { this.mobileRumSessionCountSum = mobileRumSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_SUM, mobileRumSessionCountSum); } public UsageSummaryDateOrg mobileRumUnitsSum(Long mobileRumUnitsSum) { @@ -6077,6 +6437,7 @@ public Long getMobileRumUnitsSum() { @Deprecated public void setMobileRumUnitsSum(Long mobileRumUnitsSum) { this.mobileRumUnitsSum = mobileRumUnitsSum; + putAdditionalProperty(JSON_PROPERTY_MOBILE_RUM_UNITS_SUM, mobileRumUnitsSum); } public UsageSummaryDateOrg name(String name) { @@ -6098,6 +6459,7 @@ public String getName() { public void setName(String name) { this.name = name; + putAdditionalProperty(JSON_PROPERTY_NAME, name); } public UsageSummaryDateOrg ndmNetflowEventsSum(Long ndmNetflowEventsSum) { @@ -6120,6 +6482,7 @@ public Long getNdmNetflowEventsSum() { public void setNdmNetflowEventsSum(Long ndmNetflowEventsSum) { this.ndmNetflowEventsSum = ndmNetflowEventsSum; + putAdditionalProperty(JSON_PROPERTY_NDM_NETFLOW_EVENTS_SUM, ndmNetflowEventsSum); } public UsageSummaryDateOrg netflowIndexedEventsCountSum(Long netflowIndexedEventsCountSum) { @@ -6145,6 +6508,8 @@ public Long getNetflowIndexedEventsCountSum() { @Deprecated public void setNetflowIndexedEventsCountSum(Long netflowIndexedEventsCountSum) { this.netflowIndexedEventsCountSum = netflowIndexedEventsCountSum; + putAdditionalProperty( + JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_SUM, netflowIndexedEventsCountSum); } public UsageSummaryDateOrg networkDeviceWirelessTop99p(Long networkDeviceWirelessTop99p) { @@ -6167,6 +6532,8 @@ public Long getNetworkDeviceWirelessTop99p() { public void setNetworkDeviceWirelessTop99p(Long networkDeviceWirelessTop99p) { this.networkDeviceWirelessTop99p = networkDeviceWirelessTop99p; + putAdditionalProperty( + JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P, networkDeviceWirelessTop99p); } public UsageSummaryDateOrg networkPathSum(Long networkPathSum) { @@ -6189,6 +6556,7 @@ public Long getNetworkPathSum() { public void setNetworkPathSum(Long networkPathSum) { this.networkPathSum = networkPathSum; + putAdditionalProperty(JSON_PROPERTY_NETWORK_PATH_SUM, networkPathSum); } public UsageSummaryDateOrg npmHostTop99p(Long npmHostTop99p) { @@ -6211,6 +6579,7 @@ public Long getNpmHostTop99p() { public void setNpmHostTop99p(Long npmHostTop99p) { this.npmHostTop99p = npmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_NPM_HOST_TOP99P, npmHostTop99p); } public UsageSummaryDateOrg observabilityPipelinesBytesProcessedSum( @@ -6235,6 +6604,9 @@ public Long getObservabilityPipelinesBytesProcessedSum() { public void setObservabilityPipelinesBytesProcessedSum( Long observabilityPipelinesBytesProcessedSum) { this.observabilityPipelinesBytesProcessedSum = observabilityPipelinesBytesProcessedSum; + putAdditionalProperty( + JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM, + observabilityPipelinesBytesProcessedSum); } public UsageSummaryDateOrg ociHostSum(Long ociHostSum) { @@ -6257,6 +6629,7 @@ public Long getOciHostSum() { public void setOciHostSum(Long ociHostSum) { this.ociHostSum = ociHostSum; + putAdditionalProperty(JSON_PROPERTY_OCI_HOST_SUM, ociHostSum); } public UsageSummaryDateOrg ociHostTop99p(Long ociHostTop99p) { @@ -6279,6 +6652,7 @@ public Long getOciHostTop99p() { public void setOciHostTop99p(Long ociHostTop99p) { this.ociHostTop99p = ociHostTop99p; + putAdditionalProperty(JSON_PROPERTY_OCI_HOST_TOP99P, ociHostTop99p); } public UsageSummaryDateOrg onCallSeatHwm(Long onCallSeatHwm) { @@ -6301,6 +6675,7 @@ public Long getOnCallSeatHwm() { public void setOnCallSeatHwm(Long onCallSeatHwm) { this.onCallSeatHwm = onCallSeatHwm; + putAdditionalProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM, onCallSeatHwm); } public UsageSummaryDateOrg onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) { @@ -6322,6 +6697,8 @@ public Long getOnlineArchiveEventsCountSum() { public void setOnlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) { this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum; + putAdditionalProperty( + JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM, onlineArchiveEventsCountSum); } public UsageSummaryDateOrg opentelemetryApmHostTop99p(Long opentelemetryApmHostTop99p) { @@ -6344,6 +6721,7 @@ public Long getOpentelemetryApmHostTop99p() { public void setOpentelemetryApmHostTop99p(Long opentelemetryApmHostTop99p) { this.opentelemetryApmHostTop99p = opentelemetryApmHostTop99p; + putAdditionalProperty(JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P, opentelemetryApmHostTop99p); } public UsageSummaryDateOrg opentelemetryHostTop99p(Long opentelemetryHostTop99p) { @@ -6366,6 +6744,7 @@ public Long getOpentelemetryHostTop99p() { public void setOpentelemetryHostTop99p(Long opentelemetryHostTop99p) { this.opentelemetryHostTop99p = opentelemetryHostTop99p; + putAdditionalProperty(JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P, opentelemetryHostTop99p); } public UsageSummaryDateOrg productAnalyticsSum(Long productAnalyticsSum) { @@ -6388,6 +6767,7 @@ public Long getProductAnalyticsSum() { public void setProductAnalyticsSum(Long productAnalyticsSum) { this.productAnalyticsSum = productAnalyticsSum; + putAdditionalProperty(JSON_PROPERTY_PRODUCT_ANALYTICS_SUM, productAnalyticsSum); } public UsageSummaryDateOrg profilingAasCountTop99p(Long profilingAasCountTop99p) { @@ -6410,6 +6790,7 @@ public Long getProfilingAasCountTop99p() { public void setProfilingAasCountTop99p(Long profilingAasCountTop99p) { this.profilingAasCountTop99p = profilingAasCountTop99p; + putAdditionalProperty(JSON_PROPERTY_PROFILING_AAS_COUNT_TOP99P, profilingAasCountTop99p); } public UsageSummaryDateOrg profilingHostTop99p(Long profilingHostTop99p) { @@ -6432,6 +6813,7 @@ public Long getProfilingHostTop99p() { public void setProfilingHostTop99p(Long profilingHostTop99p) { this.profilingHostTop99p = profilingHostTop99p; + putAdditionalProperty(JSON_PROPERTY_PROFILING_HOST_TOP99P, profilingHostTop99p); } public UsageSummaryDateOrg proxmoxHostSum(Long proxmoxHostSum) { @@ -6453,6 +6835,7 @@ public Long getProxmoxHostSum() { public void setProxmoxHostSum(Long proxmoxHostSum) { this.proxmoxHostSum = proxmoxHostSum; + putAdditionalProperty(JSON_PROPERTY_PROXMOX_HOST_SUM, proxmoxHostSum); } public UsageSummaryDateOrg proxmoxHostTop99p(Long proxmoxHostTop99p) { @@ -6475,6 +6858,7 @@ public Long getProxmoxHostTop99p() { public void setProxmoxHostTop99p(Long proxmoxHostTop99p) { this.proxmoxHostTop99p = proxmoxHostTop99p; + putAdditionalProperty(JSON_PROPERTY_PROXMOX_HOST_TOP99P, proxmoxHostTop99p); } public UsageSummaryDateOrg publicId(String publicId) { @@ -6496,6 +6880,7 @@ public String getPublicId() { public void setPublicId(String publicId) { this.publicId = publicId; + putAdditionalProperty(JSON_PROPERTY_PUBLIC_ID, publicId); } public UsageSummaryDateOrg publishedAppHwm(Long publishedAppHwm) { @@ -6518,6 +6903,7 @@ public Long getPublishedAppHwm() { public void setPublishedAppHwm(Long publishedAppHwm) { this.publishedAppHwm = publishedAppHwm; + putAdditionalProperty(JSON_PROPERTY_PUBLISHED_APP_HWM, publishedAppHwm); } public UsageSummaryDateOrg region(String region) { @@ -6539,6 +6925,7 @@ public String getRegion() { public void setRegion(String region) { this.region = region; + putAdditionalProperty(JSON_PROPERTY_REGION, region); } public UsageSummaryDateOrg rumBrowserAndMobileSessionCount(Long rumBrowserAndMobileSessionCount) { @@ -6561,6 +6948,8 @@ public Long getRumBrowserAndMobileSessionCount() { public void setRumBrowserAndMobileSessionCount(Long rumBrowserAndMobileSessionCount) { this.rumBrowserAndMobileSessionCount = rumBrowserAndMobileSessionCount; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_AND_MOBILE_SESSION_COUNT, rumBrowserAndMobileSessionCount); } public UsageSummaryDateOrg rumBrowserLegacySessionCountSum(Long rumBrowserLegacySessionCountSum) { @@ -6583,6 +6972,8 @@ public Long getRumBrowserLegacySessionCountSum() { public void setRumBrowserLegacySessionCountSum(Long rumBrowserLegacySessionCountSum) { this.rumBrowserLegacySessionCountSum = rumBrowserLegacySessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_LEGACY_SESSION_COUNT_SUM, rumBrowserLegacySessionCountSum); } public UsageSummaryDateOrg rumBrowserLiteSessionCountSum(Long rumBrowserLiteSessionCountSum) { @@ -6605,6 +6996,8 @@ public Long getRumBrowserLiteSessionCountSum() { public void setRumBrowserLiteSessionCountSum(Long rumBrowserLiteSessionCountSum) { this.rumBrowserLiteSessionCountSum = rumBrowserLiteSessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_LITE_SESSION_COUNT_SUM, rumBrowserLiteSessionCountSum); } public UsageSummaryDateOrg rumBrowserReplaySessionCountSum(Long rumBrowserReplaySessionCountSum) { @@ -6627,6 +7020,8 @@ public Long getRumBrowserReplaySessionCountSum() { public void setRumBrowserReplaySessionCountSum(Long rumBrowserReplaySessionCountSum) { this.rumBrowserReplaySessionCountSum = rumBrowserReplaySessionCountSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_REPLAY_SESSION_COUNT_SUM, rumBrowserReplaySessionCountSum); } public UsageSummaryDateOrg rumIndexedSessionsSum(Long rumIndexedSessionsSum) { @@ -6648,6 +7043,7 @@ public Long getRumIndexedSessionsSum() { public void setRumIndexedSessionsSum(Long rumIndexedSessionsSum) { this.rumIndexedSessionsSum = rumIndexedSessionsSum; + putAdditionalProperty(JSON_PROPERTY_RUM_INDEXED_SESSIONS_SUM, rumIndexedSessionsSum); } public UsageSummaryDateOrg rumIngestedSessionsSum(Long rumIngestedSessionsSum) { @@ -6670,6 +7066,7 @@ public Long getRumIngestedSessionsSum() { public void setRumIngestedSessionsSum(Long rumIngestedSessionsSum) { this.rumIngestedSessionsSum = rumIngestedSessionsSum; + putAdditionalProperty(JSON_PROPERTY_RUM_INGESTED_SESSIONS_SUM, rumIngestedSessionsSum); } public UsageSummaryDateOrg rumLiteSessionCountSum(Long rumLiteSessionCountSum) { @@ -6692,6 +7089,7 @@ public Long getRumLiteSessionCountSum() { public void setRumLiteSessionCountSum(Long rumLiteSessionCountSum) { this.rumLiteSessionCountSum = rumLiteSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_LITE_SESSION_COUNT_SUM, rumLiteSessionCountSum); } public UsageSummaryDateOrg rumMobileLegacySessionCountAndroidSum( @@ -6715,6 +7113,9 @@ public Long getRumMobileLegacySessionCountAndroidSum() { public void setRumMobileLegacySessionCountAndroidSum(Long rumMobileLegacySessionCountAndroidSum) { this.rumMobileLegacySessionCountAndroidSum = rumMobileLegacySessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ANDROID_SUM, + rumMobileLegacySessionCountAndroidSum); } public UsageSummaryDateOrg rumMobileLegacySessionCountFlutterSum( @@ -6738,6 +7139,9 @@ public Long getRumMobileLegacySessionCountFlutterSum() { public void setRumMobileLegacySessionCountFlutterSum(Long rumMobileLegacySessionCountFlutterSum) { this.rumMobileLegacySessionCountFlutterSum = rumMobileLegacySessionCountFlutterSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_FLUTTER_SUM, + rumMobileLegacySessionCountFlutterSum); } public UsageSummaryDateOrg rumMobileLegacySessionCountIosSum( @@ -6761,6 +7165,8 @@ public Long getRumMobileLegacySessionCountIosSum() { public void setRumMobileLegacySessionCountIosSum(Long rumMobileLegacySessionCountIosSum) { this.rumMobileLegacySessionCountIosSum = rumMobileLegacySessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_IOS_SUM, rumMobileLegacySessionCountIosSum); } public UsageSummaryDateOrg rumMobileLegacySessionCountReactnativeSum( @@ -6785,6 +7191,9 @@ public Long getRumMobileLegacySessionCountReactnativeSum() { public void setRumMobileLegacySessionCountReactnativeSum( Long rumMobileLegacySessionCountReactnativeSum) { this.rumMobileLegacySessionCountReactnativeSum = rumMobileLegacySessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_REACTNATIVE_SUM, + rumMobileLegacySessionCountReactnativeSum); } public UsageSummaryDateOrg rumMobileLegacySessionCountRokuSum( @@ -6808,6 +7217,8 @@ public Long getRumMobileLegacySessionCountRokuSum() { public void setRumMobileLegacySessionCountRokuSum(Long rumMobileLegacySessionCountRokuSum) { this.rumMobileLegacySessionCountRokuSum = rumMobileLegacySessionCountRokuSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ROKU_SUM, rumMobileLegacySessionCountRokuSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountAndroidSum( @@ -6831,6 +7242,9 @@ public Long getRumMobileLiteSessionCountAndroidSum() { public void setRumMobileLiteSessionCountAndroidSum(Long rumMobileLiteSessionCountAndroidSum) { this.rumMobileLiteSessionCountAndroidSum = rumMobileLiteSessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ANDROID_SUM, + rumMobileLiteSessionCountAndroidSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountFlutterSum( @@ -6854,6 +7268,9 @@ public Long getRumMobileLiteSessionCountFlutterSum() { public void setRumMobileLiteSessionCountFlutterSum(Long rumMobileLiteSessionCountFlutterSum) { this.rumMobileLiteSessionCountFlutterSum = rumMobileLiteSessionCountFlutterSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_FLUTTER_SUM, + rumMobileLiteSessionCountFlutterSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountIosSum(Long rumMobileLiteSessionCountIosSum) { @@ -6876,6 +7293,8 @@ public Long getRumMobileLiteSessionCountIosSum() { public void setRumMobileLiteSessionCountIosSum(Long rumMobileLiteSessionCountIosSum) { this.rumMobileLiteSessionCountIosSum = rumMobileLiteSessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_IOS_SUM, rumMobileLiteSessionCountIosSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountKotlinmultiplatformSum( @@ -6902,6 +7321,9 @@ public void setRumMobileLiteSessionCountKotlinmultiplatformSum( Long rumMobileLiteSessionCountKotlinmultiplatformSum) { this.rumMobileLiteSessionCountKotlinmultiplatformSum = rumMobileLiteSessionCountKotlinmultiplatformSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_KOTLINMULTIPLATFORM_SUM, + rumMobileLiteSessionCountKotlinmultiplatformSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountReactnativeSum( @@ -6926,6 +7348,9 @@ public Long getRumMobileLiteSessionCountReactnativeSum() { public void setRumMobileLiteSessionCountReactnativeSum( Long rumMobileLiteSessionCountReactnativeSum) { this.rumMobileLiteSessionCountReactnativeSum = rumMobileLiteSessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_REACTNATIVE_SUM, + rumMobileLiteSessionCountReactnativeSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountRokuSum( @@ -6949,6 +7374,8 @@ public Long getRumMobileLiteSessionCountRokuSum() { public void setRumMobileLiteSessionCountRokuSum(Long rumMobileLiteSessionCountRokuSum) { this.rumMobileLiteSessionCountRokuSum = rumMobileLiteSessionCountRokuSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ROKU_SUM, rumMobileLiteSessionCountRokuSum); } public UsageSummaryDateOrg rumMobileLiteSessionCountUnitySum( @@ -6972,6 +7399,8 @@ public Long getRumMobileLiteSessionCountUnitySum() { public void setRumMobileLiteSessionCountUnitySum(Long rumMobileLiteSessionCountUnitySum) { this.rumMobileLiteSessionCountUnitySum = rumMobileLiteSessionCountUnitySum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_UNITY_SUM, rumMobileLiteSessionCountUnitySum); } public UsageSummaryDateOrg rumMobileReplaySessionCountAndroidSum( @@ -6995,6 +7424,9 @@ public Long getRumMobileReplaySessionCountAndroidSum() { public void setRumMobileReplaySessionCountAndroidSum(Long rumMobileReplaySessionCountAndroidSum) { this.rumMobileReplaySessionCountAndroidSum = rumMobileReplaySessionCountAndroidSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_SUM, + rumMobileReplaySessionCountAndroidSum); } public UsageSummaryDateOrg rumMobileReplaySessionCountIosSum( @@ -7018,6 +7450,8 @@ public Long getRumMobileReplaySessionCountIosSum() { public void setRumMobileReplaySessionCountIosSum(Long rumMobileReplaySessionCountIosSum) { this.rumMobileReplaySessionCountIosSum = rumMobileReplaySessionCountIosSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_SUM, rumMobileReplaySessionCountIosSum); } public UsageSummaryDateOrg rumMobileReplaySessionCountKotlinmultiplatformSum( @@ -7044,6 +7478,9 @@ public void setRumMobileReplaySessionCountKotlinmultiplatformSum( Long rumMobileReplaySessionCountKotlinmultiplatformSum) { this.rumMobileReplaySessionCountKotlinmultiplatformSum = rumMobileReplaySessionCountKotlinmultiplatformSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_KOTLINMULTIPLATFORM_SUM, + rumMobileReplaySessionCountKotlinmultiplatformSum); } public UsageSummaryDateOrg rumMobileReplaySessionCountReactnativeSum( @@ -7068,6 +7505,9 @@ public Long getRumMobileReplaySessionCountReactnativeSum() { public void setRumMobileReplaySessionCountReactnativeSum( Long rumMobileReplaySessionCountReactnativeSum) { this.rumMobileReplaySessionCountReactnativeSum = rumMobileReplaySessionCountReactnativeSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_SUM, + rumMobileReplaySessionCountReactnativeSum); } public UsageSummaryDateOrg rumReplaySessionCountSum(Long rumReplaySessionCountSum) { @@ -7090,6 +7530,7 @@ public Long getRumReplaySessionCountSum() { public void setRumReplaySessionCountSum(Long rumReplaySessionCountSum) { this.rumReplaySessionCountSum = rumReplaySessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_SUM, rumReplaySessionCountSum); } public UsageSummaryDateOrg rumSessionCountSum(Long rumSessionCountSum) { @@ -7115,6 +7556,7 @@ public Long getRumSessionCountSum() { @Deprecated public void setRumSessionCountSum(Long rumSessionCountSum) { this.rumSessionCountSum = rumSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_SESSION_COUNT_SUM, rumSessionCountSum); } public UsageSummaryDateOrg rumSessionReplayAddOnSum(Long rumSessionReplayAddOnSum) { @@ -7137,6 +7579,7 @@ public Long getRumSessionReplayAddOnSum() { public void setRumSessionReplayAddOnSum(Long rumSessionReplayAddOnSum) { this.rumSessionReplayAddOnSum = rumSessionReplayAddOnSum; + putAdditionalProperty(JSON_PROPERTY_RUM_SESSION_REPLAY_ADD_ON_SUM, rumSessionReplayAddOnSum); } public UsageSummaryDateOrg rumTotalSessionCountSum(Long rumTotalSessionCountSum) { @@ -7159,6 +7602,7 @@ public Long getRumTotalSessionCountSum() { public void setRumTotalSessionCountSum(Long rumTotalSessionCountSum) { this.rumTotalSessionCountSum = rumTotalSessionCountSum; + putAdditionalProperty(JSON_PROPERTY_RUM_TOTAL_SESSION_COUNT_SUM, rumTotalSessionCountSum); } public UsageSummaryDateOrg rumUnitsSum(Long rumUnitsSum) { @@ -7184,6 +7628,7 @@ public Long getRumUnitsSum() { @Deprecated public void setRumUnitsSum(Long rumUnitsSum) { this.rumUnitsSum = rumUnitsSum; + putAdditionalProperty(JSON_PROPERTY_RUM_UNITS_SUM, rumUnitsSum); } public UsageSummaryDateOrg scaFargateCountAvg(Long scaFargateCountAvg) { @@ -7206,6 +7651,7 @@ public Long getScaFargateCountAvg() { public void setScaFargateCountAvg(Long scaFargateCountAvg) { this.scaFargateCountAvg = scaFargateCountAvg; + putAdditionalProperty(JSON_PROPERTY_SCA_FARGATE_COUNT_AVG, scaFargateCountAvg); } public UsageSummaryDateOrg scaFargateCountHwm(Long scaFargateCountHwm) { @@ -7228,6 +7674,7 @@ public Long getScaFargateCountHwm() { public void setScaFargateCountHwm(Long scaFargateCountHwm) { this.scaFargateCountHwm = scaFargateCountHwm; + putAdditionalProperty(JSON_PROPERTY_SCA_FARGATE_COUNT_HWM, scaFargateCountHwm); } public UsageSummaryDateOrg sdsApmScannedBytesSum(Long sdsApmScannedBytesSum) { @@ -7250,6 +7697,7 @@ public Long getSdsApmScannedBytesSum() { public void setSdsApmScannedBytesSum(Long sdsApmScannedBytesSum) { this.sdsApmScannedBytesSum = sdsApmScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_APM_SCANNED_BYTES_SUM, sdsApmScannedBytesSum); } public UsageSummaryDateOrg sdsEventsScannedBytesSum(Long sdsEventsScannedBytesSum) { @@ -7272,6 +7720,7 @@ public Long getSdsEventsScannedBytesSum() { public void setSdsEventsScannedBytesSum(Long sdsEventsScannedBytesSum) { this.sdsEventsScannedBytesSum = sdsEventsScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_EVENTS_SCANNED_BYTES_SUM, sdsEventsScannedBytesSum); } public UsageSummaryDateOrg sdsLogsScannedBytesSum(Long sdsLogsScannedBytesSum) { @@ -7294,6 +7743,7 @@ public Long getSdsLogsScannedBytesSum() { public void setSdsLogsScannedBytesSum(Long sdsLogsScannedBytesSum) { this.sdsLogsScannedBytesSum = sdsLogsScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_LOGS_SCANNED_BYTES_SUM, sdsLogsScannedBytesSum); } public UsageSummaryDateOrg sdsRumScannedBytesSum(Long sdsRumScannedBytesSum) { @@ -7316,6 +7766,7 @@ public Long getSdsRumScannedBytesSum() { public void setSdsRumScannedBytesSum(Long sdsRumScannedBytesSum) { this.sdsRumScannedBytesSum = sdsRumScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_RUM_SCANNED_BYTES_SUM, sdsRumScannedBytesSum); } public UsageSummaryDateOrg sdsTotalScannedBytesSum(Long sdsTotalScannedBytesSum) { @@ -7338,6 +7789,7 @@ public Long getSdsTotalScannedBytesSum() { public void setSdsTotalScannedBytesSum(Long sdsTotalScannedBytesSum) { this.sdsTotalScannedBytesSum = sdsTotalScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_TOTAL_SCANNED_BYTES_SUM, sdsTotalScannedBytesSum); } public UsageSummaryDateOrg serverlessAppsApmApmAzureAppserviceInstancesAvg( @@ -7364,6 +7816,9 @@ public void setServerlessAppsApmApmAzureAppserviceInstancesAvg( Long serverlessAppsApmApmAzureAppserviceInstancesAvg) { this.serverlessAppsApmApmAzureAppserviceInstancesAvg = serverlessAppsApmApmAzureAppserviceInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_APPSERVICE_INSTANCES_AVG, + serverlessAppsApmApmAzureAppserviceInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmApmAzureAzurefunctionInstancesAvg( @@ -7390,6 +7845,9 @@ public void setServerlessAppsApmApmAzureAzurefunctionInstancesAvg( Long serverlessAppsApmApmAzureAzurefunctionInstancesAvg) { this.serverlessAppsApmApmAzureAzurefunctionInstancesAvg = serverlessAppsApmApmAzureAzurefunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG, + serverlessAppsApmApmAzureAzurefunctionInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmApmAzureContainerappInstancesAvg( @@ -7416,6 +7874,9 @@ public void setServerlessAppsApmApmAzureContainerappInstancesAvg( Long serverlessAppsApmApmAzureContainerappInstancesAvg) { this.serverlessAppsApmApmAzureContainerappInstancesAvg = serverlessAppsApmApmAzureContainerappInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_CONTAINERAPP_INSTANCES_AVG, + serverlessAppsApmApmAzureContainerappInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmApmFargateEcsTasksAvg( @@ -7440,6 +7901,9 @@ public Long getServerlessAppsApmApmFargateEcsTasksAvg() { public void setServerlessAppsApmApmFargateEcsTasksAvg( Long serverlessAppsApmApmFargateEcsTasksAvg) { this.serverlessAppsApmApmFargateEcsTasksAvg = serverlessAppsApmApmFargateEcsTasksAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_FARGATE_ECS_TASKS_AVG, + serverlessAppsApmApmFargateEcsTasksAvg); } public UsageSummaryDateOrg serverlessAppsApmApmGcpCloudfunctionInstancesAvg( @@ -7466,6 +7930,9 @@ public void setServerlessAppsApmApmGcpCloudfunctionInstancesAvg( Long serverlessAppsApmApmGcpCloudfunctionInstancesAvg) { this.serverlessAppsApmApmGcpCloudfunctionInstancesAvg = serverlessAppsApmApmGcpCloudfunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG, + serverlessAppsApmApmGcpCloudfunctionInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmApmGcpCloudrunInstancesAvg( @@ -7490,6 +7957,9 @@ public Long getServerlessAppsApmApmGcpCloudrunInstancesAvg() { public void setServerlessAppsApmApmGcpCloudrunInstancesAvg( Long serverlessAppsApmApmGcpCloudrunInstancesAvg) { this.serverlessAppsApmApmGcpCloudrunInstancesAvg = serverlessAppsApmApmGcpCloudrunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDRUN_INSTANCES_AVG, + serverlessAppsApmApmGcpCloudrunInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmApmGcpGkeAutopilotPodsAvg( @@ -7514,6 +7984,9 @@ public Long getServerlessAppsApmApmGcpGkeAutopilotPodsAvg() { public void setServerlessAppsApmApmGcpGkeAutopilotPodsAvg( Long serverlessAppsApmApmGcpGkeAutopilotPodsAvg) { this.serverlessAppsApmApmGcpGkeAutopilotPodsAvg = serverlessAppsApmApmGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsApmApmGcpGkeAutopilotPodsAvg); } public UsageSummaryDateOrg serverlessAppsApmAvg(Long serverlessAppsApmAvg) { @@ -7536,6 +8009,7 @@ public Long getServerlessAppsApmAvg() { public void setServerlessAppsApmAvg(Long serverlessAppsApmAvg) { this.serverlessAppsApmAvg = serverlessAppsApmAvg; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_APM_AVG, serverlessAppsApmAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg( @@ -7562,6 +8036,9 @@ public void setServerlessAppsApmExclFargateApmAzureAppserviceInstancesAvg( Long serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg) { this.serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg = serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_APPSERVICE_INSTANCES_AVG, + serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg( @@ -7589,6 +8066,9 @@ public void setServerlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg( Long serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg) { this.serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg = serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG, + serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg( @@ -7615,6 +8095,9 @@ public void setServerlessAppsApmExclFargateApmAzureContainerappInstancesAvg( Long serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg) { this.serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg = serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_CONTAINERAPP_INSTANCES_AVG, + serverlessAppsApmExclFargateApmAzureContainerappInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg( @@ -7641,6 +8124,9 @@ public void setServerlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg( Long serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg) { this.serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg = serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG, + serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg( @@ -7667,6 +8153,9 @@ public void setServerlessAppsApmExclFargateApmGcpCloudrunInstancesAvg( Long serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg) { this.serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg = serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDRUN_INSTANCES_AVG, + serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg( @@ -7693,6 +8182,9 @@ public void setServerlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg( Long serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg) { this.serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg = serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvg); } public UsageSummaryDateOrg serverlessAppsApmExclFargateAvg(Long serverlessAppsApmExclFargateAvg) { @@ -7715,6 +8207,8 @@ public Long getServerlessAppsApmExclFargateAvg() { public void setServerlessAppsApmExclFargateAvg(Long serverlessAppsApmExclFargateAvg) { this.serverlessAppsApmExclFargateAvg = serverlessAppsApmExclFargateAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_AVG, serverlessAppsApmExclFargateAvg); } public UsageSummaryDateOrg serverlessAppsAzureContainerAppInstancesAvg( @@ -7739,6 +8233,9 @@ public Long getServerlessAppsAzureContainerAppInstancesAvg() { public void setServerlessAppsAzureContainerAppInstancesAvg( Long serverlessAppsAzureContainerAppInstancesAvg) { this.serverlessAppsAzureContainerAppInstancesAvg = serverlessAppsAzureContainerAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_CONTAINER_APP_INSTANCES_AVG, + serverlessAppsAzureContainerAppInstancesAvg); } public UsageSummaryDateOrg serverlessAppsAzureCountAvg(Long serverlessAppsAzureCountAvg) { @@ -7760,6 +8257,8 @@ public Long getServerlessAppsAzureCountAvg() { public void setServerlessAppsAzureCountAvg(Long serverlessAppsAzureCountAvg) { this.serverlessAppsAzureCountAvg = serverlessAppsAzureCountAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_COUNT_AVG, serverlessAppsAzureCountAvg); } public UsageSummaryDateOrg serverlessAppsAzureFunctionAppInstancesAvg( @@ -7784,6 +8283,9 @@ public Long getServerlessAppsAzureFunctionAppInstancesAvg() { public void setServerlessAppsAzureFunctionAppInstancesAvg( Long serverlessAppsAzureFunctionAppInstancesAvg) { this.serverlessAppsAzureFunctionAppInstancesAvg = serverlessAppsAzureFunctionAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_FUNCTION_APP_INSTANCES_AVG, + serverlessAppsAzureFunctionAppInstancesAvg); } public UsageSummaryDateOrg serverlessAppsAzureWebAppInstancesAvg( @@ -7807,6 +8309,9 @@ public Long getServerlessAppsAzureWebAppInstancesAvg() { public void setServerlessAppsAzureWebAppInstancesAvg(Long serverlessAppsAzureWebAppInstancesAvg) { this.serverlessAppsAzureWebAppInstancesAvg = serverlessAppsAzureWebAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_WEB_APP_INSTANCES_AVG, + serverlessAppsAzureWebAppInstancesAvg); } public UsageSummaryDateOrg serverlessAppsDsmFargateTasksAvg( @@ -7830,6 +8335,8 @@ public Long getServerlessAppsDsmFargateTasksAvg() { public void setServerlessAppsDsmFargateTasksAvg(Long serverlessAppsDsmFargateTasksAvg) { this.serverlessAppsDsmFargateTasksAvg = serverlessAppsDsmFargateTasksAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_DSM_FARGATE_TASKS_AVG, serverlessAppsDsmFargateTasksAvg); } public UsageSummaryDateOrg serverlessAppsEcsAvg(Long serverlessAppsEcsAvg) { @@ -7852,6 +8359,7 @@ public Long getServerlessAppsEcsAvg() { public void setServerlessAppsEcsAvg(Long serverlessAppsEcsAvg) { this.serverlessAppsEcsAvg = serverlessAppsEcsAvg; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_ECS_AVG, serverlessAppsEcsAvg); } public UsageSummaryDateOrg serverlessAppsEksAvg(Long serverlessAppsEksAvg) { @@ -7874,6 +8382,7 @@ public Long getServerlessAppsEksAvg() { public void setServerlessAppsEksAvg(Long serverlessAppsEksAvg) { this.serverlessAppsEksAvg = serverlessAppsEksAvg; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_EKS_AVG, serverlessAppsEksAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateAvg(Long serverlessAppsExclFargateAvg) { @@ -7895,6 +8404,8 @@ public Long getServerlessAppsExclFargateAvg() { public void setServerlessAppsExclFargateAvg(Long serverlessAppsExclFargateAvg) { this.serverlessAppsExclFargateAvg = serverlessAppsExclFargateAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AVG, serverlessAppsExclFargateAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateAzureContainerAppInstancesAvg( @@ -7921,6 +8432,9 @@ public void setServerlessAppsExclFargateAzureContainerAppInstancesAvg( Long serverlessAppsExclFargateAzureContainerAppInstancesAvg) { this.serverlessAppsExclFargateAzureContainerAppInstancesAvg = serverlessAppsExclFargateAzureContainerAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_CONTAINER_APP_INSTANCES_AVG, + serverlessAppsExclFargateAzureContainerAppInstancesAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateAzureFunctionAppInstancesAvg( @@ -7947,6 +8461,9 @@ public void setServerlessAppsExclFargateAzureFunctionAppInstancesAvg( Long serverlessAppsExclFargateAzureFunctionAppInstancesAvg) { this.serverlessAppsExclFargateAzureFunctionAppInstancesAvg = serverlessAppsExclFargateAzureFunctionAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_FUNCTION_APP_INSTANCES_AVG, + serverlessAppsExclFargateAzureFunctionAppInstancesAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateAzureWebAppInstancesAvg( @@ -7973,6 +8490,9 @@ public void setServerlessAppsExclFargateAzureWebAppInstancesAvg( Long serverlessAppsExclFargateAzureWebAppInstancesAvg) { this.serverlessAppsExclFargateAzureWebAppInstancesAvg = serverlessAppsExclFargateAzureWebAppInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_WEB_APP_INSTANCES_AVG, + serverlessAppsExclFargateAzureWebAppInstancesAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg( @@ -7999,6 +8519,9 @@ public void setServerlessAppsExclFargateGoogleCloudFunctionsInstancesAvg( Long serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg) { this.serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg = serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG, + serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateGoogleCloudRunInstancesAvg( @@ -8025,6 +8548,9 @@ public void setServerlessAppsExclFargateGoogleCloudRunInstancesAvg( Long serverlessAppsExclFargateGoogleCloudRunInstancesAvg) { this.serverlessAppsExclFargateGoogleCloudRunInstancesAvg = serverlessAppsExclFargateGoogleCloudRunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_RUN_INSTANCES_AVG, + serverlessAppsExclFargateGoogleCloudRunInstancesAvg); } public UsageSummaryDateOrg serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg( @@ -8051,6 +8577,9 @@ public void setServerlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg( Long serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg) { this.serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg = serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvg); } public UsageSummaryDateOrg serverlessAppsGoogleCloudFunctionsInstancesAvg( @@ -8077,6 +8606,9 @@ public void setServerlessAppsGoogleCloudFunctionsInstancesAvg( Long serverlessAppsGoogleCloudFunctionsInstancesAvg) { this.serverlessAppsGoogleCloudFunctionsInstancesAvg = serverlessAppsGoogleCloudFunctionsInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG, + serverlessAppsGoogleCloudFunctionsInstancesAvg); } public UsageSummaryDateOrg serverlessAppsGoogleCloudRunInstancesAvg( @@ -8101,6 +8633,9 @@ public Long getServerlessAppsGoogleCloudRunInstancesAvg() { public void setServerlessAppsGoogleCloudRunInstancesAvg( Long serverlessAppsGoogleCloudRunInstancesAvg) { this.serverlessAppsGoogleCloudRunInstancesAvg = serverlessAppsGoogleCloudRunInstancesAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_RUN_INSTANCES_AVG, + serverlessAppsGoogleCloudRunInstancesAvg); } public UsageSummaryDateOrg serverlessAppsGoogleCountAvg(Long serverlessAppsGoogleCountAvg) { @@ -8122,6 +8657,8 @@ public Long getServerlessAppsGoogleCountAvg() { public void setServerlessAppsGoogleCountAvg(Long serverlessAppsGoogleCountAvg) { this.serverlessAppsGoogleCountAvg = serverlessAppsGoogleCountAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_COUNT_AVG, serverlessAppsGoogleCountAvg); } public UsageSummaryDateOrg serverlessAppsInfraGcpGkeAutopilotPodsAvg( @@ -8146,6 +8683,9 @@ public Long getServerlessAppsInfraGcpGkeAutopilotPodsAvg() { public void setServerlessAppsInfraGcpGkeAutopilotPodsAvg( Long serverlessAppsInfraGcpGkeAutopilotPodsAvg) { this.serverlessAppsInfraGcpGkeAutopilotPodsAvg = serverlessAppsInfraGcpGkeAutopilotPodsAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, + serverlessAppsInfraGcpGkeAutopilotPodsAvg); } public UsageSummaryDateOrg serverlessAppsTotalCountAvg(Long serverlessAppsTotalCountAvg) { @@ -8168,6 +8708,8 @@ public Long getServerlessAppsTotalCountAvg() { public void setServerlessAppsTotalCountAvg(Long serverlessAppsTotalCountAvg) { this.serverlessAppsTotalCountAvg = serverlessAppsTotalCountAvg; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG, serverlessAppsTotalCountAvg); } public UsageSummaryDateOrg siem12moRetentionSum(Long siem12moRetentionSum) { @@ -8190,6 +8732,7 @@ public Long getSiem12moRetentionSum() { public void setSiem12moRetentionSum(Long siem12moRetentionSum) { this.siem12moRetentionSum = siem12moRetentionSum; + putAdditionalProperty(JSON_PROPERTY_SIEM_12MO_RETENTION_SUM, siem12moRetentionSum); } public UsageSummaryDateOrg siem6moRetentionSum(Long siem6moRetentionSum) { @@ -8212,6 +8755,7 @@ public Long getSiem6moRetentionSum() { public void setSiem6moRetentionSum(Long siem6moRetentionSum) { this.siem6moRetentionSum = siem6moRetentionSum; + putAdditionalProperty(JSON_PROPERTY_SIEM_6MO_RETENTION_SUM, siem6moRetentionSum); } public UsageSummaryDateOrg siemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) { @@ -8234,6 +8778,8 @@ public Long getSiemAnalyzedLogsAddOnCountSum() { public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) { this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum; + putAdditionalProperty( + JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM, siemAnalyzedLogsAddOnCountSum); } public UsageSummaryDateOrg snmpDeviceCountSum(Long snmpDeviceCountSum) { @@ -8256,6 +8802,7 @@ public Long getSnmpDeviceCountSum() { public void setSnmpDeviceCountSum(Long snmpDeviceCountSum) { this.snmpDeviceCountSum = snmpDeviceCountSum; + putAdditionalProperty(JSON_PROPERTY_SNMP_DEVICE_COUNT_SUM, snmpDeviceCountSum); } public UsageSummaryDateOrg snmpDeviceCountTop99p(Long snmpDeviceCountTop99p) { @@ -8278,6 +8825,7 @@ public Long getSnmpDeviceCountTop99p() { public void setSnmpDeviceCountTop99p(Long snmpDeviceCountTop99p) { this.snmpDeviceCountTop99p = snmpDeviceCountTop99p; + putAdditionalProperty(JSON_PROPERTY_SNMP_DEVICE_COUNT_TOP99P, snmpDeviceCountTop99p); } public UsageSummaryDateOrg syntheticsBrowserCheckCallsCountSum( @@ -8301,6 +8849,9 @@ public Long getSyntheticsBrowserCheckCallsCountSum() { public void setSyntheticsBrowserCheckCallsCountSum(Long syntheticsBrowserCheckCallsCountSum) { this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM, + syntheticsBrowserCheckCallsCountSum); } public UsageSummaryDateOrg syntheticsCheckCallsCountSum(Long syntheticsCheckCallsCountSum) { @@ -8322,6 +8873,8 @@ public Long getSyntheticsCheckCallsCountSum() { public void setSyntheticsCheckCallsCountSum(Long syntheticsCheckCallsCountSum) { this.syntheticsCheckCallsCountSum = syntheticsCheckCallsCountSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM, syntheticsCheckCallsCountSum); } public UsageSummaryDateOrg syntheticsMobileTestRunsSum(Long syntheticsMobileTestRunsSum) { @@ -8344,6 +8897,8 @@ public Long getSyntheticsMobileTestRunsSum() { public void setSyntheticsMobileTestRunsSum(Long syntheticsMobileTestRunsSum) { this.syntheticsMobileTestRunsSum = syntheticsMobileTestRunsSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM, syntheticsMobileTestRunsSum); } public UsageSummaryDateOrg syntheticsParallelTestingMaxSlotsHwm( @@ -8367,6 +8922,9 @@ public Long getSyntheticsParallelTestingMaxSlotsHwm() { public void setSyntheticsParallelTestingMaxSlotsHwm(Long syntheticsParallelTestingMaxSlotsHwm) { this.syntheticsParallelTestingMaxSlotsHwm = syntheticsParallelTestingMaxSlotsHwm; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_PARALLEL_TESTING_MAX_SLOTS_HWM, + syntheticsParallelTestingMaxSlotsHwm); } public UsageSummaryDateOrg traceSearchIndexedEventsCountSum( @@ -8390,6 +8948,8 @@ public Long getTraceSearchIndexedEventsCountSum() { public void setTraceSearchIndexedEventsCountSum(Long traceSearchIndexedEventsCountSum) { this.traceSearchIndexedEventsCountSum = traceSearchIndexedEventsCountSum; + putAdditionalProperty( + JSON_PROPERTY_TRACE_SEARCH_INDEXED_EVENTS_COUNT_SUM, traceSearchIndexedEventsCountSum); } public UsageSummaryDateOrg twolIngestedEventsBytesSum(Long twolIngestedEventsBytesSum) { @@ -8412,6 +8972,7 @@ public Long getTwolIngestedEventsBytesSum() { public void setTwolIngestedEventsBytesSum(Long twolIngestedEventsBytesSum) { this.twolIngestedEventsBytesSum = twolIngestedEventsBytesSum; + putAdditionalProperty(JSON_PROPERTY_TWOL_INGESTED_EVENTS_BYTES_SUM, twolIngestedEventsBytesSum); } public UsageSummaryDateOrg universalServiceMonitoringHostTop99p( @@ -8435,6 +8996,9 @@ public Long getUniversalServiceMonitoringHostTop99p() { public void setUniversalServiceMonitoringHostTop99p(Long universalServiceMonitoringHostTop99p) { this.universalServiceMonitoringHostTop99p = universalServiceMonitoringHostTop99p; + putAdditionalProperty( + JSON_PROPERTY_UNIVERSAL_SERVICE_MONITORING_HOST_TOP99P, + universalServiceMonitoringHostTop99p); } public UsageSummaryDateOrg vsphereHostTop99p(Long vsphereHostTop99p) { @@ -8457,6 +9021,7 @@ public Long getVsphereHostTop99p() { public void setVsphereHostTop99p(Long vsphereHostTop99p) { this.vsphereHostTop99p = vsphereHostTop99p; + putAdditionalProperty(JSON_PROPERTY_VSPHERE_HOST_TOP99P, vsphereHostTop99p); } public UsageSummaryDateOrg vulnManagementHostCountTop99p(Long vulnManagementHostCountTop99p) { @@ -8479,6 +9044,8 @@ public Long getVulnManagementHostCountTop99p() { public void setVulnManagementHostCountTop99p(Long vulnManagementHostCountTop99p) { this.vulnManagementHostCountTop99p = vulnManagementHostCountTop99p; + putAdditionalProperty( + JSON_PROPERTY_VULN_MANAGEMENT_HOST_COUNT_TOP99P, vulnManagementHostCountTop99p); } public UsageSummaryDateOrg workflowExecutionsUsageSum(Long workflowExecutionsUsageSum) { @@ -8500,6 +9067,7 @@ public Long getWorkflowExecutionsUsageSum() { public void setWorkflowExecutionsUsageSum(Long workflowExecutionsUsageSum) { this.workflowExecutionsUsageSum = workflowExecutionsUsageSum; + putAdditionalProperty(JSON_PROPERTY_WORKFLOW_EXECUTIONS_USAGE_SUM, workflowExecutionsUsageSum); } /** diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java index b9c43145d22..b1c4e8b97f1 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java @@ -1576,6 +1576,7 @@ public Long getAgentHostTop99pSum() { public void setAgentHostTop99pSum(Long agentHostTop99pSum) { this.agentHostTop99pSum = agentHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_AGENT_HOST_TOP99P_SUM, agentHostTop99pSum); } public UsageSummaryResponse aiCreditsAgentBuilderAiCreditsAggSum( @@ -1599,6 +1600,9 @@ public Long getAiCreditsAgentBuilderAiCreditsAggSum() { public void setAiCreditsAgentBuilderAiCreditsAggSum(Long aiCreditsAgentBuilderAiCreditsAggSum) { this.aiCreditsAgentBuilderAiCreditsAggSum = aiCreditsAgentBuilderAiCreditsAggSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_AGENT_BUILDER_AI_CREDITS_AGG_SUM, + aiCreditsAgentBuilderAiCreditsAggSum); } public UsageSummaryResponse aiCreditsAggSum(Long aiCreditsAggSum) { @@ -1621,6 +1625,7 @@ public Long getAiCreditsAggSum() { public void setAiCreditsAggSum(Long aiCreditsAggSum) { this.aiCreditsAggSum = aiCreditsAggSum; + putAdditionalProperty(JSON_PROPERTY_AI_CREDITS_AGG_SUM, aiCreditsAggSum); } public UsageSummaryResponse aiCreditsBitsAssistantAiCreditsAggSum( @@ -1645,6 +1650,9 @@ public Long getAiCreditsBitsAssistantAiCreditsAggSum() { public void setAiCreditsBitsAssistantAiCreditsAggSum(Long aiCreditsBitsAssistantAiCreditsAggSum) { this.aiCreditsBitsAssistantAiCreditsAggSum = aiCreditsBitsAssistantAiCreditsAggSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_ASSISTANT_AI_CREDITS_AGG_SUM, + aiCreditsBitsAssistantAiCreditsAggSum); } public UsageSummaryResponse aiCreditsBitsDevAiCreditsAggSum( @@ -1668,6 +1676,8 @@ public Long getAiCreditsBitsDevAiCreditsAggSum() { public void setAiCreditsBitsDevAiCreditsAggSum(Long aiCreditsBitsDevAiCreditsAggSum) { this.aiCreditsBitsDevAiCreditsAggSum = aiCreditsBitsDevAiCreditsAggSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_DEV_AI_CREDITS_AGG_SUM, aiCreditsBitsDevAiCreditsAggSum); } public UsageSummaryResponse aiCreditsBitsSreAiCreditsAggSum( @@ -1691,6 +1701,8 @@ public Long getAiCreditsBitsSreAiCreditsAggSum() { public void setAiCreditsBitsSreAiCreditsAggSum(Long aiCreditsBitsSreAiCreditsAggSum) { this.aiCreditsBitsSreAiCreditsAggSum = aiCreditsBitsSreAiCreditsAggSum; + putAdditionalProperty( + JSON_PROPERTY_AI_CREDITS_BITS_SRE_AI_CREDITS_AGG_SUM, aiCreditsBitsSreAiCreditsAggSum); } public UsageSummaryResponse apmAzureAppServiceHostTop99pSum( @@ -1714,6 +1726,8 @@ public Long getApmAzureAppServiceHostTop99pSum() { public void setApmAzureAppServiceHostTop99pSum(Long apmAzureAppServiceHostTop99pSum) { this.apmAzureAppServiceHostTop99pSum = apmAzureAppServiceHostTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P_SUM, apmAzureAppServiceHostTop99pSum); } public UsageSummaryResponse apmDevsecopsHostTop99pSum(Long apmDevsecopsHostTop99pSum) { @@ -1736,6 +1750,7 @@ public Long getApmDevsecopsHostTop99pSum() { public void setApmDevsecopsHostTop99pSum(Long apmDevsecopsHostTop99pSum) { this.apmDevsecopsHostTop99pSum = apmDevsecopsHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P_SUM, apmDevsecopsHostTop99pSum); } public UsageSummaryResponse apmEnterpriseStandaloneHostsTop99pSum( @@ -1759,6 +1774,9 @@ public Long getApmEnterpriseStandaloneHostsTop99pSum() { public void setApmEnterpriseStandaloneHostsTop99pSum(Long apmEnterpriseStandaloneHostsTop99pSum) { this.apmEnterpriseStandaloneHostsTop99pSum = apmEnterpriseStandaloneHostsTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P_SUM, + apmEnterpriseStandaloneHostsTop99pSum); } public UsageSummaryResponse apmFargateCountAvgSum(Long apmFargateCountAvgSum) { @@ -1781,6 +1799,7 @@ public Long getApmFargateCountAvgSum() { public void setApmFargateCountAvgSum(Long apmFargateCountAvgSum) { this.apmFargateCountAvgSum = apmFargateCountAvgSum; + putAdditionalProperty(JSON_PROPERTY_APM_FARGATE_COUNT_AVG_SUM, apmFargateCountAvgSum); } public UsageSummaryResponse apmHostTop99pSum(Long apmHostTop99pSum) { @@ -1803,6 +1822,7 @@ public Long getApmHostTop99pSum() { public void setApmHostTop99pSum(Long apmHostTop99pSum) { this.apmHostTop99pSum = apmHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_APM_HOST_TOP99P_SUM, apmHostTop99pSum); } public UsageSummaryResponse apmProStandaloneHostsTop99pSum(Long apmProStandaloneHostsTop99pSum) { @@ -1825,6 +1845,8 @@ public Long getApmProStandaloneHostsTop99pSum() { public void setApmProStandaloneHostsTop99pSum(Long apmProStandaloneHostsTop99pSum) { this.apmProStandaloneHostsTop99pSum = apmProStandaloneHostsTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P_SUM, apmProStandaloneHostsTop99pSum); } public UsageSummaryResponse appsecFargateCountAvgSum(Long appsecFargateCountAvgSum) { @@ -1847,6 +1869,7 @@ public Long getAppsecFargateCountAvgSum() { public void setAppsecFargateCountAvgSum(Long appsecFargateCountAvgSum) { this.appsecFargateCountAvgSum = appsecFargateCountAvgSum; + putAdditionalProperty(JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG_SUM, appsecFargateCountAvgSum); } public UsageSummaryResponse asmServerlessAggSum(Long asmServerlessAggSum) { @@ -1869,6 +1892,7 @@ public Long getAsmServerlessAggSum() { public void setAsmServerlessAggSum(Long asmServerlessAggSum) { this.asmServerlessAggSum = asmServerlessAggSum; + putAdditionalProperty(JSON_PROPERTY_ASM_SERVERLESS_AGG_SUM, asmServerlessAggSum); } public UsageSummaryResponse auditLogsLinesIndexedAggSum(Long auditLogsLinesIndexedAggSum) { @@ -1894,6 +1918,8 @@ public Long getAuditLogsLinesIndexedAggSum() { @Deprecated public void setAuditLogsLinesIndexedAggSum(Long auditLogsLinesIndexedAggSum) { this.auditLogsLinesIndexedAggSum = auditLogsLinesIndexedAggSum; + putAdditionalProperty( + JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_AGG_SUM, auditLogsLinesIndexedAggSum); } public UsageSummaryResponse auditTrailEnabledHwmSum(Long auditTrailEnabledHwmSum) { @@ -1916,6 +1942,7 @@ public Long getAuditTrailEnabledHwmSum() { public void setAuditTrailEnabledHwmSum(Long auditTrailEnabledHwmSum) { this.auditTrailEnabledHwmSum = auditTrailEnabledHwmSum; + putAdditionalProperty(JSON_PROPERTY_AUDIT_TRAIL_ENABLED_HWM_SUM, auditTrailEnabledHwmSum); } public UsageSummaryResponse auditTrailEventForwardingEventsAggSum( @@ -1939,6 +1966,9 @@ public Long getAuditTrailEventForwardingEventsAggSum() { public void setAuditTrailEventForwardingEventsAggSum(Long auditTrailEventForwardingEventsAggSum) { this.auditTrailEventForwardingEventsAggSum = auditTrailEventForwardingEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_AUDIT_TRAIL_EVENT_FORWARDING_EVENTS_AGG_SUM, + auditTrailEventForwardingEventsAggSum); } public UsageSummaryResponse avgProfiledFargateTasksSum(Long avgProfiledFargateTasksSum) { @@ -1961,6 +1991,7 @@ public Long getAvgProfiledFargateTasksSum() { public void setAvgProfiledFargateTasksSum(Long avgProfiledFargateTasksSum) { this.avgProfiledFargateTasksSum = avgProfiledFargateTasksSum; + putAdditionalProperty(JSON_PROPERTY_AVG_PROFILED_FARGATE_TASKS_SUM, avgProfiledFargateTasksSum); } public UsageSummaryResponse awsHostTop99pSum(Long awsHostTop99pSum) { @@ -1983,6 +2014,7 @@ public Long getAwsHostTop99pSum() { public void setAwsHostTop99pSum(Long awsHostTop99pSum) { this.awsHostTop99pSum = awsHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_AWS_HOST_TOP99P_SUM, awsHostTop99pSum); } public UsageSummaryResponse awsLambdaFuncCount(Long awsLambdaFuncCount) { @@ -2005,6 +2037,7 @@ public Long getAwsLambdaFuncCount() { public void setAwsLambdaFuncCount(Long awsLambdaFuncCount) { this.awsLambdaFuncCount = awsLambdaFuncCount; + putAdditionalProperty(JSON_PROPERTY_AWS_LAMBDA_FUNC_COUNT, awsLambdaFuncCount); } public UsageSummaryResponse awsLambdaInvocationsSum(Long awsLambdaInvocationsSum) { @@ -2027,6 +2060,7 @@ public Long getAwsLambdaInvocationsSum() { public void setAwsLambdaInvocationsSum(Long awsLambdaInvocationsSum) { this.awsLambdaInvocationsSum = awsLambdaInvocationsSum; + putAdditionalProperty(JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM, awsLambdaInvocationsSum); } public UsageSummaryResponse azureAppServiceTop99pSum(Long azureAppServiceTop99pSum) { @@ -2049,6 +2083,7 @@ public Long getAzureAppServiceTop99pSum() { public void setAzureAppServiceTop99pSum(Long azureAppServiceTop99pSum) { this.azureAppServiceTop99pSum = azureAppServiceTop99pSum; + putAdditionalProperty(JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P_SUM, azureAppServiceTop99pSum); } public UsageSummaryResponse azureHostTop99pSum(Long azureHostTop99pSum) { @@ -2071,6 +2106,7 @@ public Long getAzureHostTop99pSum() { public void setAzureHostTop99pSum(Long azureHostTop99pSum) { this.azureHostTop99pSum = azureHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_AZURE_HOST_TOP99P_SUM, azureHostTop99pSum); } public UsageSummaryResponse billableIngestedBytesAggSum(Long billableIngestedBytesAggSum) { @@ -2093,6 +2129,8 @@ public Long getBillableIngestedBytesAggSum() { public void setBillableIngestedBytesAggSum(Long billableIngestedBytesAggSum) { this.billableIngestedBytesAggSum = billableIngestedBytesAggSum; + putAdditionalProperty( + JSON_PROPERTY_BILLABLE_INGESTED_BYTES_AGG_SUM, billableIngestedBytesAggSum); } public UsageSummaryResponse bitsAiInvestigationsAggSum(Long bitsAiInvestigationsAggSum) { @@ -2115,6 +2153,7 @@ public Long getBitsAiInvestigationsAggSum() { public void setBitsAiInvestigationsAggSum(Long bitsAiInvestigationsAggSum) { this.bitsAiInvestigationsAggSum = bitsAiInvestigationsAggSum; + putAdditionalProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_AGG_SUM, bitsAiInvestigationsAggSum); } public UsageSummaryResponse browserRumLiteSessionCountAggSum( @@ -2141,6 +2180,8 @@ public Long getBrowserRumLiteSessionCountAggSum() { @Deprecated public void setBrowserRumLiteSessionCountAggSum(Long browserRumLiteSessionCountAggSum) { this.browserRumLiteSessionCountAggSum = browserRumLiteSessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_AGG_SUM, browserRumLiteSessionCountAggSum); } public UsageSummaryResponse browserRumReplaySessionCountAggSum( @@ -2164,6 +2205,8 @@ public Long getBrowserRumReplaySessionCountAggSum() { public void setBrowserRumReplaySessionCountAggSum(Long browserRumReplaySessionCountAggSum) { this.browserRumReplaySessionCountAggSum = browserRumReplaySessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_AGG_SUM, browserRumReplaySessionCountAggSum); } public UsageSummaryResponse browserRumUnitsAggSum(Long browserRumUnitsAggSum) { @@ -2189,6 +2232,7 @@ public Long getBrowserRumUnitsAggSum() { @Deprecated public void setBrowserRumUnitsAggSum(Long browserRumUnitsAggSum) { this.browserRumUnitsAggSum = browserRumUnitsAggSum; + putAdditionalProperty(JSON_PROPERTY_BROWSER_RUM_UNITS_AGG_SUM, browserRumUnitsAggSum); } public UsageSummaryResponse ccmAnthropicSpendLastSum(Long ccmAnthropicSpendLastSum) { @@ -2211,6 +2255,7 @@ public Long getCcmAnthropicSpendLastSum() { public void setCcmAnthropicSpendLastSum(Long ccmAnthropicSpendLastSum) { this.ccmAnthropicSpendLastSum = ccmAnthropicSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_ANTHROPIC_SPEND_LAST_SUM, ccmAnthropicSpendLastSum); } public UsageSummaryResponse ccmAwsSpendLastSum(Long ccmAwsSpendLastSum) { @@ -2233,6 +2278,7 @@ public Long getCcmAwsSpendLastSum() { public void setCcmAwsSpendLastSum(Long ccmAwsSpendLastSum) { this.ccmAwsSpendLastSum = ccmAwsSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_AWS_SPEND_LAST_SUM, ccmAwsSpendLastSum); } public UsageSummaryResponse ccmAzureSpendLastSum(Long ccmAzureSpendLastSum) { @@ -2255,6 +2301,7 @@ public Long getCcmAzureSpendLastSum() { public void setCcmAzureSpendLastSum(Long ccmAzureSpendLastSum) { this.ccmAzureSpendLastSum = ccmAzureSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_AZURE_SPEND_LAST_SUM, ccmAzureSpendLastSum); } public UsageSummaryResponse ccmConfluentSpendLastSum(Long ccmConfluentSpendLastSum) { @@ -2277,6 +2324,7 @@ public Long getCcmConfluentSpendLastSum() { public void setCcmConfluentSpendLastSum(Long ccmConfluentSpendLastSum) { this.ccmConfluentSpendLastSum = ccmConfluentSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_CONFLUENT_SPEND_LAST_SUM, ccmConfluentSpendLastSum); } public UsageSummaryResponse ccmDatabricksSpendLastSum(Long ccmDatabricksSpendLastSum) { @@ -2299,6 +2347,7 @@ public Long getCcmDatabricksSpendLastSum() { public void setCcmDatabricksSpendLastSum(Long ccmDatabricksSpendLastSum) { this.ccmDatabricksSpendLastSum = ccmDatabricksSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_DATABRICKS_SPEND_LAST_SUM, ccmDatabricksSpendLastSum); } public UsageSummaryResponse ccmElasticSpendLastSum(Long ccmElasticSpendLastSum) { @@ -2321,6 +2370,7 @@ public Long getCcmElasticSpendLastSum() { public void setCcmElasticSpendLastSum(Long ccmElasticSpendLastSum) { this.ccmElasticSpendLastSum = ccmElasticSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_ELASTIC_SPEND_LAST_SUM, ccmElasticSpendLastSum); } public UsageSummaryResponse ccmFastlySpendLastSum(Long ccmFastlySpendLastSum) { @@ -2343,6 +2393,7 @@ public Long getCcmFastlySpendLastSum() { public void setCcmFastlySpendLastSum(Long ccmFastlySpendLastSum) { this.ccmFastlySpendLastSum = ccmFastlySpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_FASTLY_SPEND_LAST_SUM, ccmFastlySpendLastSum); } public UsageSummaryResponse ccmGcpSpendLastSum(Long ccmGcpSpendLastSum) { @@ -2365,6 +2416,7 @@ public Long getCcmGcpSpendLastSum() { public void setCcmGcpSpendLastSum(Long ccmGcpSpendLastSum) { this.ccmGcpSpendLastSum = ccmGcpSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_GCP_SPEND_LAST_SUM, ccmGcpSpendLastSum); } public UsageSummaryResponse ccmGithubSpendLastSum(Long ccmGithubSpendLastSum) { @@ -2387,6 +2439,7 @@ public Long getCcmGithubSpendLastSum() { public void setCcmGithubSpendLastSum(Long ccmGithubSpendLastSum) { this.ccmGithubSpendLastSum = ccmGithubSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_GITHUB_SPEND_LAST_SUM, ccmGithubSpendLastSum); } public UsageSummaryResponse ccmMongodbSpendLastSum(Long ccmMongodbSpendLastSum) { @@ -2409,6 +2462,7 @@ public Long getCcmMongodbSpendLastSum() { public void setCcmMongodbSpendLastSum(Long ccmMongodbSpendLastSum) { this.ccmMongodbSpendLastSum = ccmMongodbSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_MONGODB_SPEND_LAST_SUM, ccmMongodbSpendLastSum); } public UsageSummaryResponse ccmOciSpendLastSum(Long ccmOciSpendLastSum) { @@ -2431,6 +2485,7 @@ public Long getCcmOciSpendLastSum() { public void setCcmOciSpendLastSum(Long ccmOciSpendLastSum) { this.ccmOciSpendLastSum = ccmOciSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_OCI_SPEND_LAST_SUM, ccmOciSpendLastSum); } public UsageSummaryResponse ccmOpenaiSpendLastSum(Long ccmOpenaiSpendLastSum) { @@ -2453,6 +2508,7 @@ public Long getCcmOpenaiSpendLastSum() { public void setCcmOpenaiSpendLastSum(Long ccmOpenaiSpendLastSum) { this.ccmOpenaiSpendLastSum = ccmOpenaiSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_OPENAI_SPEND_LAST_SUM, ccmOpenaiSpendLastSum); } public UsageSummaryResponse ccmSnowflakeSpendLastSum(Long ccmSnowflakeSpendLastSum) { @@ -2475,6 +2531,7 @@ public Long getCcmSnowflakeSpendLastSum() { public void setCcmSnowflakeSpendLastSum(Long ccmSnowflakeSpendLastSum) { this.ccmSnowflakeSpendLastSum = ccmSnowflakeSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_SNOWFLAKE_SPEND_LAST_SUM, ccmSnowflakeSpendLastSum); } public UsageSummaryResponse ccmSpendMonitoredEntLastSum(Long ccmSpendMonitoredEntLastSum) { @@ -2497,6 +2554,8 @@ public Long getCcmSpendMonitoredEntLastSum() { public void setCcmSpendMonitoredEntLastSum(Long ccmSpendMonitoredEntLastSum) { this.ccmSpendMonitoredEntLastSum = ccmSpendMonitoredEntLastSum; + putAdditionalProperty( + JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST_SUM, ccmSpendMonitoredEntLastSum); } public UsageSummaryResponse ccmSpendMonitoredProLastSum(Long ccmSpendMonitoredProLastSum) { @@ -2519,6 +2578,8 @@ public Long getCcmSpendMonitoredProLastSum() { public void setCcmSpendMonitoredProLastSum(Long ccmSpendMonitoredProLastSum) { this.ccmSpendMonitoredProLastSum = ccmSpendMonitoredProLastSum; + putAdditionalProperty( + JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST_SUM, ccmSpendMonitoredProLastSum); } public UsageSummaryResponse ccmTwilioSpendLastSum(Long ccmTwilioSpendLastSum) { @@ -2541,6 +2602,7 @@ public Long getCcmTwilioSpendLastSum() { public void setCcmTwilioSpendLastSum(Long ccmTwilioSpendLastSum) { this.ccmTwilioSpendLastSum = ccmTwilioSpendLastSum; + putAdditionalProperty(JSON_PROPERTY_CCM_TWILIO_SPEND_LAST_SUM, ccmTwilioSpendLastSum); } public UsageSummaryResponse ciPipelineIndexedSpansAggSum(Long ciPipelineIndexedSpansAggSum) { @@ -2563,6 +2625,8 @@ public Long getCiPipelineIndexedSpansAggSum() { public void setCiPipelineIndexedSpansAggSum(Long ciPipelineIndexedSpansAggSum) { this.ciPipelineIndexedSpansAggSum = ciPipelineIndexedSpansAggSum; + putAdditionalProperty( + JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_AGG_SUM, ciPipelineIndexedSpansAggSum); } public UsageSummaryResponse ciTestIndexedSpansAggSum(Long ciTestIndexedSpansAggSum) { @@ -2585,6 +2649,7 @@ public Long getCiTestIndexedSpansAggSum() { public void setCiTestIndexedSpansAggSum(Long ciTestIndexedSpansAggSum) { this.ciTestIndexedSpansAggSum = ciTestIndexedSpansAggSum; + putAdditionalProperty(JSON_PROPERTY_CI_TEST_INDEXED_SPANS_AGG_SUM, ciTestIndexedSpansAggSum); } public UsageSummaryResponse ciVisibilityItrCommittersHwmSum( @@ -2608,6 +2673,8 @@ public Long getCiVisibilityItrCommittersHwmSum() { public void setCiVisibilityItrCommittersHwmSum(Long ciVisibilityItrCommittersHwmSum) { this.ciVisibilityItrCommittersHwmSum = ciVisibilityItrCommittersHwmSum; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM_SUM, ciVisibilityItrCommittersHwmSum); } public UsageSummaryResponse ciVisibilityPipelineCommittersHwmSum( @@ -2631,6 +2698,9 @@ public Long getCiVisibilityPipelineCommittersHwmSum() { public void setCiVisibilityPipelineCommittersHwmSum(Long ciVisibilityPipelineCommittersHwmSum) { this.ciVisibilityPipelineCommittersHwmSum = ciVisibilityPipelineCommittersHwmSum; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_PIPELINE_COMMITTERS_HWM_SUM, + ciVisibilityPipelineCommittersHwmSum); } public UsageSummaryResponse ciVisibilityTestCommittersHwmSum( @@ -2654,6 +2724,8 @@ public Long getCiVisibilityTestCommittersHwmSum() { public void setCiVisibilityTestCommittersHwmSum(Long ciVisibilityTestCommittersHwmSum) { this.ciVisibilityTestCommittersHwmSum = ciVisibilityTestCommittersHwmSum; + putAdditionalProperty( + JSON_PROPERTY_CI_VISIBILITY_TEST_COMMITTERS_HWM_SUM, ciVisibilityTestCommittersHwmSum); } public UsageSummaryResponse cloudCostManagementAwsHostCountAvgSum( @@ -2676,6 +2748,9 @@ public Long getCloudCostManagementAwsHostCountAvgSum() { public void setCloudCostManagementAwsHostCountAvgSum(Long cloudCostManagementAwsHostCountAvgSum) { this.cloudCostManagementAwsHostCountAvgSum = cloudCostManagementAwsHostCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AWS_HOST_COUNT_AVG_SUM, + cloudCostManagementAwsHostCountAvgSum); } public UsageSummaryResponse cloudCostManagementAzureHostCountAvgSum( @@ -2699,6 +2774,9 @@ public Long getCloudCostManagementAzureHostCountAvgSum() { public void setCloudCostManagementAzureHostCountAvgSum( Long cloudCostManagementAzureHostCountAvgSum) { this.cloudCostManagementAzureHostCountAvgSum = cloudCostManagementAzureHostCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AZURE_HOST_COUNT_AVG_SUM, + cloudCostManagementAzureHostCountAvgSum); } public UsageSummaryResponse cloudCostManagementGcpHostCountAvgSum( @@ -2721,6 +2799,9 @@ public Long getCloudCostManagementGcpHostCountAvgSum() { public void setCloudCostManagementGcpHostCountAvgSum(Long cloudCostManagementGcpHostCountAvgSum) { this.cloudCostManagementGcpHostCountAvgSum = cloudCostManagementGcpHostCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_GCP_HOST_COUNT_AVG_SUM, + cloudCostManagementGcpHostCountAvgSum); } public UsageSummaryResponse cloudCostManagementHostCountAvgSum( @@ -2743,6 +2824,8 @@ public Long getCloudCostManagementHostCountAvgSum() { public void setCloudCostManagementHostCountAvgSum(Long cloudCostManagementHostCountAvgSum) { this.cloudCostManagementHostCountAvgSum = cloudCostManagementHostCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_HOST_COUNT_AVG_SUM, cloudCostManagementHostCountAvgSum); } public UsageSummaryResponse cloudCostManagementOciHostCountAvgSum( @@ -2765,6 +2848,9 @@ public Long getCloudCostManagementOciHostCountAvgSum() { public void setCloudCostManagementOciHostCountAvgSum(Long cloudCostManagementOciHostCountAvgSum) { this.cloudCostManagementOciHostCountAvgSum = cloudCostManagementOciHostCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_COST_MANAGEMENT_OCI_HOST_COUNT_AVG_SUM, + cloudCostManagementOciHostCountAvgSum); } public UsageSummaryResponse cloudSiemEventsAggSum(Long cloudSiemEventsAggSum) { @@ -2787,6 +2873,7 @@ public Long getCloudSiemEventsAggSum() { public void setCloudSiemEventsAggSum(Long cloudSiemEventsAggSum) { this.cloudSiemEventsAggSum = cloudSiemEventsAggSum; + putAdditionalProperty(JSON_PROPERTY_CLOUD_SIEM_EVENTS_AGG_SUM, cloudSiemEventsAggSum); } public UsageSummaryResponse cloudSiemIndexedLogsAggSum(Long cloudSiemIndexedLogsAggSum) { @@ -2809,6 +2896,8 @@ public Long getCloudSiemIndexedLogsAggSum() { public void setCloudSiemIndexedLogsAggSum(Long cloudSiemIndexedLogsAggSum) { this.cloudSiemIndexedLogsAggSum = cloudSiemIndexedLogsAggSum; + putAdditionalProperty( + JSON_PROPERTY_CLOUD_SIEM_INDEXED_LOGS_AGG_SUM, cloudSiemIndexedLogsAggSum); } public UsageSummaryResponse codeAnalysisSaCommittersHwmSum(Long codeAnalysisSaCommittersHwmSum) { @@ -2831,6 +2920,8 @@ public Long getCodeAnalysisSaCommittersHwmSum() { public void setCodeAnalysisSaCommittersHwmSum(Long codeAnalysisSaCommittersHwmSum) { this.codeAnalysisSaCommittersHwmSum = codeAnalysisSaCommittersHwmSum; + putAdditionalProperty( + JSON_PROPERTY_CODE_ANALYSIS_SA_COMMITTERS_HWM_SUM, codeAnalysisSaCommittersHwmSum); } public UsageSummaryResponse codeAnalysisScaCommittersHwmSum( @@ -2854,6 +2945,8 @@ public Long getCodeAnalysisScaCommittersHwmSum() { public void setCodeAnalysisScaCommittersHwmSum(Long codeAnalysisScaCommittersHwmSum) { this.codeAnalysisScaCommittersHwmSum = codeAnalysisScaCommittersHwmSum; + putAdditionalProperty( + JSON_PROPERTY_CODE_ANALYSIS_SCA_COMMITTERS_HWM_SUM, codeAnalysisScaCommittersHwmSum); } public UsageSummaryResponse codeSecurityHostTop99pSum(Long codeSecurityHostTop99pSum) { @@ -2876,6 +2969,7 @@ public Long getCodeSecurityHostTop99pSum() { public void setCodeSecurityHostTop99pSum(Long codeSecurityHostTop99pSum) { this.codeSecurityHostTop99pSum = codeSecurityHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CODE_SECURITY_HOST_TOP99P_SUM, codeSecurityHostTop99pSum); } public UsageSummaryResponse containerAvgSum(Long containerAvgSum) { @@ -2898,6 +2992,7 @@ public Long getContainerAvgSum() { public void setContainerAvgSum(Long containerAvgSum) { this.containerAvgSum = containerAvgSum; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_AVG_SUM, containerAvgSum); } public UsageSummaryResponse containerExclAgentAvgSum(Long containerExclAgentAvgSum) { @@ -2920,6 +3015,7 @@ public Long getContainerExclAgentAvgSum() { public void setContainerExclAgentAvgSum(Long containerExclAgentAvgSum) { this.containerExclAgentAvgSum = containerExclAgentAvgSum; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_EXCL_AGENT_AVG_SUM, containerExclAgentAvgSum); } public UsageSummaryResponse containerHwmSum(Long containerHwmSum) { @@ -2942,6 +3038,7 @@ public Long getContainerHwmSum() { public void setContainerHwmSum(Long containerHwmSum) { this.containerHwmSum = containerHwmSum; + putAdditionalProperty(JSON_PROPERTY_CONTAINER_HWM_SUM, containerHwmSum); } public UsageSummaryResponse csmContainerEnterpriseComplianceCountAggSum( @@ -2966,6 +3063,9 @@ public Long getCsmContainerEnterpriseComplianceCountAggSum() { public void setCsmContainerEnterpriseComplianceCountAggSum( Long csmContainerEnterpriseComplianceCountAggSum) { this.csmContainerEnterpriseComplianceCountAggSum = csmContainerEnterpriseComplianceCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_COMPLIANCE_COUNT_AGG_SUM, + csmContainerEnterpriseComplianceCountAggSum); } public UsageSummaryResponse csmContainerEnterpriseCwsCountAggSum( @@ -2989,6 +3089,9 @@ public Long getCsmContainerEnterpriseCwsCountAggSum() { public void setCsmContainerEnterpriseCwsCountAggSum(Long csmContainerEnterpriseCwsCountAggSum) { this.csmContainerEnterpriseCwsCountAggSum = csmContainerEnterpriseCwsCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_CWS_COUNT_AGG_SUM, + csmContainerEnterpriseCwsCountAggSum); } public UsageSummaryResponse csmContainerEnterpriseTotalCountAggSum( @@ -3013,6 +3116,9 @@ public Long getCsmContainerEnterpriseTotalCountAggSum() { public void setCsmContainerEnterpriseTotalCountAggSum( Long csmContainerEnterpriseTotalCountAggSum) { this.csmContainerEnterpriseTotalCountAggSum = csmContainerEnterpriseTotalCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_TOTAL_COUNT_AGG_SUM, + csmContainerEnterpriseTotalCountAggSum); } public UsageSummaryResponse csmHostEnterpriseAasHostCountTop99pSum( @@ -3037,6 +3143,9 @@ public Long getCsmHostEnterpriseAasHostCountTop99pSum() { public void setCsmHostEnterpriseAasHostCountTop99pSum( Long csmHostEnterpriseAasHostCountTop99pSum) { this.csmHostEnterpriseAasHostCountTop99pSum = csmHostEnterpriseAasHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AAS_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseAasHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseAwsHostCountTop99pSum( @@ -3061,6 +3170,9 @@ public Long getCsmHostEnterpriseAwsHostCountTop99pSum() { public void setCsmHostEnterpriseAwsHostCountTop99pSum( Long csmHostEnterpriseAwsHostCountTop99pSum) { this.csmHostEnterpriseAwsHostCountTop99pSum = csmHostEnterpriseAwsHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AWS_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseAwsHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseAzureHostCountTop99pSum( @@ -3085,6 +3197,9 @@ public Long getCsmHostEnterpriseAzureHostCountTop99pSum() { public void setCsmHostEnterpriseAzureHostCountTop99pSum( Long csmHostEnterpriseAzureHostCountTop99pSum) { this.csmHostEnterpriseAzureHostCountTop99pSum = csmHostEnterpriseAzureHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_AZURE_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseAzureHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseComplianceHostCountTop99pSum( @@ -3111,6 +3226,9 @@ public void setCsmHostEnterpriseComplianceHostCountTop99pSum( Long csmHostEnterpriseComplianceHostCountTop99pSum) { this.csmHostEnterpriseComplianceHostCountTop99pSum = csmHostEnterpriseComplianceHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_COMPLIANCE_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseComplianceHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseCwsHostCountTop99pSum( @@ -3135,6 +3253,9 @@ public Long getCsmHostEnterpriseCwsHostCountTop99pSum() { public void setCsmHostEnterpriseCwsHostCountTop99pSum( Long csmHostEnterpriseCwsHostCountTop99pSum) { this.csmHostEnterpriseCwsHostCountTop99pSum = csmHostEnterpriseCwsHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_CWS_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseCwsHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseGcpHostCountTop99pSum( @@ -3159,6 +3280,9 @@ public Long getCsmHostEnterpriseGcpHostCountTop99pSum() { public void setCsmHostEnterpriseGcpHostCountTop99pSum( Long csmHostEnterpriseGcpHostCountTop99pSum) { this.csmHostEnterpriseGcpHostCountTop99pSum = csmHostEnterpriseGcpHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_GCP_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseGcpHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseOciHostCountTop99pSum( @@ -3183,6 +3307,9 @@ public Long getCsmHostEnterpriseOciHostCountTop99pSum() { public void setCsmHostEnterpriseOciHostCountTop99pSum( Long csmHostEnterpriseOciHostCountTop99pSum) { this.csmHostEnterpriseOciHostCountTop99pSum = csmHostEnterpriseOciHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_OCI_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseOciHostCountTop99pSum); } public UsageSummaryResponse csmHostEnterpriseTotalHostCountTop99pSum( @@ -3207,6 +3334,9 @@ public Long getCsmHostEnterpriseTotalHostCountTop99pSum() { public void setCsmHostEnterpriseTotalHostCountTop99pSum( Long csmHostEnterpriseTotalHostCountTop99pSum) { this.csmHostEnterpriseTotalHostCountTop99pSum = csmHostEnterpriseTotalHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_ENTERPRISE_TOTAL_HOST_COUNT_TOP99P_SUM, + csmHostEnterpriseTotalHostCountTop99pSum); } public UsageSummaryResponse csmHostProHostsAgentlessScannersAggSum( @@ -3231,6 +3361,9 @@ public Long getCsmHostProHostsAgentlessScannersAggSum() { public void setCsmHostProHostsAgentlessScannersAggSum( Long csmHostProHostsAgentlessScannersAggSum) { this.csmHostProHostsAgentlessScannersAggSum = csmHostProHostsAgentlessScannersAggSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_AGG_SUM, + csmHostProHostsAgentlessScannersAggSum); } public UsageSummaryResponse csmHostProHostsAgentlessScannersTop99pSum( @@ -3255,6 +3388,9 @@ public Long getCsmHostProHostsAgentlessScannersTop99pSum() { public void setCsmHostProHostsAgentlessScannersTop99pSum( Long csmHostProHostsAgentlessScannersTop99pSum) { this.csmHostProHostsAgentlessScannersTop99pSum = csmHostProHostsAgentlessScannersTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_TOP99P_SUM, + csmHostProHostsAgentlessScannersTop99pSum); } public UsageSummaryResponse csmHostProOciHostCountTop99pSum( @@ -3278,6 +3414,8 @@ public Long getCsmHostProOciHostCountTop99pSum() { public void setCsmHostProOciHostCountTop99pSum(Long csmHostProOciHostCountTop99pSum) { this.csmHostProOciHostCountTop99pSum = csmHostProOciHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSM_HOST_PRO_OCI_HOST_COUNT_TOP99P_SUM, csmHostProOciHostCountTop99pSum); } public UsageSummaryResponse cspmAasHostTop99pSum(Long cspmAasHostTop99pSum) { @@ -3300,6 +3438,7 @@ public Long getCspmAasHostTop99pSum() { public void setCspmAasHostTop99pSum(Long cspmAasHostTop99pSum) { this.cspmAasHostTop99pSum = cspmAasHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_AAS_HOST_TOP99P_SUM, cspmAasHostTop99pSum); } public UsageSummaryResponse cspmAwsHostTop99pSum(Long cspmAwsHostTop99pSum) { @@ -3322,6 +3461,7 @@ public Long getCspmAwsHostTop99pSum() { public void setCspmAwsHostTop99pSum(Long cspmAwsHostTop99pSum) { this.cspmAwsHostTop99pSum = cspmAwsHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_AWS_HOST_TOP99P_SUM, cspmAwsHostTop99pSum); } public UsageSummaryResponse cspmAzureHostTop99pSum(Long cspmAzureHostTop99pSum) { @@ -3344,6 +3484,7 @@ public Long getCspmAzureHostTop99pSum() { public void setCspmAzureHostTop99pSum(Long cspmAzureHostTop99pSum) { this.cspmAzureHostTop99pSum = cspmAzureHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_AZURE_HOST_TOP99P_SUM, cspmAzureHostTop99pSum); } public UsageSummaryResponse cspmContainerAvgSum(Long cspmContainerAvgSum) { @@ -3366,6 +3507,7 @@ public Long getCspmContainerAvgSum() { public void setCspmContainerAvgSum(Long cspmContainerAvgSum) { this.cspmContainerAvgSum = cspmContainerAvgSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_CONTAINER_AVG_SUM, cspmContainerAvgSum); } public UsageSummaryResponse cspmContainerHwmSum(Long cspmContainerHwmSum) { @@ -3388,6 +3530,7 @@ public Long getCspmContainerHwmSum() { public void setCspmContainerHwmSum(Long cspmContainerHwmSum) { this.cspmContainerHwmSum = cspmContainerHwmSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_CONTAINER_HWM_SUM, cspmContainerHwmSum); } public UsageSummaryResponse cspmGcpHostTop99pSum(Long cspmGcpHostTop99pSum) { @@ -3410,6 +3553,7 @@ public Long getCspmGcpHostTop99pSum() { public void setCspmGcpHostTop99pSum(Long cspmGcpHostTop99pSum) { this.cspmGcpHostTop99pSum = cspmGcpHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_GCP_HOST_TOP99P_SUM, cspmGcpHostTop99pSum); } public UsageSummaryResponse cspmHostTop99pSum(Long cspmHostTop99pSum) { @@ -3432,6 +3576,7 @@ public Long getCspmHostTop99pSum() { public void setCspmHostTop99pSum(Long cspmHostTop99pSum) { this.cspmHostTop99pSum = cspmHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CSPM_HOST_TOP99P_SUM, cspmHostTop99pSum); } public UsageSummaryResponse cspmHostsAgentlessScannersAggSum( @@ -3455,6 +3600,8 @@ public Long getCspmHostsAgentlessScannersAggSum() { public void setCspmHostsAgentlessScannersAggSum(Long cspmHostsAgentlessScannersAggSum) { this.cspmHostsAgentlessScannersAggSum = cspmHostsAgentlessScannersAggSum; + putAdditionalProperty( + JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_AGG_SUM, cspmHostsAgentlessScannersAggSum); } public UsageSummaryResponse cspmHostsAgentlessScannersTop99pSum( @@ -3478,6 +3625,9 @@ public Long getCspmHostsAgentlessScannersTop99pSum() { public void setCspmHostsAgentlessScannersTop99pSum(Long cspmHostsAgentlessScannersTop99pSum) { this.cspmHostsAgentlessScannersTop99pSum = cspmHostsAgentlessScannersTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_TOP99P_SUM, + cspmHostsAgentlessScannersTop99pSum); } public UsageSummaryResponse customHistoricalTsSum(Long customHistoricalTsSum) { @@ -3500,6 +3650,7 @@ public Long getCustomHistoricalTsSum() { public void setCustomHistoricalTsSum(Long customHistoricalTsSum) { this.customHistoricalTsSum = customHistoricalTsSum; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_HISTORICAL_TS_SUM, customHistoricalTsSum); } public UsageSummaryResponse customLiveTsSum(Long customLiveTsSum) { @@ -3522,6 +3673,7 @@ public Long getCustomLiveTsSum() { public void setCustomLiveTsSum(Long customLiveTsSum) { this.customLiveTsSum = customLiveTsSum; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_LIVE_TS_SUM, customLiveTsSum); } public UsageSummaryResponse customTsSum(Long customTsSum) { @@ -3544,6 +3696,7 @@ public Long getCustomTsSum() { public void setCustomTsSum(Long customTsSum) { this.customTsSum = customTsSum; + putAdditionalProperty(JSON_PROPERTY_CUSTOM_TS_SUM, customTsSum); } public UsageSummaryResponse cwsContainerAvgSum(Long cwsContainerAvgSum) { @@ -3566,6 +3719,7 @@ public Long getCwsContainerAvgSum() { public void setCwsContainerAvgSum(Long cwsContainerAvgSum) { this.cwsContainerAvgSum = cwsContainerAvgSum; + putAdditionalProperty(JSON_PROPERTY_CWS_CONTAINER_AVG_SUM, cwsContainerAvgSum); } public UsageSummaryResponse cwsFargateTaskAvgSum(Long cwsFargateTaskAvgSum) { @@ -3588,6 +3742,7 @@ public Long getCwsFargateTaskAvgSum() { public void setCwsFargateTaskAvgSum(Long cwsFargateTaskAvgSum) { this.cwsFargateTaskAvgSum = cwsFargateTaskAvgSum; + putAdditionalProperty(JSON_PROPERTY_CWS_FARGATE_TASK_AVG_SUM, cwsFargateTaskAvgSum); } public UsageSummaryResponse cwsHostTop99pSum(Long cwsHostTop99pSum) { @@ -3610,6 +3765,7 @@ public Long getCwsHostTop99pSum() { public void setCwsHostTop99pSum(Long cwsHostTop99pSum) { this.cwsHostTop99pSum = cwsHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_CWS_HOST_TOP99P_SUM, cwsHostTop99pSum); } public UsageSummaryResponse dataJobsMonitoringHostHrAggSum(Long dataJobsMonitoringHostHrAggSum) { @@ -3632,6 +3788,8 @@ public Long getDataJobsMonitoringHostHrAggSum() { public void setDataJobsMonitoringHostHrAggSum(Long dataJobsMonitoringHostHrAggSum) { this.dataJobsMonitoringHostHrAggSum = dataJobsMonitoringHostHrAggSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_JOBS_MONITORING_HOST_HR_AGG_SUM, dataJobsMonitoringHostHrAggSum); } public UsageSummaryResponse dataStreamMonitoringHostCountAggSum( @@ -3655,6 +3813,9 @@ public Long getDataStreamMonitoringHostCountAggSum() { public void setDataStreamMonitoringHostCountAggSum(Long dataStreamMonitoringHostCountAggSum) { this.dataStreamMonitoringHostCountAggSum = dataStreamMonitoringHostCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_STREAM_MONITORING_HOST_COUNT_AGG_SUM, + dataStreamMonitoringHostCountAggSum); } public UsageSummaryResponse dataStreamMonitoringHostCountTop99pSum( @@ -3679,6 +3840,9 @@ public Long getDataStreamMonitoringHostCountTop99pSum() { public void setDataStreamMonitoringHostCountTop99pSum( Long dataStreamMonitoringHostCountTop99pSum) { this.dataStreamMonitoringHostCountTop99pSum = dataStreamMonitoringHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_DATA_STREAM_MONITORING_HOST_COUNT_TOP99P_SUM, + dataStreamMonitoringHostCountTop99pSum); } public UsageSummaryResponse dbmHostTop99pSum(Long dbmHostTop99pSum) { @@ -3701,6 +3865,7 @@ public Long getDbmHostTop99pSum() { public void setDbmHostTop99pSum(Long dbmHostTop99pSum) { this.dbmHostTop99pSum = dbmHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_DBM_HOST_TOP99P_SUM, dbmHostTop99pSum); } public UsageSummaryResponse dbmQueriesAvgSum(Long dbmQueriesAvgSum) { @@ -3723,6 +3888,7 @@ public Long getDbmQueriesAvgSum() { public void setDbmQueriesAvgSum(Long dbmQueriesAvgSum) { this.dbmQueriesAvgSum = dbmQueriesAvgSum; + putAdditionalProperty(JSON_PROPERTY_DBM_QUERIES_AVG_SUM, dbmQueriesAvgSum); } public UsageSummaryResponse doJobsMonitoringOrchestratorsJobHoursAggSum( @@ -3747,6 +3913,9 @@ public Long getDoJobsMonitoringOrchestratorsJobHoursAggSum() { public void setDoJobsMonitoringOrchestratorsJobHoursAggSum( Long doJobsMonitoringOrchestratorsJobHoursAggSum) { this.doJobsMonitoringOrchestratorsJobHoursAggSum = doJobsMonitoringOrchestratorsJobHoursAggSum; + putAdditionalProperty( + JSON_PROPERTY_DO_JOBS_MONITORING_ORCHESTRATORS_JOB_HOURS_AGG_SUM, + doJobsMonitoringOrchestratorsJobHoursAggSum); } public UsageSummaryResponse endDate(OffsetDateTime endDate) { @@ -3768,6 +3937,7 @@ public OffsetDateTime getEndDate() { public void setEndDate(OffsetDateTime endDate) { this.endDate = endDate; + putAdditionalProperty(JSON_PROPERTY_END_DATE, endDate); } public UsageSummaryResponse ephInfraHostAgentAggSum(Long ephInfraHostAgentAggSum) { @@ -3790,6 +3960,7 @@ public Long getEphInfraHostAgentAggSum() { public void setEphInfraHostAgentAggSum(Long ephInfraHostAgentAggSum) { this.ephInfraHostAgentAggSum = ephInfraHostAgentAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AGENT_AGG_SUM, ephInfraHostAgentAggSum); } public UsageSummaryResponse ephInfraHostAlibabaAggSum(Long ephInfraHostAlibabaAggSum) { @@ -3812,6 +3983,7 @@ public Long getEphInfraHostAlibabaAggSum() { public void setEphInfraHostAlibabaAggSum(Long ephInfraHostAlibabaAggSum) { this.ephInfraHostAlibabaAggSum = ephInfraHostAlibabaAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ALIBABA_AGG_SUM, ephInfraHostAlibabaAggSum); } public UsageSummaryResponse ephInfraHostAwsAggSum(Long ephInfraHostAwsAggSum) { @@ -3834,6 +4006,7 @@ public Long getEphInfraHostAwsAggSum() { public void setEphInfraHostAwsAggSum(Long ephInfraHostAwsAggSum) { this.ephInfraHostAwsAggSum = ephInfraHostAwsAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AWS_AGG_SUM, ephInfraHostAwsAggSum); } public UsageSummaryResponse ephInfraHostAzureAggSum(Long ephInfraHostAzureAggSum) { @@ -3856,6 +4029,7 @@ public Long getEphInfraHostAzureAggSum() { public void setEphInfraHostAzureAggSum(Long ephInfraHostAzureAggSum) { this.ephInfraHostAzureAggSum = ephInfraHostAzureAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_AZURE_AGG_SUM, ephInfraHostAzureAggSum); } public UsageSummaryResponse ephInfraHostBasicAggSum(Long ephInfraHostBasicAggSum) { @@ -3878,6 +4052,7 @@ public Long getEphInfraHostBasicAggSum() { public void setEphInfraHostBasicAggSum(Long ephInfraHostBasicAggSum) { this.ephInfraHostBasicAggSum = ephInfraHostBasicAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_BASIC_AGG_SUM, ephInfraHostBasicAggSum); } public UsageSummaryResponse ephInfraHostBasicInfraBasicAgentAggSum( @@ -3902,6 +4077,9 @@ public Long getEphInfraHostBasicInfraBasicAgentAggSum() { public void setEphInfraHostBasicInfraBasicAgentAggSum( Long ephInfraHostBasicInfraBasicAgentAggSum) { this.ephInfraHostBasicInfraBasicAgentAggSum = ephInfraHostBasicInfraBasicAgentAggSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_BASIC_INFRA_BASIC_AGENT_AGG_SUM, + ephInfraHostBasicInfraBasicAgentAggSum); } public UsageSummaryResponse ephInfraHostBasicInfraBasicVsphereAggSum( @@ -3926,6 +4104,9 @@ public Long getEphInfraHostBasicInfraBasicVsphereAggSum() { public void setEphInfraHostBasicInfraBasicVsphereAggSum( Long ephInfraHostBasicInfraBasicVsphereAggSum) { this.ephInfraHostBasicInfraBasicVsphereAggSum = ephInfraHostBasicInfraBasicVsphereAggSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_AGG_SUM, + ephInfraHostBasicInfraBasicVsphereAggSum); } public UsageSummaryResponse ephInfraHostEntAggSum(Long ephInfraHostEntAggSum) { @@ -3948,6 +4129,7 @@ public Long getEphInfraHostEntAggSum() { public void setEphInfraHostEntAggSum(Long ephInfraHostEntAggSum) { this.ephInfraHostEntAggSum = ephInfraHostEntAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ENT_AGG_SUM, ephInfraHostEntAggSum); } public UsageSummaryResponse ephInfraHostGcpAggSum(Long ephInfraHostGcpAggSum) { @@ -3970,6 +4152,7 @@ public Long getEphInfraHostGcpAggSum() { public void setEphInfraHostGcpAggSum(Long ephInfraHostGcpAggSum) { this.ephInfraHostGcpAggSum = ephInfraHostGcpAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_GCP_AGG_SUM, ephInfraHostGcpAggSum); } public UsageSummaryResponse ephInfraHostHerokuAggSum(Long ephInfraHostHerokuAggSum) { @@ -3992,6 +4175,7 @@ public Long getEphInfraHostHerokuAggSum() { public void setEphInfraHostHerokuAggSum(Long ephInfraHostHerokuAggSum) { this.ephInfraHostHerokuAggSum = ephInfraHostHerokuAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_HEROKU_AGG_SUM, ephInfraHostHerokuAggSum); } public UsageSummaryResponse ephInfraHostOnlyAasAggSum(Long ephInfraHostOnlyAasAggSum) { @@ -4014,6 +4198,7 @@ public Long getEphInfraHostOnlyAasAggSum() { public void setEphInfraHostOnlyAasAggSum(Long ephInfraHostOnlyAasAggSum) { this.ephInfraHostOnlyAasAggSum = ephInfraHostOnlyAasAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_ONLY_AAS_AGG_SUM, ephInfraHostOnlyAasAggSum); } public UsageSummaryResponse ephInfraHostOnlyVsphereAggSum(Long ephInfraHostOnlyVsphereAggSum) { @@ -4036,6 +4221,8 @@ public Long getEphInfraHostOnlyVsphereAggSum() { public void setEphInfraHostOnlyVsphereAggSum(Long ephInfraHostOnlyVsphereAggSum) { this.ephInfraHostOnlyVsphereAggSum = ephInfraHostOnlyVsphereAggSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_ONLY_VSPHERE_AGG_SUM, ephInfraHostOnlyVsphereAggSum); } public UsageSummaryResponse ephInfraHostOpentelemetryAggSum( @@ -4059,6 +4246,8 @@ public Long getEphInfraHostOpentelemetryAggSum() { public void setEphInfraHostOpentelemetryAggSum(Long ephInfraHostOpentelemetryAggSum) { this.ephInfraHostOpentelemetryAggSum = ephInfraHostOpentelemetryAggSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_AGG_SUM, ephInfraHostOpentelemetryAggSum); } public UsageSummaryResponse ephInfraHostOpentelemetryApmAggSum( @@ -4082,6 +4271,8 @@ public Long getEphInfraHostOpentelemetryApmAggSum() { public void setEphInfraHostOpentelemetryApmAggSum(Long ephInfraHostOpentelemetryApmAggSum) { this.ephInfraHostOpentelemetryApmAggSum = ephInfraHostOpentelemetryApmAggSum; + putAdditionalProperty( + JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_AGG_SUM, ephInfraHostOpentelemetryApmAggSum); } public UsageSummaryResponse ephInfraHostProAggSum(Long ephInfraHostProAggSum) { @@ -4104,6 +4295,7 @@ public Long getEphInfraHostProAggSum() { public void setEphInfraHostProAggSum(Long ephInfraHostProAggSum) { this.ephInfraHostProAggSum = ephInfraHostProAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PRO_AGG_SUM, ephInfraHostProAggSum); } public UsageSummaryResponse ephInfraHostProplusAggSum(Long ephInfraHostProplusAggSum) { @@ -4126,6 +4318,7 @@ public Long getEphInfraHostProplusAggSum() { public void setEphInfraHostProplusAggSum(Long ephInfraHostProplusAggSum) { this.ephInfraHostProplusAggSum = ephInfraHostProplusAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_AGG_SUM, ephInfraHostProplusAggSum); } public UsageSummaryResponse ephInfraHostProxmoxAggSum(Long ephInfraHostProxmoxAggSum) { @@ -4148,6 +4341,7 @@ public Long getEphInfraHostProxmoxAggSum() { public void setEphInfraHostProxmoxAggSum(Long ephInfraHostProxmoxAggSum) { this.ephInfraHostProxmoxAggSum = ephInfraHostProxmoxAggSum; + putAdditionalProperty(JSON_PROPERTY_EPH_INFRA_HOST_PROXMOX_AGG_SUM, ephInfraHostProxmoxAggSum); } public UsageSummaryResponse errorTrackingApmErrorEventsAggSum( @@ -4171,6 +4365,8 @@ public Long getErrorTrackingApmErrorEventsAggSum() { public void setErrorTrackingApmErrorEventsAggSum(Long errorTrackingApmErrorEventsAggSum) { this.errorTrackingApmErrorEventsAggSum = errorTrackingApmErrorEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM, errorTrackingApmErrorEventsAggSum); } public UsageSummaryResponse errorTrackingErrorEventsAggSum(Long errorTrackingErrorEventsAggSum) { @@ -4193,6 +4389,8 @@ public Long getErrorTrackingErrorEventsAggSum() { public void setErrorTrackingErrorEventsAggSum(Long errorTrackingErrorEventsAggSum) { this.errorTrackingErrorEventsAggSum = errorTrackingErrorEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM, errorTrackingErrorEventsAggSum); } public UsageSummaryResponse errorTrackingEventsAggSum(Long errorTrackingEventsAggSum) { @@ -4215,6 +4413,7 @@ public Long getErrorTrackingEventsAggSum() { public void setErrorTrackingEventsAggSum(Long errorTrackingEventsAggSum) { this.errorTrackingEventsAggSum = errorTrackingEventsAggSum; + putAdditionalProperty(JSON_PROPERTY_ERROR_TRACKING_EVENTS_AGG_SUM, errorTrackingEventsAggSum); } public UsageSummaryResponse errorTrackingRumErrorEventsAggSum( @@ -4238,6 +4437,8 @@ public Long getErrorTrackingRumErrorEventsAggSum() { public void setErrorTrackingRumErrorEventsAggSum(Long errorTrackingRumErrorEventsAggSum) { this.errorTrackingRumErrorEventsAggSum = errorTrackingRumErrorEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_AGG_SUM, errorTrackingRumErrorEventsAggSum); } public UsageSummaryResponse eventManagementCorrelationAggSum( @@ -4261,6 +4462,8 @@ public Long getEventManagementCorrelationAggSum() { public void setEventManagementCorrelationAggSum(Long eventManagementCorrelationAggSum) { this.eventManagementCorrelationAggSum = eventManagementCorrelationAggSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_AGG_SUM, eventManagementCorrelationAggSum); } public UsageSummaryResponse eventManagementCorrelationCorrelatedEventsAggSum( @@ -4287,6 +4490,9 @@ public void setEventManagementCorrelationCorrelatedEventsAggSum( Long eventManagementCorrelationCorrelatedEventsAggSum) { this.eventManagementCorrelationCorrelatedEventsAggSum = eventManagementCorrelationCorrelatedEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_EVENTS_AGG_SUM, + eventManagementCorrelationCorrelatedEventsAggSum); } public UsageSummaryResponse eventManagementCorrelationCorrelatedRelatedEventsAggSum( @@ -4313,6 +4519,9 @@ public void setEventManagementCorrelationCorrelatedRelatedEventsAggSum( Long eventManagementCorrelationCorrelatedRelatedEventsAggSum) { this.eventManagementCorrelationCorrelatedRelatedEventsAggSum = eventManagementCorrelationCorrelatedRelatedEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_RELATED_EVENTS_AGG_SUM, + eventManagementCorrelationCorrelatedRelatedEventsAggSum); } public UsageSummaryResponse fargateContainerProfilerProfilingFargateAvgSum( @@ -4339,6 +4548,9 @@ public void setFargateContainerProfilerProfilingFargateAvgSum( Long fargateContainerProfilerProfilingFargateAvgSum) { this.fargateContainerProfilerProfilingFargateAvgSum = fargateContainerProfilerProfilingFargateAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG_SUM, + fargateContainerProfilerProfilingFargateAvgSum); } public UsageSummaryResponse fargateContainerProfilerProfilingFargateEksAvgSum( @@ -4365,6 +4577,9 @@ public void setFargateContainerProfilerProfilingFargateEksAvgSum( Long fargateContainerProfilerProfilingFargateEksAvgSum) { this.fargateContainerProfilerProfilingFargateEksAvgSum = fargateContainerProfilerProfilingFargateEksAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM, + fargateContainerProfilerProfilingFargateEksAvgSum); } public UsageSummaryResponse fargateTasksCountAvgSum(Long fargateTasksCountAvgSum) { @@ -4387,6 +4602,7 @@ public Long getFargateTasksCountAvgSum() { public void setFargateTasksCountAvgSum(Long fargateTasksCountAvgSum) { this.fargateTasksCountAvgSum = fargateTasksCountAvgSum; + putAdditionalProperty(JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM, fargateTasksCountAvgSum); } public UsageSummaryResponse fargateTasksCountHwmSum(Long fargateTasksCountHwmSum) { @@ -4409,6 +4625,7 @@ public Long getFargateTasksCountHwmSum() { public void setFargateTasksCountHwmSum(Long fargateTasksCountHwmSum) { this.fargateTasksCountHwmSum = fargateTasksCountHwmSum; + putAdditionalProperty(JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM, fargateTasksCountHwmSum); } public UsageSummaryResponse featureFlagsConfigRequestsAggSum( @@ -4432,6 +4649,8 @@ public Long getFeatureFlagsConfigRequestsAggSum() { public void setFeatureFlagsConfigRequestsAggSum(Long featureFlagsConfigRequestsAggSum) { this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum; + putAdditionalProperty( + JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM, featureFlagsConfigRequestsAggSum); } public UsageSummaryResponse flexLogsComputeLargeAvgSum(Long flexLogsComputeLargeAvgSum) { @@ -4454,6 +4673,8 @@ public Long getFlexLogsComputeLargeAvgSum() { public void setFlexLogsComputeLargeAvgSum(Long flexLogsComputeLargeAvgSum) { this.flexLogsComputeLargeAvgSum = flexLogsComputeLargeAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM, flexLogsComputeLargeAvgSum); } public UsageSummaryResponse flexLogsComputeMediumAvgSum(Long flexLogsComputeMediumAvgSum) { @@ -4476,6 +4697,8 @@ public Long getFlexLogsComputeMediumAvgSum() { public void setFlexLogsComputeMediumAvgSum(Long flexLogsComputeMediumAvgSum) { this.flexLogsComputeMediumAvgSum = flexLogsComputeMediumAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM, flexLogsComputeMediumAvgSum); } public UsageSummaryResponse flexLogsComputeSmallAvgSum(Long flexLogsComputeSmallAvgSum) { @@ -4498,6 +4721,8 @@ public Long getFlexLogsComputeSmallAvgSum() { public void setFlexLogsComputeSmallAvgSum(Long flexLogsComputeSmallAvgSum) { this.flexLogsComputeSmallAvgSum = flexLogsComputeSmallAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM, flexLogsComputeSmallAvgSum); } public UsageSummaryResponse flexLogsComputeXlargeAvgSum(Long flexLogsComputeXlargeAvgSum) { @@ -4520,6 +4745,8 @@ public Long getFlexLogsComputeXlargeAvgSum() { public void setFlexLogsComputeXlargeAvgSum(Long flexLogsComputeXlargeAvgSum) { this.flexLogsComputeXlargeAvgSum = flexLogsComputeXlargeAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM, flexLogsComputeXlargeAvgSum); } public UsageSummaryResponse flexLogsComputeXsmallAvgSum(Long flexLogsComputeXsmallAvgSum) { @@ -4542,6 +4769,8 @@ public Long getFlexLogsComputeXsmallAvgSum() { public void setFlexLogsComputeXsmallAvgSum(Long flexLogsComputeXsmallAvgSum) { this.flexLogsComputeXsmallAvgSum = flexLogsComputeXsmallAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM, flexLogsComputeXsmallAvgSum); } public UsageSummaryResponse flexLogsStarterAvgSum(Long flexLogsStarterAvgSum) { @@ -4564,6 +4793,7 @@ public Long getFlexLogsStarterAvgSum() { public void setFlexLogsStarterAvgSum(Long flexLogsStarterAvgSum) { this.flexLogsStarterAvgSum = flexLogsStarterAvgSum; + putAdditionalProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_AVG_SUM, flexLogsStarterAvgSum); } public UsageSummaryResponse flexLogsStarterStorageIndexAvgSum( @@ -4587,6 +4817,8 @@ public Long getFlexLogsStarterStorageIndexAvgSum() { public void setFlexLogsStarterStorageIndexAvgSum(Long flexLogsStarterStorageIndexAvgSum) { this.flexLogsStarterStorageIndexAvgSum = flexLogsStarterStorageIndexAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG_SUM, flexLogsStarterStorageIndexAvgSum); } public UsageSummaryResponse flexLogsStarterStorageRetentionAdjustmentAvgSum( @@ -4613,6 +4845,9 @@ public void setFlexLogsStarterStorageRetentionAdjustmentAvgSum( Long flexLogsStarterStorageRetentionAdjustmentAvgSum) { this.flexLogsStarterStorageRetentionAdjustmentAvgSum = flexLogsStarterStorageRetentionAdjustmentAvgSum; + putAdditionalProperty( + JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_RETENTION_ADJUSTMENT_AVG_SUM, + flexLogsStarterStorageRetentionAdjustmentAvgSum); } public UsageSummaryResponse flexStoredLogsAvgSum(Long flexStoredLogsAvgSum) { @@ -4635,6 +4870,7 @@ public Long getFlexStoredLogsAvgSum() { public void setFlexStoredLogsAvgSum(Long flexStoredLogsAvgSum) { this.flexStoredLogsAvgSum = flexStoredLogsAvgSum; + putAdditionalProperty(JSON_PROPERTY_FLEX_STORED_LOGS_AVG_SUM, flexStoredLogsAvgSum); } public UsageSummaryResponse forwardingEventsBytesAggSum(Long forwardingEventsBytesAggSum) { @@ -4657,6 +4893,8 @@ public Long getForwardingEventsBytesAggSum() { public void setForwardingEventsBytesAggSum(Long forwardingEventsBytesAggSum) { this.forwardingEventsBytesAggSum = forwardingEventsBytesAggSum; + putAdditionalProperty( + JSON_PROPERTY_FORWARDING_EVENTS_BYTES_AGG_SUM, forwardingEventsBytesAggSum); } public UsageSummaryResponse gcpHostTop99pSum(Long gcpHostTop99pSum) { @@ -4679,6 +4917,7 @@ public Long getGcpHostTop99pSum() { public void setGcpHostTop99pSum(Long gcpHostTop99pSum) { this.gcpHostTop99pSum = gcpHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_GCP_HOST_TOP99P_SUM, gcpHostTop99pSum); } public UsageSummaryResponse herokuHostTop99pSum(Long herokuHostTop99pSum) { @@ -4701,6 +4940,7 @@ public Long getHerokuHostTop99pSum() { public void setHerokuHostTop99pSum(Long herokuHostTop99pSum) { this.herokuHostTop99pSum = herokuHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_HEROKU_HOST_TOP99P_SUM, herokuHostTop99pSum); } public UsageSummaryResponse incidentManagementMonthlyActiveUsersHwmSum( @@ -4725,6 +4965,9 @@ public Long getIncidentManagementMonthlyActiveUsersHwmSum() { public void setIncidentManagementMonthlyActiveUsersHwmSum( Long incidentManagementMonthlyActiveUsersHwmSum) { this.incidentManagementMonthlyActiveUsersHwmSum = incidentManagementMonthlyActiveUsersHwmSum; + putAdditionalProperty( + JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM, + incidentManagementMonthlyActiveUsersHwmSum); } public UsageSummaryResponse incidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) { @@ -4747,6 +4990,8 @@ public Long getIncidentManagementSeatsHwmSum() { public void setIncidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) { this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum; + putAdditionalProperty( + JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM, incidentManagementSeatsHwmSum); } public UsageSummaryResponse indexedEventsCountAggSum(Long indexedEventsCountAggSum) { @@ -4772,6 +5017,7 @@ public Long getIndexedEventsCountAggSum() { @Deprecated public void setIndexedEventsCountAggSum(Long indexedEventsCountAggSum) { this.indexedEventsCountAggSum = indexedEventsCountAggSum; + putAdditionalProperty(JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM, indexedEventsCountAggSum); } public UsageSummaryResponse indexedPointsAggSum(Long indexedPointsAggSum) { @@ -4794,6 +5040,7 @@ public Long getIndexedPointsAggSum() { public void setIndexedPointsAggSum(Long indexedPointsAggSum) { this.indexedPointsAggSum = indexedPointsAggSum; + putAdditionalProperty(JSON_PROPERTY_INDEXED_POINTS_AGG_SUM, indexedPointsAggSum); } public UsageSummaryResponse infraCpuAggSum(Long infraCpuAggSum) { @@ -4816,6 +5063,7 @@ public Long getInfraCpuAggSum() { public void setInfraCpuAggSum(Long infraCpuAggSum) { this.infraCpuAggSum = infraCpuAggSum; + putAdditionalProperty(JSON_PROPERTY_INFRA_CPU_AGG_SUM, infraCpuAggSum); } public UsageSummaryResponse infraCpuAvgSum(Long infraCpuAvgSum) { @@ -4838,6 +5086,7 @@ public Long getInfraCpuAvgSum() { public void setInfraCpuAvgSum(Long infraCpuAvgSum) { this.infraCpuAvgSum = infraCpuAvgSum; + putAdditionalProperty(JSON_PROPERTY_INFRA_CPU_AVG_SUM, infraCpuAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAgentAggSum( @@ -4863,6 +5112,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentAggSum() { public void setInfraCpuDefaultInfraHostVcpuAgentAggSum( Long infraCpuDefaultInfraHostVcpuAgentAggSum) { this.infraCpuDefaultInfraHostVcpuAgentAggSum = infraCpuDefaultInfraHostVcpuAgentAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_AGG_SUM, + infraCpuDefaultInfraHostVcpuAgentAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAgentAvgSum( @@ -4888,6 +5140,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAgentAvgSum() { public void setInfraCpuDefaultInfraHostVcpuAgentAvgSum( Long infraCpuDefaultInfraHostVcpuAgentAvgSum) { this.infraCpuDefaultInfraHostVcpuAgentAvgSum = infraCpuDefaultInfraHostVcpuAgentAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_AVG_SUM, + infraCpuDefaultInfraHostVcpuAgentAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAgentBasicAggSum( @@ -4915,6 +5170,9 @@ public void setInfraCpuDefaultInfraHostVcpuAgentBasicAggSum( Long infraCpuDefaultInfraHostVcpuAgentBasicAggSum) { this.infraCpuDefaultInfraHostVcpuAgentBasicAggSum = infraCpuDefaultInfraHostVcpuAgentBasicAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_BASIC_AGG_SUM, + infraCpuDefaultInfraHostVcpuAgentBasicAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAgentBasicAvgSum( @@ -4942,6 +5200,9 @@ public void setInfraCpuDefaultInfraHostVcpuAgentBasicAvgSum( Long infraCpuDefaultInfraHostVcpuAgentBasicAvgSum) { this.infraCpuDefaultInfraHostVcpuAgentBasicAvgSum = infraCpuDefaultInfraHostVcpuAgentBasicAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AGENT_BASIC_AVG_SUM, + infraCpuDefaultInfraHostVcpuAgentBasicAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAwsAggSum( @@ -4966,6 +5227,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAwsAggSum() { public void setInfraCpuDefaultInfraHostVcpuAwsAggSum(Long infraCpuDefaultInfraHostVcpuAwsAggSum) { this.infraCpuDefaultInfraHostVcpuAwsAggSum = infraCpuDefaultInfraHostVcpuAwsAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AWS_AGG_SUM, + infraCpuDefaultInfraHostVcpuAwsAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAwsAvgSum( @@ -4990,6 +5254,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAwsAvgSum() { public void setInfraCpuDefaultInfraHostVcpuAwsAvgSum(Long infraCpuDefaultInfraHostVcpuAwsAvgSum) { this.infraCpuDefaultInfraHostVcpuAwsAvgSum = infraCpuDefaultInfraHostVcpuAwsAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AWS_AVG_SUM, + infraCpuDefaultInfraHostVcpuAwsAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAzureAggSum( @@ -5015,6 +5282,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAzureAggSum() { public void setInfraCpuDefaultInfraHostVcpuAzureAggSum( Long infraCpuDefaultInfraHostVcpuAzureAggSum) { this.infraCpuDefaultInfraHostVcpuAzureAggSum = infraCpuDefaultInfraHostVcpuAzureAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AZURE_AGG_SUM, + infraCpuDefaultInfraHostVcpuAzureAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuAzureAvgSum( @@ -5040,6 +5310,9 @@ public Long getInfraCpuDefaultInfraHostVcpuAzureAvgSum() { public void setInfraCpuDefaultInfraHostVcpuAzureAvgSum( Long infraCpuDefaultInfraHostVcpuAzureAvgSum) { this.infraCpuDefaultInfraHostVcpuAzureAvgSum = infraCpuDefaultInfraHostVcpuAzureAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_AZURE_AVG_SUM, + infraCpuDefaultInfraHostVcpuAzureAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuGcpAggSum( @@ -5064,6 +5337,9 @@ public Long getInfraCpuDefaultInfraHostVcpuGcpAggSum() { public void setInfraCpuDefaultInfraHostVcpuGcpAggSum(Long infraCpuDefaultInfraHostVcpuGcpAggSum) { this.infraCpuDefaultInfraHostVcpuGcpAggSum = infraCpuDefaultInfraHostVcpuGcpAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_GCP_AGG_SUM, + infraCpuDefaultInfraHostVcpuGcpAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuGcpAvgSum( @@ -5088,6 +5364,9 @@ public Long getInfraCpuDefaultInfraHostVcpuGcpAvgSum() { public void setInfraCpuDefaultInfraHostVcpuGcpAvgSum(Long infraCpuDefaultInfraHostVcpuGcpAvgSum) { this.infraCpuDefaultInfraHostVcpuGcpAvgSum = infraCpuDefaultInfraHostVcpuGcpAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_GCP_AVG_SUM, + infraCpuDefaultInfraHostVcpuGcpAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuNutanixAggSum( @@ -5113,6 +5392,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixAggSum() { public void setInfraCpuDefaultInfraHostVcpuNutanixAggSum( Long infraCpuDefaultInfraHostVcpuNutanixAggSum) { this.infraCpuDefaultInfraHostVcpuNutanixAggSum = infraCpuDefaultInfraHostVcpuNutanixAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_AGG_SUM, + infraCpuDefaultInfraHostVcpuNutanixAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuNutanixAvgSum( @@ -5138,6 +5420,9 @@ public Long getInfraCpuDefaultInfraHostVcpuNutanixAvgSum() { public void setInfraCpuDefaultInfraHostVcpuNutanixAvgSum( Long infraCpuDefaultInfraHostVcpuNutanixAvgSum) { this.infraCpuDefaultInfraHostVcpuNutanixAvgSum = infraCpuDefaultInfraHostVcpuNutanixAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_AVG_SUM, + infraCpuDefaultInfraHostVcpuNutanixAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuNutanixBasicAggSum( @@ -5165,6 +5450,9 @@ public void setInfraCpuDefaultInfraHostVcpuNutanixBasicAggSum( Long infraCpuDefaultInfraHostVcpuNutanixBasicAggSum) { this.infraCpuDefaultInfraHostVcpuNutanixBasicAggSum = infraCpuDefaultInfraHostVcpuNutanixBasicAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_BASIC_AGG_SUM, + infraCpuDefaultInfraHostVcpuNutanixBasicAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuNutanixBasicAvgSum( @@ -5192,6 +5480,9 @@ public void setInfraCpuDefaultInfraHostVcpuNutanixBasicAvgSum( Long infraCpuDefaultInfraHostVcpuNutanixBasicAvgSum) { this.infraCpuDefaultInfraHostVcpuNutanixBasicAvgSum = infraCpuDefaultInfraHostVcpuNutanixBasicAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_NUTANIX_BASIC_AVG_SUM, + infraCpuDefaultInfraHostVcpuNutanixBasicAvgSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuOpentelemetryAggSum( @@ -5219,6 +5510,9 @@ public void setInfraCpuDefaultInfraHostVcpuOpentelemetryAggSum( Long infraCpuDefaultInfraHostVcpuOpentelemetryAggSum) { this.infraCpuDefaultInfraHostVcpuOpentelemetryAggSum = infraCpuDefaultInfraHostVcpuOpentelemetryAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_OPENTELEMETRY_AGG_SUM, + infraCpuDefaultInfraHostVcpuOpentelemetryAggSum); } public UsageSummaryResponse infraCpuDefaultInfraHostVcpuOpentelemetryAvgSum( @@ -5246,6 +5540,9 @@ public void setInfraCpuDefaultInfraHostVcpuOpentelemetryAvgSum( Long infraCpuDefaultInfraHostVcpuOpentelemetryAvgSum) { this.infraCpuDefaultInfraHostVcpuOpentelemetryAvgSum = infraCpuDefaultInfraHostVcpuOpentelemetryAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_DEFAULT_INFRA_HOST_VCPU_OPENTELEMETRY_AVG_SUM, + infraCpuDefaultInfraHostVcpuOpentelemetryAvgSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuAgentAggSum( @@ -5271,6 +5568,9 @@ public Long getInfraCpuObservedInfraHostVcpuAgentAggSum() { public void setInfraCpuObservedInfraHostVcpuAgentAggSum( Long infraCpuObservedInfraHostVcpuAgentAggSum) { this.infraCpuObservedInfraHostVcpuAgentAggSum = infraCpuObservedInfraHostVcpuAgentAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AGENT_AGG_SUM, + infraCpuObservedInfraHostVcpuAgentAggSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuAgentAvgSum( @@ -5296,6 +5596,9 @@ public Long getInfraCpuObservedInfraHostVcpuAgentAvgSum() { public void setInfraCpuObservedInfraHostVcpuAgentAvgSum( Long infraCpuObservedInfraHostVcpuAgentAvgSum) { this.infraCpuObservedInfraHostVcpuAgentAvgSum = infraCpuObservedInfraHostVcpuAgentAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AGENT_AVG_SUM, + infraCpuObservedInfraHostVcpuAgentAvgSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuAwsAggSum( @@ -5321,6 +5624,9 @@ public Long getInfraCpuObservedInfraHostVcpuAwsAggSum() { public void setInfraCpuObservedInfraHostVcpuAwsAggSum( Long infraCpuObservedInfraHostVcpuAwsAggSum) { this.infraCpuObservedInfraHostVcpuAwsAggSum = infraCpuObservedInfraHostVcpuAwsAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AWS_AGG_SUM, + infraCpuObservedInfraHostVcpuAwsAggSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuAwsAvgSum( @@ -5346,6 +5652,9 @@ public Long getInfraCpuObservedInfraHostVcpuAwsAvgSum() { public void setInfraCpuObservedInfraHostVcpuAwsAvgSum( Long infraCpuObservedInfraHostVcpuAwsAvgSum) { this.infraCpuObservedInfraHostVcpuAwsAvgSum = infraCpuObservedInfraHostVcpuAwsAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AWS_AVG_SUM, + infraCpuObservedInfraHostVcpuAwsAvgSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuAzureAggSum( @@ -5371,6 +5680,9 @@ public Long getInfraCpuObservedInfraHostVcpuAzureAggSum() { public void setInfraCpuObservedInfraHostVcpuAzureAggSum( Long infraCpuObservedInfraHostVcpuAzureAggSum) { this.infraCpuObservedInfraHostVcpuAzureAggSum = infraCpuObservedInfraHostVcpuAzureAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AZURE_AGG_SUM, + infraCpuObservedInfraHostVcpuAzureAggSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuAzureAvgSum( @@ -5396,6 +5708,9 @@ public Long getInfraCpuObservedInfraHostVcpuAzureAvgSum() { public void setInfraCpuObservedInfraHostVcpuAzureAvgSum( Long infraCpuObservedInfraHostVcpuAzureAvgSum) { this.infraCpuObservedInfraHostVcpuAzureAvgSum = infraCpuObservedInfraHostVcpuAzureAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_AZURE_AVG_SUM, + infraCpuObservedInfraHostVcpuAzureAvgSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuGcpAggSum( @@ -5421,6 +5736,9 @@ public Long getInfraCpuObservedInfraHostVcpuGcpAggSum() { public void setInfraCpuObservedInfraHostVcpuGcpAggSum( Long infraCpuObservedInfraHostVcpuGcpAggSum) { this.infraCpuObservedInfraHostVcpuGcpAggSum = infraCpuObservedInfraHostVcpuGcpAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_GCP_AGG_SUM, + infraCpuObservedInfraHostVcpuGcpAggSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuGcpAvgSum( @@ -5446,6 +5764,9 @@ public Long getInfraCpuObservedInfraHostVcpuGcpAvgSum() { public void setInfraCpuObservedInfraHostVcpuGcpAvgSum( Long infraCpuObservedInfraHostVcpuGcpAvgSum) { this.infraCpuObservedInfraHostVcpuGcpAvgSum = infraCpuObservedInfraHostVcpuGcpAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_GCP_AVG_SUM, + infraCpuObservedInfraHostVcpuGcpAvgSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuNutanixAggSum( @@ -5471,6 +5792,9 @@ public Long getInfraCpuObservedInfraHostVcpuNutanixAggSum() { public void setInfraCpuObservedInfraHostVcpuNutanixAggSum( Long infraCpuObservedInfraHostVcpuNutanixAggSum) { this.infraCpuObservedInfraHostVcpuNutanixAggSum = infraCpuObservedInfraHostVcpuNutanixAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_NUTANIX_AGG_SUM, + infraCpuObservedInfraHostVcpuNutanixAggSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuNutanixAvgSum( @@ -5496,6 +5820,9 @@ public Long getInfraCpuObservedInfraHostVcpuNutanixAvgSum() { public void setInfraCpuObservedInfraHostVcpuNutanixAvgSum( Long infraCpuObservedInfraHostVcpuNutanixAvgSum) { this.infraCpuObservedInfraHostVcpuNutanixAvgSum = infraCpuObservedInfraHostVcpuNutanixAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_NUTANIX_AVG_SUM, + infraCpuObservedInfraHostVcpuNutanixAvgSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuOpentelemetryAggSum( @@ -5523,6 +5850,9 @@ public void setInfraCpuObservedInfraHostVcpuOpentelemetryAggSum( Long infraCpuObservedInfraHostVcpuOpentelemetryAggSum) { this.infraCpuObservedInfraHostVcpuOpentelemetryAggSum = infraCpuObservedInfraHostVcpuOpentelemetryAggSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_OPENTELEMETRY_AGG_SUM, + infraCpuObservedInfraHostVcpuOpentelemetryAggSum); } public UsageSummaryResponse infraCpuObservedInfraHostVcpuOpentelemetryAvgSum( @@ -5550,6 +5880,9 @@ public void setInfraCpuObservedInfraHostVcpuOpentelemetryAvgSum( Long infraCpuObservedInfraHostVcpuOpentelemetryAvgSum) { this.infraCpuObservedInfraHostVcpuOpentelemetryAvgSum = infraCpuObservedInfraHostVcpuOpentelemetryAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_CPU_OBSERVED_INFRA_HOST_VCPU_OPENTELEMETRY_AVG_SUM, + infraCpuObservedInfraHostVcpuOpentelemetryAvgSum); } public UsageSummaryResponse infraEdgeMonitoringDevicesTop99pSum( @@ -5573,6 +5906,9 @@ public Long getInfraEdgeMonitoringDevicesTop99pSum() { public void setInfraEdgeMonitoringDevicesTop99pSum(Long infraEdgeMonitoringDevicesTop99pSum) { this.infraEdgeMonitoringDevicesTop99pSum = infraEdgeMonitoringDevicesTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM, + infraEdgeMonitoringDevicesTop99pSum); } public UsageSummaryResponse infraHostBasicInfraBasicAgentTop99pSum( @@ -5597,6 +5933,9 @@ public Long getInfraHostBasicInfraBasicAgentTop99pSum() { public void setInfraHostBasicInfraBasicAgentTop99pSum( Long infraHostBasicInfraBasicAgentTop99pSum) { this.infraHostBasicInfraBasicAgentTop99pSum = infraHostBasicInfraBasicAgentTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_AGENT_TOP99P_SUM, + infraHostBasicInfraBasicAgentTop99pSum); } public UsageSummaryResponse infraHostBasicInfraBasicVsphereTop99pSum( @@ -5621,6 +5960,9 @@ public Long getInfraHostBasicInfraBasicVsphereTop99pSum() { public void setInfraHostBasicInfraBasicVsphereTop99pSum( Long infraHostBasicInfraBasicVsphereTop99pSum) { this.infraHostBasicInfraBasicVsphereTop99pSum = infraHostBasicInfraBasicVsphereTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P_SUM, + infraHostBasicInfraBasicVsphereTop99pSum); } public UsageSummaryResponse infraHostBasicTop99pSum(Long infraHostBasicTop99pSum) { @@ -5643,6 +5985,7 @@ public Long getInfraHostBasicTop99pSum() { public void setInfraHostBasicTop99pSum(Long infraHostBasicTop99pSum) { this.infraHostBasicTop99pSum = infraHostBasicTop99pSum; + putAdditionalProperty(JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P_SUM, infraHostBasicTop99pSum); } public UsageSummaryResponse infraHostTop99pSum(Long infraHostTop99pSum) { @@ -5665,6 +6008,7 @@ public Long getInfraHostTop99pSum() { public void setInfraHostTop99pSum(Long infraHostTop99pSum) { this.infraHostTop99pSum = infraHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_INFRA_HOST_TOP99P_SUM, infraHostTop99pSum); } public UsageSummaryResponse infraStorageMgmtObjectsCountAvgSum( @@ -5688,6 +6032,8 @@ public Long getInfraStorageMgmtObjectsCountAvgSum() { public void setInfraStorageMgmtObjectsCountAvgSum(Long infraStorageMgmtObjectsCountAvgSum) { this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM, infraStorageMgmtObjectsCountAvgSum); } public UsageSummaryResponse ingestPointsAggSum(Long ingestPointsAggSum) { @@ -5710,6 +6056,7 @@ public Long getIngestPointsAggSum() { public void setIngestPointsAggSum(Long ingestPointsAggSum) { this.ingestPointsAggSum = ingestPointsAggSum; + putAdditionalProperty(JSON_PROPERTY_INGEST_POINTS_AGG_SUM, ingestPointsAggSum); } public UsageSummaryResponse ingestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) { @@ -5732,6 +6079,7 @@ public Long getIngestedEventsBytesAggSum() { public void setIngestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) { this.ingestedEventsBytesAggSum = ingestedEventsBytesAggSum; + putAdditionalProperty(JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, ingestedEventsBytesAggSum); } public UsageSummaryResponse iotApmHostAggSum(Long iotApmHostAggSum) { @@ -5754,6 +6102,7 @@ public Long getIotApmHostAggSum() { public void setIotApmHostAggSum(Long iotApmHostAggSum) { this.iotApmHostAggSum = iotApmHostAggSum; + putAdditionalProperty(JSON_PROPERTY_IOT_APM_HOST_AGG_SUM, iotApmHostAggSum); } public UsageSummaryResponse iotApmHostTop99pSum(Long iotApmHostTop99pSum) { @@ -5776,6 +6125,7 @@ public Long getIotApmHostTop99pSum() { public void setIotApmHostTop99pSum(Long iotApmHostTop99pSum) { this.iotApmHostTop99pSum = iotApmHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_IOT_APM_HOST_TOP99P_SUM, iotApmHostTop99pSum); } public UsageSummaryResponse iotDeviceAggSum(Long iotDeviceAggSum) { @@ -5797,6 +6147,7 @@ public Long getIotDeviceAggSum() { public void setIotDeviceAggSum(Long iotDeviceAggSum) { this.iotDeviceAggSum = iotDeviceAggSum; + putAdditionalProperty(JSON_PROPERTY_IOT_DEVICE_AGG_SUM, iotDeviceAggSum); } public UsageSummaryResponse iotDeviceTop99pSum(Long iotDeviceTop99pSum) { @@ -5819,6 +6170,7 @@ public Long getIotDeviceTop99pSum() { public void setIotDeviceTop99pSum(Long iotDeviceTop99pSum) { this.iotDeviceTop99pSum = iotDeviceTop99pSum; + putAdditionalProperty(JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, iotDeviceTop99pSum); } public UsageSummaryResponse lastUpdated(OffsetDateTime lastUpdated) { @@ -5841,6 +6193,7 @@ public OffsetDateTime getLastUpdated() { public void setLastUpdated(OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; + putAdditionalProperty(JSON_PROPERTY_LAST_UPDATED, lastUpdated); } public UsageSummaryResponse liveIndexedEventsAggSum(Long liveIndexedEventsAggSum) { @@ -5866,6 +6219,7 @@ public Long getLiveIndexedEventsAggSum() { @Deprecated public void setLiveIndexedEventsAggSum(Long liveIndexedEventsAggSum) { this.liveIndexedEventsAggSum = liveIndexedEventsAggSum; + putAdditionalProperty(JSON_PROPERTY_LIVE_INDEXED_EVENTS_AGG_SUM, liveIndexedEventsAggSum); } public UsageSummaryResponse liveIngestedBytesAggSum(Long liveIngestedBytesAggSum) { @@ -5888,6 +6242,7 @@ public Long getLiveIngestedBytesAggSum() { public void setLiveIngestedBytesAggSum(Long liveIngestedBytesAggSum) { this.liveIngestedBytesAggSum = liveIngestedBytesAggSum; + putAdditionalProperty(JSON_PROPERTY_LIVE_INGESTED_BYTES_AGG_SUM, liveIngestedBytesAggSum); } public UsageSummaryResponse llmObservability15dayRetentionSpansAggSum( @@ -5912,6 +6267,9 @@ public Long getLlmObservability15dayRetentionSpansAggSum() { public void setLlmObservability15dayRetentionSpansAggSum( Long llmObservability15dayRetentionSpansAggSum) { this.llmObservability15dayRetentionSpansAggSum = llmObservability15dayRetentionSpansAggSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_15DAY_RETENTION_SPANS_AGG_SUM, + llmObservability15dayRetentionSpansAggSum); } public UsageSummaryResponse llmObservability30dayRetentionSpansAggSum( @@ -5936,6 +6294,9 @@ public Long getLlmObservability30dayRetentionSpansAggSum() { public void setLlmObservability30dayRetentionSpansAggSum( Long llmObservability30dayRetentionSpansAggSum) { this.llmObservability30dayRetentionSpansAggSum = llmObservability30dayRetentionSpansAggSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_30DAY_RETENTION_SPANS_AGG_SUM, + llmObservability30dayRetentionSpansAggSum); } public UsageSummaryResponse llmObservability60dayRetentionSpansAggSum( @@ -5960,6 +6321,9 @@ public Long getLlmObservability60dayRetentionSpansAggSum() { public void setLlmObservability60dayRetentionSpansAggSum( Long llmObservability60dayRetentionSpansAggSum) { this.llmObservability60dayRetentionSpansAggSum = llmObservability60dayRetentionSpansAggSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_60DAY_RETENTION_SPANS_AGG_SUM, + llmObservability60dayRetentionSpansAggSum); } public UsageSummaryResponse llmObservability90dayRetentionSpansAggSum( @@ -5984,6 +6348,9 @@ public Long getLlmObservability90dayRetentionSpansAggSum() { public void setLlmObservability90dayRetentionSpansAggSum( Long llmObservability90dayRetentionSpansAggSum) { this.llmObservability90dayRetentionSpansAggSum = llmObservability90dayRetentionSpansAggSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_90DAY_RETENTION_SPANS_AGG_SUM, + llmObservability90dayRetentionSpansAggSum); } public UsageSummaryResponse llmObservabilityAggSum(Long llmObservabilityAggSum) { @@ -6005,6 +6372,7 @@ public Long getLlmObservabilityAggSum() { public void setLlmObservabilityAggSum(Long llmObservabilityAggSum) { this.llmObservabilityAggSum = llmObservabilityAggSum; + putAdditionalProperty(JSON_PROPERTY_LLM_OBSERVABILITY_AGG_SUM, llmObservabilityAggSum); } public UsageSummaryResponse llmObservabilityMinSpendAggSum(Long llmObservabilityMinSpendAggSum) { @@ -6027,6 +6395,8 @@ public Long getLlmObservabilityMinSpendAggSum() { public void setLlmObservabilityMinSpendAggSum(Long llmObservabilityMinSpendAggSum) { this.llmObservabilityMinSpendAggSum = llmObservabilityMinSpendAggSum; + putAdditionalProperty( + JSON_PROPERTY_LLM_OBSERVABILITY_MIN_SPEND_AGG_SUM, llmObservabilityMinSpendAggSum); } public UsageSummaryResponse logsArchiveSearchGbScannedAggSum( @@ -6050,6 +6420,8 @@ public Long getLogsArchiveSearchGbScannedAggSum() { public void setLogsArchiveSearchGbScannedAggSum(Long logsArchiveSearchGbScannedAggSum) { this.logsArchiveSearchGbScannedAggSum = logsArchiveSearchGbScannedAggSum; + putAdditionalProperty( + JSON_PROPERTY_LOGS_ARCHIVE_SEARCH_GB_SCANNED_AGG_SUM, logsArchiveSearchGbScannedAggSum); } public UsageSummaryResponse logsByRetention(LogsByRetention logsByRetention) { @@ -6072,6 +6444,7 @@ public LogsByRetention getLogsByRetention() { public void setLogsByRetention(LogsByRetention logsByRetention) { this.logsByRetention = logsByRetention; + putAdditionalProperty(JSON_PROPERTY_LOGS_BY_RETENTION, logsByRetention); } public UsageSummaryResponse metricNamesAggSum(Long metricNamesAggSum) { @@ -6094,6 +6467,7 @@ public Long getMetricNamesAggSum() { public void setMetricNamesAggSum(Long metricNamesAggSum) { this.metricNamesAggSum = metricNamesAggSum; + putAdditionalProperty(JSON_PROPERTY_METRIC_NAMES_AGG_SUM, metricNamesAggSum); } public UsageSummaryResponse mobileRumLiteSessionCountAggSum( @@ -6120,6 +6494,8 @@ public Long getMobileRumLiteSessionCountAggSum() { @Deprecated public void setMobileRumLiteSessionCountAggSum(Long mobileRumLiteSessionCountAggSum) { this.mobileRumLiteSessionCountAggSum = mobileRumLiteSessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_LITE_SESSION_COUNT_AGG_SUM, mobileRumLiteSessionCountAggSum); } public UsageSummaryResponse mobileRumSessionCountAggSum(Long mobileRumSessionCountAggSum) { @@ -6145,6 +6521,8 @@ public Long getMobileRumSessionCountAggSum() { @Deprecated public void setMobileRumSessionCountAggSum(Long mobileRumSessionCountAggSum) { this.mobileRumSessionCountAggSum = mobileRumSessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_AGG_SUM, mobileRumSessionCountAggSum); } public UsageSummaryResponse mobileRumSessionCountAndroidAggSum( @@ -6171,6 +6549,8 @@ public Long getMobileRumSessionCountAndroidAggSum() { @Deprecated public void setMobileRumSessionCountAndroidAggSum(Long mobileRumSessionCountAndroidAggSum) { this.mobileRumSessionCountAndroidAggSum = mobileRumSessionCountAndroidAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ANDROID_AGG_SUM, mobileRumSessionCountAndroidAggSum); } public UsageSummaryResponse mobileRumSessionCountFlutterAggSum( @@ -6197,6 +6577,8 @@ public Long getMobileRumSessionCountFlutterAggSum() { @Deprecated public void setMobileRumSessionCountFlutterAggSum(Long mobileRumSessionCountFlutterAggSum) { this.mobileRumSessionCountFlutterAggSum = mobileRumSessionCountFlutterAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_FLUTTER_AGG_SUM, mobileRumSessionCountFlutterAggSum); } public UsageSummaryResponse mobileRumSessionCountIosAggSum(Long mobileRumSessionCountIosAggSum) { @@ -6222,6 +6604,8 @@ public Long getMobileRumSessionCountIosAggSum() { @Deprecated public void setMobileRumSessionCountIosAggSum(Long mobileRumSessionCountIosAggSum) { this.mobileRumSessionCountIosAggSum = mobileRumSessionCountIosAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_IOS_AGG_SUM, mobileRumSessionCountIosAggSum); } public UsageSummaryResponse mobileRumSessionCountReactnativeAggSum( @@ -6249,6 +6633,9 @@ public Long getMobileRumSessionCountReactnativeAggSum() { public void setMobileRumSessionCountReactnativeAggSum( Long mobileRumSessionCountReactnativeAggSum) { this.mobileRumSessionCountReactnativeAggSum = mobileRumSessionCountReactnativeAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_REACTNATIVE_AGG_SUM, + mobileRumSessionCountReactnativeAggSum); } public UsageSummaryResponse mobileRumSessionCountRokuAggSum( @@ -6275,6 +6662,8 @@ public Long getMobileRumSessionCountRokuAggSum() { @Deprecated public void setMobileRumSessionCountRokuAggSum(Long mobileRumSessionCountRokuAggSum) { this.mobileRumSessionCountRokuAggSum = mobileRumSessionCountRokuAggSum; + putAdditionalProperty( + JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ROKU_AGG_SUM, mobileRumSessionCountRokuAggSum); } public UsageSummaryResponse mobileRumUnitsAggSum(Long mobileRumUnitsAggSum) { @@ -6300,6 +6689,7 @@ public Long getMobileRumUnitsAggSum() { @Deprecated public void setMobileRumUnitsAggSum(Long mobileRumUnitsAggSum) { this.mobileRumUnitsAggSum = mobileRumUnitsAggSum; + putAdditionalProperty(JSON_PROPERTY_MOBILE_RUM_UNITS_AGG_SUM, mobileRumUnitsAggSum); } public UsageSummaryResponse ndmNetflowEventsAggSum(Long ndmNetflowEventsAggSum) { @@ -6322,6 +6712,7 @@ public Long getNdmNetflowEventsAggSum() { public void setNdmNetflowEventsAggSum(Long ndmNetflowEventsAggSum) { this.ndmNetflowEventsAggSum = ndmNetflowEventsAggSum; + putAdditionalProperty(JSON_PROPERTY_NDM_NETFLOW_EVENTS_AGG_SUM, ndmNetflowEventsAggSum); } public UsageSummaryResponse netflowIndexedEventsCountAggSum( @@ -6348,6 +6739,8 @@ public Long getNetflowIndexedEventsCountAggSum() { @Deprecated public void setNetflowIndexedEventsCountAggSum(Long netflowIndexedEventsCountAggSum) { this.netflowIndexedEventsCountAggSum = netflowIndexedEventsCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_AGG_SUM, netflowIndexedEventsCountAggSum); } public UsageSummaryResponse networkDeviceWirelessTop99pSum(Long networkDeviceWirelessTop99pSum) { @@ -6370,6 +6763,8 @@ public Long getNetworkDeviceWirelessTop99pSum() { public void setNetworkDeviceWirelessTop99pSum(Long networkDeviceWirelessTop99pSum) { this.networkDeviceWirelessTop99pSum = networkDeviceWirelessTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P_SUM, networkDeviceWirelessTop99pSum); } public UsageSummaryResponse networkPathAggSum(Long networkPathAggSum) { @@ -6392,6 +6787,7 @@ public Long getNetworkPathAggSum() { public void setNetworkPathAggSum(Long networkPathAggSum) { this.networkPathAggSum = networkPathAggSum; + putAdditionalProperty(JSON_PROPERTY_NETWORK_PATH_AGG_SUM, networkPathAggSum); } public UsageSummaryResponse npmHostTop99pSum(Long npmHostTop99pSum) { @@ -6414,6 +6810,7 @@ public Long getNpmHostTop99pSum() { public void setNpmHostTop99pSum(Long npmHostTop99pSum) { this.npmHostTop99pSum = npmHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_NPM_HOST_TOP99P_SUM, npmHostTop99pSum); } public UsageSummaryResponse observabilityPipelinesBytesProcessedAggSum( @@ -6438,6 +6835,9 @@ public Long getObservabilityPipelinesBytesProcessedAggSum() { public void setObservabilityPipelinesBytesProcessedAggSum( Long observabilityPipelinesBytesProcessedAggSum) { this.observabilityPipelinesBytesProcessedAggSum = observabilityPipelinesBytesProcessedAggSum; + putAdditionalProperty( + JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_AGG_SUM, + observabilityPipelinesBytesProcessedAggSum); } public UsageSummaryResponse ociHostAggSum(Long ociHostAggSum) { @@ -6460,6 +6860,7 @@ public Long getOciHostAggSum() { public void setOciHostAggSum(Long ociHostAggSum) { this.ociHostAggSum = ociHostAggSum; + putAdditionalProperty(JSON_PROPERTY_OCI_HOST_AGG_SUM, ociHostAggSum); } public UsageSummaryResponse ociHostTop99pSum(Long ociHostTop99pSum) { @@ -6482,6 +6883,7 @@ public Long getOciHostTop99pSum() { public void setOciHostTop99pSum(Long ociHostTop99pSum) { this.ociHostTop99pSum = ociHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_OCI_HOST_TOP99P_SUM, ociHostTop99pSum); } public UsageSummaryResponse onCallSeatHwmSum(Long onCallSeatHwmSum) { @@ -6504,6 +6906,7 @@ public Long getOnCallSeatHwmSum() { public void setOnCallSeatHwmSum(Long onCallSeatHwmSum) { this.onCallSeatHwmSum = onCallSeatHwmSum; + putAdditionalProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM_SUM, onCallSeatHwmSum); } public UsageSummaryResponse onlineArchiveEventsCountAggSum(Long onlineArchiveEventsCountAggSum) { @@ -6525,6 +6928,8 @@ public Long getOnlineArchiveEventsCountAggSum() { public void setOnlineArchiveEventsCountAggSum(Long onlineArchiveEventsCountAggSum) { this.onlineArchiveEventsCountAggSum = onlineArchiveEventsCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_AGG_SUM, onlineArchiveEventsCountAggSum); } public UsageSummaryResponse opentelemetryApmHostTop99pSum(Long opentelemetryApmHostTop99pSum) { @@ -6547,6 +6952,8 @@ public Long getOpentelemetryApmHostTop99pSum() { public void setOpentelemetryApmHostTop99pSum(Long opentelemetryApmHostTop99pSum) { this.opentelemetryApmHostTop99pSum = opentelemetryApmHostTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P_SUM, opentelemetryApmHostTop99pSum); } public UsageSummaryResponse opentelemetryHostTop99pSum(Long opentelemetryHostTop99pSum) { @@ -6569,6 +6976,7 @@ public Long getOpentelemetryHostTop99pSum() { public void setOpentelemetryHostTop99pSum(Long opentelemetryHostTop99pSum) { this.opentelemetryHostTop99pSum = opentelemetryHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P_SUM, opentelemetryHostTop99pSum); } public UsageSummaryResponse productAnalyticsAggSum(Long productAnalyticsAggSum) { @@ -6590,6 +6998,7 @@ public Long getProductAnalyticsAggSum() { public void setProductAnalyticsAggSum(Long productAnalyticsAggSum) { this.productAnalyticsAggSum = productAnalyticsAggSum; + putAdditionalProperty(JSON_PROPERTY_PRODUCT_ANALYTICS_AGG_SUM, productAnalyticsAggSum); } public UsageSummaryResponse profilingAasCountTop99pSum(Long profilingAasCountTop99pSum) { @@ -6612,6 +7021,7 @@ public Long getProfilingAasCountTop99pSum() { public void setProfilingAasCountTop99pSum(Long profilingAasCountTop99pSum) { this.profilingAasCountTop99pSum = profilingAasCountTop99pSum; + putAdditionalProperty(JSON_PROPERTY_PROFILING_AAS_COUNT_TOP99P_SUM, profilingAasCountTop99pSum); } public UsageSummaryResponse profilingContainerAgentCountAvg( @@ -6635,6 +7045,8 @@ public Long getProfilingContainerAgentCountAvg() { public void setProfilingContainerAgentCountAvg(Long profilingContainerAgentCountAvg) { this.profilingContainerAgentCountAvg = profilingContainerAgentCountAvg; + putAdditionalProperty( + JSON_PROPERTY_PROFILING_CONTAINER_AGENT_COUNT_AVG, profilingContainerAgentCountAvg); } public UsageSummaryResponse profilingHostCountTop99pSum(Long profilingHostCountTop99pSum) { @@ -6657,6 +7069,8 @@ public Long getProfilingHostCountTop99pSum() { public void setProfilingHostCountTop99pSum(Long profilingHostCountTop99pSum) { this.profilingHostCountTop99pSum = profilingHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_PROFILING_HOST_COUNT_TOP99P_SUM, profilingHostCountTop99pSum); } public UsageSummaryResponse proxmoxHostAggSum(Long proxmoxHostAggSum) { @@ -6678,6 +7092,7 @@ public Long getProxmoxHostAggSum() { public void setProxmoxHostAggSum(Long proxmoxHostAggSum) { this.proxmoxHostAggSum = proxmoxHostAggSum; + putAdditionalProperty(JSON_PROPERTY_PROXMOX_HOST_AGG_SUM, proxmoxHostAggSum); } public UsageSummaryResponse proxmoxHostTop99pSum(Long proxmoxHostTop99pSum) { @@ -6700,6 +7115,7 @@ public Long getProxmoxHostTop99pSum() { public void setProxmoxHostTop99pSum(Long proxmoxHostTop99pSum) { this.proxmoxHostTop99pSum = proxmoxHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_PROXMOX_HOST_TOP99P_SUM, proxmoxHostTop99pSum); } public UsageSummaryResponse publishedAppHwmSum(Long publishedAppHwmSum) { @@ -6722,6 +7138,7 @@ public Long getPublishedAppHwmSum() { public void setPublishedAppHwmSum(Long publishedAppHwmSum) { this.publishedAppHwmSum = publishedAppHwmSum; + putAdditionalProperty(JSON_PROPERTY_PUBLISHED_APP_HWM_SUM, publishedAppHwmSum); } public UsageSummaryResponse rehydratedIndexedEventsAggSum(Long rehydratedIndexedEventsAggSum) { @@ -6747,6 +7164,8 @@ public Long getRehydratedIndexedEventsAggSum() { @Deprecated public void setRehydratedIndexedEventsAggSum(Long rehydratedIndexedEventsAggSum) { this.rehydratedIndexedEventsAggSum = rehydratedIndexedEventsAggSum; + putAdditionalProperty( + JSON_PROPERTY_REHYDRATED_INDEXED_EVENTS_AGG_SUM, rehydratedIndexedEventsAggSum); } public UsageSummaryResponse rehydratedIngestedBytesAggSum(Long rehydratedIngestedBytesAggSum) { @@ -6769,6 +7188,8 @@ public Long getRehydratedIngestedBytesAggSum() { public void setRehydratedIngestedBytesAggSum(Long rehydratedIngestedBytesAggSum) { this.rehydratedIngestedBytesAggSum = rehydratedIngestedBytesAggSum; + putAdditionalProperty( + JSON_PROPERTY_REHYDRATED_INGESTED_BYTES_AGG_SUM, rehydratedIngestedBytesAggSum); } public UsageSummaryResponse rumBrowserAndMobileSessionCount( @@ -6792,6 +7213,8 @@ public Long getRumBrowserAndMobileSessionCount() { public void setRumBrowserAndMobileSessionCount(Long rumBrowserAndMobileSessionCount) { this.rumBrowserAndMobileSessionCount = rumBrowserAndMobileSessionCount; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_AND_MOBILE_SESSION_COUNT, rumBrowserAndMobileSessionCount); } public UsageSummaryResponse rumBrowserLegacySessionCountAggSum( @@ -6815,6 +7238,8 @@ public Long getRumBrowserLegacySessionCountAggSum() { public void setRumBrowserLegacySessionCountAggSum(Long rumBrowserLegacySessionCountAggSum) { this.rumBrowserLegacySessionCountAggSum = rumBrowserLegacySessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_LEGACY_SESSION_COUNT_AGG_SUM, rumBrowserLegacySessionCountAggSum); } public UsageSummaryResponse rumBrowserLiteSessionCountAggSum( @@ -6838,6 +7263,8 @@ public Long getRumBrowserLiteSessionCountAggSum() { public void setRumBrowserLiteSessionCountAggSum(Long rumBrowserLiteSessionCountAggSum) { this.rumBrowserLiteSessionCountAggSum = rumBrowserLiteSessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_LITE_SESSION_COUNT_AGG_SUM, rumBrowserLiteSessionCountAggSum); } public UsageSummaryResponse rumBrowserReplaySessionCountAggSum( @@ -6861,6 +7288,8 @@ public Long getRumBrowserReplaySessionCountAggSum() { public void setRumBrowserReplaySessionCountAggSum(Long rumBrowserReplaySessionCountAggSum) { this.rumBrowserReplaySessionCountAggSum = rumBrowserReplaySessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_BROWSER_REPLAY_SESSION_COUNT_AGG_SUM, rumBrowserReplaySessionCountAggSum); } public UsageSummaryResponse rumIndexedSessionsAggSum(Long rumIndexedSessionsAggSum) { @@ -6882,6 +7311,7 @@ public Long getRumIndexedSessionsAggSum() { public void setRumIndexedSessionsAggSum(Long rumIndexedSessionsAggSum) { this.rumIndexedSessionsAggSum = rumIndexedSessionsAggSum; + putAdditionalProperty(JSON_PROPERTY_RUM_INDEXED_SESSIONS_AGG_SUM, rumIndexedSessionsAggSum); } public UsageSummaryResponse rumIngestedSessionsAggSum(Long rumIngestedSessionsAggSum) { @@ -6903,6 +7333,7 @@ public Long getRumIngestedSessionsAggSum() { public void setRumIngestedSessionsAggSum(Long rumIngestedSessionsAggSum) { this.rumIngestedSessionsAggSum = rumIngestedSessionsAggSum; + putAdditionalProperty(JSON_PROPERTY_RUM_INGESTED_SESSIONS_AGG_SUM, rumIngestedSessionsAggSum); } public UsageSummaryResponse rumLiteSessionCountAggSum(Long rumLiteSessionCountAggSum) { @@ -6925,6 +7356,7 @@ public Long getRumLiteSessionCountAggSum() { public void setRumLiteSessionCountAggSum(Long rumLiteSessionCountAggSum) { this.rumLiteSessionCountAggSum = rumLiteSessionCountAggSum; + putAdditionalProperty(JSON_PROPERTY_RUM_LITE_SESSION_COUNT_AGG_SUM, rumLiteSessionCountAggSum); } public UsageSummaryResponse rumMobileLegacySessionCountAndroidAggSum( @@ -6949,6 +7381,9 @@ public Long getRumMobileLegacySessionCountAndroidAggSum() { public void setRumMobileLegacySessionCountAndroidAggSum( Long rumMobileLegacySessionCountAndroidAggSum) { this.rumMobileLegacySessionCountAndroidAggSum = rumMobileLegacySessionCountAndroidAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ANDROID_AGG_SUM, + rumMobileLegacySessionCountAndroidAggSum); } public UsageSummaryResponse rumMobileLegacySessionCountFlutterAggSum( @@ -6973,6 +7408,9 @@ public Long getRumMobileLegacySessionCountFlutterAggSum() { public void setRumMobileLegacySessionCountFlutterAggSum( Long rumMobileLegacySessionCountFlutterAggSum) { this.rumMobileLegacySessionCountFlutterAggSum = rumMobileLegacySessionCountFlutterAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_FLUTTER_AGG_SUM, + rumMobileLegacySessionCountFlutterAggSum); } public UsageSummaryResponse rumMobileLegacySessionCountIosAggSum( @@ -6996,6 +7434,9 @@ public Long getRumMobileLegacySessionCountIosAggSum() { public void setRumMobileLegacySessionCountIosAggSum(Long rumMobileLegacySessionCountIosAggSum) { this.rumMobileLegacySessionCountIosAggSum = rumMobileLegacySessionCountIosAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_IOS_AGG_SUM, + rumMobileLegacySessionCountIosAggSum); } public UsageSummaryResponse rumMobileLegacySessionCountReactnativeAggSum( @@ -7022,6 +7463,9 @@ public void setRumMobileLegacySessionCountReactnativeAggSum( Long rumMobileLegacySessionCountReactnativeAggSum) { this.rumMobileLegacySessionCountReactnativeAggSum = rumMobileLegacySessionCountReactnativeAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_REACTNATIVE_AGG_SUM, + rumMobileLegacySessionCountReactnativeAggSum); } public UsageSummaryResponse rumMobileLegacySessionCountRokuAggSum( @@ -7045,6 +7489,9 @@ public Long getRumMobileLegacySessionCountRokuAggSum() { public void setRumMobileLegacySessionCountRokuAggSum(Long rumMobileLegacySessionCountRokuAggSum) { this.rumMobileLegacySessionCountRokuAggSum = rumMobileLegacySessionCountRokuAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ROKU_AGG_SUM, + rumMobileLegacySessionCountRokuAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountAndroidAggSum( @@ -7069,6 +7516,9 @@ public Long getRumMobileLiteSessionCountAndroidAggSum() { public void setRumMobileLiteSessionCountAndroidAggSum( Long rumMobileLiteSessionCountAndroidAggSum) { this.rumMobileLiteSessionCountAndroidAggSum = rumMobileLiteSessionCountAndroidAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ANDROID_AGG_SUM, + rumMobileLiteSessionCountAndroidAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountFlutterAggSum( @@ -7093,6 +7543,9 @@ public Long getRumMobileLiteSessionCountFlutterAggSum() { public void setRumMobileLiteSessionCountFlutterAggSum( Long rumMobileLiteSessionCountFlutterAggSum) { this.rumMobileLiteSessionCountFlutterAggSum = rumMobileLiteSessionCountFlutterAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_FLUTTER_AGG_SUM, + rumMobileLiteSessionCountFlutterAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountIosAggSum( @@ -7116,6 +7569,9 @@ public Long getRumMobileLiteSessionCountIosAggSum() { public void setRumMobileLiteSessionCountIosAggSum(Long rumMobileLiteSessionCountIosAggSum) { this.rumMobileLiteSessionCountIosAggSum = rumMobileLiteSessionCountIosAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_IOS_AGG_SUM, + rumMobileLiteSessionCountIosAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountKotlinmultiplatformAggSum( @@ -7142,6 +7598,9 @@ public void setRumMobileLiteSessionCountKotlinmultiplatformAggSum( Long rumMobileLiteSessionCountKotlinmultiplatformAggSum) { this.rumMobileLiteSessionCountKotlinmultiplatformAggSum = rumMobileLiteSessionCountKotlinmultiplatformAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_KOTLINMULTIPLATFORM_AGG_SUM, + rumMobileLiteSessionCountKotlinmultiplatformAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountReactnativeAggSum( @@ -7166,6 +7625,9 @@ public Long getRumMobileLiteSessionCountReactnativeAggSum() { public void setRumMobileLiteSessionCountReactnativeAggSum( Long rumMobileLiteSessionCountReactnativeAggSum) { this.rumMobileLiteSessionCountReactnativeAggSum = rumMobileLiteSessionCountReactnativeAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_REACTNATIVE_AGG_SUM, + rumMobileLiteSessionCountReactnativeAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountRokuAggSum( @@ -7189,6 +7651,9 @@ public Long getRumMobileLiteSessionCountRokuAggSum() { public void setRumMobileLiteSessionCountRokuAggSum(Long rumMobileLiteSessionCountRokuAggSum) { this.rumMobileLiteSessionCountRokuAggSum = rumMobileLiteSessionCountRokuAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ROKU_AGG_SUM, + rumMobileLiteSessionCountRokuAggSum); } public UsageSummaryResponse rumMobileLiteSessionCountUnityAggSum( @@ -7212,6 +7677,9 @@ public Long getRumMobileLiteSessionCountUnityAggSum() { public void setRumMobileLiteSessionCountUnityAggSum(Long rumMobileLiteSessionCountUnityAggSum) { this.rumMobileLiteSessionCountUnityAggSum = rumMobileLiteSessionCountUnityAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_UNITY_AGG_SUM, + rumMobileLiteSessionCountUnityAggSum); } public UsageSummaryResponse rumMobileReplaySessionCountAndroidAggSum( @@ -7236,6 +7704,9 @@ public Long getRumMobileReplaySessionCountAndroidAggSum() { public void setRumMobileReplaySessionCountAndroidAggSum( Long rumMobileReplaySessionCountAndroidAggSum) { this.rumMobileReplaySessionCountAndroidAggSum = rumMobileReplaySessionCountAndroidAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_AGG_SUM, + rumMobileReplaySessionCountAndroidAggSum); } public UsageSummaryResponse rumMobileReplaySessionCountIosAggSum( @@ -7259,6 +7730,9 @@ public Long getRumMobileReplaySessionCountIosAggSum() { public void setRumMobileReplaySessionCountIosAggSum(Long rumMobileReplaySessionCountIosAggSum) { this.rumMobileReplaySessionCountIosAggSum = rumMobileReplaySessionCountIosAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_AGG_SUM, + rumMobileReplaySessionCountIosAggSum); } public UsageSummaryResponse rumMobileReplaySessionCountKotlinmultiplatformAggSum( @@ -7285,6 +7759,9 @@ public void setRumMobileReplaySessionCountKotlinmultiplatformAggSum( Long rumMobileReplaySessionCountKotlinmultiplatformAggSum) { this.rumMobileReplaySessionCountKotlinmultiplatformAggSum = rumMobileReplaySessionCountKotlinmultiplatformAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_KOTLINMULTIPLATFORM_AGG_SUM, + rumMobileReplaySessionCountKotlinmultiplatformAggSum); } public UsageSummaryResponse rumMobileReplaySessionCountReactnativeAggSum( @@ -7311,6 +7788,9 @@ public void setRumMobileReplaySessionCountReactnativeAggSum( Long rumMobileReplaySessionCountReactnativeAggSum) { this.rumMobileReplaySessionCountReactnativeAggSum = rumMobileReplaySessionCountReactnativeAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_AGG_SUM, + rumMobileReplaySessionCountReactnativeAggSum); } public UsageSummaryResponse rumReplaySessionCountAggSum(Long rumReplaySessionCountAggSum) { @@ -7333,6 +7813,8 @@ public Long getRumReplaySessionCountAggSum() { public void setRumReplaySessionCountAggSum(Long rumReplaySessionCountAggSum) { this.rumReplaySessionCountAggSum = rumReplaySessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_AGG_SUM, rumReplaySessionCountAggSum); } public UsageSummaryResponse rumSessionCountAggSum(Long rumSessionCountAggSum) { @@ -7358,6 +7840,7 @@ public Long getRumSessionCountAggSum() { @Deprecated public void setRumSessionCountAggSum(Long rumSessionCountAggSum) { this.rumSessionCountAggSum = rumSessionCountAggSum; + putAdditionalProperty(JSON_PROPERTY_RUM_SESSION_COUNT_AGG_SUM, rumSessionCountAggSum); } public UsageSummaryResponse rumSessionReplayAddOnAggSum(Long rumSessionReplayAddOnAggSum) { @@ -7380,6 +7863,8 @@ public Long getRumSessionReplayAddOnAggSum() { public void setRumSessionReplayAddOnAggSum(Long rumSessionReplayAddOnAggSum) { this.rumSessionReplayAddOnAggSum = rumSessionReplayAddOnAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_SESSION_REPLAY_ADD_ON_AGG_SUM, rumSessionReplayAddOnAggSum); } public UsageSummaryResponse rumTotalSessionCountAggSum(Long rumTotalSessionCountAggSum) { @@ -7402,6 +7887,8 @@ public Long getRumTotalSessionCountAggSum() { public void setRumTotalSessionCountAggSum(Long rumTotalSessionCountAggSum) { this.rumTotalSessionCountAggSum = rumTotalSessionCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_RUM_TOTAL_SESSION_COUNT_AGG_SUM, rumTotalSessionCountAggSum); } public UsageSummaryResponse rumUnitsAggSum(Long rumUnitsAggSum) { @@ -7427,6 +7914,7 @@ public Long getRumUnitsAggSum() { @Deprecated public void setRumUnitsAggSum(Long rumUnitsAggSum) { this.rumUnitsAggSum = rumUnitsAggSum; + putAdditionalProperty(JSON_PROPERTY_RUM_UNITS_AGG_SUM, rumUnitsAggSum); } public UsageSummaryResponse scaFargateCountAvgSum(Long scaFargateCountAvgSum) { @@ -7449,6 +7937,7 @@ public Long getScaFargateCountAvgSum() { public void setScaFargateCountAvgSum(Long scaFargateCountAvgSum) { this.scaFargateCountAvgSum = scaFargateCountAvgSum; + putAdditionalProperty(JSON_PROPERTY_SCA_FARGATE_COUNT_AVG_SUM, scaFargateCountAvgSum); } public UsageSummaryResponse scaFargateCountHwmSum(Long scaFargateCountHwmSum) { @@ -7471,6 +7960,7 @@ public Long getScaFargateCountHwmSum() { public void setScaFargateCountHwmSum(Long scaFargateCountHwmSum) { this.scaFargateCountHwmSum = scaFargateCountHwmSum; + putAdditionalProperty(JSON_PROPERTY_SCA_FARGATE_COUNT_HWM_SUM, scaFargateCountHwmSum); } public UsageSummaryResponse sdsApmScannedBytesSum(Long sdsApmScannedBytesSum) { @@ -7493,6 +7983,7 @@ public Long getSdsApmScannedBytesSum() { public void setSdsApmScannedBytesSum(Long sdsApmScannedBytesSum) { this.sdsApmScannedBytesSum = sdsApmScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_APM_SCANNED_BYTES_SUM, sdsApmScannedBytesSum); } public UsageSummaryResponse sdsEventsScannedBytesSum(Long sdsEventsScannedBytesSum) { @@ -7515,6 +8006,7 @@ public Long getSdsEventsScannedBytesSum() { public void setSdsEventsScannedBytesSum(Long sdsEventsScannedBytesSum) { this.sdsEventsScannedBytesSum = sdsEventsScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_EVENTS_SCANNED_BYTES_SUM, sdsEventsScannedBytesSum); } public UsageSummaryResponse sdsLogsScannedBytesSum(Long sdsLogsScannedBytesSum) { @@ -7537,6 +8029,7 @@ public Long getSdsLogsScannedBytesSum() { public void setSdsLogsScannedBytesSum(Long sdsLogsScannedBytesSum) { this.sdsLogsScannedBytesSum = sdsLogsScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_LOGS_SCANNED_BYTES_SUM, sdsLogsScannedBytesSum); } public UsageSummaryResponse sdsRumScannedBytesSum(Long sdsRumScannedBytesSum) { @@ -7559,6 +8052,7 @@ public Long getSdsRumScannedBytesSum() { public void setSdsRumScannedBytesSum(Long sdsRumScannedBytesSum) { this.sdsRumScannedBytesSum = sdsRumScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_RUM_SCANNED_BYTES_SUM, sdsRumScannedBytesSum); } public UsageSummaryResponse sdsTotalScannedBytesSum(Long sdsTotalScannedBytesSum) { @@ -7581,6 +8075,7 @@ public Long getSdsTotalScannedBytesSum() { public void setSdsTotalScannedBytesSum(Long sdsTotalScannedBytesSum) { this.sdsTotalScannedBytesSum = sdsTotalScannedBytesSum; + putAdditionalProperty(JSON_PROPERTY_SDS_TOTAL_SCANNED_BYTES_SUM, sdsTotalScannedBytesSum); } public UsageSummaryResponse serverlessAppsApmApmAzureAppserviceInstancesAvgSum( @@ -7607,6 +8102,9 @@ public void setServerlessAppsApmApmAzureAppserviceInstancesAvgSum( Long serverlessAppsApmApmAzureAppserviceInstancesAvgSum) { this.serverlessAppsApmApmAzureAppserviceInstancesAvgSum = serverlessAppsApmApmAzureAppserviceInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_APPSERVICE_INSTANCES_AVG_SUM, + serverlessAppsApmApmAzureAppserviceInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmApmAzureAzurefunctionInstancesAvgSum( @@ -7633,6 +8131,9 @@ public void setServerlessAppsApmApmAzureAzurefunctionInstancesAvgSum( Long serverlessAppsApmApmAzureAzurefunctionInstancesAvgSum) { this.serverlessAppsApmApmAzureAzurefunctionInstancesAvgSum = serverlessAppsApmApmAzureAzurefunctionInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG_SUM, + serverlessAppsApmApmAzureAzurefunctionInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmApmAzureContainerappInstancesAvgSum( @@ -7659,6 +8160,9 @@ public void setServerlessAppsApmApmAzureContainerappInstancesAvgSum( Long serverlessAppsApmApmAzureContainerappInstancesAvgSum) { this.serverlessAppsApmApmAzureContainerappInstancesAvgSum = serverlessAppsApmApmAzureContainerappInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_CONTAINERAPP_INSTANCES_AVG_SUM, + serverlessAppsApmApmAzureContainerappInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmApmFargateEcsTasksAvgSum( @@ -7683,6 +8187,9 @@ public Long getServerlessAppsApmApmFargateEcsTasksAvgSum() { public void setServerlessAppsApmApmFargateEcsTasksAvgSum( Long serverlessAppsApmApmFargateEcsTasksAvgSum) { this.serverlessAppsApmApmFargateEcsTasksAvgSum = serverlessAppsApmApmFargateEcsTasksAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_FARGATE_ECS_TASKS_AVG_SUM, + serverlessAppsApmApmFargateEcsTasksAvgSum); } public UsageSummaryResponse serverlessAppsApmApmGcpCloudfunctionInstancesAvgSum( @@ -7709,6 +8216,9 @@ public void setServerlessAppsApmApmGcpCloudfunctionInstancesAvgSum( Long serverlessAppsApmApmGcpCloudfunctionInstancesAvgSum) { this.serverlessAppsApmApmGcpCloudfunctionInstancesAvgSum = serverlessAppsApmApmGcpCloudfunctionInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG_SUM, + serverlessAppsApmApmGcpCloudfunctionInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmApmGcpCloudrunInstancesAvgSum( @@ -7735,6 +8245,9 @@ public void setServerlessAppsApmApmGcpCloudrunInstancesAvgSum( Long serverlessAppsApmApmGcpCloudrunInstancesAvgSum) { this.serverlessAppsApmApmGcpCloudrunInstancesAvgSum = serverlessAppsApmApmGcpCloudrunInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDRUN_INSTANCES_AVG_SUM, + serverlessAppsApmApmGcpCloudrunInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmApmGcpGkeAutopilotPodsAvgSum( @@ -7761,6 +8274,9 @@ public void setServerlessAppsApmApmGcpGkeAutopilotPodsAvgSum( Long serverlessAppsApmApmGcpGkeAutopilotPodsAvgSum) { this.serverlessAppsApmApmGcpGkeAutopilotPodsAvgSum = serverlessAppsApmApmGcpGkeAutopilotPodsAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_GKE_AUTOPILOT_PODS_AVG_SUM, + serverlessAppsApmApmGcpGkeAutopilotPodsAvgSum); } public UsageSummaryResponse serverlessAppsApmAvgSum(Long serverlessAppsApmAvgSum) { @@ -7783,6 +8299,7 @@ public Long getServerlessAppsApmAvgSum() { public void setServerlessAppsApmAvgSum(Long serverlessAppsApmAvgSum) { this.serverlessAppsApmAvgSum = serverlessAppsApmAvgSum; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_APM_AVG_SUM, serverlessAppsApmAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum( @@ -7810,6 +8327,9 @@ public void setServerlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum( Long serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum) { this.serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum = serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_APPSERVICE_INSTANCES_AVG_SUM, + serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum( @@ -7837,6 +8357,9 @@ public void setServerlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum( Long serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum) { this.serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum = serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG_SUM, + serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum( @@ -7864,6 +8387,9 @@ public void setServerlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum( Long serverlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum) { this.serverlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum = serverlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_CONTAINERAPP_INSTANCES_AVG_SUM, + serverlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum( @@ -7892,6 +8418,9 @@ public void setServerlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum( Long serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum) { this.serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum = serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG_SUM, + serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum( @@ -7919,6 +8448,9 @@ public void setServerlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum( Long serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum) { this.serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum = serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDRUN_INSTANCES_AVG_SUM, + serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvgSum( @@ -7945,6 +8477,9 @@ public void setServerlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvgSum( Long serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvgSum) { this.serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvgSum = serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_GKE_AUTOPILOT_PODS_AVG_SUM, + serverlessAppsApmExclFargateApmGcpGkeAutopilotPodsAvgSum); } public UsageSummaryResponse serverlessAppsApmExclFargateAvgSum( @@ -7968,6 +8503,8 @@ public Long getServerlessAppsApmExclFargateAvgSum() { public void setServerlessAppsApmExclFargateAvgSum(Long serverlessAppsApmExclFargateAvgSum) { this.serverlessAppsApmExclFargateAvgSum = serverlessAppsApmExclFargateAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_AVG_SUM, serverlessAppsApmExclFargateAvgSum); } public UsageSummaryResponse serverlessAppsAzureContainerAppInstancesAvgSum( @@ -7994,6 +8531,9 @@ public void setServerlessAppsAzureContainerAppInstancesAvgSum( Long serverlessAppsAzureContainerAppInstancesAvgSum) { this.serverlessAppsAzureContainerAppInstancesAvgSum = serverlessAppsAzureContainerAppInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_CONTAINER_APP_INSTANCES_AVG_SUM, + serverlessAppsAzureContainerAppInstancesAvgSum); } public UsageSummaryResponse serverlessAppsAzureCountAvgSum(Long serverlessAppsAzureCountAvgSum) { @@ -8016,6 +8556,8 @@ public Long getServerlessAppsAzureCountAvgSum() { public void setServerlessAppsAzureCountAvgSum(Long serverlessAppsAzureCountAvgSum) { this.serverlessAppsAzureCountAvgSum = serverlessAppsAzureCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_COUNT_AVG_SUM, serverlessAppsAzureCountAvgSum); } public UsageSummaryResponse serverlessAppsAzureFunctionAppInstancesAvgSum( @@ -8042,6 +8584,9 @@ public void setServerlessAppsAzureFunctionAppInstancesAvgSum( Long serverlessAppsAzureFunctionAppInstancesAvgSum) { this.serverlessAppsAzureFunctionAppInstancesAvgSum = serverlessAppsAzureFunctionAppInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_FUNCTION_APP_INSTANCES_AVG_SUM, + serverlessAppsAzureFunctionAppInstancesAvgSum); } public UsageSummaryResponse serverlessAppsAzureWebAppInstancesAvgSum( @@ -8066,6 +8611,9 @@ public Long getServerlessAppsAzureWebAppInstancesAvgSum() { public void setServerlessAppsAzureWebAppInstancesAvgSum( Long serverlessAppsAzureWebAppInstancesAvgSum) { this.serverlessAppsAzureWebAppInstancesAvgSum = serverlessAppsAzureWebAppInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_AZURE_WEB_APP_INSTANCES_AVG_SUM, + serverlessAppsAzureWebAppInstancesAvgSum); } public UsageSummaryResponse serverlessAppsDsmFargateTasksAvgSum( @@ -8089,6 +8637,9 @@ public Long getServerlessAppsDsmFargateTasksAvgSum() { public void setServerlessAppsDsmFargateTasksAvgSum(Long serverlessAppsDsmFargateTasksAvgSum) { this.serverlessAppsDsmFargateTasksAvgSum = serverlessAppsDsmFargateTasksAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_DSM_FARGATE_TASKS_AVG_SUM, + serverlessAppsDsmFargateTasksAvgSum); } public UsageSummaryResponse serverlessAppsEcsAvgSum(Long serverlessAppsEcsAvgSum) { @@ -8111,6 +8662,7 @@ public Long getServerlessAppsEcsAvgSum() { public void setServerlessAppsEcsAvgSum(Long serverlessAppsEcsAvgSum) { this.serverlessAppsEcsAvgSum = serverlessAppsEcsAvgSum; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_ECS_AVG_SUM, serverlessAppsEcsAvgSum); } public UsageSummaryResponse serverlessAppsEksAvgSum(Long serverlessAppsEksAvgSum) { @@ -8133,6 +8685,7 @@ public Long getServerlessAppsEksAvgSum() { public void setServerlessAppsEksAvgSum(Long serverlessAppsEksAvgSum) { this.serverlessAppsEksAvgSum = serverlessAppsEksAvgSum; + putAdditionalProperty(JSON_PROPERTY_SERVERLESS_APPS_EKS_AVG_SUM, serverlessAppsEksAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateAvgSum( @@ -8156,6 +8709,8 @@ public Long getServerlessAppsExclFargateAvgSum() { public void setServerlessAppsExclFargateAvgSum(Long serverlessAppsExclFargateAvgSum) { this.serverlessAppsExclFargateAvgSum = serverlessAppsExclFargateAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AVG_SUM, serverlessAppsExclFargateAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateAzureContainerAppInstancesAvgSum( @@ -8182,6 +8737,9 @@ public void setServerlessAppsExclFargateAzureContainerAppInstancesAvgSum( Long serverlessAppsExclFargateAzureContainerAppInstancesAvgSum) { this.serverlessAppsExclFargateAzureContainerAppInstancesAvgSum = serverlessAppsExclFargateAzureContainerAppInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_CONTAINER_APP_INSTANCES_AVG_SUM, + serverlessAppsExclFargateAzureContainerAppInstancesAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateAzureFunctionAppInstancesAvgSum( @@ -8208,6 +8766,9 @@ public void setServerlessAppsExclFargateAzureFunctionAppInstancesAvgSum( Long serverlessAppsExclFargateAzureFunctionAppInstancesAvgSum) { this.serverlessAppsExclFargateAzureFunctionAppInstancesAvgSum = serverlessAppsExclFargateAzureFunctionAppInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_FUNCTION_APP_INSTANCES_AVG_SUM, + serverlessAppsExclFargateAzureFunctionAppInstancesAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateAzureWebAppInstancesAvgSum( @@ -8234,6 +8795,9 @@ public void setServerlessAppsExclFargateAzureWebAppInstancesAvgSum( Long serverlessAppsExclFargateAzureWebAppInstancesAvgSum) { this.serverlessAppsExclFargateAzureWebAppInstancesAvgSum = serverlessAppsExclFargateAzureWebAppInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_WEB_APP_INSTANCES_AVG_SUM, + serverlessAppsExclFargateAzureWebAppInstancesAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvgSum( @@ -8260,6 +8824,9 @@ public void setServerlessAppsExclFargateGoogleCloudFunctionsInstancesAvgSum( Long serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvgSum) { this.serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvgSum = serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG_SUM, + serverlessAppsExclFargateGoogleCloudFunctionsInstancesAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateGoogleCloudRunInstancesAvgSum( @@ -8286,6 +8853,9 @@ public void setServerlessAppsExclFargateGoogleCloudRunInstancesAvgSum( Long serverlessAppsExclFargateGoogleCloudRunInstancesAvgSum) { this.serverlessAppsExclFargateGoogleCloudRunInstancesAvgSum = serverlessAppsExclFargateGoogleCloudRunInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_RUN_INSTANCES_AVG_SUM, + serverlessAppsExclFargateGoogleCloudRunInstancesAvgSum); } public UsageSummaryResponse serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvgSum( @@ -8312,6 +8882,9 @@ public void setServerlessAppsExclFargateInfraGcpGkeAutopilotPodsAvgSum( Long serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvgSum) { this.serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvgSum = serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG_SUM, + serverlessAppsExclFargateInfraGcpGkeAutopilotPodsAvgSum); } public UsageSummaryResponse serverlessAppsGoogleCloudFunctionsInstancesAvgSum( @@ -8338,6 +8911,9 @@ public void setServerlessAppsGoogleCloudFunctionsInstancesAvgSum( Long serverlessAppsGoogleCloudFunctionsInstancesAvgSum) { this.serverlessAppsGoogleCloudFunctionsInstancesAvgSum = serverlessAppsGoogleCloudFunctionsInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG_SUM, + serverlessAppsGoogleCloudFunctionsInstancesAvgSum); } public UsageSummaryResponse serverlessAppsGoogleCloudRunInstancesAvgSum( @@ -8362,6 +8938,9 @@ public Long getServerlessAppsGoogleCloudRunInstancesAvgSum() { public void setServerlessAppsGoogleCloudRunInstancesAvgSum( Long serverlessAppsGoogleCloudRunInstancesAvgSum) { this.serverlessAppsGoogleCloudRunInstancesAvgSum = serverlessAppsGoogleCloudRunInstancesAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_RUN_INSTANCES_AVG_SUM, + serverlessAppsGoogleCloudRunInstancesAvgSum); } public UsageSummaryResponse serverlessAppsGoogleCountAvgSum( @@ -8385,6 +8964,8 @@ public Long getServerlessAppsGoogleCountAvgSum() { public void setServerlessAppsGoogleCountAvgSum(Long serverlessAppsGoogleCountAvgSum) { this.serverlessAppsGoogleCountAvgSum = serverlessAppsGoogleCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_COUNT_AVG_SUM, serverlessAppsGoogleCountAvgSum); } public UsageSummaryResponse serverlessAppsInfraGcpGkeAutopilotPodsAvgSum( @@ -8411,6 +8992,9 @@ public void setServerlessAppsInfraGcpGkeAutopilotPodsAvgSum( Long serverlessAppsInfraGcpGkeAutopilotPodsAvgSum) { this.serverlessAppsInfraGcpGkeAutopilotPodsAvgSum = serverlessAppsInfraGcpGkeAutopilotPodsAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG_SUM, + serverlessAppsInfraGcpGkeAutopilotPodsAvgSum); } public UsageSummaryResponse serverlessAppsTotalCountAvgSum(Long serverlessAppsTotalCountAvgSum) { @@ -8433,6 +9017,8 @@ public Long getServerlessAppsTotalCountAvgSum() { public void setServerlessAppsTotalCountAvgSum(Long serverlessAppsTotalCountAvgSum) { this.serverlessAppsTotalCountAvgSum = serverlessAppsTotalCountAvgSum; + putAdditionalProperty( + JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG_SUM, serverlessAppsTotalCountAvgSum); } public UsageSummaryResponse siem12moRetentionAggSum(Long siem12moRetentionAggSum) { @@ -8455,6 +9041,7 @@ public Long getSiem12moRetentionAggSum() { public void setSiem12moRetentionAggSum(Long siem12moRetentionAggSum) { this.siem12moRetentionAggSum = siem12moRetentionAggSum; + putAdditionalProperty(JSON_PROPERTY_SIEM_12MO_RETENTION_AGG_SUM, siem12moRetentionAggSum); } public UsageSummaryResponse siem6moRetentionAggSum(Long siem6moRetentionAggSum) { @@ -8477,6 +9064,7 @@ public Long getSiem6moRetentionAggSum() { public void setSiem6moRetentionAggSum(Long siem6moRetentionAggSum) { this.siem6moRetentionAggSum = siem6moRetentionAggSum; + putAdditionalProperty(JSON_PROPERTY_SIEM_6MO_RETENTION_AGG_SUM, siem6moRetentionAggSum); } public UsageSummaryResponse siemAnalyzedLogsAddOnCountAggSum( @@ -8500,6 +9088,8 @@ public Long getSiemAnalyzedLogsAddOnCountAggSum() { public void setSiemAnalyzedLogsAddOnCountAggSum(Long siemAnalyzedLogsAddOnCountAggSum) { this.siemAnalyzedLogsAddOnCountAggSum = siemAnalyzedLogsAddOnCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_AGG_SUM, siemAnalyzedLogsAddOnCountAggSum); } public UsageSummaryResponse snmpDeviceCountAggSum(Long snmpDeviceCountAggSum) { @@ -8522,6 +9112,7 @@ public Long getSnmpDeviceCountAggSum() { public void setSnmpDeviceCountAggSum(Long snmpDeviceCountAggSum) { this.snmpDeviceCountAggSum = snmpDeviceCountAggSum; + putAdditionalProperty(JSON_PROPERTY_SNMP_DEVICE_COUNT_AGG_SUM, snmpDeviceCountAggSum); } public UsageSummaryResponse snmpDeviceCountTop99pSum(Long snmpDeviceCountTop99pSum) { @@ -8544,6 +9135,7 @@ public Long getSnmpDeviceCountTop99pSum() { public void setSnmpDeviceCountTop99pSum(Long snmpDeviceCountTop99pSum) { this.snmpDeviceCountTop99pSum = snmpDeviceCountTop99pSum; + putAdditionalProperty(JSON_PROPERTY_SNMP_DEVICE_COUNT_TOP99P_SUM, snmpDeviceCountTop99pSum); } public UsageSummaryResponse startDate(OffsetDateTime startDate) { @@ -8565,6 +9157,7 @@ public OffsetDateTime getStartDate() { public void setStartDate(OffsetDateTime startDate) { this.startDate = startDate; + putAdditionalProperty(JSON_PROPERTY_START_DATE, startDate); } public UsageSummaryResponse syntheticsBrowserCheckCallsCountAggSum( @@ -8589,6 +9182,9 @@ public Long getSyntheticsBrowserCheckCallsCountAggSum() { public void setSyntheticsBrowserCheckCallsCountAggSum( Long syntheticsBrowserCheckCallsCountAggSum) { this.syntheticsBrowserCheckCallsCountAggSum = syntheticsBrowserCheckCallsCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_AGG_SUM, + syntheticsBrowserCheckCallsCountAggSum); } public UsageSummaryResponse syntheticsCheckCallsCountAggSum( @@ -8612,6 +9208,8 @@ public Long getSyntheticsCheckCallsCountAggSum() { public void setSyntheticsCheckCallsCountAggSum(Long syntheticsCheckCallsCountAggSum) { this.syntheticsCheckCallsCountAggSum = syntheticsCheckCallsCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_AGG_SUM, syntheticsCheckCallsCountAggSum); } public UsageSummaryResponse syntheticsMobileTestRunsAggSum(Long syntheticsMobileTestRunsAggSum) { @@ -8634,6 +9232,8 @@ public Long getSyntheticsMobileTestRunsAggSum() { public void setSyntheticsMobileTestRunsAggSum(Long syntheticsMobileTestRunsAggSum) { this.syntheticsMobileTestRunsAggSum = syntheticsMobileTestRunsAggSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_AGG_SUM, syntheticsMobileTestRunsAggSum); } public UsageSummaryResponse syntheticsParallelTestingMaxSlotsHwmSum( @@ -8658,6 +9258,9 @@ public Long getSyntheticsParallelTestingMaxSlotsHwmSum() { public void setSyntheticsParallelTestingMaxSlotsHwmSum( Long syntheticsParallelTestingMaxSlotsHwmSum) { this.syntheticsParallelTestingMaxSlotsHwmSum = syntheticsParallelTestingMaxSlotsHwmSum; + putAdditionalProperty( + JSON_PROPERTY_SYNTHETICS_PARALLEL_TESTING_MAX_SLOTS_HWM_SUM, + syntheticsParallelTestingMaxSlotsHwmSum); } public UsageSummaryResponse traceSearchIndexedEventsCountAggSum( @@ -8681,6 +9284,9 @@ public Long getTraceSearchIndexedEventsCountAggSum() { public void setTraceSearchIndexedEventsCountAggSum(Long traceSearchIndexedEventsCountAggSum) { this.traceSearchIndexedEventsCountAggSum = traceSearchIndexedEventsCountAggSum; + putAdditionalProperty( + JSON_PROPERTY_TRACE_SEARCH_INDEXED_EVENTS_COUNT_AGG_SUM, + traceSearchIndexedEventsCountAggSum); } public UsageSummaryResponse twolIngestedEventsBytesAggSum(Long twolIngestedEventsBytesAggSum) { @@ -8703,6 +9309,8 @@ public Long getTwolIngestedEventsBytesAggSum() { public void setTwolIngestedEventsBytesAggSum(Long twolIngestedEventsBytesAggSum) { this.twolIngestedEventsBytesAggSum = twolIngestedEventsBytesAggSum; + putAdditionalProperty( + JSON_PROPERTY_TWOL_INGESTED_EVENTS_BYTES_AGG_SUM, twolIngestedEventsBytesAggSum); } public UsageSummaryResponse universalServiceMonitoringHostTop99pSum( @@ -8727,6 +9335,9 @@ public Long getUniversalServiceMonitoringHostTop99pSum() { public void setUniversalServiceMonitoringHostTop99pSum( Long universalServiceMonitoringHostTop99pSum) { this.universalServiceMonitoringHostTop99pSum = universalServiceMonitoringHostTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_UNIVERSAL_SERVICE_MONITORING_HOST_TOP99P_SUM, + universalServiceMonitoringHostTop99pSum); } public UsageSummaryResponse usage(List usage) { @@ -8760,6 +9371,7 @@ public List getUsage() { public void setUsage(List usage) { this.usage = usage; + putAdditionalProperty(JSON_PROPERTY_USAGE, usage); } public UsageSummaryResponse vsphereHostTop99pSum(Long vsphereHostTop99pSum) { @@ -8782,6 +9394,7 @@ public Long getVsphereHostTop99pSum() { public void setVsphereHostTop99pSum(Long vsphereHostTop99pSum) { this.vsphereHostTop99pSum = vsphereHostTop99pSum; + putAdditionalProperty(JSON_PROPERTY_VSPHERE_HOST_TOP99P_SUM, vsphereHostTop99pSum); } public UsageSummaryResponse vulnManagementHostCountTop99pSum( @@ -8805,6 +9418,8 @@ public Long getVulnManagementHostCountTop99pSum() { public void setVulnManagementHostCountTop99pSum(Long vulnManagementHostCountTop99pSum) { this.vulnManagementHostCountTop99pSum = vulnManagementHostCountTop99pSum; + putAdditionalProperty( + JSON_PROPERTY_VULN_MANAGEMENT_HOST_COUNT_TOP99P_SUM, vulnManagementHostCountTop99pSum); } public UsageSummaryResponse workflowExecutionsUsageAggSum(Long workflowExecutionsUsageAggSum) { @@ -8826,6 +9441,8 @@ public Long getWorkflowExecutionsUsageAggSum() { public void setWorkflowExecutionsUsageAggSum(Long workflowExecutionsUsageAggSum) { this.workflowExecutionsUsageAggSum = workflowExecutionsUsageAggSum; + putAdditionalProperty( + JSON_PROPERTY_WORKFLOW_EXECUTIONS_USAGE_AGG_SUM, workflowExecutionsUsageAggSum); } /** diff --git a/src/main/java/com/datadog/api/client/v2/api/ApplicationSecurityApi.java b/src/main/java/com/datadog/api/client/v2/api/ApplicationSecurityApi.java index 568d1087a3f..51d8b1c08ad 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ApplicationSecurityApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ApplicationSecurityApi.java @@ -8,6 +8,7 @@ import com.datadog.api.client.v2.model.ApplicationSecurityPolicyListResponse; import com.datadog.api.client.v2.model.ApplicationSecurityPolicyResponse; import com.datadog.api.client.v2.model.ApplicationSecurityPolicyUpdateRequest; +import com.datadog.api.client.v2.model.ApplicationSecurityServicesResponse; import com.datadog.api.client.v2.model.ApplicationSecurityWafCustomRuleCreateRequest; import com.datadog.api.client.v2.model.ApplicationSecurityWafCustomRuleListResponse; import com.datadog.api.client.v2.model.ApplicationSecurityWafCustomRuleResponse; @@ -1345,6 +1346,172 @@ public ApiResponse getApplicationSecurityWafP new GenericType() {}); } + /** + * Get Application Security details for a service. + * + *

See {@link #getAsmServiceByNameWithHttpInfo}. + * + * @param serviceFilter The name of the service to retrieve Application Security details for. + * Returns all matching services across environments. (required) + * @return ApplicationSecurityServicesResponse + * @throws ApiException if fails to make API call + */ + public ApplicationSecurityServicesResponse getAsmServiceByName(String serviceFilter) + throws ApiException { + return getAsmServiceByNameWithHttpInfo(serviceFilter).getData(); + } + + /** + * Get Application Security details for a service. + * + *

See {@link #getAsmServiceByNameWithHttpInfoAsync}. + * + * @param serviceFilter The name of the service to retrieve Application Security details for. + * Returns all matching services across environments. (required) + * @return CompletableFuture<ApplicationSecurityServicesResponse> + */ + public CompletableFuture getAsmServiceByNameAsync( + String serviceFilter) { + return getAsmServiceByNameWithHttpInfoAsync(serviceFilter) + .thenApply( + response -> { + return response.getData(); + }); + } + + /** + * Retrieve Application Security details for services matching the given name. Returns Application + * Security activation, compatibility, and product enablement information for each matching + * (service, environment) pair, along with a count of services that have Application + * Security Management (Threats) enabled. + * + * @param serviceFilter The name of the service to retrieve Application Security details for. + * Returns all matching services across environments. (required) + * @return ApiResponse<ApplicationSecurityServicesResponse> + * @throws ApiException if fails to make API call + * @http.response.details + * + * + * + * + * + * + *
Response details
Status Code Description Response Headers
200 OK -
403 Not Authorized -
429 Too many requests -
+ */ + public ApiResponse getAsmServiceByNameWithHttpInfo( + String serviceFilter) throws ApiException { + // Check if unstable operation is enabled + String operationId = "getAsmServiceByName"; + if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { + apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); + } else { + throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); + } + Object localVarPostBody = null; + + // verify the required parameter 'serviceFilter' is set + if (serviceFilter == null) { + throw new ApiException( + 400, "Missing the required parameter 'serviceFilter' when calling getAsmServiceByName"); + } + // create path and map variables + String localVarPath = + "/api/v2/security/asm/services/{service_filter}" + .replaceAll( + "\\{" + "service_filter" + "\\}", apiClient.escapeString(serviceFilter.toString())); + + Map localVarHeaderParams = new HashMap(); + + Invocation.Builder builder = + apiClient.createBuilder( + "v2.ApplicationSecurityApi.getAsmServiceByName", + localVarPath, + new ArrayList(), + localVarHeaderParams, + new HashMap(), + new String[] {"application/json"}, + new String[] {"apiKeyAuth", "appKeyAuth"}); + return apiClient.invokeAPI( + "GET", + builder, + localVarHeaderParams, + new String[] {}, + localVarPostBody, + new HashMap(), + false, + new GenericType() {}); + } + + /** + * Get Application Security details for a service. + * + *

See {@link #getAsmServiceByNameWithHttpInfo}. + * + * @param serviceFilter The name of the service to retrieve Application Security details for. + * Returns all matching services across environments. (required) + * @return CompletableFuture<ApiResponse<ApplicationSecurityServicesResponse>> + */ + public CompletableFuture> + getAsmServiceByNameWithHttpInfoAsync(String serviceFilter) { + // Check if unstable operation is enabled + String operationId = "getAsmServiceByName"; + if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { + apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); + } else { + CompletableFuture> result = + new CompletableFuture<>(); + result.completeExceptionally( + new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); + return result; + } + Object localVarPostBody = null; + + // verify the required parameter 'serviceFilter' is set + if (serviceFilter == null) { + CompletableFuture> result = + new CompletableFuture<>(); + result.completeExceptionally( + new ApiException( + 400, + "Missing the required parameter 'serviceFilter' when calling getAsmServiceByName")); + return result; + } + // create path and map variables + String localVarPath = + "/api/v2/security/asm/services/{service_filter}" + .replaceAll( + "\\{" + "service_filter" + "\\}", apiClient.escapeString(serviceFilter.toString())); + + Map localVarHeaderParams = new HashMap(); + + Invocation.Builder builder; + try { + builder = + apiClient.createBuilder( + "v2.ApplicationSecurityApi.getAsmServiceByName", + localVarPath, + new ArrayList(), + localVarHeaderParams, + new HashMap(), + new String[] {"application/json"}, + new String[] {"apiKeyAuth", "appKeyAuth"}); + } catch (ApiException ex) { + CompletableFuture> result = + new CompletableFuture<>(); + result.completeExceptionally(ex); + return result; + } + return apiClient.invokeAPIAsync( + "GET", + builder, + localVarHeaderParams, + new String[] {}, + localVarPostBody, + new HashMap(), + false, + new GenericType() {}); + } + /** * List all WAF custom rules. * diff --git a/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceAttributes.java b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceAttributes.java new file mode 100644 index 00000000000..48338dcadd3 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceAttributes.java @@ -0,0 +1,1205 @@ +/* + * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + * This product includes software developed at Datadog (https://www.datadoghq.com/). + * Copyright 2019-Present Datadog, Inc. + */ + +package com.datadog.api.client.v2.model; + +import com.fasterxml.jackson.annotation.JsonAnyGetter; +import com.fasterxml.jackson.annotation.JsonAnySetter; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Objects; + +/** Application Security details describing a service in a given environment. */ +@JsonPropertyOrder({ + ApplicationSecurityServiceAttributes.JSON_PROPERTY_AGENT_VERSIONS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_APP_TYPE, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_ASM_THREAT_COMPATIBLE, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_BACKEND_WAF_EVENT_COUNT, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_BUSINESS_LOGIC, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_COLOR, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_ENV, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_EVENT_COUNT, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_EVENT_TREND, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_HAS_APPSEC_ENABLED, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_HITS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_IAST_PRODUCT_ACTIVATION, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY_REASONS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_LANGUAGES, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_LAST_INGESTED_SPANS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_RC_CAPABILITIES, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_RECOMMENDED_BUSINESS_LOGIC, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_RISK_PRODUCT_ACTIVATION, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY_REASONS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_RULES_VERSION, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_SERVICE, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_SIGNAL_COUNT, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_SIGNAL_TREND, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_SOURCE, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_TEAMS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_TRACER_VERSIONS, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_VM_ACTIVATION, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_VULN_CRITICAL_COUNT, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_VULN_HIGH_COUNT, + ApplicationSecurityServiceAttributes.JSON_PROPERTY_WITHOUT_FILTER_SERVICES +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ApplicationSecurityServiceAttributes { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_AGENT_VERSIONS = "agent_versions"; + private List agentVersions = new ArrayList<>(); + + public static final String JSON_PROPERTY_APP_TYPE = "app_type"; + private String appType; + + public static final String JSON_PROPERTY_ASM_THREAT_COMPATIBLE = "asm_threat_compatible"; + private Boolean asmThreatCompatible; + + public static final String JSON_PROPERTY_BACKEND_WAF_EVENT_COUNT = "backend_waf_event_count"; + private Long backendWafEventCount; + + public static final String JSON_PROPERTY_BUSINESS_LOGIC = "business_logic"; + private List businessLogic = new ArrayList<>(); + + public static final String JSON_PROPERTY_COLOR = "color"; + private String color; + + public static final String JSON_PROPERTY_ENV = "env"; + private String env; + + public static final String JSON_PROPERTY_EVENT_COUNT = "event_count"; + private Long eventCount; + + public static final String JSON_PROPERTY_EVENT_TREND = "event_trend"; + private List eventTrend = new ArrayList<>(); + + public static final String JSON_PROPERTY_HAS_APPSEC_ENABLED = "has_appsec_enabled"; + private Boolean hasAppsecEnabled; + + public static final String JSON_PROPERTY_HITS = "hits"; + private Long hits; + + public static final String JSON_PROPERTY_IAST_PRODUCT_ACTIVATION = "iast_product_activation"; + private Boolean iastProductActivation; + + public static final String JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY = + "iast_product_compatibility"; + private String iastProductCompatibility; + + public static final String JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY_REASONS = + "iast_product_compatibility_reasons"; + private List iastProductCompatibilityReasons = new ArrayList<>(); + + public static final String JSON_PROPERTY_LANGUAGES = "languages"; + private List languages = new ArrayList<>(); + + public static final String JSON_PROPERTY_LAST_INGESTED_SPANS = "last_ingested_spans"; + private Long lastIngestedSpans; + + public static final String JSON_PROPERTY_RC_CAPABILITIES = "rc_capabilities"; + private List rcCapabilities = new ArrayList<>(); + + public static final String JSON_PROPERTY_RECOMMENDED_BUSINESS_LOGIC = + "recommended_business_logic"; + private List recommendedBusinessLogic = new ArrayList<>(); + + public static final String JSON_PROPERTY_RISK_PRODUCT_ACTIVATION = "risk_product_activation"; + private Boolean riskProductActivation; + + public static final String JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY = + "risk_product_compatibility"; + private String riskProductCompatibility; + + public static final String JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY_REASONS = + "risk_product_compatibility_reasons"; + private List riskProductCompatibilityReasons = new ArrayList<>(); + + public static final String JSON_PROPERTY_RULES_VERSION = "rules_version"; + private List rulesVersion = new ArrayList<>(); + + public static final String JSON_PROPERTY_SERVICE = "service"; + private String service; + + public static final String JSON_PROPERTY_SIGNAL_COUNT = "signal_count"; + private Long signalCount; + + public static final String JSON_PROPERTY_SIGNAL_TREND = "signal_trend"; + private List signalTrend = new ArrayList<>(); + + public static final String JSON_PROPERTY_SOURCE = "source"; + private List source = new ArrayList<>(); + + public static final String JSON_PROPERTY_TEAMS = "teams"; + private List teams = new ArrayList<>(); + + public static final String JSON_PROPERTY_TRACER_VERSIONS = "tracer_versions"; + private List tracerVersions = new ArrayList<>(); + + public static final String JSON_PROPERTY_VM_ACTIVATION = "vm-activation"; + private String vmActivation; + + public static final String JSON_PROPERTY_VULN_CRITICAL_COUNT = "vuln_critical_count"; + private Long vulnCriticalCount; + + public static final String JSON_PROPERTY_VULN_HIGH_COUNT = "vuln_high_count"; + private Long vulnHighCount; + + public static final String JSON_PROPERTY_WITHOUT_FILTER_SERVICES = "without_filter_services"; + private Long withoutFilterServices; + + public ApplicationSecurityServiceAttributes() {} + + @JsonCreator + public ApplicationSecurityServiceAttributes( + @JsonProperty(required = true, value = JSON_PROPERTY_AGENT_VERSIONS) + List agentVersions, + @JsonProperty(required = true, value = JSON_PROPERTY_APP_TYPE) String appType, + @JsonProperty(required = true, value = JSON_PROPERTY_ASM_THREAT_COMPATIBLE) + Boolean asmThreatCompatible, + @JsonProperty(required = true, value = JSON_PROPERTY_BACKEND_WAF_EVENT_COUNT) + Long backendWafEventCount, + @JsonProperty(required = true, value = JSON_PROPERTY_BUSINESS_LOGIC) + List businessLogic, + @JsonProperty(required = true, value = JSON_PROPERTY_COLOR) String color, + @JsonProperty(required = true, value = JSON_PROPERTY_ENV) String env, + @JsonProperty(required = true, value = JSON_PROPERTY_EVENT_COUNT) Long eventCount, + @JsonProperty(required = true, value = JSON_PROPERTY_EVENT_TREND) List eventTrend, + @JsonProperty(required = true, value = JSON_PROPERTY_HAS_APPSEC_ENABLED) + Boolean hasAppsecEnabled, + @JsonProperty(required = true, value = JSON_PROPERTY_HITS) Long hits, + @JsonProperty(required = true, value = JSON_PROPERTY_IAST_PRODUCT_ACTIVATION) + Boolean iastProductActivation, + @JsonProperty(required = true, value = JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY) + String iastProductCompatibility, + @JsonProperty(required = true, value = JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY_REASONS) + List iastProductCompatibilityReasons, + @JsonProperty(required = true, value = JSON_PROPERTY_LANGUAGES) List languages, + @JsonProperty(required = true, value = JSON_PROPERTY_LAST_INGESTED_SPANS) + Long lastIngestedSpans, + @JsonProperty(required = true, value = JSON_PROPERTY_RC_CAPABILITIES) + List rcCapabilities, + @JsonProperty(required = true, value = JSON_PROPERTY_RECOMMENDED_BUSINESS_LOGIC) + List recommendedBusinessLogic, + @JsonProperty(required = true, value = JSON_PROPERTY_RISK_PRODUCT_ACTIVATION) + Boolean riskProductActivation, + @JsonProperty(required = true, value = JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY) + String riskProductCompatibility, + @JsonProperty(required = true, value = JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY_REASONS) + List riskProductCompatibilityReasons, + @JsonProperty(required = true, value = JSON_PROPERTY_RULES_VERSION) List rulesVersion, + @JsonProperty(required = true, value = JSON_PROPERTY_SERVICE) String service, + @JsonProperty(required = true, value = JSON_PROPERTY_SIGNAL_COUNT) Long signalCount, + @JsonProperty(required = true, value = JSON_PROPERTY_SIGNAL_TREND) List signalTrend, + @JsonProperty(required = true, value = JSON_PROPERTY_SOURCE) List source, + @JsonProperty(required = true, value = JSON_PROPERTY_TEAMS) List teams, + @JsonProperty(required = true, value = JSON_PROPERTY_TRACER_VERSIONS) + List tracerVersions, + @JsonProperty(required = true, value = JSON_PROPERTY_VM_ACTIVATION) String vmActivation, + @JsonProperty(required = true, value = JSON_PROPERTY_VULN_CRITICAL_COUNT) + Long vulnCriticalCount, + @JsonProperty(required = true, value = JSON_PROPERTY_VULN_HIGH_COUNT) Long vulnHighCount, + @JsonProperty(required = true, value = JSON_PROPERTY_WITHOUT_FILTER_SERVICES) + Long withoutFilterServices) { + this.agentVersions = agentVersions; + this.appType = appType; + this.asmThreatCompatible = asmThreatCompatible; + this.backendWafEventCount = backendWafEventCount; + this.businessLogic = businessLogic; + this.color = color; + this.env = env; + this.eventCount = eventCount; + this.eventTrend = eventTrend; + this.hasAppsecEnabled = hasAppsecEnabled; + this.hits = hits; + this.iastProductActivation = iastProductActivation; + this.iastProductCompatibility = iastProductCompatibility; + this.iastProductCompatibilityReasons = iastProductCompatibilityReasons; + this.languages = languages; + this.lastIngestedSpans = lastIngestedSpans; + this.rcCapabilities = rcCapabilities; + this.recommendedBusinessLogic = recommendedBusinessLogic; + this.riskProductActivation = riskProductActivation; + this.riskProductCompatibility = riskProductCompatibility; + this.riskProductCompatibilityReasons = riskProductCompatibilityReasons; + this.rulesVersion = rulesVersion; + this.service = service; + this.signalCount = signalCount; + this.signalTrend = signalTrend; + this.source = source; + this.teams = teams; + this.tracerVersions = tracerVersions; + this.vmActivation = vmActivation; + this.vulnCriticalCount = vulnCriticalCount; + this.vulnHighCount = vulnHighCount; + this.withoutFilterServices = withoutFilterServices; + } + + public ApplicationSecurityServiceAttributes agentVersions(List agentVersions) { + this.agentVersions = agentVersions; + return this; + } + + public ApplicationSecurityServiceAttributes addAgentVersionsItem(String agentVersionsItem) { + this.agentVersions.add(agentVersionsItem); + return this; + } + + /** + * The Datadog Agent versions reporting for the service. + * + * @return agentVersions + */ + @JsonProperty(JSON_PROPERTY_AGENT_VERSIONS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getAgentVersions() { + return agentVersions; + } + + public void setAgentVersions(List agentVersions) { + this.agentVersions = agentVersions; + } + + public ApplicationSecurityServiceAttributes appType(String appType) { + this.appType = appType; + return this; + } + + /** + * The application type of the service, such as web or serverless. + * + * @return appType + */ + @JsonProperty(JSON_PROPERTY_APP_TYPE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getAppType() { + return appType; + } + + public void setAppType(String appType) { + this.appType = appType; + } + + public ApplicationSecurityServiceAttributes asmThreatCompatible(Boolean asmThreatCompatible) { + this.asmThreatCompatible = asmThreatCompatible; + return this; + } + + /** + * Whether the service is compatible with Application Security Management (Threats). + * + * @return asmThreatCompatible + */ + @JsonProperty(JSON_PROPERTY_ASM_THREAT_COMPATIBLE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Boolean getAsmThreatCompatible() { + return asmThreatCompatible; + } + + public void setAsmThreatCompatible(Boolean asmThreatCompatible) { + this.asmThreatCompatible = asmThreatCompatible; + } + + public ApplicationSecurityServiceAttributes backendWafEventCount(Long backendWafEventCount) { + this.backendWafEventCount = backendWafEventCount; + return this; + } + + /** + * The number of backend WAF events detected for the service. + * + * @return backendWafEventCount + */ + @JsonProperty(JSON_PROPERTY_BACKEND_WAF_EVENT_COUNT) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getBackendWafEventCount() { + return backendWafEventCount; + } + + public void setBackendWafEventCount(Long backendWafEventCount) { + this.backendWafEventCount = backendWafEventCount; + } + + public ApplicationSecurityServiceAttributes businessLogic(List businessLogic) { + this.businessLogic = businessLogic; + return this; + } + + public ApplicationSecurityServiceAttributes addBusinessLogicItem(String businessLogicItem) { + this.businessLogic.add(businessLogicItem); + return this; + } + + /** + * The enabled business logic detection rules for the service. + * + * @return businessLogic + */ + @JsonProperty(JSON_PROPERTY_BUSINESS_LOGIC) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getBusinessLogic() { + return businessLogic; + } + + public void setBusinessLogic(List businessLogic) { + this.businessLogic = businessLogic; + } + + public ApplicationSecurityServiceAttributes color(String color) { + this.color = color; + return this; + } + + /** + * Deprecated: a display color associated with the service in the UI. + * + * @return color + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_COLOR) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getColor() { + return color; + } + + @Deprecated + public void setColor(String color) { + this.color = color; + } + + public ApplicationSecurityServiceAttributes env(String env) { + this.env = env; + return this; + } + + /** + * The environment the service runs in. + * + * @return env + */ + @JsonProperty(JSON_PROPERTY_ENV) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getEnv() { + return env; + } + + public void setEnv(String env) { + this.env = env; + } + + public ApplicationSecurityServiceAttributes eventCount(Long eventCount) { + this.eventCount = eventCount; + return this; + } + + /** + * The number of Application Security events detected for the service. + * + * @return eventCount + */ + @JsonProperty(JSON_PROPERTY_EVENT_COUNT) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getEventCount() { + return eventCount; + } + + public void setEventCount(Long eventCount) { + this.eventCount = eventCount; + } + + public ApplicationSecurityServiceAttributes eventTrend(List eventTrend) { + this.eventTrend = eventTrend; + return this; + } + + public ApplicationSecurityServiceAttributes addEventTrendItem(Long eventTrendItem) { + this.eventTrend.add(eventTrendItem); + return this; + } + + /** + * Deprecated: the trend of Application Security events over time. + * + * @return eventTrend + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_EVENT_TREND) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getEventTrend() { + return eventTrend; + } + + @Deprecated + public void setEventTrend(List eventTrend) { + this.eventTrend = eventTrend; + } + + public ApplicationSecurityServiceAttributes hasAppsecEnabled(Boolean hasAppsecEnabled) { + this.hasAppsecEnabled = hasAppsecEnabled; + return this; + } + + /** + * Whether Application Security Management (Threats) is enabled for the service. + * + * @return hasAppsecEnabled + */ + @JsonProperty(JSON_PROPERTY_HAS_APPSEC_ENABLED) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Boolean getHasAppsecEnabled() { + return hasAppsecEnabled; + } + + public void setHasAppsecEnabled(Boolean hasAppsecEnabled) { + this.hasAppsecEnabled = hasAppsecEnabled; + } + + public ApplicationSecurityServiceAttributes hits(Long hits) { + this.hits = hits; + return this; + } + + /** + * Deprecated: the number of hits for the service. + * + * @return hits + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_HITS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getHits() { + return hits; + } + + @Deprecated + public void setHits(Long hits) { + this.hits = hits; + } + + public ApplicationSecurityServiceAttributes iastProductActivation(Boolean iastProductActivation) { + this.iastProductActivation = iastProductActivation; + return this; + } + + /** + * Whether Interactive Application Security Testing (IAST) is enabled for the service. + * + * @return iastProductActivation + */ + @JsonProperty(JSON_PROPERTY_IAST_PRODUCT_ACTIVATION) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Boolean getIastProductActivation() { + return iastProductActivation; + } + + public void setIastProductActivation(Boolean iastProductActivation) { + this.iastProductActivation = iastProductActivation; + } + + public ApplicationSecurityServiceAttributes iastProductCompatibility( + String iastProductCompatibility) { + this.iastProductCompatibility = iastProductCompatibility; + return this; + } + + /** + * The Interactive Application Security Testing (IAST) compatibility status of the service. + * + * @return iastProductCompatibility + */ + @JsonProperty(JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getIastProductCompatibility() { + return iastProductCompatibility; + } + + public void setIastProductCompatibility(String iastProductCompatibility) { + this.iastProductCompatibility = iastProductCompatibility; + } + + public ApplicationSecurityServiceAttributes iastProductCompatibilityReasons( + List iastProductCompatibilityReasons) { + this.iastProductCompatibilityReasons = iastProductCompatibilityReasons; + return this; + } + + public ApplicationSecurityServiceAttributes addIastProductCompatibilityReasonsItem( + String iastProductCompatibilityReasonsItem) { + this.iastProductCompatibilityReasons.add(iastProductCompatibilityReasonsItem); + return this; + } + + /** + * The reasons explaining the Interactive Application Security Testing (IAST) compatibility + * status. + * + * @return iastProductCompatibilityReasons + */ + @JsonProperty(JSON_PROPERTY_IAST_PRODUCT_COMPATIBILITY_REASONS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getIastProductCompatibilityReasons() { + return iastProductCompatibilityReasons; + } + + public void setIastProductCompatibilityReasons(List iastProductCompatibilityReasons) { + this.iastProductCompatibilityReasons = iastProductCompatibilityReasons; + } + + public ApplicationSecurityServiceAttributes languages(List languages) { + this.languages = languages; + return this; + } + + public ApplicationSecurityServiceAttributes addLanguagesItem(String languagesItem) { + this.languages.add(languagesItem); + return this; + } + + /** + * The programming languages detected for the service. + * + * @return languages + */ + @JsonProperty(JSON_PROPERTY_LANGUAGES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getLanguages() { + return languages; + } + + public void setLanguages(List languages) { + this.languages = languages; + } + + public ApplicationSecurityServiceAttributes lastIngestedSpans(Long lastIngestedSpans) { + this.lastIngestedSpans = lastIngestedSpans; + return this; + } + + /** + * The Unix timestamp, in seconds, of the last ingested span for the service. + * + * @return lastIngestedSpans + */ + @JsonProperty(JSON_PROPERTY_LAST_INGESTED_SPANS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getLastIngestedSpans() { + return lastIngestedSpans; + } + + public void setLastIngestedSpans(Long lastIngestedSpans) { + this.lastIngestedSpans = lastIngestedSpans; + } + + public ApplicationSecurityServiceAttributes rcCapabilities(List rcCapabilities) { + this.rcCapabilities = rcCapabilities; + return this; + } + + public ApplicationSecurityServiceAttributes addRcCapabilitiesItem(String rcCapabilitiesItem) { + this.rcCapabilities.add(rcCapabilitiesItem); + return this; + } + + /** + * The Remote Configuration capabilities reported by the service. + * + * @return rcCapabilities + */ + @JsonProperty(JSON_PROPERTY_RC_CAPABILITIES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getRcCapabilities() { + return rcCapabilities; + } + + public void setRcCapabilities(List rcCapabilities) { + this.rcCapabilities = rcCapabilities; + } + + public ApplicationSecurityServiceAttributes recommendedBusinessLogic( + List recommendedBusinessLogic) { + this.recommendedBusinessLogic = recommendedBusinessLogic; + return this; + } + + public ApplicationSecurityServiceAttributes addRecommendedBusinessLogicItem( + String recommendedBusinessLogicItem) { + this.recommendedBusinessLogic.add(recommendedBusinessLogicItem); + return this; + } + + /** + * The recommended business logic detection rules for the service. + * + * @return recommendedBusinessLogic + */ + @JsonProperty(JSON_PROPERTY_RECOMMENDED_BUSINESS_LOGIC) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getRecommendedBusinessLogic() { + return recommendedBusinessLogic; + } + + public void setRecommendedBusinessLogic(List recommendedBusinessLogic) { + this.recommendedBusinessLogic = recommendedBusinessLogic; + } + + public ApplicationSecurityServiceAttributes riskProductActivation(Boolean riskProductActivation) { + this.riskProductActivation = riskProductActivation; + return this; + } + + /** + * Whether Software Composition Analysis (SCA) is enabled for the service. + * + * @return riskProductActivation + */ + @JsonProperty(JSON_PROPERTY_RISK_PRODUCT_ACTIVATION) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Boolean getRiskProductActivation() { + return riskProductActivation; + } + + public void setRiskProductActivation(Boolean riskProductActivation) { + this.riskProductActivation = riskProductActivation; + } + + public ApplicationSecurityServiceAttributes riskProductCompatibility( + String riskProductCompatibility) { + this.riskProductCompatibility = riskProductCompatibility; + return this; + } + + /** + * The Software Composition Analysis (SCA) compatibility status of the service. + * + * @return riskProductCompatibility + */ + @JsonProperty(JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getRiskProductCompatibility() { + return riskProductCompatibility; + } + + public void setRiskProductCompatibility(String riskProductCompatibility) { + this.riskProductCompatibility = riskProductCompatibility; + } + + public ApplicationSecurityServiceAttributes riskProductCompatibilityReasons( + List riskProductCompatibilityReasons) { + this.riskProductCompatibilityReasons = riskProductCompatibilityReasons; + return this; + } + + public ApplicationSecurityServiceAttributes addRiskProductCompatibilityReasonsItem( + String riskProductCompatibilityReasonsItem) { + this.riskProductCompatibilityReasons.add(riskProductCompatibilityReasonsItem); + return this; + } + + /** + * The reasons explaining the Software Composition Analysis (SCA) compatibility status. + * + * @return riskProductCompatibilityReasons + */ + @JsonProperty(JSON_PROPERTY_RISK_PRODUCT_COMPATIBILITY_REASONS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getRiskProductCompatibilityReasons() { + return riskProductCompatibilityReasons; + } + + public void setRiskProductCompatibilityReasons(List riskProductCompatibilityReasons) { + this.riskProductCompatibilityReasons = riskProductCompatibilityReasons; + } + + public ApplicationSecurityServiceAttributes rulesVersion(List rulesVersion) { + this.rulesVersion = rulesVersion; + return this; + } + + public ApplicationSecurityServiceAttributes addRulesVersionItem(String rulesVersionItem) { + this.rulesVersion.add(rulesVersionItem); + return this; + } + + /** + * The WAF rules versions applied to the service. + * + * @return rulesVersion + */ + @JsonProperty(JSON_PROPERTY_RULES_VERSION) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getRulesVersion() { + return rulesVersion; + } + + public void setRulesVersion(List rulesVersion) { + this.rulesVersion = rulesVersion; + } + + public ApplicationSecurityServiceAttributes service(String service) { + this.service = service; + return this; + } + + /** + * The name of the service. + * + * @return service + */ + @JsonProperty(JSON_PROPERTY_SERVICE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getService() { + return service; + } + + public void setService(String service) { + this.service = service; + } + + public ApplicationSecurityServiceAttributes signalCount(Long signalCount) { + this.signalCount = signalCount; + return this; + } + + /** + * Deprecated: the number of security signals for the service. + * + * @return signalCount + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_SIGNAL_COUNT) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getSignalCount() { + return signalCount; + } + + @Deprecated + public void setSignalCount(Long signalCount) { + this.signalCount = signalCount; + } + + public ApplicationSecurityServiceAttributes signalTrend(List signalTrend) { + this.signalTrend = signalTrend; + return this; + } + + public ApplicationSecurityServiceAttributes addSignalTrendItem(Long signalTrendItem) { + this.signalTrend.add(signalTrendItem); + return this; + } + + /** + * Deprecated: the trend of security signals over time. + * + * @return signalTrend + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_SIGNAL_TREND) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getSignalTrend() { + return signalTrend; + } + + @Deprecated + public void setSignalTrend(List signalTrend) { + this.signalTrend = signalTrend; + } + + public ApplicationSecurityServiceAttributes source(List source) { + this.source = source; + return this; + } + + public ApplicationSecurityServiceAttributes addSourceItem(String sourceItem) { + this.source.add(sourceItem); + return this; + } + + /** + * The data sources that contributed information about the service. + * + * @return source + */ + @JsonProperty(JSON_PROPERTY_SOURCE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getSource() { + return source; + } + + public void setSource(List source) { + this.source = source; + } + + public ApplicationSecurityServiceAttributes teams(List teams) { + this.teams = teams; + return this; + } + + public ApplicationSecurityServiceAttributes addTeamsItem(String teamsItem) { + this.teams.add(teamsItem); + return this; + } + + /** + * The teams that own the service. + * + * @return teams + */ + @JsonProperty(JSON_PROPERTY_TEAMS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getTeams() { + return teams; + } + + public void setTeams(List teams) { + this.teams = teams; + } + + public ApplicationSecurityServiceAttributes tracerVersions(List tracerVersions) { + this.tracerVersions = tracerVersions; + return this; + } + + public ApplicationSecurityServiceAttributes addTracerVersionsItem(String tracerVersionsItem) { + this.tracerVersions.add(tracerVersionsItem); + return this; + } + + /** + * The Datadog tracing library versions reporting for the service. + * + * @return tracerVersions + */ + @JsonProperty(JSON_PROPERTY_TRACER_VERSIONS) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getTracerVersions() { + return tracerVersions; + } + + public void setTracerVersions(List tracerVersions) { + this.tracerVersions = tracerVersions; + } + + public ApplicationSecurityServiceAttributes vmActivation(String vmActivation) { + this.vmActivation = vmActivation; + return this; + } + + /** + * The Vulnerability Management activation status of the service. + * + * @return vmActivation + */ + @JsonProperty(JSON_PROPERTY_VM_ACTIVATION) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getVmActivation() { + return vmActivation; + } + + public void setVmActivation(String vmActivation) { + this.vmActivation = vmActivation; + } + + public ApplicationSecurityServiceAttributes vulnCriticalCount(Long vulnCriticalCount) { + this.vulnCriticalCount = vulnCriticalCount; + return this; + } + + /** + * Deprecated: the number of critical-severity vulnerabilities for the service. + * + * @return vulnCriticalCount + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_VULN_CRITICAL_COUNT) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getVulnCriticalCount() { + return vulnCriticalCount; + } + + @Deprecated + public void setVulnCriticalCount(Long vulnCriticalCount) { + this.vulnCriticalCount = vulnCriticalCount; + } + + public ApplicationSecurityServiceAttributes vulnHighCount(Long vulnHighCount) { + this.vulnHighCount = vulnHighCount; + return this; + } + + /** + * Deprecated: the number of high-severity vulnerabilities for the service. + * + * @return vulnHighCount + * @deprecated + */ + @Deprecated + @JsonProperty(JSON_PROPERTY_VULN_HIGH_COUNT) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getVulnHighCount() { + return vulnHighCount; + } + + @Deprecated + public void setVulnHighCount(Long vulnHighCount) { + this.vulnHighCount = vulnHighCount; + } + + public ApplicationSecurityServiceAttributes withoutFilterServices(Long withoutFilterServices) { + this.withoutFilterServices = withoutFilterServices; + return this; + } + + /** + * The total number of services available without applying the service filter. + * + * @return withoutFilterServices + */ + @JsonProperty(JSON_PROPERTY_WITHOUT_FILTER_SERVICES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getWithoutFilterServices() { + return withoutFilterServices; + } + + public void setWithoutFilterServices(Long withoutFilterServices) { + this.withoutFilterServices = withoutFilterServices; + } + + /** + * A container for additional, undeclared properties. This is a holder for any undeclared + * properties as specified with the 'additionalProperties' keyword in the OAS document. + */ + private Map additionalProperties; + + /** + * Set the additional (undeclared) property with the specified name and value. If the property + * does not already exist, create it otherwise replace it. + * + * @param key The arbitrary key to set + * @param value The associated value + * @return ApplicationSecurityServiceAttributes + */ + @JsonAnySetter + public ApplicationSecurityServiceAttributes putAdditionalProperty(String key, Object value) { + if (this.additionalProperties == null) { + this.additionalProperties = new HashMap(); + } + this.additionalProperties.put(key, value); + return this; + } + + /** + * Return the additional (undeclared) property. + * + * @return The additional properties + */ + @JsonAnyGetter + public Map getAdditionalProperties() { + return additionalProperties; + } + + /** + * Return the additional (undeclared) property with the specified name. + * + * @param key The arbitrary key to get + * @return The specific additional property for the given key + */ + public Object getAdditionalProperty(String key) { + if (this.additionalProperties == null) { + return null; + } + return this.additionalProperties.get(key); + } + + /** Return true if this ApplicationSecurityServiceAttributes object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ApplicationSecurityServiceAttributes applicationSecurityServiceAttributes = + (ApplicationSecurityServiceAttributes) o; + return Objects.equals(this.agentVersions, applicationSecurityServiceAttributes.agentVersions) + && Objects.equals(this.appType, applicationSecurityServiceAttributes.appType) + && Objects.equals( + this.asmThreatCompatible, applicationSecurityServiceAttributes.asmThreatCompatible) + && Objects.equals( + this.backendWafEventCount, applicationSecurityServiceAttributes.backendWafEventCount) + && Objects.equals(this.businessLogic, applicationSecurityServiceAttributes.businessLogic) + && Objects.equals(this.color, applicationSecurityServiceAttributes.color) + && Objects.equals(this.env, applicationSecurityServiceAttributes.env) + && Objects.equals(this.eventCount, applicationSecurityServiceAttributes.eventCount) + && Objects.equals(this.eventTrend, applicationSecurityServiceAttributes.eventTrend) + && Objects.equals( + this.hasAppsecEnabled, applicationSecurityServiceAttributes.hasAppsecEnabled) + && Objects.equals(this.hits, applicationSecurityServiceAttributes.hits) + && Objects.equals( + this.iastProductActivation, applicationSecurityServiceAttributes.iastProductActivation) + && Objects.equals( + this.iastProductCompatibility, + applicationSecurityServiceAttributes.iastProductCompatibility) + && Objects.equals( + this.iastProductCompatibilityReasons, + applicationSecurityServiceAttributes.iastProductCompatibilityReasons) + && Objects.equals(this.languages, applicationSecurityServiceAttributes.languages) + && Objects.equals( + this.lastIngestedSpans, applicationSecurityServiceAttributes.lastIngestedSpans) + && Objects.equals(this.rcCapabilities, applicationSecurityServiceAttributes.rcCapabilities) + && Objects.equals( + this.recommendedBusinessLogic, + applicationSecurityServiceAttributes.recommendedBusinessLogic) + && Objects.equals( + this.riskProductActivation, applicationSecurityServiceAttributes.riskProductActivation) + && Objects.equals( + this.riskProductCompatibility, + applicationSecurityServiceAttributes.riskProductCompatibility) + && Objects.equals( + this.riskProductCompatibilityReasons, + applicationSecurityServiceAttributes.riskProductCompatibilityReasons) + && Objects.equals(this.rulesVersion, applicationSecurityServiceAttributes.rulesVersion) + && Objects.equals(this.service, applicationSecurityServiceAttributes.service) + && Objects.equals(this.signalCount, applicationSecurityServiceAttributes.signalCount) + && Objects.equals(this.signalTrend, applicationSecurityServiceAttributes.signalTrend) + && Objects.equals(this.source, applicationSecurityServiceAttributes.source) + && Objects.equals(this.teams, applicationSecurityServiceAttributes.teams) + && Objects.equals(this.tracerVersions, applicationSecurityServiceAttributes.tracerVersions) + && Objects.equals(this.vmActivation, applicationSecurityServiceAttributes.vmActivation) + && Objects.equals( + this.vulnCriticalCount, applicationSecurityServiceAttributes.vulnCriticalCount) + && Objects.equals(this.vulnHighCount, applicationSecurityServiceAttributes.vulnHighCount) + && Objects.equals( + this.withoutFilterServices, applicationSecurityServiceAttributes.withoutFilterServices) + && Objects.equals( + this.additionalProperties, applicationSecurityServiceAttributes.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash( + agentVersions, + appType, + asmThreatCompatible, + backendWafEventCount, + businessLogic, + color, + env, + eventCount, + eventTrend, + hasAppsecEnabled, + hits, + iastProductActivation, + iastProductCompatibility, + iastProductCompatibilityReasons, + languages, + lastIngestedSpans, + rcCapabilities, + recommendedBusinessLogic, + riskProductActivation, + riskProductCompatibility, + riskProductCompatibilityReasons, + rulesVersion, + service, + signalCount, + signalTrend, + source, + teams, + tracerVersions, + vmActivation, + vulnCriticalCount, + vulnHighCount, + withoutFilterServices, + additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ApplicationSecurityServiceAttributes {\n"); + sb.append(" agentVersions: ").append(toIndentedString(agentVersions)).append("\n"); + sb.append(" appType: ").append(toIndentedString(appType)).append("\n"); + sb.append(" asmThreatCompatible: ") + .append(toIndentedString(asmThreatCompatible)) + .append("\n"); + sb.append(" backendWafEventCount: ") + .append(toIndentedString(backendWafEventCount)) + .append("\n"); + sb.append(" businessLogic: ").append(toIndentedString(businessLogic)).append("\n"); + sb.append(" color: ").append(toIndentedString(color)).append("\n"); + sb.append(" env: ").append(toIndentedString(env)).append("\n"); + sb.append(" eventCount: ").append(toIndentedString(eventCount)).append("\n"); + sb.append(" eventTrend: ").append(toIndentedString(eventTrend)).append("\n"); + sb.append(" hasAppsecEnabled: ").append(toIndentedString(hasAppsecEnabled)).append("\n"); + sb.append(" hits: ").append(toIndentedString(hits)).append("\n"); + sb.append(" iastProductActivation: ") + .append(toIndentedString(iastProductActivation)) + .append("\n"); + sb.append(" iastProductCompatibility: ") + .append(toIndentedString(iastProductCompatibility)) + .append("\n"); + sb.append(" iastProductCompatibilityReasons: ") + .append(toIndentedString(iastProductCompatibilityReasons)) + .append("\n"); + sb.append(" languages: ").append(toIndentedString(languages)).append("\n"); + sb.append(" lastIngestedSpans: ").append(toIndentedString(lastIngestedSpans)).append("\n"); + sb.append(" rcCapabilities: ").append(toIndentedString(rcCapabilities)).append("\n"); + sb.append(" recommendedBusinessLogic: ") + .append(toIndentedString(recommendedBusinessLogic)) + .append("\n"); + sb.append(" riskProductActivation: ") + .append(toIndentedString(riskProductActivation)) + .append("\n"); + sb.append(" riskProductCompatibility: ") + .append(toIndentedString(riskProductCompatibility)) + .append("\n"); + sb.append(" riskProductCompatibilityReasons: ") + .append(toIndentedString(riskProductCompatibilityReasons)) + .append("\n"); + sb.append(" rulesVersion: ").append(toIndentedString(rulesVersion)).append("\n"); + sb.append(" service: ").append(toIndentedString(service)).append("\n"); + sb.append(" signalCount: ").append(toIndentedString(signalCount)).append("\n"); + sb.append(" signalTrend: ").append(toIndentedString(signalTrend)).append("\n"); + sb.append(" source: ").append(toIndentedString(source)).append("\n"); + sb.append(" teams: ").append(toIndentedString(teams)).append("\n"); + sb.append(" tracerVersions: ").append(toIndentedString(tracerVersions)).append("\n"); + sb.append(" vmActivation: ").append(toIndentedString(vmActivation)).append("\n"); + sb.append(" vulnCriticalCount: ").append(toIndentedString(vulnCriticalCount)).append("\n"); + sb.append(" vulnHighCount: ").append(toIndentedString(vulnHighCount)).append("\n"); + sb.append(" withoutFilterServices: ") + .append(toIndentedString(withoutFilterServices)) + .append("\n"); + sb.append(" additionalProperties: ") + .append(toIndentedString(additionalProperties)) + .append("\n"); + sb.append('}'); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceResource.java b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceResource.java new file mode 100644 index 00000000000..6dd92c13223 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceResource.java @@ -0,0 +1,214 @@ +/* + * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + * This product includes software developed at Datadog (https://www.datadoghq.com/). + * Copyright 2019-Present Datadog, Inc. + */ + +package com.datadog.api.client.v2.model; + +import com.fasterxml.jackson.annotation.JsonAnyGetter; +import com.fasterxml.jackson.annotation.JsonAnySetter; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; +import java.util.HashMap; +import java.util.Map; +import java.util.Objects; + +/** A JSON:API resource describing a service and its Application Security details. */ +@JsonPropertyOrder({ + ApplicationSecurityServiceResource.JSON_PROPERTY_ATTRIBUTES, + ApplicationSecurityServiceResource.JSON_PROPERTY_ID, + ApplicationSecurityServiceResource.JSON_PROPERTY_TYPE +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ApplicationSecurityServiceResource { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_ATTRIBUTES = "attributes"; + private ApplicationSecurityServiceAttributes attributes; + + public static final String JSON_PROPERTY_ID = "id"; + private String id; + + public static final String JSON_PROPERTY_TYPE = "type"; + private ApplicationSecurityServiceType type = ApplicationSecurityServiceType.SERVICE_ENV; + + public ApplicationSecurityServiceResource() {} + + @JsonCreator + public ApplicationSecurityServiceResource( + @JsonProperty(required = true, value = JSON_PROPERTY_ATTRIBUTES) + ApplicationSecurityServiceAttributes attributes, + @JsonProperty(required = true, value = JSON_PROPERTY_ID) String id, + @JsonProperty(required = true, value = JSON_PROPERTY_TYPE) + ApplicationSecurityServiceType type) { + this.attributes = attributes; + this.unparsed |= attributes.unparsed; + this.id = id; + this.type = type; + this.unparsed |= !type.isValid(); + } + + public ApplicationSecurityServiceResource attributes( + ApplicationSecurityServiceAttributes attributes) { + this.attributes = attributes; + this.unparsed |= attributes.unparsed; + return this; + } + + /** + * Application Security details describing a service in a given environment. + * + * @return attributes + */ + @JsonProperty(JSON_PROPERTY_ATTRIBUTES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ApplicationSecurityServiceAttributes getAttributes() { + return attributes; + } + + public void setAttributes(ApplicationSecurityServiceAttributes attributes) { + this.attributes = attributes; + } + + public ApplicationSecurityServiceResource id(String id) { + this.id = id; + return this; + } + + /** + * The unique identifier of the service, formatted as <service>_<environment> + * . + * + * @return id + */ + @JsonProperty(JSON_PROPERTY_ID) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public ApplicationSecurityServiceResource type(ApplicationSecurityServiceType type) { + this.type = type; + this.unparsed |= !type.isValid(); + return this; + } + + /** + * The type of the resource. The value should always be service_env. + * + * @return type + */ + @JsonProperty(JSON_PROPERTY_TYPE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ApplicationSecurityServiceType getType() { + return type; + } + + public void setType(ApplicationSecurityServiceType type) { + if (!type.isValid()) { + this.unparsed = true; + } + this.type = type; + } + + /** + * A container for additional, undeclared properties. This is a holder for any undeclared + * properties as specified with the 'additionalProperties' keyword in the OAS document. + */ + private Map additionalProperties; + + /** + * Set the additional (undeclared) property with the specified name and value. If the property + * does not already exist, create it otherwise replace it. + * + * @param key The arbitrary key to set + * @param value The associated value + * @return ApplicationSecurityServiceResource + */ + @JsonAnySetter + public ApplicationSecurityServiceResource putAdditionalProperty(String key, Object value) { + if (this.additionalProperties == null) { + this.additionalProperties = new HashMap(); + } + this.additionalProperties.put(key, value); + return this; + } + + /** + * Return the additional (undeclared) property. + * + * @return The additional properties + */ + @JsonAnyGetter + public Map getAdditionalProperties() { + return additionalProperties; + } + + /** + * Return the additional (undeclared) property with the specified name. + * + * @param key The arbitrary key to get + * @return The specific additional property for the given key + */ + public Object getAdditionalProperty(String key) { + if (this.additionalProperties == null) { + return null; + } + return this.additionalProperties.get(key); + } + + /** Return true if this ApplicationSecurityServiceResource object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ApplicationSecurityServiceResource applicationSecurityServiceResource = + (ApplicationSecurityServiceResource) o; + return Objects.equals(this.attributes, applicationSecurityServiceResource.attributes) + && Objects.equals(this.id, applicationSecurityServiceResource.id) + && Objects.equals(this.type, applicationSecurityServiceResource.type) + && Objects.equals( + this.additionalProperties, applicationSecurityServiceResource.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(attributes, id, type, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ApplicationSecurityServiceResource {\n"); + sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n"); + sb.append(" id: ").append(toIndentedString(id)).append("\n"); + sb.append(" type: ").append(toIndentedString(type)).append("\n"); + sb.append(" additionalProperties: ") + .append(toIndentedString(additionalProperties)) + .append("\n"); + sb.append('}'); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceType.java b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceType.java new file mode 100644 index 00000000000..987dffdc6a8 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServiceType.java @@ -0,0 +1,58 @@ +/* + * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + * This product includes software developed at Datadog (https://www.datadoghq.com/). + * Copyright 2019-Present Datadog, Inc. + */ + +package com.datadog.api.client.v2.model; + +import com.datadog.api.client.ModelEnum; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import java.io.IOException; +import java.util.Arrays; +import java.util.HashSet; +import java.util.Set; + +/** The type of the resource. The value should always be service_env. */ +@JsonSerialize( + using = ApplicationSecurityServiceType.ApplicationSecurityServiceTypeSerializer.class) +public class ApplicationSecurityServiceType extends ModelEnum { + + private static final Set allowedValues = + new HashSet(Arrays.asList("service_env")); + + public static final ApplicationSecurityServiceType SERVICE_ENV = + new ApplicationSecurityServiceType("service_env"); + + ApplicationSecurityServiceType(String value) { + super(value, allowedValues); + } + + public static class ApplicationSecurityServiceTypeSerializer + extends StdSerializer { + public ApplicationSecurityServiceTypeSerializer(Class t) { + super(t); + } + + public ApplicationSecurityServiceTypeSerializer() { + this(null); + } + + @Override + public void serialize( + ApplicationSecurityServiceType value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.value); + } + } + + @JsonCreator + public static ApplicationSecurityServiceType fromValue(String value) { + return new ApplicationSecurityServiceType(value); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesMetadata.java b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesMetadata.java new file mode 100644 index 00000000000..873a0f83a4b --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesMetadata.java @@ -0,0 +1,149 @@ +/* + * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + * This product includes software developed at Datadog (https://www.datadoghq.com/). + * Copyright 2019-Present Datadog, Inc. + */ + +package com.datadog.api.client.v2.model; + +import com.fasterxml.jackson.annotation.JsonAnyGetter; +import com.fasterxml.jackson.annotation.JsonAnySetter; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; +import java.util.HashMap; +import java.util.Map; +import java.util.Objects; + +/** Metadata returned alongside the list of services. */ +@JsonPropertyOrder({ApplicationSecurityServicesMetadata.JSON_PROPERTY_NUM_SERVICES_WITH_APPSEC}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ApplicationSecurityServicesMetadata { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_NUM_SERVICES_WITH_APPSEC = "num_services_with_appsec"; + private Long numServicesWithAppsec; + + public ApplicationSecurityServicesMetadata() {} + + @JsonCreator + public ApplicationSecurityServicesMetadata( + @JsonProperty(required = true, value = JSON_PROPERTY_NUM_SERVICES_WITH_APPSEC) + Long numServicesWithAppsec) { + this.numServicesWithAppsec = numServicesWithAppsec; + } + + public ApplicationSecurityServicesMetadata numServicesWithAppsec(Long numServicesWithAppsec) { + this.numServicesWithAppsec = numServicesWithAppsec; + return this; + } + + /** + * The number of services with Application Security Management (Threats) enabled. + * + * @return numServicesWithAppsec + */ + @JsonProperty(JSON_PROPERTY_NUM_SERVICES_WITH_APPSEC) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public Long getNumServicesWithAppsec() { + return numServicesWithAppsec; + } + + public void setNumServicesWithAppsec(Long numServicesWithAppsec) { + this.numServicesWithAppsec = numServicesWithAppsec; + } + + /** + * A container for additional, undeclared properties. This is a holder for any undeclared + * properties as specified with the 'additionalProperties' keyword in the OAS document. + */ + private Map additionalProperties; + + /** + * Set the additional (undeclared) property with the specified name and value. If the property + * does not already exist, create it otherwise replace it. + * + * @param key The arbitrary key to set + * @param value The associated value + * @return ApplicationSecurityServicesMetadata + */ + @JsonAnySetter + public ApplicationSecurityServicesMetadata putAdditionalProperty(String key, Object value) { + if (this.additionalProperties == null) { + this.additionalProperties = new HashMap(); + } + this.additionalProperties.put(key, value); + return this; + } + + /** + * Return the additional (undeclared) property. + * + * @return The additional properties + */ + @JsonAnyGetter + public Map getAdditionalProperties() { + return additionalProperties; + } + + /** + * Return the additional (undeclared) property with the specified name. + * + * @param key The arbitrary key to get + * @return The specific additional property for the given key + */ + public Object getAdditionalProperty(String key) { + if (this.additionalProperties == null) { + return null; + } + return this.additionalProperties.get(key); + } + + /** Return true if this ApplicationSecurityServicesMetadata object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ApplicationSecurityServicesMetadata applicationSecurityServicesMetadata = + (ApplicationSecurityServicesMetadata) o; + return Objects.equals( + this.numServicesWithAppsec, applicationSecurityServicesMetadata.numServicesWithAppsec) + && Objects.equals( + this.additionalProperties, applicationSecurityServicesMetadata.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(numServicesWithAppsec, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ApplicationSecurityServicesMetadata {\n"); + sb.append(" numServicesWithAppsec: ") + .append(toIndentedString(numServicesWithAppsec)) + .append("\n"); + sb.append(" additionalProperties: ") + .append(toIndentedString(additionalProperties)) + .append("\n"); + sb.append('}'); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesResponse.java b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesResponse.java new file mode 100644 index 00000000000..cad2054af89 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ApplicationSecurityServicesResponse.java @@ -0,0 +1,191 @@ +/* + * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + * This product includes software developed at Datadog (https://www.datadoghq.com/). + * Copyright 2019-Present Datadog, Inc. + */ + +package com.datadog.api.client.v2.model; + +import com.fasterxml.jackson.annotation.JsonAnyGetter; +import com.fasterxml.jackson.annotation.JsonAnySetter; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Objects; + +/** Response object containing the list of services matching the requested name. */ +@JsonPropertyOrder({ + ApplicationSecurityServicesResponse.JSON_PROPERTY_DATA, + ApplicationSecurityServicesResponse.JSON_PROPERTY_META +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ApplicationSecurityServicesResponse { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_DATA = "data"; + private List data = new ArrayList<>(); + + public static final String JSON_PROPERTY_META = "meta"; + private ApplicationSecurityServicesMetadata meta; + + public ApplicationSecurityServicesResponse() {} + + @JsonCreator + public ApplicationSecurityServicesResponse( + @JsonProperty(required = true, value = JSON_PROPERTY_DATA) + List data, + @JsonProperty(required = true, value = JSON_PROPERTY_META) + ApplicationSecurityServicesMetadata meta) { + this.data = data; + this.meta = meta; + this.unparsed |= meta.unparsed; + } + + public ApplicationSecurityServicesResponse data(List data) { + this.data = data; + for (ApplicationSecurityServiceResource item : data) { + this.unparsed |= item.unparsed; + } + return this; + } + + public ApplicationSecurityServicesResponse addDataItem( + ApplicationSecurityServiceResource dataItem) { + this.data.add(dataItem); + this.unparsed |= dataItem.unparsed; + return this; + } + + /** + * The list of services matching the requested name. + * + * @return data + */ + @JsonProperty(JSON_PROPERTY_DATA) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public List getData() { + return data; + } + + public void setData(List data) { + this.data = data; + } + + public ApplicationSecurityServicesResponse meta(ApplicationSecurityServicesMetadata meta) { + this.meta = meta; + this.unparsed |= meta.unparsed; + return this; + } + + /** + * Metadata returned alongside the list of services. + * + * @return meta + */ + @JsonProperty(JSON_PROPERTY_META) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ApplicationSecurityServicesMetadata getMeta() { + return meta; + } + + public void setMeta(ApplicationSecurityServicesMetadata meta) { + this.meta = meta; + } + + /** + * A container for additional, undeclared properties. This is a holder for any undeclared + * properties as specified with the 'additionalProperties' keyword in the OAS document. + */ + private Map additionalProperties; + + /** + * Set the additional (undeclared) property with the specified name and value. If the property + * does not already exist, create it otherwise replace it. + * + * @param key The arbitrary key to set + * @param value The associated value + * @return ApplicationSecurityServicesResponse + */ + @JsonAnySetter + public ApplicationSecurityServicesResponse putAdditionalProperty(String key, Object value) { + if (this.additionalProperties == null) { + this.additionalProperties = new HashMap(); + } + this.additionalProperties.put(key, value); + return this; + } + + /** + * Return the additional (undeclared) property. + * + * @return The additional properties + */ + @JsonAnyGetter + public Map getAdditionalProperties() { + return additionalProperties; + } + + /** + * Return the additional (undeclared) property with the specified name. + * + * @param key The arbitrary key to get + * @return The specific additional property for the given key + */ + public Object getAdditionalProperty(String key) { + if (this.additionalProperties == null) { + return null; + } + return this.additionalProperties.get(key); + } + + /** Return true if this ApplicationSecurityServicesResponse object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ApplicationSecurityServicesResponse applicationSecurityServicesResponse = + (ApplicationSecurityServicesResponse) o; + return Objects.equals(this.data, applicationSecurityServicesResponse.data) + && Objects.equals(this.meta, applicationSecurityServicesResponse.meta) + && Objects.equals( + this.additionalProperties, applicationSecurityServicesResponse.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(data, meta, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ApplicationSecurityServicesResponse {\n"); + sb.append(" data: ").append(toIndentedString(data)).append("\n"); + sb.append(" meta: ").append(toIndentedString(meta)).append("\n"); + sb.append(" additionalProperties: ") + .append(toIndentedString(additionalProperties)) + .append("\n"); + sb.append('}'); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } +} diff --git a/src/test/resources/com/datadog/api/client/v2/api/application_security.feature b/src/test/resources/com/datadog/api/client/v2/api/application_security.feature index 4dbda1c4694..710a6064141 100644 --- a/src/test/resources/com/datadog/api/client/v2/api/application_security.feature +++ b/src/test/resources/com/datadog/api/client/v2/api/application_security.feature @@ -148,6 +148,14 @@ Feature: Application Security When the request is sent Then the response status is 204 OK + @generated @skip @team:DataDog/asm-backend + Scenario: Get Application Security details for a service returns "OK" response + Given operation "GetAsmServiceByName" enabled + And new "GetAsmServiceByName" request + And request contains "service_filter" parameter from "REPLACE.ME" + When the request is sent + Then the response status is 200 OK + @team:DataDog/asm-backend Scenario: Get a WAF Policy returns "OK" response Given there is a valid "policy" in the system diff --git a/src/test/resources/com/datadog/api/client/v2/api/undo.json b/src/test/resources/com/datadog/api/client/v2/api/undo.json index b7bddb16178..3f66e97af88 100644 --- a/src/test/resources/com/datadog/api/client/v2/api/undo.json +++ b/src/test/resources/com/datadog/api/client/v2/api/undo.json @@ -6883,6 +6883,12 @@ "type": "safe" } }, + "GetAsmServiceByName": { + "tag": "Application Security", + "undo": { + "type": "safe" + } + }, "DownloadCloudWorkloadPolicyFile": { "tag": "CSM Threats", "undo": {