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

feat(sdk): automated oas update #8070

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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
23 changes: 23 additions & 0 deletions api-specs/Konnect/v2/yaml/analytics-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ components:
- $ref: '#/components/schemas/ControlPlaneFilterByField'
- $ref: '#/components/schemas/ControlPlaneGroupFilterByField'
- $ref: '#/components/schemas/DataPlaneNodeFilterByField'
- $ref: '#/components/schemas/DataPlaneNodeVersionFilterByField'
- $ref: '#/components/schemas/GatewayServiceFilterByField'
- $ref: '#/components/schemas/HeaderHostFilterByField'
- $ref: '#/components/schemas/HeaderUserAgentFilterByField'
Expand Down Expand Up @@ -723,6 +724,23 @@ components:
- type
- values
title: Filter by data_plane_node
DataPlaneNodeVersionFilterByField:
allOf:
- type: object
properties:
field:
description: The field to filter.
type: string
enum:
- data_plane_node_version
required:
- field
- oneOf:
- $ref: '#/components/schemas/FilterMultiValueString'
- $ref: '#/components/schemas/FilterSingleValueString'
- $ref: '#/components/schemas/FilterWildcard'
- $ref: '#/components/schemas/FilterEmpty'
title: Filter by data_plane_node_version
GatewayServiceFilterByField:
allOf:
- type: object
Expand Down Expand Up @@ -1337,6 +1355,9 @@ components:
data_plane_node:
description: 'Data Plane Node ID associated with the request. In the format `control_plane_id:data_plane_node_id` if the node belongs to a control plane or `control_plane_group_id:data_plane_node_id` if the node belongs to a control plane group.'
type: string
data_plane_node_version:
description: Version used by the Data Plane Node associated with the request.
type: string
gateway_service:
description: 'Gateway Service ID associated with the request. In the format `control_plane_id:gateway_service_id`.'
type: string
Expand Down Expand Up @@ -1696,6 +1717,7 @@ components:
control_plane: d5ac5d88-efed-4e10-9dfe-0b0a6646c219
control_plane_group: cafe2d4f-95ec-458c-8c88-62417018678d
data_plane_node: 'cafe2d4f-95ec-458c-8c88-62417018678d:122a0f86-029c-4292-82fd-f3b38e1cfa60'
data_plane_node_version: 3.8.0.1
gateway_service: 'd5ac5d88-efed-4e10-9dfe-0b0a6646c219:523468b1-2e74-4b58-b30e-6f904e99e4d0'
header_host: google.com
header_user_agent: Mozilla/4.0 (compatible; Flight Explorer)
Expand Down Expand Up @@ -1748,6 +1770,7 @@ components:
control_plane: d5ac5d88-efed-4e10-9dfe-0b0a6646c219
control_plane_group: null
data_plane_node: 'd5ac5d88-efed-4e10-9dfe-0b0a6646c219:a3e0692c-2351-4c8e-acbe-e7a5185147de'
data_plane_node_version: 3.8.0.1
gateway_service: 'd5ac5d88-efed-4e10-9dfe-0b0a6646c219:523468b1-2e74-4b58-b30e-6f904e99e4d0'
header_host: proxy-zyq.com
header_user_agent: python-works
Expand Down
Loading