Skip to content

Commit

Permalink
Regenerate client from commit aa1d027f of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Apr 1, 2022
1 parent 998f607 commit e22b0bf
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 76 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.2",
"regenerated": "2022-03-30 20:57:03.095638",
"spec_repo_commit": "442fcd8b"
"regenerated": "2022-04-01 14:59:15.134042",
"spec_repo_commit": "aa1d027f"
},
"v2": {
"apigentools_version": "1.6.2",
"regenerated": "2022-03-30 20:57:03.107080",
"spec_repo_commit": "442fcd8b"
"regenerated": "2022-04-01 14:59:15.150254",
"spec_repo_commit": "aa1d027f"
}
}
}
43 changes: 10 additions & 33 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10456,18 +10456,17 @@ components:
properties:
password:
description: Password to use for the basic authentication.
example: ''
example: PaSSw0RD!
type: string
type:
$ref: '#/components/schemas/SyntheticsBasicAuthWebType'
username:
description: Username to use for the basic authentication.
example: ''
example: my_username
type: string
required:
- password
- username
- type
type: object
SyntheticsBasicAuthWebType:
default: web
Expand Down Expand Up @@ -13755,15 +13754,8 @@ components:
format: date-time
type: string
ingested_events_bytes:
deprecated: true
description: Use `ingested_spans_billable_bytes` as of 2022-03-01. Contains
the total number of bytes ingested during a given hour using an old method
of calculating span volume.
format: int64
type: integer
ingested_spans_billable_bytes:
description: Contains the total number of bytes ingested during a given
hour.
description: Contains the total number of bytes ingested for APM spans during
a given hour.
format: int64
type: integer
org_name:
Expand Down Expand Up @@ -14360,11 +14352,6 @@ components:
hours in the current date for all organizations.
format: int64
type: integer
apm_ingested_spans_billable_bytes_sum:
description: Shows the sum of all ingested APM span bytes over all hours
in the current date for all organizations.
format: int64
type: integer
audit_logs_lines_indexed_sum:
description: Shows the sum of audit logs lines indexed over all hours in
the current date for all organizations.
Expand Down Expand Up @@ -14651,8 +14638,8 @@ components:
format: int64
type: integer
twol_ingested_events_bytes_sum:
description: Shows the sum of all tracing without limits bytes ingested
over all hours in the current date for all organizations.
description: Shows the sum of all ingested APM span bytes over all hours
in the current date for all organizations.
format: int64
type: integer
vsphere_host_top99p:
Expand Down Expand Up @@ -14680,11 +14667,6 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_ingested_spans_billable_bytes_sum:
description: Shows the sum of all ingested APM span bytes over all hours
in the current date for the given org.
format: int64
type: integer
audit_logs_lines_indexed_sum:
description: Shows the sum of all audit logs lines indexed over all hours
in the current date for the given org.
Expand Down Expand Up @@ -14971,8 +14953,8 @@ components:
format: int64
type: integer
twol_ingested_events_bytes_sum:
description: Shows the sum of all tracing without limits bytes ingested
over all hours in the current date for the given org.
description: Shows the sum of all ingested APM span bytes over all hours
in the current date for the given org.
format: int64
type: integer
vsphere_host_top99p:
Expand Down Expand Up @@ -15000,11 +14982,6 @@ components:
hours in the current months for all organizations.
format: int64
type: integer
apm_ingested_spans_billable_bytes_agg_sum:
description: Shows the sum of all ingested APM span bytes over all hours
in the current months for all organizations.
format: int64
type: integer
audit_logs_lines_indexed_agg_sum:
description: Shows the sum of all audit logs lines indexed over all hours
in the current months for all organizations.
Expand Down Expand Up @@ -15336,8 +15313,8 @@ components:
format: int64
type: integer
twol_ingested_events_bytes_agg_sum:
description: Shows the sum of all tracing without limits bytes ingested
over all hours in the current months for all organizations.
description: Shows the sum of all ingested APM span bytes over all hours
in the current months for all organizations.
format: int64
type: integer
usage:
Expand Down
4 changes: 3 additions & 1 deletion examples/v1/synthetics/TriggerCITests.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
body = SyntheticsCITestBody(
tests=[
SyntheticsCITest(
basic_auth=SyntheticsBasicAuthWeb(password="", type=SyntheticsBasicAuthWebType("web"), username=""),
basic_auth=SyntheticsBasicAuthWeb(
password="PaSSw0RD!", type=SyntheticsBasicAuthWebType("web"), username="my_username"
),
device_ids=[SyntheticsDeviceID("laptop_large")],
locations=["aws:eu-west-3"],
metadata=SyntheticsCIBatchMetadata(
Expand Down
4 changes: 3 additions & 1 deletion examples/v1/synthetics/UpdateBrowserTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
assertions=[],
config_variables=[SyntheticsConfigVariable(name="VARIABLE_NAME", type=SyntheticsConfigVariableType("text"))],
request=SyntheticsTestRequest(
basic_auth=SyntheticsBasicAuthWeb(password="", type=SyntheticsBasicAuthWebType("web"), username=""),
basic_auth=SyntheticsBasicAuthWeb(
password="PaSSw0RD!", type=SyntheticsBasicAuthWebType("web"), username="my_username"
),
certificate=SyntheticsTestRequestCertificate(
cert=SyntheticsTestRequestCertificateItem(), key=SyntheticsTestRequestCertificateItem()
),
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v1/model/synthetics_basic_auth.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions src/datadog_api_client/v1/model/synthetics_basic_auth_web.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions src/datadog_api_client/v1/model/usage_ingested_spans_hour.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions src/datadog_api_client/v1/model/usage_summary_date.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions src/datadog_api_client/v1/model/usage_summary_date_org.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions src/datadog_api_client/v1/model/usage_summary_response.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e22b0bf

Please sign in to comment.