extension_repository

package
v1.19.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 10, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for extension repository API

func (*Client) GetExtensionRepoArtifacts

func (a *Client) GetExtensionRepoArtifacts(params *GetExtensionRepoArtifactsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoArtifactsOK, error)
GetExtensionRepoArtifacts gets extension repo artifacts

Gets the artifacts in the extension repository in the given bucket and group.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoBuckets

func (a *Client) GetExtensionRepoBuckets(params *GetExtensionRepoBucketsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoBucketsOK, error)
GetExtensionRepoBuckets gets extension repo buckets

Gets the names of the buckets the current user is authorized for in order to browse the repo by bucket.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoGroups

func (a *Client) GetExtensionRepoGroups(params *GetExtensionRepoGroupsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoGroupsOK, error)
GetExtensionRepoGroups gets extension repo groups

Gets the groups in the extension repository in the given bucket.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersion

func (a *Client) GetExtensionRepoVersion(params *GetExtensionRepoVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionOK, error)
GetExtensionRepoVersion gets extension repo version

Gets information about the version in the given bucket, group, and artifact.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersionContent

func (a *Client) GetExtensionRepoVersionContent(params *GetExtensionRepoVersionContentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionContentOK, error)
GetExtensionRepoVersionContent gets extension repo version content

Gets the binary content of the bundle with the given bucket, group, artifact, and version.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersionExtension

func (a *Client) GetExtensionRepoVersionExtension(params *GetExtensionRepoVersionExtensionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionOK, error)
GetExtensionRepoVersionExtension gets extension repo extension

Gets information about the extension with the given name in the given bucket, group, artifact, and version.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersionExtensionAdditionalDetailsDocs

GetExtensionRepoVersionExtensionAdditionalDetailsDocs gets extension repo extension details

Gets the additional details documentation for the extension with the given name in the given bucket, group, artifact, and version.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersionExtensionDocs

func (a *Client) GetExtensionRepoVersionExtensionDocs(params *GetExtensionRepoVersionExtensionDocsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionDocsOK, error)
GetExtensionRepoVersionExtensionDocs gets extension repo extension docs

Gets the documentation for the extension with the given name in the given bucket, group, artifact, and version.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersionExtensions

func (a *Client) GetExtensionRepoVersionExtensions(params *GetExtensionRepoVersionExtensionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionsOK, error)
GetExtensionRepoVersionExtensions gets extension repo extensions

Gets information about the extensions in the given bucket, group, artifact, and version.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersionSha256

func (a *Client) GetExtensionRepoVersionSha256(params *GetExtensionRepoVersionSha256Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionSha256OK, error)
GetExtensionRepoVersionSha256 gets extension repo version checksum

Gets the hex representation of the SHA-256 digest for the binary content of the bundle with the given bucket, group, artifact, and version.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetExtensionRepoVersions

func (a *Client) GetExtensionRepoVersions(params *GetExtensionRepoVersionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionsOK, error)
GetExtensionRepoVersions gets extension repo versions

Gets the versions in the extension repository for the given bucket, group, and artifact.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) GetGlobalExtensionRepoVersionSha256

func (a *Client) GetGlobalExtensionRepoVersionSha256(params *GetGlobalExtensionRepoVersionSha256Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetGlobalExtensionRepoVersionSha256OK, error)
GetGlobalExtensionRepoVersionSha256 gets global extension repo version checksum

Gets the hex representation of the SHA-256 digest for the binary content with the given bucket, group, artifact, and version. Since the same group-artifact-version can exist in multiple buckets, this will return the checksum of the first one returned. This will be consistent since the checksum must be the same when existing in multiple buckets.

