350 lines
12 KiB
Go
350 lines
12 KiB
Go
/*
|
|
Pulp 3 API
|
|
|
|
Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
|
API version: v3
|
|
Contact: pulp-list@redhat.com
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package pulpclient
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"reflect"
|
|
)
|
|
|
|
|
|
// DistributionsAPIService DistributionsAPI service
|
|
type DistributionsAPIService service
|
|
|
|
type DistributionsAPIDistributionsListRequest struct {
|
|
ctx context.Context
|
|
ApiService *DistributionsAPIService
|
|
basePath *string
|
|
basePathContains *string
|
|
basePathIcontains *string
|
|
basePathIn *[]string
|
|
limit *int32
|
|
name *string
|
|
nameContains *string
|
|
nameIcontains *string
|
|
nameIn *[]string
|
|
nameStartswith *string
|
|
offset *int32
|
|
ordering *[]string
|
|
pulpHrefIn *[]string
|
|
pulpIdIn *[]string
|
|
pulpLabelSelect *string
|
|
pulpTypeIn *[]string
|
|
repository *string
|
|
repositoryIn *[]string
|
|
withContent *string
|
|
fields *[]string
|
|
excludeFields *[]string
|
|
}
|
|
|
|
// Filter results where base_path matches value
|
|
func (r DistributionsAPIDistributionsListRequest) BasePath(basePath string) DistributionsAPIDistributionsListRequest {
|
|
r.basePath = &basePath
|
|
return r
|
|
}
|
|
|
|
// Filter results where base_path contains value
|
|
func (r DistributionsAPIDistributionsListRequest) BasePathContains(basePathContains string) DistributionsAPIDistributionsListRequest {
|
|
r.basePathContains = &basePathContains
|
|
return r
|
|
}
|
|
|
|
// Filter results where base_path contains value
|
|
func (r DistributionsAPIDistributionsListRequest) BasePathIcontains(basePathIcontains string) DistributionsAPIDistributionsListRequest {
|
|
r.basePathIcontains = &basePathIcontains
|
|
return r
|
|
}
|
|
|
|
// Filter results where base_path is in a comma-separated list of values
|
|
func (r DistributionsAPIDistributionsListRequest) BasePathIn(basePathIn []string) DistributionsAPIDistributionsListRequest {
|
|
r.basePathIn = &basePathIn
|
|
return r
|
|
}
|
|
|
|
// Number of results to return per page.
|
|
func (r DistributionsAPIDistributionsListRequest) Limit(limit int32) DistributionsAPIDistributionsListRequest {
|
|
r.limit = &limit
|
|
return r
|
|
}
|
|
|
|
// Filter results where name matches value
|
|
func (r DistributionsAPIDistributionsListRequest) Name(name string) DistributionsAPIDistributionsListRequest {
|
|
r.name = &name
|
|
return r
|
|
}
|
|
|
|
// Filter results where name contains value
|
|
func (r DistributionsAPIDistributionsListRequest) NameContains(nameContains string) DistributionsAPIDistributionsListRequest {
|
|
r.nameContains = &nameContains
|
|
return r
|
|
}
|
|
|
|
// Filter results where name contains value
|
|
func (r DistributionsAPIDistributionsListRequest) NameIcontains(nameIcontains string) DistributionsAPIDistributionsListRequest {
|
|
r.nameIcontains = &nameIcontains
|
|
return r
|
|
}
|
|
|
|
// Filter results where name is in a comma-separated list of values
|
|
func (r DistributionsAPIDistributionsListRequest) NameIn(nameIn []string) DistributionsAPIDistributionsListRequest {
|
|
r.nameIn = &nameIn
|
|
return r
|
|
}
|
|
|
|
// Filter results where name starts with value
|
|
func (r DistributionsAPIDistributionsListRequest) NameStartswith(nameStartswith string) DistributionsAPIDistributionsListRequest {
|
|
r.nameStartswith = &nameStartswith
|
|
return r
|
|
}
|
|
|
|
// The initial index from which to return the results.
|
|
func (r DistributionsAPIDistributionsListRequest) Offset(offset int32) DistributionsAPIDistributionsListRequest {
|
|
r.offset = &offset
|
|
return r
|
|
}
|
|
|
|
// Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
func (r DistributionsAPIDistributionsListRequest) Ordering(ordering []string) DistributionsAPIDistributionsListRequest {
|
|
r.ordering = &ordering
|
|
return r
|
|
}
|
|
|
|
// Multiple values may be separated by commas.
|
|
func (r DistributionsAPIDistributionsListRequest) PulpHrefIn(pulpHrefIn []string) DistributionsAPIDistributionsListRequest {
|
|
r.pulpHrefIn = &pulpHrefIn
|
|
return r
|
|
}
|
|
|
|
// Multiple values may be separated by commas.
|
|
func (r DistributionsAPIDistributionsListRequest) PulpIdIn(pulpIdIn []string) DistributionsAPIDistributionsListRequest {
|
|
r.pulpIdIn = &pulpIdIn
|
|
return r
|
|
}
|
|
|
|
// Filter labels by search string
|
|
func (r DistributionsAPIDistributionsListRequest) PulpLabelSelect(pulpLabelSelect string) DistributionsAPIDistributionsListRequest {
|
|
r.pulpLabelSelect = &pulpLabelSelect
|
|
return r
|
|
}
|
|
|
|
// Pulp type is in * `core.artifact` - core.artifact * `ansible.ansible` - ansible.ansible * `container.container` - container.container * `deb.apt-distribution` - deb.apt-distribution * `file.file` - file.file * `gem.gem` - gem.gem * `maven.maven` - maven.maven * `ostree.ostree` - ostree.ostree * `python.python` - python.python * `rpm.rpm` - rpm.rpm
|
|
func (r DistributionsAPIDistributionsListRequest) PulpTypeIn(pulpTypeIn []string) DistributionsAPIDistributionsListRequest {
|
|
r.pulpTypeIn = &pulpTypeIn
|
|
return r
|
|
}
|
|
|
|
// Filter results where repository matches value
|
|
func (r DistributionsAPIDistributionsListRequest) Repository(repository string) DistributionsAPIDistributionsListRequest {
|
|
r.repository = &repository
|
|
return r
|
|
}
|
|
|
|
// Filter results where repository is in a comma-separated list of values
|
|
func (r DistributionsAPIDistributionsListRequest) RepositoryIn(repositoryIn []string) DistributionsAPIDistributionsListRequest {
|
|
r.repositoryIn = &repositoryIn
|
|
return r
|
|
}
|
|
|
|
// Filter distributions based on the content served by them
|
|
func (r DistributionsAPIDistributionsListRequest) WithContent(withContent string) DistributionsAPIDistributionsListRequest {
|
|
r.withContent = &withContent
|
|
return r
|
|
}
|
|
|
|
// A list of fields to include in the response.
|
|
func (r DistributionsAPIDistributionsListRequest) Fields(fields []string) DistributionsAPIDistributionsListRequest {
|
|
r.fields = &fields
|
|
return r
|
|
}
|
|
|
|
// A list of fields to exclude from the response.
|
|
func (r DistributionsAPIDistributionsListRequest) ExcludeFields(excludeFields []string) DistributionsAPIDistributionsListRequest {
|
|
r.excludeFields = &excludeFields
|
|
return r
|
|
}
|
|
|
|
func (r DistributionsAPIDistributionsListRequest) Execute() (*PaginatedDistributionResponseList, *http.Response, error) {
|
|
return r.ApiService.DistributionsListExecute(r)
|
|
}
|
|
|
|
/*
|
|
DistributionsList List distributions
|
|
|
|
Provides base viewset for Distributions.
|
|
|
|
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
|
|
@return DistributionsAPIDistributionsListRequest
|
|
*/
|
|
func (a *DistributionsAPIService) DistributionsList(ctx context.Context) DistributionsAPIDistributionsListRequest {
|
|
return DistributionsAPIDistributionsListRequest{
|
|
ApiService: a,
|
|
ctx: ctx,
|
|
}
|
|
}
|
|
|
|
// Execute executes the request
|
|
// @return PaginatedDistributionResponseList
|
|
func (a *DistributionsAPIService) DistributionsListExecute(r DistributionsAPIDistributionsListRequest) (*PaginatedDistributionResponseList, *http.Response, error) {
|
|
var (
|
|
localVarHTTPMethod = http.MethodGet
|
|
localVarPostBody interface{}
|
|
formFiles []formFile
|
|
localVarReturnValue *PaginatedDistributionResponseList
|
|
)
|
|
|
|
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DistributionsAPIService.DistributionsList")
|
|
if err != nil {
|
|
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
|
|
}
|
|
|
|
localVarPath := localBasePath + "/pulp/api/v3/distributions/"
|
|
|
|
localVarHeaderParams := make(map[string]string)
|
|
localVarQueryParams := url.Values{}
|
|
localVarFormParams := url.Values{}
|
|
|
|
if r.basePath != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "base_path", r.basePath, "")
|
|
}
|
|
if r.basePathContains != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "base_path__contains", r.basePathContains, "")
|
|
}
|
|
if r.basePathIcontains != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "base_path__icontains", r.basePathIcontains, "")
|
|
}
|
|
if r.basePathIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "base_path__in", r.basePathIn, "csv")
|
|
}
|
|
if r.limit != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "limit", r.limit, "")
|
|
}
|
|
if r.name != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "name", r.name, "")
|
|
}
|
|
if r.nameContains != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "name__contains", r.nameContains, "")
|
|
}
|
|
if r.nameIcontains != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "name__icontains", r.nameIcontains, "")
|
|
}
|
|
if r.nameIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "name__in", r.nameIn, "csv")
|
|
}
|
|
if r.nameStartswith != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "name__startswith", r.nameStartswith, "")
|
|
}
|
|
if r.offset != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "offset", r.offset, "")
|
|
}
|
|
if r.ordering != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "ordering", r.ordering, "csv")
|
|
}
|
|
if r.pulpHrefIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "pulp_href__in", r.pulpHrefIn, "csv")
|
|
}
|
|
if r.pulpIdIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "pulp_id__in", r.pulpIdIn, "csv")
|
|
}
|
|
if r.pulpLabelSelect != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "pulp_label_select", r.pulpLabelSelect, "")
|
|
}
|
|
if r.pulpTypeIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "pulp_type__in", r.pulpTypeIn, "csv")
|
|
}
|
|
if r.repository != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "repository", r.repository, "")
|
|
}
|
|
if r.repositoryIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "repository__in", r.repositoryIn, "csv")
|
|
}
|
|
if r.withContent != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "with_content", r.withContent, "")
|
|
}
|
|
if r.fields != nil {
|
|
t := *r.fields
|
|
if reflect.TypeOf(t).Kind() == reflect.Slice {
|
|
s := reflect.ValueOf(t)
|
|
for i := 0; i < s.Len(); i++ {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "fields", s.Index(i), "multi")
|
|
}
|
|
} else {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "fields", t, "multi")
|
|
}
|
|
}
|
|
if r.excludeFields != nil {
|
|
t := *r.excludeFields
|
|
if reflect.TypeOf(t).Kind() == reflect.Slice {
|
|
s := reflect.ValueOf(t)
|
|
for i := 0; i < s.Len(); i++ {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "exclude_fields", s.Index(i), "multi")
|
|
}
|
|
} else {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "exclude_fields", t, "multi")
|
|
}
|
|
}
|
|
// to determine the Content-Type header
|
|
localVarHTTPContentTypes := []string{}
|
|
|
|
// set Content-Type header
|
|
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
|
|
if localVarHTTPContentType != "" {
|
|
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
|
|
}
|
|
|
|
// to determine the Accept header
|
|
localVarHTTPHeaderAccepts := []string{"application/json"}
|
|
|
|
// set Accept header
|
|
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
|
|
if localVarHTTPHeaderAccept != "" {
|
|
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
|
|
}
|
|
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
|
|
if err != nil {
|
|
return localVarReturnValue, nil, err
|
|
}
|
|
|
|
localVarHTTPResponse, err := a.client.callAPI(req)
|
|
if err != nil || localVarHTTPResponse == nil {
|
|
return localVarReturnValue, localVarHTTPResponse, err
|
|
}
|
|
|
|
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
|
|
localVarHTTPResponse.Body.Close()
|
|
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
|
|
if err != nil {
|
|
return localVarReturnValue, localVarHTTPResponse, err
|
|
}
|
|
|
|
if localVarHTTPResponse.StatusCode >= 300 {
|
|
newErr := &GenericOpenAPIError{
|
|
body: localVarBody,
|
|
error: localVarHTTPResponse.Status,
|
|
}
|
|
return localVarReturnValue, localVarHTTPResponse, newErr
|
|
}
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
|
|
if err != nil {
|
|
newErr := &GenericOpenAPIError{
|
|
body: localVarBody,
|
|
error: err.Error(),
|
|
}
|
|
return localVarReturnValue, localVarHTTPResponse, newErr
|
|
}
|
|
|
|
return localVarReturnValue, localVarHTTPResponse, nil
|
|
}
|