@@ -76,21 +76,18 @@ message Connection {
76
76
message ListNamespaceConnectionsRequest {
77
77
// Namespace ID.
78
78
string namespace_id = 1 [(google.api.field_behavior ) = REQUIRED ];
79
- // The maximum number of items to return. The default and cap values are 10
80
- // and 100, respectively.
79
+ // The maximum number of items to return. The default and cap values are 10 and 100, respectively.
81
80
optional int32 page_size = 2 [(google.api.field_behavior ) = OPTIONAL ];
82
81
// Page token. By default, the first page will be returned.
83
82
optional string page_token = 3 [(google.api.field_behavior ) = OPTIONAL ];
84
- // Filter can hold an [AIP-160](https://google.aip.dev/160)-compliant filter
85
- // expression.
83
+ // Filter can hold an [AIP-160](https://google.aip.dev/160)-compliant filter expression.
86
84
// The following filters are supported:
87
85
// - `integrationId`
88
86
// - `qConnection` (fuzzy search on connection ID, integration title or vendor)
89
- // Examples:
90
- // - List connections where app name, vendor or connection ID match `googl`:
91
- // `q="googl"`.
92
- // - List connections where the component type is `openai` (e.g. to setup a
93
- // connector within a pipeline): `integration_id="openai"`.
87
+ //
88
+ // **Examples**:
89
+ // - List connections where app name, vendor or connection ID match `googl`: `q="googl"`.
90
+ // - List connections where the component type is `openai` (e.g. to setup a connector within a pipeline): `integrationId="openai"`.
94
91
optional string filter = 4 [(google.api.field_behavior ) = OPTIONAL ];
95
92
}
96
93
@@ -271,13 +268,11 @@ message ListPipelineIDsByConnectionIDRequest {
271
268
string namespace_id = 1 [(google.api.field_behavior ) = REQUIRED ];
272
269
// Connection ID.
273
270
string connection_id = 2 [(google.api.field_behavior ) = REQUIRED ];
274
- // The maximum number of items to return. The default and cap values are 10
275
- // and 100, respectively.
271
+ // The maximum number of items to return. The default and cap values are 10 and 100, respectively.
276
272
optional int32 page_size = 3 [(google.api.field_behavior ) = OPTIONAL ];
277
273
// Page token. By default, the first page will be returned.
278
274
optional string page_token = 4 [(google.api.field_behavior ) = OPTIONAL ];
279
- // Filter can hold an [AIP-160](https://google.aip.dev/160)-compliant filter
280
- // expression.
275
+ // Filter can hold an [AIP-160](https://google.aip.dev/160)-compliant filter expression.
281
276
// The following filters are supported:
282
277
// - `q` (fuzzy search on pipeline ID)
283
278
optional string filter = 5 [(google.api.field_behavior ) = OPTIONAL ];
@@ -296,16 +291,15 @@ message ListPipelineIDsByConnectionIDResponse {
296
291
// ListIntegrationsRequest represents a request to list the available
297
292
// integrations.
298
293
message ListIntegrationsRequest {
299
- // The maximum number of items to return. The default and cap values are 10
300
- // and 100, respectively.
294
+ // The maximum number of items to return. The default and cap values are 10 and 100, respectively.
301
295
optional int32 page_size = 1 [(google.api.field_behavior ) = OPTIONAL ];
302
296
// Page token. By default, the first page will be returned.
303
297
optional string page_token = 2 [(google.api.field_behavior ) = OPTIONAL ];
304
- // Filter can hold an [AIP-160](https://google.aip.dev/160)-compliant filter
305
- // expression.
298
+ // Filter can hold an [AIP-160](https://google.aip.dev/160)-compliant filter expression.
306
299
// The following filters are supported:
307
300
// - `qIntegration` (fuzzy search on title or vendor)
308
- // Examples:
301
+ //
302
+ // **Examples**:
309
303
// - List integrations where app name or vendor match `googl`: `q="googl"`.
310
304
optional string filter = 3 [(google.api.field_behavior ) = OPTIONAL ];
311
305
}
0 commit comments