Class VersionsRequestBuilder.PostQueryParameters
java.lang.Object
io.apicurio.registry.rest.client.search.versions.VersionsRequestBuilder.PostQueryParameters
- All Implemented Interfaces:
com.microsoft.kiota.QueryParameters
- Enclosing class:
VersionsRequestBuilder
@Generated("com.microsoft.kiota")
public class VersionsRequestBuilder.PostQueryParameters
extends Object
implements com.microsoft.kiota.QueryParameters
Returns a paginated list of all versions that match the posted content.This operation can fail for the following reasons:* Provided content (request body) was empty (HTTP error `400`)* A server error occurred (HTTP error `500`)
-
Field Summary
FieldsModifier and TypeFieldDescriptionFilter by artifact Id.Indicates the type of artifact represented by the content being used for the search.Parameter that can be set to `true` to indicate that the server should "canonicalize" the content when searching for matching artifacts.Filter by group Id.The number of versions to return.The number of versions to skip before starting to collect the result set.Sort order, ascending (`asc`) or descending (`desc`).The field to sort by. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionExtracts the query parameters into a map for the URI template parsing.
-
Field Details
-
artifactId
Filter by artifact Id. -
artifactType
Indicates the type of artifact represented by the content being used for the search. This is only needed when using the `canonical` query parameter, so that the server knows how to canonicalize the content prior to searching for matching versions. -
canonical
Parameter that can be set to `true` to indicate that the server should "canonicalize" the content when searching for matching artifacts. Canonicalization is unique to each artifact type, but typically involves removing any extra whitespace and formatting the content in a consistent manner. Must be used along with the `artifactType` query parameter. -
groupId
Filter by group Id. -
limit
The number of versions to return. Defaults to 20. -
offset
The number of versions to skip before starting to collect the result set. Defaults to 0. -
order
Sort order, ascending (`asc`) or descending (`desc`). -
orderby
The field to sort by. Can be one of:* `name`* `createdOn`
-
-
Constructor Details
-
PostQueryParameters
public PostQueryParameters()
-
-
Method Details