You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: proto/gen/openapi/openapi.yaml
+31
Original file line number
Diff line number
Diff line change
@@ -893,6 +893,11 @@ components:
893
893
name_contains:
894
894
description: Substring match on pipeline name. Case-sensitive.
895
895
type: string
896
+
tags[string]:
897
+
additionalProperties:
898
+
type: string
899
+
description: Filter pipelines that contain all of these key/value pairs.
900
+
type: object
896
901
type: object
897
902
ListPipelinesResponse:
898
903
properties:
@@ -1164,6 +1169,13 @@ components:
1164
1169
$ref: '#/components/schemas/Pipeline.State'
1165
1170
status:
1166
1171
$ref: '#/components/schemas/Pipeline.Status'
1172
+
tags:
1173
+
additionalProperties:
1174
+
type: string
1175
+
description: |-
1176
+
Tags are key-value pairs that can be assigned to a pipeline resource.
1177
+
They help organize pipelines and enable filtering when listing them.
1178
+
type: object
1167
1179
url:
1168
1180
description: |-
1169
1181
URL to connect to the pipeline, e.g. via http_server.
@@ -1229,6 +1241,13 @@ components:
1229
1241
type: string
1230
1242
resources:
1231
1243
$ref: '#/components/schemas/Resources'
1244
+
tags:
1245
+
additionalProperties:
1246
+
type: string
1247
+
description: |-
1248
+
Optional: A map of tags to add or update.
1249
+
If a tag's value is empty, the server interprets that as a deletion.
1250
+
type: object
1232
1251
required:
1233
1252
- display_name
1234
1253
- config_yaml
@@ -3324,6 +3343,11 @@ paths:
3324
3343
name: filter.name_contains
3325
3344
schema:
3326
3345
type: string
3346
+
- description: This is a request variable of the map type. The query format is "map_name[key]=value", e.g. If the map name is Age, the key type is string, and the value type is integer, the query parameter is expressed as Age["bob"]=18
3347
+
in: query
3348
+
name: filter.tags[string]
3349
+
schema:
3350
+
type: string
3327
3351
- description: Limit the paginated response to a number of items. Defaults to 100. Use -1 to disable pagination.
3328
3352
in: query
3329
3353
name: page_size
@@ -3572,6 +3596,13 @@ paths:
3572
3596
required: true
3573
3597
schema:
3574
3598
type: string
3599
+
- description: |-
3600
+
Specifies which fields should be updated. If not provided,
0 commit comments