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
* @param {number} [size] Number of items in each page
120
120
* @param {string} [orderBy] Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement. Each query can be ordered by any of the kafkaRequests fields. For example, in order to retrieve all kafkas ordered by their name: ```sql name asc ``` Or in order to retrieve all kafkas ordered by their name _and_ created date: ```sql name asc, created_at asc ``` If the parameter isn\'t provided, or if the value is empty, then the results will be ordered by name.
121
-
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: cloud_provider, name, owner, region and status. Allowed comparators are `<>`, `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve kafka request with name equal `my-kafka` and region equal `aws`, the value should be: ``` name = my-kafka and cloud_provider = aws ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
121
+
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: name, status. Allowed comparators are `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve request with name equal `my-registry` the value should be: ``` name = my-registry ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
* @param {number} [size] Number of items in each page
244
244
* @param {string} [orderBy] Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement. Each query can be ordered by any of the kafkaRequests fields. For example, in order to retrieve all kafkas ordered by their name: ```sql name asc ``` Or in order to retrieve all kafkas ordered by their name _and_ created date: ```sql name asc, created_at asc ``` If the parameter isn\'t provided, or if the value is empty, then the results will be ordered by name.
245
-
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: cloud_provider, name, owner, region and status. Allowed comparators are `<>`, `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve kafka request with name equal `my-kafka` and region equal `aws`, the value should be: ``` name = my-kafka and cloud_provider = aws ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
245
+
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: name, status. Allowed comparators are `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve request with name equal `my-registry` the value should be: ``` name = my-registry ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
@@ -297,7 +297,7 @@ export const RegistriesApiFactory = function (configuration?: Configuration, bas
297
297
* @param {number} [page] Page index
298
298
* @param {number} [size] Number of items in each page
299
299
* @param {string} [orderBy] Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement. Each query can be ordered by any of the kafkaRequests fields. For example, in order to retrieve all kafkas ordered by their name: ```sql name asc ``` Or in order to retrieve all kafkas ordered by their name _and_ created date: ```sql name asc, created_at asc ``` If the parameter isn\'t provided, or if the value is empty, then the results will be ordered by name.
300
-
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: cloud_provider, name, owner, region and status. Allowed comparators are `<>`, `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve kafka request with name equal `my-kafka` and region equal `aws`, the value should be: ``` name = my-kafka and cloud_provider = aws ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
300
+
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: name, status. Allowed comparators are `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve request with name equal `my-registry` the value should be: ``` name = my-registry ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
* @param {number} [size] Number of items in each page
351
351
* @param {string} [orderBy] Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement. Each query can be ordered by any of the kafkaRequests fields. For example, in order to retrieve all kafkas ordered by their name: ```sql name asc ``` Or in order to retrieve all kafkas ordered by their name _and_ created date: ```sql name asc, created_at asc ``` If the parameter isn\'t provided, or if the value is empty, then the results will be ordered by name.
352
-
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: cloud_provider, name, owner, region and status. Allowed comparators are `<>`, `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve kafka request with name equal `my-kafka` and region equal `aws`, the value should be: ``` name = my-kafka and cloud_provider = aws ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
352
+
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: name, status. Allowed comparators are `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve request with name equal `my-registry` the value should be: ``` name = my-registry ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
* @param {number} [size] Number of items in each page
407
407
* @param {string} [orderBy] Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement. Each query can be ordered by any of the kafkaRequests fields. For example, in order to retrieve all kafkas ordered by their name: ```sql name asc ``` Or in order to retrieve all kafkas ordered by their name _and_ created date: ```sql name asc, created_at asc ``` If the parameter isn\'t provided, or if the value is empty, then the results will be ordered by name.
408
-
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: cloud_provider, name, owner, region and status. Allowed comparators are `<>`, `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve kafka request with name equal `my-kafka` and region equal `aws`, the value should be: ``` name = my-kafka and cloud_provider = aws ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
408
+
* @param {string} [search] Search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement. Allowed fields in the search are: name, status. Allowed comparators are `=` or `LIKE`. Allowed joins are `AND` and `OR`, however there is a limit of max 10 joins in the search query. Examples: To retrieve request with name equal `my-registry` the value should be: ``` name = my-registry ``` To retrieve kafka request with its name starting with `my`, the value should be: ``` name like my%25 ``` If the parameter isn\'t provided, or if the value is empty, then all the kafkas that the user has permission to see will be returned. Note. If the query is invalid, an error will be returned
0 commit comments