Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix application_security_host_top99p usage field #1069

Merged
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.4",
"regenerated": "2023-03-15 16:38:08.324943",
"spec_repo_commit": "315984bc"
"regenerated": "2023-03-21 10:00:57.571932",
"spec_repo_commit": "45be3462"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-03-15 16:38:08.340893",
"spec_repo_commit": "315984bc"
"regenerated": "2023-03-21 10:00:57.586448",
"spec_repo_commit": "45be3462"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15445,7 +15445,7 @@ components:
$ref: '#/components/schemas/UsageBillableSummaryBody'
application_security_host_sum:
$ref: '#/components/schemas/UsageBillableSummaryBody'
application_security_host_top99:
application_security_host_top99p:
$ref: '#/components/schemas/UsageBillableSummaryBody'
ci_pipeline_indexed_spans_sum:
$ref: '#/components/schemas/UsageBillableSummaryBody'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class UsageBillableSummaryKeys {
/**
* Response with properties for each aggregated usage type.
*/
"applicationSecurityHostTop99"?: UsageBillableSummaryBody;
"applicationSecurityHostTop99p"?: UsageBillableSummaryBody;
/**
* Response with properties for each aggregated usage type.
*/
Expand Down Expand Up @@ -409,8 +409,8 @@ export class UsageBillableSummaryKeys {
baseName: "application_security_host_sum",
type: "UsageBillableSummaryBody",
},
applicationSecurityHostTop99: {
baseName: "application_security_host_top99",
applicationSecurityHostTop99p: {
baseName: "application_security_host_top99p",
type: "UsageBillableSummaryBody",
},
ciPipelineIndexedSpansSum: {
Expand Down