270 lines
9.1 KiB
Go
270 lines
9.1 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"
|
|
)
|
|
|
|
|
|
// ContentguardsAPIService ContentguardsAPI service
|
|
type ContentguardsAPIService service
|
|
|
|
type ContentguardsAPIContentguardsListRequest struct {
|
|
ctx context.Context
|
|
ApiService *ContentguardsAPIService
|
|
limit *int32
|
|
name *string
|
|
nameContains *string
|
|
nameIcontains *string
|
|
nameIn *[]string
|
|
nameStartswith *string
|
|
offset *int32
|
|
ordering *[]string
|
|
pulpHrefIn *[]string
|
|
pulpIdIn *[]string
|
|
pulpTypeIn *[]string
|
|
fields *[]string
|
|
excludeFields *[]string
|
|
}
|
|
|
|
// Number of results to return per page.
|
|
func (r ContentguardsAPIContentguardsListRequest) Limit(limit int32) ContentguardsAPIContentguardsListRequest {
|
|
r.limit = &limit
|
|
return r
|
|
}
|
|
|
|
// Filter results where name matches value
|
|
func (r ContentguardsAPIContentguardsListRequest) Name(name string) ContentguardsAPIContentguardsListRequest {
|
|
r.name = &name
|
|
return r
|
|
}
|
|
|
|
// Filter results where name contains value
|
|
func (r ContentguardsAPIContentguardsListRequest) NameContains(nameContains string) ContentguardsAPIContentguardsListRequest {
|
|
r.nameContains = &nameContains
|
|
return r
|
|
}
|
|
|
|
// Filter results where name contains value
|
|
func (r ContentguardsAPIContentguardsListRequest) NameIcontains(nameIcontains string) ContentguardsAPIContentguardsListRequest {
|
|
r.nameIcontains = &nameIcontains
|
|
return r
|
|
}
|
|
|
|
// Filter results where name is in a comma-separated list of values
|
|
func (r ContentguardsAPIContentguardsListRequest) NameIn(nameIn []string) ContentguardsAPIContentguardsListRequest {
|
|
r.nameIn = &nameIn
|
|
return r
|
|
}
|
|
|
|
// Filter results where name starts with value
|
|
func (r ContentguardsAPIContentguardsListRequest) NameStartswith(nameStartswith string) ContentguardsAPIContentguardsListRequest {
|
|
r.nameStartswith = &nameStartswith
|
|
return r
|
|
}
|
|
|
|
// The initial index from which to return the results.
|
|
func (r ContentguardsAPIContentguardsListRequest) Offset(offset int32) ContentguardsAPIContentguardsListRequest {
|
|
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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
func (r ContentguardsAPIContentguardsListRequest) Ordering(ordering []string) ContentguardsAPIContentguardsListRequest {
|
|
r.ordering = &ordering
|
|
return r
|
|
}
|
|
|
|
// Multiple values may be separated by commas.
|
|
func (r ContentguardsAPIContentguardsListRequest) PulpHrefIn(pulpHrefIn []string) ContentguardsAPIContentguardsListRequest {
|
|
r.pulpHrefIn = &pulpHrefIn
|
|
return r
|
|
}
|
|
|
|
// Multiple values may be separated by commas.
|
|
func (r ContentguardsAPIContentguardsListRequest) PulpIdIn(pulpIdIn []string) ContentguardsAPIContentguardsListRequest {
|
|
r.pulpIdIn = &pulpIdIn
|
|
return r
|
|
}
|
|
|
|
// Pulp type is in * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509
|
|
func (r ContentguardsAPIContentguardsListRequest) PulpTypeIn(pulpTypeIn []string) ContentguardsAPIContentguardsListRequest {
|
|
r.pulpTypeIn = &pulpTypeIn
|
|
return r
|
|
}
|
|
|
|
// A list of fields to include in the response.
|
|
func (r ContentguardsAPIContentguardsListRequest) Fields(fields []string) ContentguardsAPIContentguardsListRequest {
|
|
r.fields = &fields
|
|
return r
|
|
}
|
|
|
|
// A list of fields to exclude from the response.
|
|
func (r ContentguardsAPIContentguardsListRequest) ExcludeFields(excludeFields []string) ContentguardsAPIContentguardsListRequest {
|
|
r.excludeFields = &excludeFields
|
|
return r
|
|
}
|
|
|
|
func (r ContentguardsAPIContentguardsListRequest) Execute() (*PaginatedContentGuardResponseList, *http.Response, error) {
|
|
return r.ApiService.ContentguardsListExecute(r)
|
|
}
|
|
|
|
/*
|
|
ContentguardsList List content guards
|
|
|
|
Endpoint to list all contentguards.
|
|
|
|
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
|
|
@return ContentguardsAPIContentguardsListRequest
|
|
*/
|
|
func (a *ContentguardsAPIService) ContentguardsList(ctx context.Context) ContentguardsAPIContentguardsListRequest {
|
|
return ContentguardsAPIContentguardsListRequest{
|
|
ApiService: a,
|
|
ctx: ctx,
|
|
}
|
|
}
|
|
|
|
// Execute executes the request
|
|
// @return PaginatedContentGuardResponseList
|
|
func (a *ContentguardsAPIService) ContentguardsListExecute(r ContentguardsAPIContentguardsListRequest) (*PaginatedContentGuardResponseList, *http.Response, error) {
|
|
var (
|
|
localVarHTTPMethod = http.MethodGet
|
|
localVarPostBody interface{}
|
|
formFiles []formFile
|
|
localVarReturnValue *PaginatedContentGuardResponseList
|
|
)
|
|
|
|
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "ContentguardsAPIService.ContentguardsList")
|
|
if err != nil {
|
|
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
|
|
}
|
|
|
|
localVarPath := localBasePath + "/pulp/api/v3/contentguards/"
|
|
|
|
localVarHeaderParams := make(map[string]string)
|
|
localVarQueryParams := url.Values{}
|
|
localVarFormParams := url.Values{}
|
|
|
|
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.pulpTypeIn != nil {
|
|
parameterAddToHeaderOrQuery(localVarQueryParams, "pulp_type__in", r.pulpTypeIn, "csv")
|
|
}
|
|
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
|
|
}
|