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.6",
"regenerated": "2024-09-10 15:39:59.557937",
"spec_repo_commit": "80dc4248"
"regenerated": "2024-09-11 19:15:19.299554",
"spec_repo_commit": "3288a6f0"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-10 15:39:59.575646",
"spec_repo_commit": "80dc4248"
"regenerated": "2024-09-11 19:15:19.317665",
"spec_repo_commit": "3288a6f0"
}
}
}
16 changes: 14 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16352,8 +16352,7 @@ components:
description: Persist cookies across redirects.
type: boolean
port:
description: Port to use when performing the test.
type: string
$ref: '#/components/schemas/SyntheticsTestRequestPort'
proxy:
$ref: '#/components/schemas/SyntheticsTestRequestProxy'
query:
Expand Down Expand Up @@ -16457,6 +16456,15 @@ components:
description: Date of update of the certificate or key, ISO format.
type: string
type: object
SyntheticsTestRequestNumericalPort:
description: Integer Port number to use when performing the test.
format: int64
type: integer
SyntheticsTestRequestPort:
description: Port to use when performing the test.
oneOf:
- $ref: '#/components/schemas/SyntheticsTestRequestNumericalPort'
- $ref: '#/components/schemas/SyntheticsTestRequestVariablePort'
SyntheticsTestRequestProxy:
description: The proxy to perform the test.
properties:
Expand All @@ -16469,6 +16477,10 @@ components:
required:
- url
type: object
SyntheticsTestRequestVariablePort:
description: String Port number to use when performing the test. Supports templated
variables.
type: string
SyntheticsTiming:
description: 'Object containing all metrics and their values collected for a
Synthetic API test.
Expand Down
2 changes: 1 addition & 1 deletion .generator/src/generator/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def format_number(x):
return str(x)

def format_string(x):
if isinstance(x, bool):
if isinstance(x, (bool, int, float)):
raise TypeError(f"{x} is not supported type {schema}")
if schema.get("format") == "binary":
return open_file(x)
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-08-21T13:17:18.467Z
2024-09-10T20:52:06.237Z

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

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-08-21T13:17:21.302Z
2024-09-10T20:52:08.676Z
Loading