NOTE: This endpoint is subject to change as NiFi Registry and its REST API evolve.

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	GetExtensionRepoArtifacts(params *GetExtensionRepoArtifactsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoArtifactsOK, error)

	GetExtensionRepoBuckets(params *GetExtensionRepoBucketsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoBucketsOK, error)

	GetExtensionRepoGroups(params *GetExtensionRepoGroupsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoGroupsOK, error)

	GetExtensionRepoVersion(params *GetExtensionRepoVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionOK, error)

	GetExtensionRepoVersionContent(params *GetExtensionRepoVersionContentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionContentOK, error)

	GetExtensionRepoVersionExtension(params *GetExtensionRepoVersionExtensionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionOK, error)

	GetExtensionRepoVersionExtensionAdditionalDetailsDocs(params *GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK, error)

	GetExtensionRepoVersionExtensionDocs(params *GetExtensionRepoVersionExtensionDocsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionDocsOK, error)

	GetExtensionRepoVersionExtensions(params *GetExtensionRepoVersionExtensionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionExtensionsOK, error)

	GetExtensionRepoVersionSha256(params *GetExtensionRepoVersionSha256Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionSha256OK, error)

	GetExtensionRepoVersions(params *GetExtensionRepoVersionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetExtensionRepoVersionsOK, error)

	GetGlobalExtensionRepoVersionSha256(params *GetGlobalExtensionRepoVersionSha256Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetGlobalExtensionRepoVersionSha256OK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new extension repository API client.

type GetExtensionRepoArtifactsBadRequest

type GetExtensionRepoArtifactsBadRequest struct {
}

GetExtensionRepoArtifactsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoArtifactsBadRequest

func NewGetExtensionRepoArtifactsBadRequest() *GetExtensionRepoArtifactsBadRequest

NewGetExtensionRepoArtifactsBadRequest creates a GetExtensionRepoArtifactsBadRequest with default headers values

func (*GetExtensionRepoArtifactsBadRequest) Error

func (*GetExtensionRepoArtifactsBadRequest) IsClientError added in v1.19.1

func (o *GetExtensionRepoArtifactsBadRequest) IsClientError() bool

IsClientError returns true when this get extension repo artifacts bad request response has a 4xx status code

func (*GetExtensionRepoArtifactsBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo artifacts bad request response a status code equal to that given

func (*GetExtensionRepoArtifactsBadRequest) IsRedirect added in v1.19.1

func (o *GetExtensionRepoArtifactsBadRequest) IsRedirect() bool

IsRedirect returns true when this get extension repo artifacts bad request response has a 3xx status code

func (*GetExtensionRepoArtifactsBadRequest) IsServerError added in v1.19.1

func (o *GetExtensionRepoArtifactsBadRequest) IsServerError() bool

IsServerError returns true when this get extension repo artifacts bad request response has a 5xx status code

func (*GetExtensionRepoArtifactsBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo artifacts bad request response has a 2xx status code

func (*GetExtensionRepoArtifactsBadRequest) String added in v1.19.1

type GetExtensionRepoArtifactsConflict

type GetExtensionRepoArtifactsConflict struct {
}

GetExtensionRepoArtifactsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoArtifactsConflict

func NewGetExtensionRepoArtifactsConflict() *GetExtensionRepoArtifactsConflict

NewGetExtensionRepoArtifactsConflict creates a GetExtensionRepoArtifactsConflict with default headers values

func (*GetExtensionRepoArtifactsConflict) Error

func (*GetExtensionRepoArtifactsConflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoArtifactsConflict) IsClientError() bool

IsClientError returns true when this get extension repo artifacts conflict response has a 4xx status code

func (*GetExtensionRepoArtifactsConflict) IsCode added in v1.19.1

func (o *GetExtensionRepoArtifactsConflict) IsCode(code int) bool

IsCode returns true when this get extension repo artifacts conflict response a status code equal to that given

func (*GetExtensionRepoArtifactsConflict) IsRedirect added in v1.19.1

func (o *GetExtensionRepoArtifactsConflict) IsRedirect() bool

IsRedirect returns true when this get extension repo artifacts conflict response has a 3xx status code

func (*GetExtensionRepoArtifactsConflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoArtifactsConflict) IsServerError() bool

IsServerError returns true when this get extension repo artifacts conflict response has a 5xx status code

func (*GetExtensionRepoArtifactsConflict) IsSuccess added in v1.19.1

func (o *GetExtensionRepoArtifactsConflict) IsSuccess() bool

IsSuccess returns true when this get extension repo artifacts conflict response has a 2xx status code

func (*GetExtensionRepoArtifactsConflict) String added in v1.19.1

type GetExtensionRepoArtifactsForbidden

type GetExtensionRepoArtifactsForbidden struct {
}

GetExtensionRepoArtifactsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoArtifactsForbidden

func NewGetExtensionRepoArtifactsForbidden() *GetExtensionRepoArtifactsForbidden

NewGetExtensionRepoArtifactsForbidden creates a GetExtensionRepoArtifactsForbidden with default headers values

func (*GetExtensionRepoArtifactsForbidden) Error

func (*GetExtensionRepoArtifactsForbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoArtifactsForbidden) IsClientError() bool

IsClientError returns true when this get extension repo artifacts forbidden response has a 4xx status code

func (*GetExtensionRepoArtifactsForbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo artifacts forbidden response a status code equal to that given

func (*GetExtensionRepoArtifactsForbidden) IsRedirect added in v1.19.1

func (o *GetExtensionRepoArtifactsForbidden) IsRedirect() bool

IsRedirect returns true when this get extension repo artifacts forbidden response has a 3xx status code

func (*GetExtensionRepoArtifactsForbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoArtifactsForbidden) IsServerError() bool

IsServerError returns true when this get extension repo artifacts forbidden response has a 5xx status code

func (*GetExtensionRepoArtifactsForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo artifacts forbidden response has a 2xx status code

func (*GetExtensionRepoArtifactsForbidden) String added in v1.19.1

type GetExtensionRepoArtifactsNotFound

type GetExtensionRepoArtifactsNotFound struct {
}

GetExtensionRepoArtifactsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoArtifactsNotFound

func NewGetExtensionRepoArtifactsNotFound() *GetExtensionRepoArtifactsNotFound

NewGetExtensionRepoArtifactsNotFound creates a GetExtensionRepoArtifactsNotFound with default headers values

func (*GetExtensionRepoArtifactsNotFound) Error

func (*GetExtensionRepoArtifactsNotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoArtifactsNotFound) IsClientError() bool

IsClientError returns true when this get extension repo artifacts not found response has a 4xx status code

func (*GetExtensionRepoArtifactsNotFound) IsCode added in v1.19.1

func (o *GetExtensionRepoArtifactsNotFound) IsCode(code int) bool

IsCode returns true when this get extension repo artifacts not found response a status code equal to that given

func (*GetExtensionRepoArtifactsNotFound) IsRedirect added in v1.19.1

func (o *GetExtensionRepoArtifactsNotFound) IsRedirect() bool

IsRedirect returns true when this get extension repo artifacts not found response has a 3xx status code

func (*GetExtensionRepoArtifactsNotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoArtifactsNotFound) IsServerError() bool

IsServerError returns true when this get extension repo artifacts not found response has a 5xx status code

func (*GetExtensionRepoArtifactsNotFound) IsSuccess added in v1.19.1

func (o *GetExtensionRepoArtifactsNotFound) IsSuccess() bool

IsSuccess returns true when this get extension repo artifacts not found response has a 2xx status code

func (*GetExtensionRepoArtifactsNotFound) String added in v1.19.1

type GetExtensionRepoArtifactsOK

type GetExtensionRepoArtifactsOK struct {
	Payload []*models.ExtensionRepoArtifact
}

GetExtensionRepoArtifactsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoArtifactsOK

func NewGetExtensionRepoArtifactsOK() *GetExtensionRepoArtifactsOK

NewGetExtensionRepoArtifactsOK creates a GetExtensionRepoArtifactsOK with default headers values

func (*GetExtensionRepoArtifactsOK) Error

func (*GetExtensionRepoArtifactsOK) GetPayload

func (*GetExtensionRepoArtifactsOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoArtifactsOK) IsClientError() bool

IsClientError returns true when this get extension repo artifacts o k response has a 4xx status code

func (*GetExtensionRepoArtifactsOK) IsCode added in v1.19.1

func (o *GetExtensionRepoArtifactsOK) IsCode(code int) bool

IsCode returns true when this get extension repo artifacts o k response a status code equal to that given

func (*GetExtensionRepoArtifactsOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoArtifactsOK) IsRedirect() bool

IsRedirect returns true when this get extension repo artifacts o k response has a 3xx status code

func (*GetExtensionRepoArtifactsOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoArtifactsOK) IsServerError() bool

IsServerError returns true when this get extension repo artifacts o k response has a 5xx status code

func (*GetExtensionRepoArtifactsOK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoArtifactsOK) IsSuccess() bool

IsSuccess returns true when this get extension repo artifacts o k response has a 2xx status code

func (*GetExtensionRepoArtifactsOK) String added in v1.19.1

func (o *GetExtensionRepoArtifactsOK) String() string

type GetExtensionRepoArtifactsParams

type GetExtensionRepoArtifactsParams struct {

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group id
	*/
	GroupID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoArtifactsParams contains all the parameters to send to the API endpoint

for the get extension repo artifacts operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoArtifactsParams

func NewGetExtensionRepoArtifactsParams() *GetExtensionRepoArtifactsParams

NewGetExtensionRepoArtifactsParams creates a new GetExtensionRepoArtifactsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoArtifactsParamsWithContext

func NewGetExtensionRepoArtifactsParamsWithContext(ctx context.Context) *GetExtensionRepoArtifactsParams

NewGetExtensionRepoArtifactsParamsWithContext creates a new GetExtensionRepoArtifactsParams object with the ability to set a context for a request.

func NewGetExtensionRepoArtifactsParamsWithHTTPClient

func NewGetExtensionRepoArtifactsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoArtifactsParams

NewGetExtensionRepoArtifactsParamsWithHTTPClient creates a new GetExtensionRepoArtifactsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoArtifactsParamsWithTimeout

func NewGetExtensionRepoArtifactsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoArtifactsParams

NewGetExtensionRepoArtifactsParamsWithTimeout creates a new GetExtensionRepoArtifactsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoArtifactsParams) SetBucketName

func (o *GetExtensionRepoArtifactsParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) SetContext

func (o *GetExtensionRepoArtifactsParams) SetContext(ctx context.Context)

SetContext adds the context to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) SetDefaults

func (o *GetExtensionRepoArtifactsParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo artifacts params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoArtifactsParams) SetGroupID

func (o *GetExtensionRepoArtifactsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) SetHTTPClient

func (o *GetExtensionRepoArtifactsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) SetTimeout

func (o *GetExtensionRepoArtifactsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) WithContext

WithContext adds the context to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo artifacts params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoArtifactsParams) WithGroupID

WithGroupID adds the groupID to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo artifacts params

func (*GetExtensionRepoArtifactsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoArtifactsReader

type GetExtensionRepoArtifactsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoArtifactsReader is a Reader for the GetExtensionRepoArtifacts structure.

func (*GetExtensionRepoArtifactsReader) ReadResponse

func (o *GetExtensionRepoArtifactsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoArtifactsUnauthorized

type GetExtensionRepoArtifactsUnauthorized struct {
}

GetExtensionRepoArtifactsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoArtifactsUnauthorized

func NewGetExtensionRepoArtifactsUnauthorized() *GetExtensionRepoArtifactsUnauthorized

NewGetExtensionRepoArtifactsUnauthorized creates a GetExtensionRepoArtifactsUnauthorized with default headers values

func (*GetExtensionRepoArtifactsUnauthorized) Error

func (*GetExtensionRepoArtifactsUnauthorized) IsClientError added in v1.19.1

func (o *GetExtensionRepoArtifactsUnauthorized) IsClientError() bool

IsClientError returns true when this get extension repo artifacts unauthorized response has a 4xx status code

func (*GetExtensionRepoArtifactsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo artifacts unauthorized response a status code equal to that given

func (*GetExtensionRepoArtifactsUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo artifacts unauthorized response has a 3xx status code

func (*GetExtensionRepoArtifactsUnauthorized) IsServerError added in v1.19.1

func (o *GetExtensionRepoArtifactsUnauthorized) IsServerError() bool

IsServerError returns true when this get extension repo artifacts unauthorized response has a 5xx status code

func (*GetExtensionRepoArtifactsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo artifacts unauthorized response has a 2xx status code

func (*GetExtensionRepoArtifactsUnauthorized) String added in v1.19.1

type GetExtensionRepoBucketsBadRequest

type GetExtensionRepoBucketsBadRequest struct {
}

GetExtensionRepoBucketsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoBucketsBadRequest

func NewGetExtensionRepoBucketsBadRequest() *GetExtensionRepoBucketsBadRequest

NewGetExtensionRepoBucketsBadRequest creates a GetExtensionRepoBucketsBadRequest with default headers values

func (*GetExtensionRepoBucketsBadRequest) Error

func (*GetExtensionRepoBucketsBadRequest) IsClientError added in v1.19.1

func (o *GetExtensionRepoBucketsBadRequest) IsClientError() bool

IsClientError returns true when this get extension repo buckets bad request response has a 4xx status code

func (*GetExtensionRepoBucketsBadRequest) IsCode added in v1.19.1

func (o *GetExtensionRepoBucketsBadRequest) IsCode(code int) bool

IsCode returns true when this get extension repo buckets bad request response a status code equal to that given

func (*GetExtensionRepoBucketsBadRequest) IsRedirect added in v1.19.1

func (o *GetExtensionRepoBucketsBadRequest) IsRedirect() bool

IsRedirect returns true when this get extension repo buckets bad request response has a 3xx status code

func (*GetExtensionRepoBucketsBadRequest) IsServerError added in v1.19.1

func (o *GetExtensionRepoBucketsBadRequest) IsServerError() bool

IsServerError returns true when this get extension repo buckets bad request response has a 5xx status code

func (*GetExtensionRepoBucketsBadRequest) IsSuccess added in v1.19.1

func (o *GetExtensionRepoBucketsBadRequest) IsSuccess() bool

IsSuccess returns true when this get extension repo buckets bad request response has a 2xx status code

func (*GetExtensionRepoBucketsBadRequest) String added in v1.19.1

type GetExtensionRepoBucketsConflict

type GetExtensionRepoBucketsConflict struct {
}

GetExtensionRepoBucketsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoBucketsConflict

func NewGetExtensionRepoBucketsConflict() *GetExtensionRepoBucketsConflict

NewGetExtensionRepoBucketsConflict creates a GetExtensionRepoBucketsConflict with default headers values

func (*GetExtensionRepoBucketsConflict) Error

func (*GetExtensionRepoBucketsConflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoBucketsConflict) IsClientError() bool

IsClientError returns true when this get extension repo buckets conflict response has a 4xx status code

func (*GetExtensionRepoBucketsConflict) IsCode added in v1.19.1

func (o *GetExtensionRepoBucketsConflict) IsCode(code int) bool

IsCode returns true when this get extension repo buckets conflict response a status code equal to that given

func (*GetExtensionRepoBucketsConflict) IsRedirect added in v1.19.1

func (o *GetExtensionRepoBucketsConflict) IsRedirect() bool

IsRedirect returns true when this get extension repo buckets conflict response has a 3xx status code

func (*GetExtensionRepoBucketsConflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoBucketsConflict) IsServerError() bool

IsServerError returns true when this get extension repo buckets conflict response has a 5xx status code

func (*GetExtensionRepoBucketsConflict) IsSuccess added in v1.19.1

func (o *GetExtensionRepoBucketsConflict) IsSuccess() bool

IsSuccess returns true when this get extension repo buckets conflict response has a 2xx status code

func (*GetExtensionRepoBucketsConflict) String added in v1.19.1

type GetExtensionRepoBucketsForbidden

type GetExtensionRepoBucketsForbidden struct {
}

GetExtensionRepoBucketsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoBucketsForbidden

func NewGetExtensionRepoBucketsForbidden() *GetExtensionRepoBucketsForbidden

NewGetExtensionRepoBucketsForbidden creates a GetExtensionRepoBucketsForbidden with default headers values

func (*GetExtensionRepoBucketsForbidden) Error

func (*GetExtensionRepoBucketsForbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoBucketsForbidden) IsClientError() bool

IsClientError returns true when this get extension repo buckets forbidden response has a 4xx status code

func (*GetExtensionRepoBucketsForbidden) IsCode added in v1.19.1

func (o *GetExtensionRepoBucketsForbidden) IsCode(code int) bool

IsCode returns true when this get extension repo buckets forbidden response a status code equal to that given

func (*GetExtensionRepoBucketsForbidden) IsRedirect added in v1.19.1

func (o *GetExtensionRepoBucketsForbidden) IsRedirect() bool

IsRedirect returns true when this get extension repo buckets forbidden response has a 3xx status code

func (*GetExtensionRepoBucketsForbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoBucketsForbidden) IsServerError() bool

IsServerError returns true when this get extension repo buckets forbidden response has a 5xx status code

func (*GetExtensionRepoBucketsForbidden) IsSuccess added in v1.19.1

func (o *GetExtensionRepoBucketsForbidden) IsSuccess() bool

IsSuccess returns true when this get extension repo buckets forbidden response has a 2xx status code

func (*GetExtensionRepoBucketsForbidden) String added in v1.19.1

type GetExtensionRepoBucketsNotFound

type GetExtensionRepoBucketsNotFound struct {
}

GetExtensionRepoBucketsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoBucketsNotFound

func NewGetExtensionRepoBucketsNotFound() *GetExtensionRepoBucketsNotFound

NewGetExtensionRepoBucketsNotFound creates a GetExtensionRepoBucketsNotFound with default headers values

func (*GetExtensionRepoBucketsNotFound) Error

func (*GetExtensionRepoBucketsNotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoBucketsNotFound) IsClientError() bool

IsClientError returns true when this get extension repo buckets not found response has a 4xx status code

func (*GetExtensionRepoBucketsNotFound) IsCode added in v1.19.1

func (o *GetExtensionRepoBucketsNotFound) IsCode(code int) bool

IsCode returns true when this get extension repo buckets not found response a status code equal to that given

func (*GetExtensionRepoBucketsNotFound) IsRedirect added in v1.19.1

func (o *GetExtensionRepoBucketsNotFound) IsRedirect() bool

IsRedirect returns true when this get extension repo buckets not found response has a 3xx status code

func (*GetExtensionRepoBucketsNotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoBucketsNotFound) IsServerError() bool

IsServerError returns true when this get extension repo buckets not found response has a 5xx status code

func (*GetExtensionRepoBucketsNotFound) IsSuccess added in v1.19.1

func (o *GetExtensionRepoBucketsNotFound) IsSuccess() bool

IsSuccess returns true when this get extension repo buckets not found response has a 2xx status code

func (*GetExtensionRepoBucketsNotFound) String added in v1.19.1

type GetExtensionRepoBucketsOK

type GetExtensionRepoBucketsOK struct {
	Payload []*models.ExtensionRepoBucket
}

GetExtensionRepoBucketsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoBucketsOK

func NewGetExtensionRepoBucketsOK() *GetExtensionRepoBucketsOK

NewGetExtensionRepoBucketsOK creates a GetExtensionRepoBucketsOK with default headers values

func (*GetExtensionRepoBucketsOK) Error

func (o *GetExtensionRepoBucketsOK) Error() string

func (*GetExtensionRepoBucketsOK) GetPayload

func (*GetExtensionRepoBucketsOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoBucketsOK) IsClientError() bool

IsClientError returns true when this get extension repo buckets o k response has a 4xx status code

func (*GetExtensionRepoBucketsOK) IsCode added in v1.19.1

func (o *GetExtensionRepoBucketsOK) IsCode(code int) bool

IsCode returns true when this get extension repo buckets o k response a status code equal to that given

func (*GetExtensionRepoBucketsOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoBucketsOK) IsRedirect() bool

IsRedirect returns true when this get extension repo buckets o k response has a 3xx status code

func (*GetExtensionRepoBucketsOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoBucketsOK) IsServerError() bool

IsServerError returns true when this get extension repo buckets o k response has a 5xx status code

func (*GetExtensionRepoBucketsOK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoBucketsOK) IsSuccess() bool

IsSuccess returns true when this get extension repo buckets o k response has a 2xx status code

func (*GetExtensionRepoBucketsOK) String added in v1.19.1

func (o *GetExtensionRepoBucketsOK) String() string

type GetExtensionRepoBucketsParams

type GetExtensionRepoBucketsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoBucketsParams contains all the parameters to send to the API endpoint

for the get extension repo buckets operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoBucketsParams

func NewGetExtensionRepoBucketsParams() *GetExtensionRepoBucketsParams

NewGetExtensionRepoBucketsParams creates a new GetExtensionRepoBucketsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoBucketsParamsWithContext

func NewGetExtensionRepoBucketsParamsWithContext(ctx context.Context) *GetExtensionRepoBucketsParams

NewGetExtensionRepoBucketsParamsWithContext creates a new GetExtensionRepoBucketsParams object with the ability to set a context for a request.

func NewGetExtensionRepoBucketsParamsWithHTTPClient

func NewGetExtensionRepoBucketsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoBucketsParams

NewGetExtensionRepoBucketsParamsWithHTTPClient creates a new GetExtensionRepoBucketsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoBucketsParamsWithTimeout

func NewGetExtensionRepoBucketsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoBucketsParams

NewGetExtensionRepoBucketsParamsWithTimeout creates a new GetExtensionRepoBucketsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoBucketsParams) SetContext

func (o *GetExtensionRepoBucketsParams) SetContext(ctx context.Context)

SetContext adds the context to the get extension repo buckets params

func (*GetExtensionRepoBucketsParams) SetDefaults

func (o *GetExtensionRepoBucketsParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo buckets params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoBucketsParams) SetHTTPClient

func (o *GetExtensionRepoBucketsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo buckets params

func (*GetExtensionRepoBucketsParams) SetTimeout

func (o *GetExtensionRepoBucketsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo buckets params

func (*GetExtensionRepoBucketsParams) WithContext

WithContext adds the context to the get extension repo buckets params

func (*GetExtensionRepoBucketsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo buckets params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoBucketsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo buckets params

func (*GetExtensionRepoBucketsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo buckets params

func (*GetExtensionRepoBucketsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoBucketsReader

type GetExtensionRepoBucketsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoBucketsReader is a Reader for the GetExtensionRepoBuckets structure.

func (*GetExtensionRepoBucketsReader) ReadResponse

func (o *GetExtensionRepoBucketsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoBucketsUnauthorized

type GetExtensionRepoBucketsUnauthorized struct {
}

GetExtensionRepoBucketsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoBucketsUnauthorized

func NewGetExtensionRepoBucketsUnauthorized() *GetExtensionRepoBucketsUnauthorized

NewGetExtensionRepoBucketsUnauthorized creates a GetExtensionRepoBucketsUnauthorized with default headers values

func (*GetExtensionRepoBucketsUnauthorized) Error

func (*GetExtensionRepoBucketsUnauthorized) IsClientError added in v1.19.1

func (o *GetExtensionRepoBucketsUnauthorized) IsClientError() bool

IsClientError returns true when this get extension repo buckets unauthorized response has a 4xx status code

func (*GetExtensionRepoBucketsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo buckets unauthorized response a status code equal to that given

func (*GetExtensionRepoBucketsUnauthorized) IsRedirect added in v1.19.1

func (o *GetExtensionRepoBucketsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get extension repo buckets unauthorized response has a 3xx status code

func (*GetExtensionRepoBucketsUnauthorized) IsServerError added in v1.19.1

func (o *GetExtensionRepoBucketsUnauthorized) IsServerError() bool

IsServerError returns true when this get extension repo buckets unauthorized response has a 5xx status code

func (*GetExtensionRepoBucketsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo buckets unauthorized response has a 2xx status code

func (*GetExtensionRepoBucketsUnauthorized) String added in v1.19.1

type GetExtensionRepoGroupsBadRequest

type GetExtensionRepoGroupsBadRequest struct {
}

GetExtensionRepoGroupsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoGroupsBadRequest

func NewGetExtensionRepoGroupsBadRequest() *GetExtensionRepoGroupsBadRequest

NewGetExtensionRepoGroupsBadRequest creates a GetExtensionRepoGroupsBadRequest with default headers values

func (*GetExtensionRepoGroupsBadRequest) Error

func (*GetExtensionRepoGroupsBadRequest) IsClientError added in v1.19.1

func (o *GetExtensionRepoGroupsBadRequest) IsClientError() bool

IsClientError returns true when this get extension repo groups bad request response has a 4xx status code

func (*GetExtensionRepoGroupsBadRequest) IsCode added in v1.19.1

func (o *GetExtensionRepoGroupsBadRequest) IsCode(code int) bool

IsCode returns true when this get extension repo groups bad request response a status code equal to that given

func (*GetExtensionRepoGroupsBadRequest) IsRedirect added in v1.19.1

func (o *GetExtensionRepoGroupsBadRequest) IsRedirect() bool

IsRedirect returns true when this get extension repo groups bad request response has a 3xx status code

func (*GetExtensionRepoGroupsBadRequest) IsServerError added in v1.19.1

func (o *GetExtensionRepoGroupsBadRequest) IsServerError() bool

IsServerError returns true when this get extension repo groups bad request response has a 5xx status code

func (*GetExtensionRepoGroupsBadRequest) IsSuccess added in v1.19.1

func (o *GetExtensionRepoGroupsBadRequest) IsSuccess() bool

IsSuccess returns true when this get extension repo groups bad request response has a 2xx status code

func (*GetExtensionRepoGroupsBadRequest) String added in v1.19.1

type GetExtensionRepoGroupsConflict

type GetExtensionRepoGroupsConflict struct {
}

GetExtensionRepoGroupsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoGroupsConflict

func NewGetExtensionRepoGroupsConflict() *GetExtensionRepoGroupsConflict

NewGetExtensionRepoGroupsConflict creates a GetExtensionRepoGroupsConflict with default headers values

func (*GetExtensionRepoGroupsConflict) Error

func (*GetExtensionRepoGroupsConflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoGroupsConflict) IsClientError() bool

IsClientError returns true when this get extension repo groups conflict response has a 4xx status code

func (*GetExtensionRepoGroupsConflict) IsCode added in v1.19.1

func (o *GetExtensionRepoGroupsConflict) IsCode(code int) bool

IsCode returns true when this get extension repo groups conflict response a status code equal to that given

func (*GetExtensionRepoGroupsConflict) IsRedirect added in v1.19.1

func (o *GetExtensionRepoGroupsConflict) IsRedirect() bool

IsRedirect returns true when this get extension repo groups conflict response has a 3xx status code

func (*GetExtensionRepoGroupsConflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoGroupsConflict) IsServerError() bool

IsServerError returns true when this get extension repo groups conflict response has a 5xx status code

func (*GetExtensionRepoGroupsConflict) IsSuccess added in v1.19.1

func (o *GetExtensionRepoGroupsConflict) IsSuccess() bool

IsSuccess returns true when this get extension repo groups conflict response has a 2xx status code

func (*GetExtensionRepoGroupsConflict) String added in v1.19.1

type GetExtensionRepoGroupsForbidden

type GetExtensionRepoGroupsForbidden struct {
}

GetExtensionRepoGroupsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoGroupsForbidden

func NewGetExtensionRepoGroupsForbidden() *GetExtensionRepoGroupsForbidden

NewGetExtensionRepoGroupsForbidden creates a GetExtensionRepoGroupsForbidden with default headers values

func (*GetExtensionRepoGroupsForbidden) Error

func (*GetExtensionRepoGroupsForbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoGroupsForbidden) IsClientError() bool

IsClientError returns true when this get extension repo groups forbidden response has a 4xx status code

func (*GetExtensionRepoGroupsForbidden) IsCode added in v1.19.1

func (o *GetExtensionRepoGroupsForbidden) IsCode(code int) bool

IsCode returns true when this get extension repo groups forbidden response a status code equal to that given

func (*GetExtensionRepoGroupsForbidden) IsRedirect added in v1.19.1

func (o *GetExtensionRepoGroupsForbidden) IsRedirect() bool

IsRedirect returns true when this get extension repo groups forbidden response has a 3xx status code

func (*GetExtensionRepoGroupsForbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoGroupsForbidden) IsServerError() bool

IsServerError returns true when this get extension repo groups forbidden response has a 5xx status code

func (*GetExtensionRepoGroupsForbidden) IsSuccess added in v1.19.1

func (o *GetExtensionRepoGroupsForbidden) IsSuccess() bool

IsSuccess returns true when this get extension repo groups forbidden response has a 2xx status code

func (*GetExtensionRepoGroupsForbidden) String added in v1.19.1

type GetExtensionRepoGroupsNotFound

type GetExtensionRepoGroupsNotFound struct {
}

GetExtensionRepoGroupsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoGroupsNotFound

func NewGetExtensionRepoGroupsNotFound() *GetExtensionRepoGroupsNotFound

NewGetExtensionRepoGroupsNotFound creates a GetExtensionRepoGroupsNotFound with default headers values

func (*GetExtensionRepoGroupsNotFound) Error

func (*GetExtensionRepoGroupsNotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoGroupsNotFound) IsClientError() bool

IsClientError returns true when this get extension repo groups not found response has a 4xx status code

func (*GetExtensionRepoGroupsNotFound) IsCode added in v1.19.1

func (o *GetExtensionRepoGroupsNotFound) IsCode(code int) bool

IsCode returns true when this get extension repo groups not found response a status code equal to that given

func (*GetExtensionRepoGroupsNotFound) IsRedirect added in v1.19.1

func (o *GetExtensionRepoGroupsNotFound) IsRedirect() bool

IsRedirect returns true when this get extension repo groups not found response has a 3xx status code

func (*GetExtensionRepoGroupsNotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoGroupsNotFound) IsServerError() bool

IsServerError returns true when this get extension repo groups not found response has a 5xx status code

func (*GetExtensionRepoGroupsNotFound) IsSuccess added in v1.19.1

func (o *GetExtensionRepoGroupsNotFound) IsSuccess() bool

IsSuccess returns true when this get extension repo groups not found response has a 2xx status code

func (*GetExtensionRepoGroupsNotFound) String added in v1.19.1

type GetExtensionRepoGroupsOK

type GetExtensionRepoGroupsOK struct {
	Payload []*models.ExtensionRepoGroup
}

GetExtensionRepoGroupsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoGroupsOK

func NewGetExtensionRepoGroupsOK() *GetExtensionRepoGroupsOK

NewGetExtensionRepoGroupsOK creates a GetExtensionRepoGroupsOK with default headers values

func (*GetExtensionRepoGroupsOK) Error

func (o *GetExtensionRepoGroupsOK) Error() string

func (*GetExtensionRepoGroupsOK) GetPayload

func (*GetExtensionRepoGroupsOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoGroupsOK) IsClientError() bool

IsClientError returns true when this get extension repo groups o k response has a 4xx status code

func (*GetExtensionRepoGroupsOK) IsCode added in v1.19.1

func (o *GetExtensionRepoGroupsOK) IsCode(code int) bool

IsCode returns true when this get extension repo groups o k response a status code equal to that given

func (*GetExtensionRepoGroupsOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoGroupsOK) IsRedirect() bool

IsRedirect returns true when this get extension repo groups o k response has a 3xx status code

func (*GetExtensionRepoGroupsOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoGroupsOK) IsServerError() bool

IsServerError returns true when this get extension repo groups o k response has a 5xx status code

func (*GetExtensionRepoGroupsOK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoGroupsOK) IsSuccess() bool

IsSuccess returns true when this get extension repo groups o k response has a 2xx status code

func (*GetExtensionRepoGroupsOK) String added in v1.19.1

func (o *GetExtensionRepoGroupsOK) String() string

type GetExtensionRepoGroupsParams

type GetExtensionRepoGroupsParams struct {

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoGroupsParams contains all the parameters to send to the API endpoint

for the get extension repo groups operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoGroupsParams

func NewGetExtensionRepoGroupsParams() *GetExtensionRepoGroupsParams

NewGetExtensionRepoGroupsParams creates a new GetExtensionRepoGroupsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoGroupsParamsWithContext

func NewGetExtensionRepoGroupsParamsWithContext(ctx context.Context) *GetExtensionRepoGroupsParams

NewGetExtensionRepoGroupsParamsWithContext creates a new GetExtensionRepoGroupsParams object with the ability to set a context for a request.

func NewGetExtensionRepoGroupsParamsWithHTTPClient

func NewGetExtensionRepoGroupsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoGroupsParams

NewGetExtensionRepoGroupsParamsWithHTTPClient creates a new GetExtensionRepoGroupsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoGroupsParamsWithTimeout

func NewGetExtensionRepoGroupsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoGroupsParams

NewGetExtensionRepoGroupsParamsWithTimeout creates a new GetExtensionRepoGroupsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoGroupsParams) SetBucketName

func (o *GetExtensionRepoGroupsParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) SetContext

func (o *GetExtensionRepoGroupsParams) SetContext(ctx context.Context)

SetContext adds the context to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) SetDefaults

func (o *GetExtensionRepoGroupsParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo groups params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoGroupsParams) SetHTTPClient

func (o *GetExtensionRepoGroupsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) SetTimeout

func (o *GetExtensionRepoGroupsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) WithBucketName

func (o *GetExtensionRepoGroupsParams) WithBucketName(bucketName string) *GetExtensionRepoGroupsParams

WithBucketName adds the bucketName to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) WithContext

WithContext adds the context to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo groups params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoGroupsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo groups params

func (*GetExtensionRepoGroupsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoGroupsReader

type GetExtensionRepoGroupsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoGroupsReader is a Reader for the GetExtensionRepoGroups structure.

func (*GetExtensionRepoGroupsReader) ReadResponse

func (o *GetExtensionRepoGroupsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoGroupsUnauthorized

type GetExtensionRepoGroupsUnauthorized struct {
}

GetExtensionRepoGroupsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoGroupsUnauthorized

func NewGetExtensionRepoGroupsUnauthorized() *GetExtensionRepoGroupsUnauthorized

NewGetExtensionRepoGroupsUnauthorized creates a GetExtensionRepoGroupsUnauthorized with default headers values

func (*GetExtensionRepoGroupsUnauthorized) Error

func (*GetExtensionRepoGroupsUnauthorized) IsClientError added in v1.19.1

func (o *GetExtensionRepoGroupsUnauthorized) IsClientError() bool

IsClientError returns true when this get extension repo groups unauthorized response has a 4xx status code

func (*GetExtensionRepoGroupsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo groups unauthorized response a status code equal to that given

func (*GetExtensionRepoGroupsUnauthorized) IsRedirect added in v1.19.1

func (o *GetExtensionRepoGroupsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get extension repo groups unauthorized response has a 3xx status code

func (*GetExtensionRepoGroupsUnauthorized) IsServerError added in v1.19.1

func (o *GetExtensionRepoGroupsUnauthorized) IsServerError() bool

IsServerError returns true when this get extension repo groups unauthorized response has a 5xx status code

func (*GetExtensionRepoGroupsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo groups unauthorized response has a 2xx status code

func (*GetExtensionRepoGroupsUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionBadRequest

type GetExtensionRepoVersionBadRequest struct {
}

GetExtensionRepoVersionBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionBadRequest

func NewGetExtensionRepoVersionBadRequest() *GetExtensionRepoVersionBadRequest

NewGetExtensionRepoVersionBadRequest creates a GetExtensionRepoVersionBadRequest with default headers values

func (*GetExtensionRepoVersionBadRequest) Error

func (*GetExtensionRepoVersionBadRequest) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionBadRequest) IsClientError() bool

IsClientError returns true when this get extension repo version bad request response has a 4xx status code

func (*GetExtensionRepoVersionBadRequest) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionBadRequest) IsCode(code int) bool

IsCode returns true when this get extension repo version bad request response a status code equal to that given

func (*GetExtensionRepoVersionBadRequest) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionBadRequest) IsRedirect() bool

IsRedirect returns true when this get extension repo version bad request response has a 3xx status code

func (*GetExtensionRepoVersionBadRequest) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionBadRequest) IsServerError() bool

IsServerError returns true when this get extension repo version bad request response has a 5xx status code

func (*GetExtensionRepoVersionBadRequest) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionBadRequest) IsSuccess() bool

IsSuccess returns true when this get extension repo version bad request response has a 2xx status code

func (*GetExtensionRepoVersionBadRequest) String added in v1.19.1

type GetExtensionRepoVersionConflict

type GetExtensionRepoVersionConflict struct {
}

GetExtensionRepoVersionConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionConflict

func NewGetExtensionRepoVersionConflict() *GetExtensionRepoVersionConflict

NewGetExtensionRepoVersionConflict creates a GetExtensionRepoVersionConflict with default headers values

func (*GetExtensionRepoVersionConflict) Error

func (*GetExtensionRepoVersionConflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionConflict) IsClientError() bool

IsClientError returns true when this get extension repo version conflict response has a 4xx status code

func (*GetExtensionRepoVersionConflict) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionConflict) IsCode(code int) bool

IsCode returns true when this get extension repo version conflict response a status code equal to that given

func (*GetExtensionRepoVersionConflict) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionConflict) IsRedirect() bool

IsRedirect returns true when this get extension repo version conflict response has a 3xx status code

func (*GetExtensionRepoVersionConflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionConflict) IsServerError() bool

IsServerError returns true when this get extension repo version conflict response has a 5xx status code

func (*GetExtensionRepoVersionConflict) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionConflict) IsSuccess() bool

IsSuccess returns true when this get extension repo version conflict response has a 2xx status code

func (*GetExtensionRepoVersionConflict) String added in v1.19.1

type GetExtensionRepoVersionContentBadRequest

type GetExtensionRepoVersionContentBadRequest struct {
}

GetExtensionRepoVersionContentBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionContentBadRequest

func NewGetExtensionRepoVersionContentBadRequest() *GetExtensionRepoVersionContentBadRequest

NewGetExtensionRepoVersionContentBadRequest creates a GetExtensionRepoVersionContentBadRequest with default headers values

func (*GetExtensionRepoVersionContentBadRequest) Error

func (*GetExtensionRepoVersionContentBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version content bad request response has a 4xx status code

func (*GetExtensionRepoVersionContentBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo version content bad request response a status code equal to that given

func (*GetExtensionRepoVersionContentBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version content bad request response has a 3xx status code

func (*GetExtensionRepoVersionContentBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version content bad request response has a 5xx status code

func (*GetExtensionRepoVersionContentBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version content bad request response has a 2xx status code

func (*GetExtensionRepoVersionContentBadRequest) String added in v1.19.1

type GetExtensionRepoVersionContentConflict

type GetExtensionRepoVersionContentConflict struct {
}

GetExtensionRepoVersionContentConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionContentConflict

func NewGetExtensionRepoVersionContentConflict() *GetExtensionRepoVersionContentConflict

NewGetExtensionRepoVersionContentConflict creates a GetExtensionRepoVersionContentConflict with default headers values

func (*GetExtensionRepoVersionContentConflict) Error

func (*GetExtensionRepoVersionContentConflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionContentConflict) IsClientError() bool

IsClientError returns true when this get extension repo version content conflict response has a 4xx status code

func (*GetExtensionRepoVersionContentConflict) IsCode added in v1.19.1

IsCode returns true when this get extension repo version content conflict response a status code equal to that given

func (*GetExtensionRepoVersionContentConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version content conflict response has a 3xx status code

func (*GetExtensionRepoVersionContentConflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionContentConflict) IsServerError() bool

IsServerError returns true when this get extension repo version content conflict response has a 5xx status code

func (*GetExtensionRepoVersionContentConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version content conflict response has a 2xx status code

func (*GetExtensionRepoVersionContentConflict) String added in v1.19.1

type GetExtensionRepoVersionContentForbidden

type GetExtensionRepoVersionContentForbidden struct {
}

GetExtensionRepoVersionContentForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionContentForbidden

func NewGetExtensionRepoVersionContentForbidden() *GetExtensionRepoVersionContentForbidden

NewGetExtensionRepoVersionContentForbidden creates a GetExtensionRepoVersionContentForbidden with default headers values

func (*GetExtensionRepoVersionContentForbidden) Error

func (*GetExtensionRepoVersionContentForbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionContentForbidden) IsClientError() bool

IsClientError returns true when this get extension repo version content forbidden response has a 4xx status code

func (*GetExtensionRepoVersionContentForbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo version content forbidden response a status code equal to that given

func (*GetExtensionRepoVersionContentForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version content forbidden response has a 3xx status code

func (*GetExtensionRepoVersionContentForbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionContentForbidden) IsServerError() bool

IsServerError returns true when this get extension repo version content forbidden response has a 5xx status code

func (*GetExtensionRepoVersionContentForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version content forbidden response has a 2xx status code

func (*GetExtensionRepoVersionContentForbidden) String added in v1.19.1

type GetExtensionRepoVersionContentNotFound

type GetExtensionRepoVersionContentNotFound struct {
}

GetExtensionRepoVersionContentNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionContentNotFound

func NewGetExtensionRepoVersionContentNotFound() *GetExtensionRepoVersionContentNotFound

NewGetExtensionRepoVersionContentNotFound creates a GetExtensionRepoVersionContentNotFound with default headers values

func (*GetExtensionRepoVersionContentNotFound) Error

func (*GetExtensionRepoVersionContentNotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionContentNotFound) IsClientError() bool

IsClientError returns true when this get extension repo version content not found response has a 4xx status code

func (*GetExtensionRepoVersionContentNotFound) IsCode added in v1.19.1

IsCode returns true when this get extension repo version content not found response a status code equal to that given

func (*GetExtensionRepoVersionContentNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version content not found response has a 3xx status code

func (*GetExtensionRepoVersionContentNotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionContentNotFound) IsServerError() bool

IsServerError returns true when this get extension repo version content not found response has a 5xx status code

func (*GetExtensionRepoVersionContentNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version content not found response has a 2xx status code

func (*GetExtensionRepoVersionContentNotFound) String added in v1.19.1

type GetExtensionRepoVersionContentOK

type GetExtensionRepoVersionContentOK struct {
	Payload []strfmt.Base64
}

GetExtensionRepoVersionContentOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionContentOK

func NewGetExtensionRepoVersionContentOK() *GetExtensionRepoVersionContentOK

NewGetExtensionRepoVersionContentOK creates a GetExtensionRepoVersionContentOK with default headers values

func (*GetExtensionRepoVersionContentOK) Error

func (*GetExtensionRepoVersionContentOK) GetPayload

func (*GetExtensionRepoVersionContentOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionContentOK) IsClientError() bool

IsClientError returns true when this get extension repo version content o k response has a 4xx status code

func (*GetExtensionRepoVersionContentOK) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionContentOK) IsCode(code int) bool

IsCode returns true when this get extension repo version content o k response a status code equal to that given

func (*GetExtensionRepoVersionContentOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionContentOK) IsRedirect() bool

IsRedirect returns true when this get extension repo version content o k response has a 3xx status code

func (*GetExtensionRepoVersionContentOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionContentOK) IsServerError() bool

IsServerError returns true when this get extension repo version content o k response has a 5xx status code

func (*GetExtensionRepoVersionContentOK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionContentOK) IsSuccess() bool

IsSuccess returns true when this get extension repo version content o k response has a 2xx status code

func (*GetExtensionRepoVersionContentOK) String added in v1.19.1

type GetExtensionRepoVersionContentParams

type GetExtensionRepoVersionContentParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionContentParams contains all the parameters to send to the API endpoint

for the get extension repo version content operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionContentParams

func NewGetExtensionRepoVersionContentParams() *GetExtensionRepoVersionContentParams

NewGetExtensionRepoVersionContentParams creates a new GetExtensionRepoVersionContentParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionContentParamsWithContext

func NewGetExtensionRepoVersionContentParamsWithContext(ctx context.Context) *GetExtensionRepoVersionContentParams

NewGetExtensionRepoVersionContentParamsWithContext creates a new GetExtensionRepoVersionContentParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionContentParamsWithHTTPClient

func NewGetExtensionRepoVersionContentParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionContentParams

NewGetExtensionRepoVersionContentParamsWithHTTPClient creates a new GetExtensionRepoVersionContentParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionContentParamsWithTimeout

func NewGetExtensionRepoVersionContentParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionContentParams

NewGetExtensionRepoVersionContentParamsWithTimeout creates a new GetExtensionRepoVersionContentParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionContentParams) SetArtifactID

func (o *GetExtensionRepoVersionContentParams) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) SetBucketName

func (o *GetExtensionRepoVersionContentParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) SetContext

SetContext adds the context to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) SetDefaults

func (o *GetExtensionRepoVersionContentParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo version content params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionContentParams) SetGroupID

func (o *GetExtensionRepoVersionContentParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) SetHTTPClient

func (o *GetExtensionRepoVersionContentParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) SetTimeout

func (o *GetExtensionRepoVersionContentParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) SetVersion

func (o *GetExtensionRepoVersionContentParams) SetVersion(version string)

SetVersion adds the version to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithContext

WithContext adds the context to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithDefaults

WithDefaults hydrates default values in the get extension repo version content params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionContentParams) WithGroupID

WithGroupID adds the groupID to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithTimeout

WithTimeout adds the timeout to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WithVersion

WithVersion adds the version to the get extension repo version content params

func (*GetExtensionRepoVersionContentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionContentReader

type GetExtensionRepoVersionContentReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionContentReader is a Reader for the GetExtensionRepoVersionContent structure.

func (*GetExtensionRepoVersionContentReader) ReadResponse

func (o *GetExtensionRepoVersionContentReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionContentUnauthorized

type GetExtensionRepoVersionContentUnauthorized struct {
}

GetExtensionRepoVersionContentUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionContentUnauthorized

func NewGetExtensionRepoVersionContentUnauthorized() *GetExtensionRepoVersionContentUnauthorized

NewGetExtensionRepoVersionContentUnauthorized creates a GetExtensionRepoVersionContentUnauthorized with default headers values

func (*GetExtensionRepoVersionContentUnauthorized) Error

func (*GetExtensionRepoVersionContentUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version content unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionContentUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version content unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionContentUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version content unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionContentUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version content unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionContentUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version content unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionContentUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest struct {
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest creates a GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest with default headers values

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) Error

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension additional details docs bad request response has a 4xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension additional details docs bad request response a status code equal to that given

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension additional details docs bad request response has a 3xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension additional details docs bad request response has a 5xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension additional details docs bad request response has a 2xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsBadRequest) String added in v1.19.1

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict struct {
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict creates a GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict with default headers values

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) Error

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension additional details docs conflict response has a 4xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension additional details docs conflict response a status code equal to that given

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension additional details docs conflict response has a 3xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension additional details docs conflict response has a 5xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension additional details docs conflict response has a 2xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsConflict) String added in v1.19.1

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden struct {
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden creates a GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden with default headers values

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) Error

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension additional details docs forbidden response has a 4xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension additional details docs forbidden response a status code equal to that given

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension additional details docs forbidden response has a 3xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension additional details docs forbidden response has a 5xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension additional details docs forbidden response has a 2xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsForbidden) String added in v1.19.1

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound struct {
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound creates a GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound with default headers values

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) Error

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension additional details docs not found response has a 4xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension additional details docs not found response a status code equal to that given

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension additional details docs not found response has a 3xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension additional details docs not found response has a 5xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension additional details docs not found response has a 2xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsNotFound) String added in v1.19.1

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK struct {
	Payload string
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsOK

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsOK() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsOK creates a GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK with default headers values

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) Error

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) GetPayload

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension additional details docs o k response has a 4xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension additional details docs o k response a status code equal to that given

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension additional details docs o k response has a 3xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension additional details docs o k response has a 5xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension additional details docs o k response has a 2xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsOK) String added in v1.19.1

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Name.

	   The fully qualified name of the extension
	*/
	Name string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams contains all the parameters to send to the API endpoint

for the get extension repo version extension additional details docs operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParams

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParams() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParams creates a new GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithContext

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithContext(ctx context.Context) *GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithContext creates a new GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithHTTPClient

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithHTTPClient creates a new GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithTimeout

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsParamsWithTimeout creates a new GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetArtifactID

SetArtifactID adds the artifactId to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetBucketName

SetBucketName adds the bucketName to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetContext

SetContext adds the context to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetDefaults

SetDefaults hydrates default values in the get extension repo version extension additional details docs params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetGroupID

SetGroupID adds the groupId to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetName

SetName adds the name to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetTimeout

SetTimeout adds the timeout to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) SetVersion

SetVersion adds the version to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithContext

WithContext adds the context to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo version extension additional details docs params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithGroupID

WithGroupID adds the groupID to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithName

WithName adds the name to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WithVersion

WithVersion adds the version to the get extension repo version extension additional details docs params

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsReader

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsReader is a Reader for the GetExtensionRepoVersionExtensionAdditionalDetailsDocs structure.

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsReader) ReadResponse

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized

type GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized struct {
}

GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized

func NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized() *GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized

NewGetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized creates a GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized with default headers values

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) Error

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension additional details docs unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension additional details docs unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension additional details docs unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension additional details docs unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension additional details docs unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionExtensionAdditionalDetailsDocsUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionExtensionBadRequest

type GetExtensionRepoVersionExtensionBadRequest struct {
}

GetExtensionRepoVersionExtensionBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionExtensionBadRequest

func NewGetExtensionRepoVersionExtensionBadRequest() *GetExtensionRepoVersionExtensionBadRequest

NewGetExtensionRepoVersionExtensionBadRequest creates a GetExtensionRepoVersionExtensionBadRequest with default headers values

func (*GetExtensionRepoVersionExtensionBadRequest) Error

func (*GetExtensionRepoVersionExtensionBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension bad request response has a 4xx status code

func (*GetExtensionRepoVersionExtensionBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension bad request response a status code equal to that given

func (*GetExtensionRepoVersionExtensionBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension bad request response has a 3xx status code

func (*GetExtensionRepoVersionExtensionBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension bad request response has a 5xx status code

func (*GetExtensionRepoVersionExtensionBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension bad request response has a 2xx status code

func (*GetExtensionRepoVersionExtensionBadRequest) String added in v1.19.1

type GetExtensionRepoVersionExtensionConflict

type GetExtensionRepoVersionExtensionConflict struct {
}

GetExtensionRepoVersionExtensionConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionExtensionConflict

func NewGetExtensionRepoVersionExtensionConflict() *GetExtensionRepoVersionExtensionConflict

NewGetExtensionRepoVersionExtensionConflict creates a GetExtensionRepoVersionExtensionConflict with default headers values

func (*GetExtensionRepoVersionExtensionConflict) Error

func (*GetExtensionRepoVersionExtensionConflict) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension conflict response has a 4xx status code

func (*GetExtensionRepoVersionExtensionConflict) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension conflict response a status code equal to that given

func (*GetExtensionRepoVersionExtensionConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension conflict response has a 3xx status code

func (*GetExtensionRepoVersionExtensionConflict) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension conflict response has a 5xx status code

func (*GetExtensionRepoVersionExtensionConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension conflict response has a 2xx status code

func (*GetExtensionRepoVersionExtensionConflict) String added in v1.19.1

type GetExtensionRepoVersionExtensionDocsBadRequest

type GetExtensionRepoVersionExtensionDocsBadRequest struct {
}

GetExtensionRepoVersionExtensionDocsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionExtensionDocsBadRequest

func NewGetExtensionRepoVersionExtensionDocsBadRequest() *GetExtensionRepoVersionExtensionDocsBadRequest

NewGetExtensionRepoVersionExtensionDocsBadRequest creates a GetExtensionRepoVersionExtensionDocsBadRequest with default headers values

func (*GetExtensionRepoVersionExtensionDocsBadRequest) Error

func (*GetExtensionRepoVersionExtensionDocsBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension docs bad request response has a 4xx status code

func (*GetExtensionRepoVersionExtensionDocsBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension docs bad request response a status code equal to that given

func (*GetExtensionRepoVersionExtensionDocsBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension docs bad request response has a 3xx status code

func (*GetExtensionRepoVersionExtensionDocsBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension docs bad request response has a 5xx status code

func (*GetExtensionRepoVersionExtensionDocsBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension docs bad request response has a 2xx status code

func (*GetExtensionRepoVersionExtensionDocsBadRequest) String added in v1.19.1

type GetExtensionRepoVersionExtensionDocsConflict

type GetExtensionRepoVersionExtensionDocsConflict struct {
}

GetExtensionRepoVersionExtensionDocsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionExtensionDocsConflict

func NewGetExtensionRepoVersionExtensionDocsConflict() *GetExtensionRepoVersionExtensionDocsConflict

NewGetExtensionRepoVersionExtensionDocsConflict creates a GetExtensionRepoVersionExtensionDocsConflict with default headers values

func (*GetExtensionRepoVersionExtensionDocsConflict) Error

func (*GetExtensionRepoVersionExtensionDocsConflict) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension docs conflict response has a 4xx status code

func (*GetExtensionRepoVersionExtensionDocsConflict) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension docs conflict response a status code equal to that given

func (*GetExtensionRepoVersionExtensionDocsConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension docs conflict response has a 3xx status code

func (*GetExtensionRepoVersionExtensionDocsConflict) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension docs conflict response has a 5xx status code

func (*GetExtensionRepoVersionExtensionDocsConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension docs conflict response has a 2xx status code

func (*GetExtensionRepoVersionExtensionDocsConflict) String added in v1.19.1

type GetExtensionRepoVersionExtensionDocsForbidden

type GetExtensionRepoVersionExtensionDocsForbidden struct {
}

GetExtensionRepoVersionExtensionDocsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionExtensionDocsForbidden

func NewGetExtensionRepoVersionExtensionDocsForbidden() *GetExtensionRepoVersionExtensionDocsForbidden

NewGetExtensionRepoVersionExtensionDocsForbidden creates a GetExtensionRepoVersionExtensionDocsForbidden with default headers values

func (*GetExtensionRepoVersionExtensionDocsForbidden) Error

func (*GetExtensionRepoVersionExtensionDocsForbidden) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension docs forbidden response has a 4xx status code

func (*GetExtensionRepoVersionExtensionDocsForbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension docs forbidden response a status code equal to that given

func (*GetExtensionRepoVersionExtensionDocsForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension docs forbidden response has a 3xx status code

func (*GetExtensionRepoVersionExtensionDocsForbidden) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension docs forbidden response has a 5xx status code

func (*GetExtensionRepoVersionExtensionDocsForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension docs forbidden response has a 2xx status code

func (*GetExtensionRepoVersionExtensionDocsForbidden) String added in v1.19.1

type GetExtensionRepoVersionExtensionDocsNotFound

type GetExtensionRepoVersionExtensionDocsNotFound struct {
}

GetExtensionRepoVersionExtensionDocsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionExtensionDocsNotFound

func NewGetExtensionRepoVersionExtensionDocsNotFound() *GetExtensionRepoVersionExtensionDocsNotFound

NewGetExtensionRepoVersionExtensionDocsNotFound creates a GetExtensionRepoVersionExtensionDocsNotFound with default headers values

func (*GetExtensionRepoVersionExtensionDocsNotFound) Error

func (*GetExtensionRepoVersionExtensionDocsNotFound) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension docs not found response has a 4xx status code

func (*GetExtensionRepoVersionExtensionDocsNotFound) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension docs not found response a status code equal to that given

func (*GetExtensionRepoVersionExtensionDocsNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension docs not found response has a 3xx status code

func (*GetExtensionRepoVersionExtensionDocsNotFound) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension docs not found response has a 5xx status code

func (*GetExtensionRepoVersionExtensionDocsNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension docs not found response has a 2xx status code

func (*GetExtensionRepoVersionExtensionDocsNotFound) String added in v1.19.1

type GetExtensionRepoVersionExtensionDocsOK

type GetExtensionRepoVersionExtensionDocsOK struct {
	Payload string
}

GetExtensionRepoVersionExtensionDocsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionExtensionDocsOK

func NewGetExtensionRepoVersionExtensionDocsOK() *GetExtensionRepoVersionExtensionDocsOK

NewGetExtensionRepoVersionExtensionDocsOK creates a GetExtensionRepoVersionExtensionDocsOK with default headers values

func (*GetExtensionRepoVersionExtensionDocsOK) Error

func (*GetExtensionRepoVersionExtensionDocsOK) GetPayload

func (*GetExtensionRepoVersionExtensionDocsOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionExtensionDocsOK) IsClientError() bool

IsClientError returns true when this get extension repo version extension docs o k response has a 4xx status code

func (*GetExtensionRepoVersionExtensionDocsOK) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension docs o k response a status code equal to that given

func (*GetExtensionRepoVersionExtensionDocsOK) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension docs o k response has a 3xx status code

func (*GetExtensionRepoVersionExtensionDocsOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionExtensionDocsOK) IsServerError() bool

IsServerError returns true when this get extension repo version extension docs o k response has a 5xx status code

func (*GetExtensionRepoVersionExtensionDocsOK) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension docs o k response has a 2xx status code

func (*GetExtensionRepoVersionExtensionDocsOK) String added in v1.19.1

type GetExtensionRepoVersionExtensionDocsParams

type GetExtensionRepoVersionExtensionDocsParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Name.

	   The fully qualified name of the extension
	*/
	Name string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionDocsParams contains all the parameters to send to the API endpoint

for the get extension repo version extension docs operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionExtensionDocsParams

func NewGetExtensionRepoVersionExtensionDocsParams() *GetExtensionRepoVersionExtensionDocsParams

NewGetExtensionRepoVersionExtensionDocsParams creates a new GetExtensionRepoVersionExtensionDocsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionExtensionDocsParamsWithContext

func NewGetExtensionRepoVersionExtensionDocsParamsWithContext(ctx context.Context) *GetExtensionRepoVersionExtensionDocsParams

NewGetExtensionRepoVersionExtensionDocsParamsWithContext creates a new GetExtensionRepoVersionExtensionDocsParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionExtensionDocsParamsWithHTTPClient

func NewGetExtensionRepoVersionExtensionDocsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionExtensionDocsParams

NewGetExtensionRepoVersionExtensionDocsParamsWithHTTPClient creates a new GetExtensionRepoVersionExtensionDocsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionExtensionDocsParamsWithTimeout

func NewGetExtensionRepoVersionExtensionDocsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionExtensionDocsParams

NewGetExtensionRepoVersionExtensionDocsParamsWithTimeout creates a new GetExtensionRepoVersionExtensionDocsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionExtensionDocsParams) SetArtifactID

func (o *GetExtensionRepoVersionExtensionDocsParams) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetBucketName

func (o *GetExtensionRepoVersionExtensionDocsParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetContext

SetContext adds the context to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetDefaults

SetDefaults hydrates default values in the get extension repo version extension docs params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionDocsParams) SetGroupID

func (o *GetExtensionRepoVersionExtensionDocsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetHTTPClient

func (o *GetExtensionRepoVersionExtensionDocsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetName

SetName adds the name to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetTimeout

SetTimeout adds the timeout to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) SetVersion

func (o *GetExtensionRepoVersionExtensionDocsParams) SetVersion(version string)

SetVersion adds the version to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithContext

WithContext adds the context to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo version extension docs params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionDocsParams) WithGroupID

WithGroupID adds the groupID to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithName

WithName adds the name to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WithVersion

WithVersion adds the version to the get extension repo version extension docs params

func (*GetExtensionRepoVersionExtensionDocsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionExtensionDocsReader

type GetExtensionRepoVersionExtensionDocsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionDocsReader is a Reader for the GetExtensionRepoVersionExtensionDocs structure.

func (*GetExtensionRepoVersionExtensionDocsReader) ReadResponse

func (o *GetExtensionRepoVersionExtensionDocsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionExtensionDocsUnauthorized

type GetExtensionRepoVersionExtensionDocsUnauthorized struct {
}

GetExtensionRepoVersionExtensionDocsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionExtensionDocsUnauthorized

func NewGetExtensionRepoVersionExtensionDocsUnauthorized() *GetExtensionRepoVersionExtensionDocsUnauthorized

NewGetExtensionRepoVersionExtensionDocsUnauthorized creates a GetExtensionRepoVersionExtensionDocsUnauthorized with default headers values

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) Error

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension docs unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension docs unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension docs unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension docs unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension docs unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionExtensionDocsUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionExtensionForbidden

type GetExtensionRepoVersionExtensionForbidden struct {
}

GetExtensionRepoVersionExtensionForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionExtensionForbidden

func NewGetExtensionRepoVersionExtensionForbidden() *GetExtensionRepoVersionExtensionForbidden

NewGetExtensionRepoVersionExtensionForbidden creates a GetExtensionRepoVersionExtensionForbidden with default headers values

func (*GetExtensionRepoVersionExtensionForbidden) Error

func (*GetExtensionRepoVersionExtensionForbidden) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension forbidden response has a 4xx status code

func (*GetExtensionRepoVersionExtensionForbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension forbidden response a status code equal to that given

func (*GetExtensionRepoVersionExtensionForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension forbidden response has a 3xx status code

func (*GetExtensionRepoVersionExtensionForbidden) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension forbidden response has a 5xx status code

func (*GetExtensionRepoVersionExtensionForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension forbidden response has a 2xx status code

func (*GetExtensionRepoVersionExtensionForbidden) String added in v1.19.1

type GetExtensionRepoVersionExtensionNotFound

type GetExtensionRepoVersionExtensionNotFound struct {
}

GetExtensionRepoVersionExtensionNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionExtensionNotFound

func NewGetExtensionRepoVersionExtensionNotFound() *GetExtensionRepoVersionExtensionNotFound

NewGetExtensionRepoVersionExtensionNotFound creates a GetExtensionRepoVersionExtensionNotFound with default headers values

func (*GetExtensionRepoVersionExtensionNotFound) Error

func (*GetExtensionRepoVersionExtensionNotFound) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension not found response has a 4xx status code

func (*GetExtensionRepoVersionExtensionNotFound) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension not found response a status code equal to that given

func (*GetExtensionRepoVersionExtensionNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension not found response has a 3xx status code

func (*GetExtensionRepoVersionExtensionNotFound) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension not found response has a 5xx status code

func (*GetExtensionRepoVersionExtensionNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension not found response has a 2xx status code

func (*GetExtensionRepoVersionExtensionNotFound) String added in v1.19.1

type GetExtensionRepoVersionExtensionOK

type GetExtensionRepoVersionExtensionOK struct {
	Payload *models.Extension
}

GetExtensionRepoVersionExtensionOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionExtensionOK

func NewGetExtensionRepoVersionExtensionOK() *GetExtensionRepoVersionExtensionOK

NewGetExtensionRepoVersionExtensionOK creates a GetExtensionRepoVersionExtensionOK with default headers values

func (*GetExtensionRepoVersionExtensionOK) Error

func (*GetExtensionRepoVersionExtensionOK) GetPayload

func (*GetExtensionRepoVersionExtensionOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionExtensionOK) IsClientError() bool

IsClientError returns true when this get extension repo version extension o k response has a 4xx status code

func (*GetExtensionRepoVersionExtensionOK) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension o k response a status code equal to that given

func (*GetExtensionRepoVersionExtensionOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionExtensionOK) IsRedirect() bool

IsRedirect returns true when this get extension repo version extension o k response has a 3xx status code

func (*GetExtensionRepoVersionExtensionOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionExtensionOK) IsServerError() bool

IsServerError returns true when this get extension repo version extension o k response has a 5xx status code

func (*GetExtensionRepoVersionExtensionOK) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension o k response has a 2xx status code

func (*GetExtensionRepoVersionExtensionOK) String added in v1.19.1

type GetExtensionRepoVersionExtensionParams

type GetExtensionRepoVersionExtensionParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Name.

	   The fully qualified name of the extension
	*/
	Name string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionParams contains all the parameters to send to the API endpoint

for the get extension repo version extension operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionExtensionParams

func NewGetExtensionRepoVersionExtensionParams() *GetExtensionRepoVersionExtensionParams

NewGetExtensionRepoVersionExtensionParams creates a new GetExtensionRepoVersionExtensionParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionExtensionParamsWithContext

func NewGetExtensionRepoVersionExtensionParamsWithContext(ctx context.Context) *GetExtensionRepoVersionExtensionParams

NewGetExtensionRepoVersionExtensionParamsWithContext creates a new GetExtensionRepoVersionExtensionParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionExtensionParamsWithHTTPClient

func NewGetExtensionRepoVersionExtensionParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionExtensionParams

NewGetExtensionRepoVersionExtensionParamsWithHTTPClient creates a new GetExtensionRepoVersionExtensionParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionExtensionParamsWithTimeout

func NewGetExtensionRepoVersionExtensionParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionExtensionParams

NewGetExtensionRepoVersionExtensionParamsWithTimeout creates a new GetExtensionRepoVersionExtensionParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionExtensionParams) SetArtifactID

func (o *GetExtensionRepoVersionExtensionParams) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetBucketName

func (o *GetExtensionRepoVersionExtensionParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetContext

SetContext adds the context to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetDefaults

func (o *GetExtensionRepoVersionExtensionParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo version extension params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionParams) SetGroupID

func (o *GetExtensionRepoVersionExtensionParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetHTTPClient

func (o *GetExtensionRepoVersionExtensionParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetName

SetName adds the name to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetTimeout

func (o *GetExtensionRepoVersionExtensionParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) SetVersion

func (o *GetExtensionRepoVersionExtensionParams) SetVersion(version string)

SetVersion adds the version to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithContext

WithContext adds the context to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithDefaults

WithDefaults hydrates default values in the get extension repo version extension params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionParams) WithGroupID

WithGroupID adds the groupID to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithName

WithName adds the name to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithTimeout

WithTimeout adds the timeout to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WithVersion

WithVersion adds the version to the get extension repo version extension params

func (*GetExtensionRepoVersionExtensionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionExtensionReader

type GetExtensionRepoVersionExtensionReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionReader is a Reader for the GetExtensionRepoVersionExtension structure.

func (*GetExtensionRepoVersionExtensionReader) ReadResponse

func (o *GetExtensionRepoVersionExtensionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionExtensionUnauthorized

type GetExtensionRepoVersionExtensionUnauthorized struct {
}

GetExtensionRepoVersionExtensionUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionExtensionUnauthorized

func NewGetExtensionRepoVersionExtensionUnauthorized() *GetExtensionRepoVersionExtensionUnauthorized

NewGetExtensionRepoVersionExtensionUnauthorized creates a GetExtensionRepoVersionExtensionUnauthorized with default headers values

func (*GetExtensionRepoVersionExtensionUnauthorized) Error

func (*GetExtensionRepoVersionExtensionUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extension unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionExtensionUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extension unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionExtensionUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extension unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionExtensionUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extension unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionExtensionUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extension unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionExtensionUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionExtensionsBadRequest

type GetExtensionRepoVersionExtensionsBadRequest struct {
}

GetExtensionRepoVersionExtensionsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionExtensionsBadRequest

func NewGetExtensionRepoVersionExtensionsBadRequest() *GetExtensionRepoVersionExtensionsBadRequest

NewGetExtensionRepoVersionExtensionsBadRequest creates a GetExtensionRepoVersionExtensionsBadRequest with default headers values

func (*GetExtensionRepoVersionExtensionsBadRequest) Error

func (*GetExtensionRepoVersionExtensionsBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extensions bad request response has a 4xx status code

func (*GetExtensionRepoVersionExtensionsBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extensions bad request response a status code equal to that given

func (*GetExtensionRepoVersionExtensionsBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extensions bad request response has a 3xx status code

func (*GetExtensionRepoVersionExtensionsBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extensions bad request response has a 5xx status code

func (*GetExtensionRepoVersionExtensionsBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extensions bad request response has a 2xx status code

func (*GetExtensionRepoVersionExtensionsBadRequest) String added in v1.19.1

type GetExtensionRepoVersionExtensionsConflict

type GetExtensionRepoVersionExtensionsConflict struct {
}

GetExtensionRepoVersionExtensionsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionExtensionsConflict

func NewGetExtensionRepoVersionExtensionsConflict() *GetExtensionRepoVersionExtensionsConflict

NewGetExtensionRepoVersionExtensionsConflict creates a GetExtensionRepoVersionExtensionsConflict with default headers values

func (*GetExtensionRepoVersionExtensionsConflict) Error

func (*GetExtensionRepoVersionExtensionsConflict) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extensions conflict response has a 4xx status code

func (*GetExtensionRepoVersionExtensionsConflict) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extensions conflict response a status code equal to that given

func (*GetExtensionRepoVersionExtensionsConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extensions conflict response has a 3xx status code

func (*GetExtensionRepoVersionExtensionsConflict) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extensions conflict response has a 5xx status code

func (*GetExtensionRepoVersionExtensionsConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extensions conflict response has a 2xx status code

func (*GetExtensionRepoVersionExtensionsConflict) String added in v1.19.1

type GetExtensionRepoVersionExtensionsForbidden

type GetExtensionRepoVersionExtensionsForbidden struct {
}

GetExtensionRepoVersionExtensionsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionExtensionsForbidden

func NewGetExtensionRepoVersionExtensionsForbidden() *GetExtensionRepoVersionExtensionsForbidden

NewGetExtensionRepoVersionExtensionsForbidden creates a GetExtensionRepoVersionExtensionsForbidden with default headers values

func (*GetExtensionRepoVersionExtensionsForbidden) Error

func (*GetExtensionRepoVersionExtensionsForbidden) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extensions forbidden response has a 4xx status code

func (*GetExtensionRepoVersionExtensionsForbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extensions forbidden response a status code equal to that given

func (*GetExtensionRepoVersionExtensionsForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extensions forbidden response has a 3xx status code

func (*GetExtensionRepoVersionExtensionsForbidden) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extensions forbidden response has a 5xx status code

func (*GetExtensionRepoVersionExtensionsForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extensions forbidden response has a 2xx status code

func (*GetExtensionRepoVersionExtensionsForbidden) String added in v1.19.1

type GetExtensionRepoVersionExtensionsNotFound

type GetExtensionRepoVersionExtensionsNotFound struct {
}

GetExtensionRepoVersionExtensionsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionExtensionsNotFound

func NewGetExtensionRepoVersionExtensionsNotFound() *GetExtensionRepoVersionExtensionsNotFound

NewGetExtensionRepoVersionExtensionsNotFound creates a GetExtensionRepoVersionExtensionsNotFound with default headers values

func (*GetExtensionRepoVersionExtensionsNotFound) Error

func (*GetExtensionRepoVersionExtensionsNotFound) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extensions not found response has a 4xx status code

func (*GetExtensionRepoVersionExtensionsNotFound) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extensions not found response a status code equal to that given

func (*GetExtensionRepoVersionExtensionsNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extensions not found response has a 3xx status code

func (*GetExtensionRepoVersionExtensionsNotFound) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extensions not found response has a 5xx status code

func (*GetExtensionRepoVersionExtensionsNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extensions not found response has a 2xx status code

func (*GetExtensionRepoVersionExtensionsNotFound) String added in v1.19.1

type GetExtensionRepoVersionExtensionsOK

type GetExtensionRepoVersionExtensionsOK struct {
	Payload []*models.ExtensionMetadata
}

GetExtensionRepoVersionExtensionsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionExtensionsOK

func NewGetExtensionRepoVersionExtensionsOK() *GetExtensionRepoVersionExtensionsOK

NewGetExtensionRepoVersionExtensionsOK creates a GetExtensionRepoVersionExtensionsOK with default headers values

func (*GetExtensionRepoVersionExtensionsOK) Error

func (*GetExtensionRepoVersionExtensionsOK) GetPayload

func (*GetExtensionRepoVersionExtensionsOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionExtensionsOK) IsClientError() bool

IsClientError returns true when this get extension repo version extensions o k response has a 4xx status code

func (*GetExtensionRepoVersionExtensionsOK) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extensions o k response a status code equal to that given

func (*GetExtensionRepoVersionExtensionsOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionExtensionsOK) IsRedirect() bool

IsRedirect returns true when this get extension repo version extensions o k response has a 3xx status code

func (*GetExtensionRepoVersionExtensionsOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionExtensionsOK) IsServerError() bool

IsServerError returns true when this get extension repo version extensions o k response has a 5xx status code

func (*GetExtensionRepoVersionExtensionsOK) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extensions o k response has a 2xx status code

func (*GetExtensionRepoVersionExtensionsOK) String added in v1.19.1

type GetExtensionRepoVersionExtensionsParams

type GetExtensionRepoVersionExtensionsParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionsParams contains all the parameters to send to the API endpoint

for the get extension repo version extensions operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionExtensionsParams

func NewGetExtensionRepoVersionExtensionsParams() *GetExtensionRepoVersionExtensionsParams

NewGetExtensionRepoVersionExtensionsParams creates a new GetExtensionRepoVersionExtensionsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionExtensionsParamsWithContext

func NewGetExtensionRepoVersionExtensionsParamsWithContext(ctx context.Context) *GetExtensionRepoVersionExtensionsParams

NewGetExtensionRepoVersionExtensionsParamsWithContext creates a new GetExtensionRepoVersionExtensionsParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionExtensionsParamsWithHTTPClient

func NewGetExtensionRepoVersionExtensionsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionExtensionsParams

NewGetExtensionRepoVersionExtensionsParamsWithHTTPClient creates a new GetExtensionRepoVersionExtensionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionExtensionsParamsWithTimeout

func NewGetExtensionRepoVersionExtensionsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionExtensionsParams

NewGetExtensionRepoVersionExtensionsParamsWithTimeout creates a new GetExtensionRepoVersionExtensionsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionExtensionsParams) SetArtifactID

func (o *GetExtensionRepoVersionExtensionsParams) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) SetBucketName

func (o *GetExtensionRepoVersionExtensionsParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) SetContext

SetContext adds the context to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) SetDefaults

func (o *GetExtensionRepoVersionExtensionsParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo version extensions params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionsParams) SetGroupID

func (o *GetExtensionRepoVersionExtensionsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) SetHTTPClient

func (o *GetExtensionRepoVersionExtensionsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) SetTimeout

func (o *GetExtensionRepoVersionExtensionsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) SetVersion

func (o *GetExtensionRepoVersionExtensionsParams) SetVersion(version string)

SetVersion adds the version to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithContext

WithContext adds the context to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo version extensions params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionExtensionsParams) WithGroupID

WithGroupID adds the groupID to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WithVersion

WithVersion adds the version to the get extension repo version extensions params

func (*GetExtensionRepoVersionExtensionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionExtensionsReader

type GetExtensionRepoVersionExtensionsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionExtensionsReader is a Reader for the GetExtensionRepoVersionExtensions structure.

func (*GetExtensionRepoVersionExtensionsReader) ReadResponse

func (o *GetExtensionRepoVersionExtensionsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionExtensionsUnauthorized

type GetExtensionRepoVersionExtensionsUnauthorized struct {
}

GetExtensionRepoVersionExtensionsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionExtensionsUnauthorized

func NewGetExtensionRepoVersionExtensionsUnauthorized() *GetExtensionRepoVersionExtensionsUnauthorized

NewGetExtensionRepoVersionExtensionsUnauthorized creates a GetExtensionRepoVersionExtensionsUnauthorized with default headers values

func (*GetExtensionRepoVersionExtensionsUnauthorized) Error

func (*GetExtensionRepoVersionExtensionsUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version extensions unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionExtensionsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version extensions unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionExtensionsUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version extensions unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionExtensionsUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version extensions unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionExtensionsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version extensions unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionExtensionsUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionForbidden

type GetExtensionRepoVersionForbidden struct {
}

GetExtensionRepoVersionForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionForbidden

func NewGetExtensionRepoVersionForbidden() *GetExtensionRepoVersionForbidden

NewGetExtensionRepoVersionForbidden creates a GetExtensionRepoVersionForbidden with default headers values

func (*GetExtensionRepoVersionForbidden) Error

func (*GetExtensionRepoVersionForbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionForbidden) IsClientError() bool

IsClientError returns true when this get extension repo version forbidden response has a 4xx status code

func (*GetExtensionRepoVersionForbidden) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionForbidden) IsCode(code int) bool

IsCode returns true when this get extension repo version forbidden response a status code equal to that given

func (*GetExtensionRepoVersionForbidden) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionForbidden) IsRedirect() bool

IsRedirect returns true when this get extension repo version forbidden response has a 3xx status code

func (*GetExtensionRepoVersionForbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionForbidden) IsServerError() bool

IsServerError returns true when this get extension repo version forbidden response has a 5xx status code

func (*GetExtensionRepoVersionForbidden) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionForbidden) IsSuccess() bool

IsSuccess returns true when this get extension repo version forbidden response has a 2xx status code

func (*GetExtensionRepoVersionForbidden) String added in v1.19.1

type GetExtensionRepoVersionNotFound

type GetExtensionRepoVersionNotFound struct {
}

GetExtensionRepoVersionNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionNotFound

func NewGetExtensionRepoVersionNotFound() *GetExtensionRepoVersionNotFound

NewGetExtensionRepoVersionNotFound creates a GetExtensionRepoVersionNotFound with default headers values

func (*GetExtensionRepoVersionNotFound) Error

func (*GetExtensionRepoVersionNotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionNotFound) IsClientError() bool

IsClientError returns true when this get extension repo version not found response has a 4xx status code

func (*GetExtensionRepoVersionNotFound) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionNotFound) IsCode(code int) bool

IsCode returns true when this get extension repo version not found response a status code equal to that given

func (*GetExtensionRepoVersionNotFound) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionNotFound) IsRedirect() bool

IsRedirect returns true when this get extension repo version not found response has a 3xx status code

func (*GetExtensionRepoVersionNotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionNotFound) IsServerError() bool

IsServerError returns true when this get extension repo version not found response has a 5xx status code

func (*GetExtensionRepoVersionNotFound) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionNotFound) IsSuccess() bool

IsSuccess returns true when this get extension repo version not found response has a 2xx status code

func (*GetExtensionRepoVersionNotFound) String added in v1.19.1

type GetExtensionRepoVersionOK

type GetExtensionRepoVersionOK struct {
	Payload *models.ExtensionRepoVersion
}

GetExtensionRepoVersionOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionOK

func NewGetExtensionRepoVersionOK() *GetExtensionRepoVersionOK

NewGetExtensionRepoVersionOK creates a GetExtensionRepoVersionOK with default headers values

func (*GetExtensionRepoVersionOK) Error

func (o *GetExtensionRepoVersionOK) Error() string

func (*GetExtensionRepoVersionOK) GetPayload

func (*GetExtensionRepoVersionOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionOK) IsClientError() bool

IsClientError returns true when this get extension repo version o k response has a 4xx status code

func (*GetExtensionRepoVersionOK) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionOK) IsCode(code int) bool

IsCode returns true when this get extension repo version o k response a status code equal to that given

func (*GetExtensionRepoVersionOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionOK) IsRedirect() bool

IsRedirect returns true when this get extension repo version o k response has a 3xx status code

func (*GetExtensionRepoVersionOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionOK) IsServerError() bool

IsServerError returns true when this get extension repo version o k response has a 5xx status code

func (*GetExtensionRepoVersionOK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionOK) IsSuccess() bool

IsSuccess returns true when this get extension repo version o k response has a 2xx status code

func (*GetExtensionRepoVersionOK) String added in v1.19.1

func (o *GetExtensionRepoVersionOK) String() string

type GetExtensionRepoVersionParams

type GetExtensionRepoVersionParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionParams contains all the parameters to send to the API endpoint

for the get extension repo version operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionParams

func NewGetExtensionRepoVersionParams() *GetExtensionRepoVersionParams

NewGetExtensionRepoVersionParams creates a new GetExtensionRepoVersionParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionParamsWithContext

func NewGetExtensionRepoVersionParamsWithContext(ctx context.Context) *GetExtensionRepoVersionParams

NewGetExtensionRepoVersionParamsWithContext creates a new GetExtensionRepoVersionParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionParamsWithHTTPClient

func NewGetExtensionRepoVersionParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionParams

NewGetExtensionRepoVersionParamsWithHTTPClient creates a new GetExtensionRepoVersionParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionParamsWithTimeout

func NewGetExtensionRepoVersionParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionParams

NewGetExtensionRepoVersionParamsWithTimeout creates a new GetExtensionRepoVersionParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionParams) SetArtifactID

func (o *GetExtensionRepoVersionParams) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo version params

func (*GetExtensionRepoVersionParams) SetBucketName

func (o *GetExtensionRepoVersionParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo version params

func (*GetExtensionRepoVersionParams) SetContext

func (o *GetExtensionRepoVersionParams) SetContext(ctx context.Context)

SetContext adds the context to the get extension repo version params

func (*GetExtensionRepoVersionParams) SetDefaults

func (o *GetExtensionRepoVersionParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo version params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionParams) SetGroupID

func (o *GetExtensionRepoVersionParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo version params

func (*GetExtensionRepoVersionParams) SetHTTPClient

func (o *GetExtensionRepoVersionParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo version params

func (*GetExtensionRepoVersionParams) SetTimeout

func (o *GetExtensionRepoVersionParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo version params

func (*GetExtensionRepoVersionParams) SetVersion

func (o *GetExtensionRepoVersionParams) SetVersion(version string)

SetVersion adds the version to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithContext

WithContext adds the context to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithDefaults

WithDefaults hydrates default values in the get extension repo version params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionParams) WithGroupID

WithGroupID adds the groupID to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithTimeout

WithTimeout adds the timeout to the get extension repo version params

func (*GetExtensionRepoVersionParams) WithVersion

WithVersion adds the version to the get extension repo version params

func (*GetExtensionRepoVersionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionReader

type GetExtensionRepoVersionReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionReader is a Reader for the GetExtensionRepoVersion structure.

func (*GetExtensionRepoVersionReader) ReadResponse

func (o *GetExtensionRepoVersionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionSha256BadRequest

type GetExtensionRepoVersionSha256BadRequest struct {
}

GetExtensionRepoVersionSha256BadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionSha256BadRequest

func NewGetExtensionRepoVersionSha256BadRequest() *GetExtensionRepoVersionSha256BadRequest

NewGetExtensionRepoVersionSha256BadRequest creates a GetExtensionRepoVersionSha256BadRequest with default headers values

func (*GetExtensionRepoVersionSha256BadRequest) Error

func (*GetExtensionRepoVersionSha256BadRequest) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionSha256BadRequest) IsClientError() bool

IsClientError returns true when this get extension repo version sha256 bad request response has a 4xx status code

func (*GetExtensionRepoVersionSha256BadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo version sha256 bad request response a status code equal to that given

func (*GetExtensionRepoVersionSha256BadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version sha256 bad request response has a 3xx status code

func (*GetExtensionRepoVersionSha256BadRequest) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionSha256BadRequest) IsServerError() bool

IsServerError returns true when this get extension repo version sha256 bad request response has a 5xx status code

func (*GetExtensionRepoVersionSha256BadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version sha256 bad request response has a 2xx status code

func (*GetExtensionRepoVersionSha256BadRequest) String added in v1.19.1

type GetExtensionRepoVersionSha256Conflict

type GetExtensionRepoVersionSha256Conflict struct {
}

GetExtensionRepoVersionSha256Conflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionSha256Conflict

func NewGetExtensionRepoVersionSha256Conflict() *GetExtensionRepoVersionSha256Conflict

NewGetExtensionRepoVersionSha256Conflict creates a GetExtensionRepoVersionSha256Conflict with default headers values

func (*GetExtensionRepoVersionSha256Conflict) Error

func (*GetExtensionRepoVersionSha256Conflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionSha256Conflict) IsClientError() bool

IsClientError returns true when this get extension repo version sha256 conflict response has a 4xx status code

func (*GetExtensionRepoVersionSha256Conflict) IsCode added in v1.19.1

IsCode returns true when this get extension repo version sha256 conflict response a status code equal to that given

func (*GetExtensionRepoVersionSha256Conflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version sha256 conflict response has a 3xx status code

func (*GetExtensionRepoVersionSha256Conflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionSha256Conflict) IsServerError() bool

IsServerError returns true when this get extension repo version sha256 conflict response has a 5xx status code

func (*GetExtensionRepoVersionSha256Conflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version sha256 conflict response has a 2xx status code

func (*GetExtensionRepoVersionSha256Conflict) String added in v1.19.1

type GetExtensionRepoVersionSha256Forbidden

type GetExtensionRepoVersionSha256Forbidden struct {
}

GetExtensionRepoVersionSha256Forbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionSha256Forbidden

func NewGetExtensionRepoVersionSha256Forbidden() *GetExtensionRepoVersionSha256Forbidden

NewGetExtensionRepoVersionSha256Forbidden creates a GetExtensionRepoVersionSha256Forbidden with default headers values

func (*GetExtensionRepoVersionSha256Forbidden) Error

func (*GetExtensionRepoVersionSha256Forbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionSha256Forbidden) IsClientError() bool

IsClientError returns true when this get extension repo version sha256 forbidden response has a 4xx status code

func (*GetExtensionRepoVersionSha256Forbidden) IsCode added in v1.19.1

IsCode returns true when this get extension repo version sha256 forbidden response a status code equal to that given

func (*GetExtensionRepoVersionSha256Forbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version sha256 forbidden response has a 3xx status code

func (*GetExtensionRepoVersionSha256Forbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionSha256Forbidden) IsServerError() bool

IsServerError returns true when this get extension repo version sha256 forbidden response has a 5xx status code

func (*GetExtensionRepoVersionSha256Forbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version sha256 forbidden response has a 2xx status code

func (*GetExtensionRepoVersionSha256Forbidden) String added in v1.19.1

type GetExtensionRepoVersionSha256NotFound

type GetExtensionRepoVersionSha256NotFound struct {
}

GetExtensionRepoVersionSha256NotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionSha256NotFound

func NewGetExtensionRepoVersionSha256NotFound() *GetExtensionRepoVersionSha256NotFound

NewGetExtensionRepoVersionSha256NotFound creates a GetExtensionRepoVersionSha256NotFound with default headers values

func (*GetExtensionRepoVersionSha256NotFound) Error

func (*GetExtensionRepoVersionSha256NotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionSha256NotFound) IsClientError() bool

IsClientError returns true when this get extension repo version sha256 not found response has a 4xx status code

func (*GetExtensionRepoVersionSha256NotFound) IsCode added in v1.19.1

IsCode returns true when this get extension repo version sha256 not found response a status code equal to that given

func (*GetExtensionRepoVersionSha256NotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version sha256 not found response has a 3xx status code

func (*GetExtensionRepoVersionSha256NotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionSha256NotFound) IsServerError() bool

IsServerError returns true when this get extension repo version sha256 not found response has a 5xx status code

func (*GetExtensionRepoVersionSha256NotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version sha256 not found response has a 2xx status code

func (*GetExtensionRepoVersionSha256NotFound) String added in v1.19.1

type GetExtensionRepoVersionSha256OK

type GetExtensionRepoVersionSha256OK struct {
	Payload string
}

GetExtensionRepoVersionSha256OK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionSha256OK

func NewGetExtensionRepoVersionSha256OK() *GetExtensionRepoVersionSha256OK

NewGetExtensionRepoVersionSha256OK creates a GetExtensionRepoVersionSha256OK with default headers values

func (*GetExtensionRepoVersionSha256OK) Error

func (*GetExtensionRepoVersionSha256OK) GetPayload

func (o *GetExtensionRepoVersionSha256OK) GetPayload() string

func (*GetExtensionRepoVersionSha256OK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionSha256OK) IsClientError() bool

IsClientError returns true when this get extension repo version sha256 o k response has a 4xx status code

func (*GetExtensionRepoVersionSha256OK) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionSha256OK) IsCode(code int) bool

IsCode returns true when this get extension repo version sha256 o k response a status code equal to that given

func (*GetExtensionRepoVersionSha256OK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionSha256OK) IsRedirect() bool

IsRedirect returns true when this get extension repo version sha256 o k response has a 3xx status code

func (*GetExtensionRepoVersionSha256OK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionSha256OK) IsServerError() bool

IsServerError returns true when this get extension repo version sha256 o k response has a 5xx status code

func (*GetExtensionRepoVersionSha256OK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionSha256OK) IsSuccess() bool

IsSuccess returns true when this get extension repo version sha256 o k response has a 2xx status code

func (*GetExtensionRepoVersionSha256OK) String added in v1.19.1

type GetExtensionRepoVersionSha256Params

type GetExtensionRepoVersionSha256Params struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionSha256Params contains all the parameters to send to the API endpoint

for the get extension repo version sha256 operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionSha256Params

func NewGetExtensionRepoVersionSha256Params() *GetExtensionRepoVersionSha256Params

NewGetExtensionRepoVersionSha256Params creates a new GetExtensionRepoVersionSha256Params object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionSha256ParamsWithContext

func NewGetExtensionRepoVersionSha256ParamsWithContext(ctx context.Context) *GetExtensionRepoVersionSha256Params

NewGetExtensionRepoVersionSha256ParamsWithContext creates a new GetExtensionRepoVersionSha256Params object with the ability to set a context for a request.

func NewGetExtensionRepoVersionSha256ParamsWithHTTPClient

func NewGetExtensionRepoVersionSha256ParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionSha256Params

NewGetExtensionRepoVersionSha256ParamsWithHTTPClient creates a new GetExtensionRepoVersionSha256Params object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionSha256ParamsWithTimeout

func NewGetExtensionRepoVersionSha256ParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionSha256Params

NewGetExtensionRepoVersionSha256ParamsWithTimeout creates a new GetExtensionRepoVersionSha256Params object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionSha256Params) SetArtifactID

func (o *GetExtensionRepoVersionSha256Params) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) SetBucketName

func (o *GetExtensionRepoVersionSha256Params) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) SetContext

SetContext adds the context to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) SetDefaults

func (o *GetExtensionRepoVersionSha256Params) SetDefaults()

SetDefaults hydrates default values in the get extension repo version sha256 params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionSha256Params) SetGroupID

func (o *GetExtensionRepoVersionSha256Params) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) SetHTTPClient

func (o *GetExtensionRepoVersionSha256Params) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) SetTimeout

func (o *GetExtensionRepoVersionSha256Params) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) SetVersion

func (o *GetExtensionRepoVersionSha256Params) SetVersion(version string)

SetVersion adds the version to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithBucketName

WithBucketName adds the bucketName to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithContext

WithContext adds the context to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithDefaults

WithDefaults hydrates default values in the get extension repo version sha256 params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionSha256Params) WithGroupID

WithGroupID adds the groupID to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithTimeout

WithTimeout adds the timeout to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WithVersion

WithVersion adds the version to the get extension repo version sha256 params

func (*GetExtensionRepoVersionSha256Params) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionSha256Reader

type GetExtensionRepoVersionSha256Reader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionSha256Reader is a Reader for the GetExtensionRepoVersionSha256 structure.

func (*GetExtensionRepoVersionSha256Reader) ReadResponse

func (o *GetExtensionRepoVersionSha256Reader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionSha256Unauthorized

type GetExtensionRepoVersionSha256Unauthorized struct {
}

GetExtensionRepoVersionSha256Unauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionSha256Unauthorized

func NewGetExtensionRepoVersionSha256Unauthorized() *GetExtensionRepoVersionSha256Unauthorized

NewGetExtensionRepoVersionSha256Unauthorized creates a GetExtensionRepoVersionSha256Unauthorized with default headers values

func (*GetExtensionRepoVersionSha256Unauthorized) Error

func (*GetExtensionRepoVersionSha256Unauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get extension repo version sha256 unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionSha256Unauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version sha256 unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionSha256Unauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo version sha256 unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionSha256Unauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get extension repo version sha256 unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionSha256Unauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version sha256 unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionSha256Unauthorized) String added in v1.19.1

type GetExtensionRepoVersionUnauthorized

type GetExtensionRepoVersionUnauthorized struct {
}

GetExtensionRepoVersionUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionUnauthorized

func NewGetExtensionRepoVersionUnauthorized() *GetExtensionRepoVersionUnauthorized

NewGetExtensionRepoVersionUnauthorized creates a GetExtensionRepoVersionUnauthorized with default headers values

func (*GetExtensionRepoVersionUnauthorized) Error

func (*GetExtensionRepoVersionUnauthorized) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionUnauthorized) IsClientError() bool

IsClientError returns true when this get extension repo version unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo version unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionUnauthorized) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionUnauthorized) IsRedirect() bool

IsRedirect returns true when this get extension repo version unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionUnauthorized) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionUnauthorized) IsServerError() bool

IsServerError returns true when this get extension repo version unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo version unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionUnauthorized) String added in v1.19.1

type GetExtensionRepoVersionsBadRequest

type GetExtensionRepoVersionsBadRequest struct {
}

GetExtensionRepoVersionsBadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetExtensionRepoVersionsBadRequest

func NewGetExtensionRepoVersionsBadRequest() *GetExtensionRepoVersionsBadRequest

NewGetExtensionRepoVersionsBadRequest creates a GetExtensionRepoVersionsBadRequest with default headers values

func (*GetExtensionRepoVersionsBadRequest) Error

func (*GetExtensionRepoVersionsBadRequest) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionsBadRequest) IsClientError() bool

IsClientError returns true when this get extension repo versions bad request response has a 4xx status code

func (*GetExtensionRepoVersionsBadRequest) IsCode added in v1.19.1

IsCode returns true when this get extension repo versions bad request response a status code equal to that given

func (*GetExtensionRepoVersionsBadRequest) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionsBadRequest) IsRedirect() bool

IsRedirect returns true when this get extension repo versions bad request response has a 3xx status code

func (*GetExtensionRepoVersionsBadRequest) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionsBadRequest) IsServerError() bool

IsServerError returns true when this get extension repo versions bad request response has a 5xx status code

func (*GetExtensionRepoVersionsBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo versions bad request response has a 2xx status code

func (*GetExtensionRepoVersionsBadRequest) String added in v1.19.1

type GetExtensionRepoVersionsConflict

type GetExtensionRepoVersionsConflict struct {
}

GetExtensionRepoVersionsConflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetExtensionRepoVersionsConflict

func NewGetExtensionRepoVersionsConflict() *GetExtensionRepoVersionsConflict

NewGetExtensionRepoVersionsConflict creates a GetExtensionRepoVersionsConflict with default headers values

func (*GetExtensionRepoVersionsConflict) Error

func (*GetExtensionRepoVersionsConflict) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionsConflict) IsClientError() bool

IsClientError returns true when this get extension repo versions conflict response has a 4xx status code

func (*GetExtensionRepoVersionsConflict) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionsConflict) IsCode(code int) bool

IsCode returns true when this get extension repo versions conflict response a status code equal to that given

func (*GetExtensionRepoVersionsConflict) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionsConflict) IsRedirect() bool

IsRedirect returns true when this get extension repo versions conflict response has a 3xx status code

func (*GetExtensionRepoVersionsConflict) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionsConflict) IsServerError() bool

IsServerError returns true when this get extension repo versions conflict response has a 5xx status code

func (*GetExtensionRepoVersionsConflict) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionsConflict) IsSuccess() bool

IsSuccess returns true when this get extension repo versions conflict response has a 2xx status code

func (*GetExtensionRepoVersionsConflict) String added in v1.19.1

type GetExtensionRepoVersionsForbidden

type GetExtensionRepoVersionsForbidden struct {
}

GetExtensionRepoVersionsForbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetExtensionRepoVersionsForbidden

func NewGetExtensionRepoVersionsForbidden() *GetExtensionRepoVersionsForbidden

NewGetExtensionRepoVersionsForbidden creates a GetExtensionRepoVersionsForbidden with default headers values

func (*GetExtensionRepoVersionsForbidden) Error

func (*GetExtensionRepoVersionsForbidden) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionsForbidden) IsClientError() bool

IsClientError returns true when this get extension repo versions forbidden response has a 4xx status code

func (*GetExtensionRepoVersionsForbidden) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionsForbidden) IsCode(code int) bool

IsCode returns true when this get extension repo versions forbidden response a status code equal to that given

func (*GetExtensionRepoVersionsForbidden) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionsForbidden) IsRedirect() bool

IsRedirect returns true when this get extension repo versions forbidden response has a 3xx status code

func (*GetExtensionRepoVersionsForbidden) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionsForbidden) IsServerError() bool

IsServerError returns true when this get extension repo versions forbidden response has a 5xx status code

func (*GetExtensionRepoVersionsForbidden) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionsForbidden) IsSuccess() bool

IsSuccess returns true when this get extension repo versions forbidden response has a 2xx status code

func (*GetExtensionRepoVersionsForbidden) String added in v1.19.1

type GetExtensionRepoVersionsNotFound

type GetExtensionRepoVersionsNotFound struct {
}

GetExtensionRepoVersionsNotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetExtensionRepoVersionsNotFound

func NewGetExtensionRepoVersionsNotFound() *GetExtensionRepoVersionsNotFound

NewGetExtensionRepoVersionsNotFound creates a GetExtensionRepoVersionsNotFound with default headers values

func (*GetExtensionRepoVersionsNotFound) Error

func (*GetExtensionRepoVersionsNotFound) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionsNotFound) IsClientError() bool

IsClientError returns true when this get extension repo versions not found response has a 4xx status code

func (*GetExtensionRepoVersionsNotFound) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionsNotFound) IsCode(code int) bool

IsCode returns true when this get extension repo versions not found response a status code equal to that given

func (*GetExtensionRepoVersionsNotFound) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionsNotFound) IsRedirect() bool

IsRedirect returns true when this get extension repo versions not found response has a 3xx status code

func (*GetExtensionRepoVersionsNotFound) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionsNotFound) IsServerError() bool

IsServerError returns true when this get extension repo versions not found response has a 5xx status code

func (*GetExtensionRepoVersionsNotFound) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionsNotFound) IsSuccess() bool

IsSuccess returns true when this get extension repo versions not found response has a 2xx status code

func (*GetExtensionRepoVersionsNotFound) String added in v1.19.1

type GetExtensionRepoVersionsOK

type GetExtensionRepoVersionsOK struct {
	Payload []*models.ExtensionRepoVersionSummary
}

GetExtensionRepoVersionsOK describes a response with status code 200, with default header values.

successful operation

func NewGetExtensionRepoVersionsOK

func NewGetExtensionRepoVersionsOK() *GetExtensionRepoVersionsOK

NewGetExtensionRepoVersionsOK creates a GetExtensionRepoVersionsOK with default headers values

func (*GetExtensionRepoVersionsOK) Error

func (*GetExtensionRepoVersionsOK) GetPayload

func (*GetExtensionRepoVersionsOK) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionsOK) IsClientError() bool

IsClientError returns true when this get extension repo versions o k response has a 4xx status code

func (*GetExtensionRepoVersionsOK) IsCode added in v1.19.1

func (o *GetExtensionRepoVersionsOK) IsCode(code int) bool

IsCode returns true when this get extension repo versions o k response a status code equal to that given

func (*GetExtensionRepoVersionsOK) IsRedirect added in v1.19.1

func (o *GetExtensionRepoVersionsOK) IsRedirect() bool

IsRedirect returns true when this get extension repo versions o k response has a 3xx status code

func (*GetExtensionRepoVersionsOK) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionsOK) IsServerError() bool

IsServerError returns true when this get extension repo versions o k response has a 5xx status code

func (*GetExtensionRepoVersionsOK) IsSuccess added in v1.19.1

func (o *GetExtensionRepoVersionsOK) IsSuccess() bool

IsSuccess returns true when this get extension repo versions o k response has a 2xx status code

func (*GetExtensionRepoVersionsOK) String added in v1.19.1

func (o *GetExtensionRepoVersionsOK) String() string

type GetExtensionRepoVersionsParams

type GetExtensionRepoVersionsParams struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* BucketName.

	   The bucket name
	*/
	BucketName string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetExtensionRepoVersionsParams contains all the parameters to send to the API endpoint

for the get extension repo versions operation.

Typically these are written to a http.Request.

func NewGetExtensionRepoVersionsParams

func NewGetExtensionRepoVersionsParams() *GetExtensionRepoVersionsParams

NewGetExtensionRepoVersionsParams creates a new GetExtensionRepoVersionsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetExtensionRepoVersionsParamsWithContext

func NewGetExtensionRepoVersionsParamsWithContext(ctx context.Context) *GetExtensionRepoVersionsParams

NewGetExtensionRepoVersionsParamsWithContext creates a new GetExtensionRepoVersionsParams object with the ability to set a context for a request.

func NewGetExtensionRepoVersionsParamsWithHTTPClient

func NewGetExtensionRepoVersionsParamsWithHTTPClient(client *http.Client) *GetExtensionRepoVersionsParams

NewGetExtensionRepoVersionsParamsWithHTTPClient creates a new GetExtensionRepoVersionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetExtensionRepoVersionsParamsWithTimeout

func NewGetExtensionRepoVersionsParamsWithTimeout(timeout time.Duration) *GetExtensionRepoVersionsParams

NewGetExtensionRepoVersionsParamsWithTimeout creates a new GetExtensionRepoVersionsParams object with the ability to set a timeout on a request.

func (*GetExtensionRepoVersionsParams) SetArtifactID

func (o *GetExtensionRepoVersionsParams) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) SetBucketName

func (o *GetExtensionRepoVersionsParams) SetBucketName(bucketName string)

SetBucketName adds the bucketName to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) SetContext

func (o *GetExtensionRepoVersionsParams) SetContext(ctx context.Context)

SetContext adds the context to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) SetDefaults

func (o *GetExtensionRepoVersionsParams) SetDefaults()

SetDefaults hydrates default values in the get extension repo versions params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionsParams) SetGroupID

func (o *GetExtensionRepoVersionsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) SetHTTPClient

func (o *GetExtensionRepoVersionsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) SetTimeout

func (o *GetExtensionRepoVersionsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WithArtifactID

WithArtifactID adds the artifactID to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WithBucketName

WithBucketName adds the bucketName to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WithContext

WithContext adds the context to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WithDefaults

WithDefaults hydrates default values in the get extension repo versions params (not the query body).

All values with no default are reset to their zero value.

func (*GetExtensionRepoVersionsParams) WithGroupID

WithGroupID adds the groupID to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WithTimeout

WithTimeout adds the timeout to the get extension repo versions params

func (*GetExtensionRepoVersionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetExtensionRepoVersionsReader

type GetExtensionRepoVersionsReader struct {
	// contains filtered or unexported fields
}

GetExtensionRepoVersionsReader is a Reader for the GetExtensionRepoVersions structure.

func (*GetExtensionRepoVersionsReader) ReadResponse

func (o *GetExtensionRepoVersionsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetExtensionRepoVersionsUnauthorized

type GetExtensionRepoVersionsUnauthorized struct {
}

GetExtensionRepoVersionsUnauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetExtensionRepoVersionsUnauthorized

func NewGetExtensionRepoVersionsUnauthorized() *GetExtensionRepoVersionsUnauthorized

NewGetExtensionRepoVersionsUnauthorized creates a GetExtensionRepoVersionsUnauthorized with default headers values

func (*GetExtensionRepoVersionsUnauthorized) Error

func (*GetExtensionRepoVersionsUnauthorized) IsClientError added in v1.19.1

func (o *GetExtensionRepoVersionsUnauthorized) IsClientError() bool

IsClientError returns true when this get extension repo versions unauthorized response has a 4xx status code

func (*GetExtensionRepoVersionsUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get extension repo versions unauthorized response a status code equal to that given

func (*GetExtensionRepoVersionsUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get extension repo versions unauthorized response has a 3xx status code

func (*GetExtensionRepoVersionsUnauthorized) IsServerError added in v1.19.1

func (o *GetExtensionRepoVersionsUnauthorized) IsServerError() bool

IsServerError returns true when this get extension repo versions unauthorized response has a 5xx status code

func (*GetExtensionRepoVersionsUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get extension repo versions unauthorized response has a 2xx status code

func (*GetExtensionRepoVersionsUnauthorized) String added in v1.19.1

type GetGlobalExtensionRepoVersionSha256BadRequest

type GetGlobalExtensionRepoVersionSha256BadRequest struct {
}

GetGlobalExtensionRepoVersionSha256BadRequest describes a response with status code 400, with default header values.

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetGlobalExtensionRepoVersionSha256BadRequest

func NewGetGlobalExtensionRepoVersionSha256BadRequest() *GetGlobalExtensionRepoVersionSha256BadRequest

NewGetGlobalExtensionRepoVersionSha256BadRequest creates a GetGlobalExtensionRepoVersionSha256BadRequest with default headers values

func (*GetGlobalExtensionRepoVersionSha256BadRequest) Error

func (*GetGlobalExtensionRepoVersionSha256BadRequest) IsClientError added in v1.19.1

IsClientError returns true when this get global extension repo version sha256 bad request response has a 4xx status code

func (*GetGlobalExtensionRepoVersionSha256BadRequest) IsCode added in v1.19.1

IsCode returns true when this get global extension repo version sha256 bad request response a status code equal to that given

func (*GetGlobalExtensionRepoVersionSha256BadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this get global extension repo version sha256 bad request response has a 3xx status code

func (*GetGlobalExtensionRepoVersionSha256BadRequest) IsServerError added in v1.19.1

IsServerError returns true when this get global extension repo version sha256 bad request response has a 5xx status code

func (*GetGlobalExtensionRepoVersionSha256BadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get global extension repo version sha256 bad request response has a 2xx status code

func (*GetGlobalExtensionRepoVersionSha256BadRequest) String added in v1.19.1

type GetGlobalExtensionRepoVersionSha256Conflict

type GetGlobalExtensionRepoVersionSha256Conflict struct {
}

GetGlobalExtensionRepoVersionSha256Conflict describes a response with status code 409, with default header values.

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

func NewGetGlobalExtensionRepoVersionSha256Conflict

func NewGetGlobalExtensionRepoVersionSha256Conflict() *GetGlobalExtensionRepoVersionSha256Conflict

NewGetGlobalExtensionRepoVersionSha256Conflict creates a GetGlobalExtensionRepoVersionSha256Conflict with default headers values

func (*GetGlobalExtensionRepoVersionSha256Conflict) Error

func (*GetGlobalExtensionRepoVersionSha256Conflict) IsClientError added in v1.19.1

IsClientError returns true when this get global extension repo version sha256 conflict response has a 4xx status code

func (*GetGlobalExtensionRepoVersionSha256Conflict) IsCode added in v1.19.1

IsCode returns true when this get global extension repo version sha256 conflict response a status code equal to that given

func (*GetGlobalExtensionRepoVersionSha256Conflict) IsRedirect added in v1.19.1

IsRedirect returns true when this get global extension repo version sha256 conflict response has a 3xx status code

func (*GetGlobalExtensionRepoVersionSha256Conflict) IsServerError added in v1.19.1

IsServerError returns true when this get global extension repo version sha256 conflict response has a 5xx status code

func (*GetGlobalExtensionRepoVersionSha256Conflict) IsSuccess added in v1.19.1

IsSuccess returns true when this get global extension repo version sha256 conflict response has a 2xx status code

func (*GetGlobalExtensionRepoVersionSha256Conflict) String added in v1.19.1

type GetGlobalExtensionRepoVersionSha256Forbidden

type GetGlobalExtensionRepoVersionSha256Forbidden struct {
}

GetGlobalExtensionRepoVersionSha256Forbidden describes a response with status code 403, with default header values.

Client is not authorized to make this request.

func NewGetGlobalExtensionRepoVersionSha256Forbidden

func NewGetGlobalExtensionRepoVersionSha256Forbidden() *GetGlobalExtensionRepoVersionSha256Forbidden

NewGetGlobalExtensionRepoVersionSha256Forbidden creates a GetGlobalExtensionRepoVersionSha256Forbidden with default headers values

func (*GetGlobalExtensionRepoVersionSha256Forbidden) Error

func (*GetGlobalExtensionRepoVersionSha256Forbidden) IsClientError added in v1.19.1

IsClientError returns true when this get global extension repo version sha256 forbidden response has a 4xx status code

func (*GetGlobalExtensionRepoVersionSha256Forbidden) IsCode added in v1.19.1

IsCode returns true when this get global extension repo version sha256 forbidden response a status code equal to that given

func (*GetGlobalExtensionRepoVersionSha256Forbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this get global extension repo version sha256 forbidden response has a 3xx status code

func (*GetGlobalExtensionRepoVersionSha256Forbidden) IsServerError added in v1.19.1

IsServerError returns true when this get global extension repo version sha256 forbidden response has a 5xx status code

func (*GetGlobalExtensionRepoVersionSha256Forbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get global extension repo version sha256 forbidden response has a 2xx status code

func (*GetGlobalExtensionRepoVersionSha256Forbidden) String added in v1.19.1

type GetGlobalExtensionRepoVersionSha256NotFound

type GetGlobalExtensionRepoVersionSha256NotFound struct {
}

GetGlobalExtensionRepoVersionSha256NotFound describes a response with status code 404, with default header values.

The specified resource could not be found.

func NewGetGlobalExtensionRepoVersionSha256NotFound

func NewGetGlobalExtensionRepoVersionSha256NotFound() *GetGlobalExtensionRepoVersionSha256NotFound

NewGetGlobalExtensionRepoVersionSha256NotFound creates a GetGlobalExtensionRepoVersionSha256NotFound with default headers values

func (*GetGlobalExtensionRepoVersionSha256NotFound) Error

func (*GetGlobalExtensionRepoVersionSha256NotFound) IsClientError added in v1.19.1

IsClientError returns true when this get global extension repo version sha256 not found response has a 4xx status code

func (*GetGlobalExtensionRepoVersionSha256NotFound) IsCode added in v1.19.1

IsCode returns true when this get global extension repo version sha256 not found response a status code equal to that given

func (*GetGlobalExtensionRepoVersionSha256NotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this get global extension repo version sha256 not found response has a 3xx status code

func (*GetGlobalExtensionRepoVersionSha256NotFound) IsServerError added in v1.19.1

IsServerError returns true when this get global extension repo version sha256 not found response has a 5xx status code

func (*GetGlobalExtensionRepoVersionSha256NotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this get global extension repo version sha256 not found response has a 2xx status code

func (*GetGlobalExtensionRepoVersionSha256NotFound) String added in v1.19.1

type GetGlobalExtensionRepoVersionSha256OK

type GetGlobalExtensionRepoVersionSha256OK struct {
	Payload string
}

GetGlobalExtensionRepoVersionSha256OK describes a response with status code 200, with default header values.

successful operation

func NewGetGlobalExtensionRepoVersionSha256OK

func NewGetGlobalExtensionRepoVersionSha256OK() *GetGlobalExtensionRepoVersionSha256OK

NewGetGlobalExtensionRepoVersionSha256OK creates a GetGlobalExtensionRepoVersionSha256OK with default headers values

func (*GetGlobalExtensionRepoVersionSha256OK) Error

func (*GetGlobalExtensionRepoVersionSha256OK) GetPayload

func (*GetGlobalExtensionRepoVersionSha256OK) IsClientError added in v1.19.1

func (o *GetGlobalExtensionRepoVersionSha256OK) IsClientError() bool

IsClientError returns true when this get global extension repo version sha256 o k response has a 4xx status code

func (*GetGlobalExtensionRepoVersionSha256OK) IsCode added in v1.19.1

IsCode returns true when this get global extension repo version sha256 o k response a status code equal to that given

func (*GetGlobalExtensionRepoVersionSha256OK) IsRedirect added in v1.19.1

IsRedirect returns true when this get global extension repo version sha256 o k response has a 3xx status code

func (*GetGlobalExtensionRepoVersionSha256OK) IsServerError added in v1.19.1

func (o *GetGlobalExtensionRepoVersionSha256OK) IsServerError() bool

IsServerError returns true when this get global extension repo version sha256 o k response has a 5xx status code

func (*GetGlobalExtensionRepoVersionSha256OK) IsSuccess added in v1.19.1

IsSuccess returns true when this get global extension repo version sha256 o k response has a 2xx status code

func (*GetGlobalExtensionRepoVersionSha256OK) String added in v1.19.1

type GetGlobalExtensionRepoVersionSha256Params

type GetGlobalExtensionRepoVersionSha256Params struct {

	/* ArtifactID.

	   The artifact identifier
	*/
	ArtifactID string

	/* GroupID.

	   The group identifier
	*/
	GroupID string

	/* Version.

	   The version
	*/
	Version string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGlobalExtensionRepoVersionSha256Params contains all the parameters to send to the API endpoint

for the get global extension repo version sha256 operation.

Typically these are written to a http.Request.

func NewGetGlobalExtensionRepoVersionSha256Params

func NewGetGlobalExtensionRepoVersionSha256Params() *GetGlobalExtensionRepoVersionSha256Params

NewGetGlobalExtensionRepoVersionSha256Params creates a new GetGlobalExtensionRepoVersionSha256Params object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGlobalExtensionRepoVersionSha256ParamsWithContext

func NewGetGlobalExtensionRepoVersionSha256ParamsWithContext(ctx context.Context) *GetGlobalExtensionRepoVersionSha256Params

NewGetGlobalExtensionRepoVersionSha256ParamsWithContext creates a new GetGlobalExtensionRepoVersionSha256Params object with the ability to set a context for a request.

func NewGetGlobalExtensionRepoVersionSha256ParamsWithHTTPClient

func NewGetGlobalExtensionRepoVersionSha256ParamsWithHTTPClient(client *http.Client) *GetGlobalExtensionRepoVersionSha256Params

NewGetGlobalExtensionRepoVersionSha256ParamsWithHTTPClient creates a new GetGlobalExtensionRepoVersionSha256Params object with the ability to set a custom HTTPClient for a request.

func NewGetGlobalExtensionRepoVersionSha256ParamsWithTimeout

func NewGetGlobalExtensionRepoVersionSha256ParamsWithTimeout(timeout time.Duration) *GetGlobalExtensionRepoVersionSha256Params

NewGetGlobalExtensionRepoVersionSha256ParamsWithTimeout creates a new GetGlobalExtensionRepoVersionSha256Params object with the ability to set a timeout on a request.

func (*GetGlobalExtensionRepoVersionSha256Params) SetArtifactID

func (o *GetGlobalExtensionRepoVersionSha256Params) SetArtifactID(artifactID string)

SetArtifactID adds the artifactId to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) SetContext

SetContext adds the context to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) SetDefaults

SetDefaults hydrates default values in the get global extension repo version sha256 params (not the query body).

All values with no default are reset to their zero value.

func (*GetGlobalExtensionRepoVersionSha256Params) SetGroupID

func (o *GetGlobalExtensionRepoVersionSha256Params) SetGroupID(groupID string)

SetGroupID adds the groupId to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) SetHTTPClient

func (o *GetGlobalExtensionRepoVersionSha256Params) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) SetTimeout

SetTimeout adds the timeout to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) SetVersion

func (o *GetGlobalExtensionRepoVersionSha256Params) SetVersion(version string)

SetVersion adds the version to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WithArtifactID

WithArtifactID adds the artifactID to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WithContext

WithContext adds the context to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WithDefaults

WithDefaults hydrates default values in the get global extension repo version sha256 params (not the query body).

All values with no default are reset to their zero value.

func (*GetGlobalExtensionRepoVersionSha256Params) WithGroupID

WithGroupID adds the groupID to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WithTimeout

WithTimeout adds the timeout to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WithVersion

WithVersion adds the version to the get global extension repo version sha256 params

func (*GetGlobalExtensionRepoVersionSha256Params) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetGlobalExtensionRepoVersionSha256Reader

type GetGlobalExtensionRepoVersionSha256Reader struct {
	// contains filtered or unexported fields
}

GetGlobalExtensionRepoVersionSha256Reader is a Reader for the GetGlobalExtensionRepoVersionSha256 structure.

func (*GetGlobalExtensionRepoVersionSha256Reader) ReadResponse

func (o *GetGlobalExtensionRepoVersionSha256Reader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGlobalExtensionRepoVersionSha256Unauthorized

type GetGlobalExtensionRepoVersionSha256Unauthorized struct {
}

GetGlobalExtensionRepoVersionSha256Unauthorized describes a response with status code 401, with default header values.

Client could not be authenticated.

func NewGetGlobalExtensionRepoVersionSha256Unauthorized

func NewGetGlobalExtensionRepoVersionSha256Unauthorized() *GetGlobalExtensionRepoVersionSha256Unauthorized

NewGetGlobalExtensionRepoVersionSha256Unauthorized creates a GetGlobalExtensionRepoVersionSha256Unauthorized with default headers values

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) Error

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) IsClientError added in v1.19.1

IsClientError returns true when this get global extension repo version sha256 unauthorized response has a 4xx status code

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) IsCode added in v1.19.1

IsCode returns true when this get global extension repo version sha256 unauthorized response a status code equal to that given

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get global extension repo version sha256 unauthorized response has a 3xx status code

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) IsServerError added in v1.19.1

IsServerError returns true when this get global extension repo version sha256 unauthorized response has a 5xx status code

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get global extension repo version sha256 unauthorized response has a 2xx status code

func (*GetGlobalExtensionRepoVersionSha256Unauthorized) String added in v1.19.1

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL