Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.5",
"regenerated": "2023-09-13 15:18:05.497778",
"spec_repo_commit": "ec46249d"
"regenerated": "2023-09-14 14:35:26.859009",
"spec_repo_commit": "1d834ec1"
},
"v2": {
"apigentools_version": "1.6.5",
"regenerated": "2023-09-13 15:18:05.516562",
"spec_repo_commit": "ec46249d"
"regenerated": "2023-09-14 14:35:26.875218",
"spec_repo_commit": "1d834ec1"
}
}
}
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3920,6 +3920,7 @@ components:
- functions_usage
- infra_host_usage
- invocations_usage
- mobile_app_testing_usage
- npm_host_usage
- obs_pipeline_bytes_usage
- profiled_container_usage
Expand Down Expand Up @@ -3958,6 +3959,7 @@ components:
- FUNCTIONS_USAGE
- INFRA_HOST_USAGE
- INVOCATIONS_USAGE
- MOBILE_APP_TESTING_USAGE
- NPM_HOST_USAGE
- OBS_PIPELINE_BYTES_USAGE
- PROFILED_CONTAINER_USAGE
Expand Down Expand Up @@ -7489,6 +7491,8 @@ components:
- infra_host_percentage
- invocations_usage
- invocations_percentage
- mobile_app_testing_percentage
- mobile_app_testing_usage
- npm_host_usage
- npm_host_percentage
- obs_pipeline_bytes_usage
Expand Down Expand Up @@ -7564,6 +7568,8 @@ components:
- INFRA_HOST_PERCENTAGE
- INVOCATIONS_USAGE
- INVOCATIONS_PERCENTAGE
- MOBILE_APP_TESTING_USAGE
- MOBILE_APP_TESTING_PERCENTAGE
- NPM_HOST_USAGE
- NPM_HOST_PERCENTAGE
- OBS_PIPELINE_BYTES_USAGE
Expand Down Expand Up @@ -7811,6 +7817,15 @@ components:
description: The Lambda invocation usage by tag(s).
format: double
type: number
mobile_app_testing_percentage:
description: The percentage of Synthetic mobile application test usage by
tag(s).
format: double
type: number
mobile_app_testing_usage:
description: The Synthetic mobile application test usage by tag(s).
format: double
type: number
npm_host_percentage:
description: The percentage of network host usage by tag(s).
format: double
Expand Down Expand Up @@ -17963,6 +17978,11 @@ components:
the current date for all organizations.
format: int64
type: integer
synthetics_mobile_test_runs_sum:
description: Shows the sum of all Synthetic mobile application tests over
all hours in the current date for all organizations.
format: int64
type: integer
synthetics_parallel_testing_max_slots_hwm:
description: Shows the high-water mark of used synthetics parallel testing
slots over all hours in the current date for all organizations.
Expand Down Expand Up @@ -18404,6 +18424,11 @@ components:
the current date for the given org.
format: int64
type: integer
synthetics_mobile_test_runs_sum:
description: Shows the sum of all Synthetic mobile application tests over
all hours in the current date for the given org.
format: int64
type: integer
synthetics_parallel_testing_max_slots_hwm:
description: Shows the high-water mark of used synthetics parallel testing
slots over all hours in the current date for the given org.
Expand Down Expand Up @@ -18887,6 +18912,11 @@ components:
the current months for all organizations.
format: int64
type: integer
synthetics_mobile_test_runs_agg_sum:
description: Shows the sum of Synthetic mobile application tests over all
hours in the current months for all organizations.
format: int64
type: integer
synthetics_parallel_testing_max_slots_hwm_sum:
description: Shows the sum of the high-water marks of used synthetics parallel
testing slots over all hours in the current month for all organizations.
Expand Down
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27082,8 +27082,8 @@ paths:
`online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`,
`sds`, `snmp`,

`synthetics_api`, `synthetics_browser`, `synthetics_parallel_testing`, and
`timeseries`.
`synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`,
and `timeseries`.

The following product family has been **deprecated**: `audit_logs`.'
in: query
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
"functions_usage",
"infra_host_usage",
"invocations_usage",
"mobile_app_testing_usage",
"npm_host_usage",
"obs_pipeline_bytes_usage",
"profiled_container_usage",
Expand Down Expand Up @@ -115,6 +116,8 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
new HourlyUsageAttributionUsageType("infra_host_usage");
public static final HourlyUsageAttributionUsageType INVOCATIONS_USAGE =
new HourlyUsageAttributionUsageType("invocations_usage");
public static final HourlyUsageAttributionUsageType MOBILE_APP_TESTING_USAGE =
new HourlyUsageAttributionUsageType("mobile_app_testing_usage");
public static final HourlyUsageAttributionUsageType NPM_HOST_USAGE =
new HourlyUsageAttributionUsageType("npm_host_usage");
public static final HourlyUsageAttributionUsageType OBS_PIPELINE_BYTES_USAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public class MonthlyUsageAttributionSupportedMetrics extends ModelEnum<String> {
"infra_host_percentage",
"invocations_usage",
"invocations_percentage",
"mobile_app_testing_percentage",
"mobile_app_testing_usage",
"npm_host_usage",
"npm_host_percentage",
"obs_pipeline_bytes_usage",
Expand Down Expand Up @@ -207,6 +209,10 @@ public class MonthlyUsageAttributionSupportedMetrics extends ModelEnum<String> {
new MonthlyUsageAttributionSupportedMetrics("invocations_usage");
public static final MonthlyUsageAttributionSupportedMetrics INVOCATIONS_PERCENTAGE =
new MonthlyUsageAttributionSupportedMetrics("invocations_percentage");
public static final MonthlyUsageAttributionSupportedMetrics MOBILE_APP_TESTING_USAGE =
new MonthlyUsageAttributionSupportedMetrics("mobile_app_testing_percentage");
public static final MonthlyUsageAttributionSupportedMetrics MOBILE_APP_TESTING_PERCENTAGE =
new MonthlyUsageAttributionSupportedMetrics("mobile_app_testing_usage");
public static final MonthlyUsageAttributionSupportedMetrics NPM_HOST_USAGE =
new MonthlyUsageAttributionSupportedMetrics("npm_host_usage");
public static final MonthlyUsageAttributionSupportedMetrics NPM_HOST_PERCENTAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
MonthlyUsageAttributionValues.JSON_PROPERTY_INFRA_HOST_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_INVOCATIONS_PERCENTAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_INVOCATIONS_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_MOBILE_APP_TESTING_PERCENTAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_MOBILE_APP_TESTING_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_NPM_HOST_PERCENTAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_NPM_HOST_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_OBS_PIPELINE_BYTES_PERCENTAGE,
Expand Down Expand Up @@ -274,6 +276,13 @@ public class MonthlyUsageAttributionValues {
public static final String JSON_PROPERTY_INVOCATIONS_USAGE = "invocations_usage";
private Double invocationsUsage;

public static final String JSON_PROPERTY_MOBILE_APP_TESTING_PERCENTAGE =
"mobile_app_testing_percentage";
private Double mobileAppTestingPercentage;

public static final String JSON_PROPERTY_MOBILE_APP_TESTING_USAGE = "mobile_app_testing_usage";
private Double mobileAppTestingUsage;

public static final String JSON_PROPERTY_NPM_HOST_PERCENTAGE = "npm_host_percentage";
private Double npmHostPercentage;

Expand Down Expand Up @@ -1482,6 +1491,49 @@ public void setInvocationsUsage(Double invocationsUsage) {
this.invocationsUsage = invocationsUsage;
}

public MonthlyUsageAttributionValues mobileAppTestingPercentage(
Double mobileAppTestingPercentage) {
this.mobileAppTestingPercentage = mobileAppTestingPercentage;
return this;
}

/**
* The percentage of Synthetic mobile application test usage by tag(s).
*
* @return mobileAppTestingPercentage
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MOBILE_APP_TESTING_PERCENTAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Double getMobileAppTestingPercentage() {
return mobileAppTestingPercentage;
}

public void setMobileAppTestingPercentage(Double mobileAppTestingPercentage) {
this.mobileAppTestingPercentage = mobileAppTestingPercentage;
}

public MonthlyUsageAttributionValues mobileAppTestingUsage(Double mobileAppTestingUsage) {
this.mobileAppTestingUsage = mobileAppTestingUsage;
return this;
}

/**
* The Synthetic mobile application test usage by tag(s).
*
* @return mobileAppTestingUsage
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MOBILE_APP_TESTING_USAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Double getMobileAppTestingUsage() {
return mobileAppTestingUsage;
}

public void setMobileAppTestingUsage(Double mobileAppTestingUsage) {
this.mobileAppTestingUsage = mobileAppTestingUsage;
}

public MonthlyUsageAttributionValues npmHostPercentage(Double npmHostPercentage) {
this.npmHostPercentage = npmHostPercentage;
return this;
Expand Down Expand Up @@ -2016,6 +2068,11 @@ public boolean equals(Object o) {
&& Objects.equals(
this.invocationsPercentage, monthlyUsageAttributionValues.invocationsPercentage)
&& Objects.equals(this.invocationsUsage, monthlyUsageAttributionValues.invocationsUsage)
&& Objects.equals(
this.mobileAppTestingPercentage,
monthlyUsageAttributionValues.mobileAppTestingPercentage)
&& Objects.equals(
this.mobileAppTestingUsage, monthlyUsageAttributionValues.mobileAppTestingUsage)
&& Objects.equals(this.npmHostPercentage, monthlyUsageAttributionValues.npmHostPercentage)
&& Objects.equals(this.npmHostUsage, monthlyUsageAttributionValues.npmHostUsage)
&& Objects.equals(
Expand Down Expand Up @@ -2113,6 +2170,8 @@ public int hashCode() {
infraHostUsage,
invocationsPercentage,
invocationsUsage,
mobileAppTestingPercentage,
mobileAppTestingUsage,
npmHostPercentage,
npmHostUsage,
obsPipelineBytesPercentage,
Expand Down Expand Up @@ -2250,6 +2309,12 @@ public String toString() {
.append(toIndentedString(invocationsPercentage))
.append("\n");
sb.append(" invocationsUsage: ").append(toIndentedString(invocationsUsage)).append("\n");
sb.append(" mobileAppTestingPercentage: ")
.append(toIndentedString(mobileAppTestingPercentage))
.append("\n");
sb.append(" mobileAppTestingUsage: ")
.append(toIndentedString(mobileAppTestingUsage))
.append("\n");
sb.append(" npmHostPercentage: ").append(toIndentedString(npmHostPercentage)).append("\n");
sb.append(" npmHostUsage: ").append(toIndentedString(npmHostUsage)).append("\n");
sb.append(" obsPipelineBytesPercentage: ")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
UsageSummaryDate.JSON_PROPERTY_SDS_TOTAL_SCANNED_BYTES_SUM,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_PARALLEL_TESTING_MAX_SLOTS_HWM,
UsageSummaryDate.JSON_PROPERTY_TRACE_SEARCH_INDEXED_EVENTS_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_TWOL_INGESTED_EVENTS_BYTES_SUM,
Expand Down Expand Up @@ -384,6 +385,10 @@ public class UsageSummaryDate {
"synthetics_check_calls_count_sum";
private Long syntheticsCheckCallsCountSum;

public static final String JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM =
"synthetics_mobile_test_runs_sum";
private Long syntheticsMobileTestRunsSum;

public static final String JSON_PROPERTY_SYNTHETICS_PARALLEL_TESTING_MAX_SLOTS_HWM =
"synthetics_parallel_testing_max_slots_hwm";
private Long syntheticsParallelTestingMaxSlotsHwm;
Expand Down Expand Up @@ -2165,6 +2170,28 @@ public void setSyntheticsCheckCallsCountSum(Long syntheticsCheckCallsCountSum) {
this.syntheticsCheckCallsCountSum = syntheticsCheckCallsCountSum;
}

public UsageSummaryDate syntheticsMobileTestRunsSum(Long syntheticsMobileTestRunsSum) {
this.syntheticsMobileTestRunsSum = syntheticsMobileTestRunsSum;
return this;
}

/**
* Shows the sum of all Synthetic mobile application tests over all hours in the current date for
* all organizations.
*
* @return syntheticsMobileTestRunsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getSyntheticsMobileTestRunsSum() {
return syntheticsMobileTestRunsSum;
}

public void setSyntheticsMobileTestRunsSum(Long syntheticsMobileTestRunsSum) {
this.syntheticsMobileTestRunsSum = syntheticsMobileTestRunsSum;
}

public UsageSummaryDate syntheticsParallelTestingMaxSlotsHwm(
Long syntheticsParallelTestingMaxSlotsHwm) {
this.syntheticsParallelTestingMaxSlotsHwm = syntheticsParallelTestingMaxSlotsHwm;
Expand Down Expand Up @@ -2486,6 +2513,8 @@ public boolean equals(Object o) {
usageSummaryDate.syntheticsBrowserCheckCallsCountSum)
&& Objects.equals(
this.syntheticsCheckCallsCountSum, usageSummaryDate.syntheticsCheckCallsCountSum)
&& Objects.equals(
this.syntheticsMobileTestRunsSum, usageSummaryDate.syntheticsMobileTestRunsSum)
&& Objects.equals(
this.syntheticsParallelTestingMaxSlotsHwm,
usageSummaryDate.syntheticsParallelTestingMaxSlotsHwm)
Expand Down Expand Up @@ -2587,6 +2616,7 @@ public int hashCode() {
sdsTotalScannedBytesSum,
syntheticsBrowserCheckCallsCountSum,
syntheticsCheckCallsCountSum,
syntheticsMobileTestRunsSum,
syntheticsParallelTestingMaxSlotsHwm,
traceSearchIndexedEventsCountSum,
twolIngestedEventsBytesSum,
Expand Down Expand Up @@ -2780,6 +2810,9 @@ public String toString() {
sb.append(" syntheticsCheckCallsCountSum: ")
.append(toIndentedString(syntheticsCheckCallsCountSum))
.append("\n");
sb.append(" syntheticsMobileTestRunsSum: ")
.append(toIndentedString(syntheticsMobileTestRunsSum))
.append("\n");
sb.append(" syntheticsParallelTestingMaxSlotsHwm: ")
.append(toIndentedString(syntheticsParallelTestingMaxSlotsHwm))
.append("\n");
Expand Down
Loading