operations

package
v0.0.0-...-7b7c10a Latest Latest
Warning

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

Go to latest
Published: Sep 16, 2022 License: Apache-2.0 Imports: 10 Imported by: 1

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 operations API

func (*Client) PostCompare

func (a *Client) PostCompare(params *PostCompareParams, opts ...ClientOption) (*PostCompareOK, error)

PostCompare Evaluates an operator with its inputs and returns the result.

func (*Client) PostExtract

func (a *Client) PostExtract(params *PostExtractParams, opts ...ClientOption) (*PostExtractOK, error)

PostExtract Extracts the contents of documents.

func (*Client) PostHubstoreProfiles

func (a *Client) PostHubstoreProfiles(params *PostHubstoreProfilesParams, opts ...ClientOption) (*PostHubstoreProfilesCreated, error)

PostHubstoreProfiles Create new profile.

func (*Client) PostHubstoreProfilesProfileIDAuthorizations

func (a *Client) PostHubstoreProfilesProfileIDAuthorizations(params *PostHubstoreProfilesProfileIDAuthorizationsParams, opts ...ClientOption) (*PostHubstoreProfilesProfileIDAuthorizationsCreated, error)

PostHubstoreProfilesProfileIDAuthorizations Creates a new authorization.

func (*Client) PostHubstoreProfilesProfileIDQueries

func (a *Client) PostHubstoreProfilesProfileIDQueries(params *PostHubstoreProfilesProfileIDQueriesParams, opts ...ClientOption) (*PostHubstoreProfilesProfileIDQueriesCreated, error)

PostHubstoreProfilesProfileIDQueries Store queries.

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 {
	PostCompare(params *PostCompareParams, opts ...ClientOption) (*PostCompareOK, error)

	PostExtract(params *PostExtractParams, opts ...ClientOption) (*PostExtractOK, error)

	PostHubstoreProfiles(params *PostHubstoreProfilesParams, opts ...ClientOption) (*PostHubstoreProfilesCreated, error)

	PostHubstoreProfilesProfileIDAuthorizations(params *PostHubstoreProfilesProfileIDAuthorizationsParams, opts ...ClientOption) (*PostHubstoreProfilesProfileIDAuthorizationsCreated, error)

	PostHubstoreProfilesProfileIDQueries(params *PostHubstoreProfilesProfileIDQueriesParams, opts ...ClientOption) (*PostHubstoreProfilesProfileIDQueriesCreated, 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 operations API client.

type PostCompareInternalServerError

type PostCompareInternalServerError struct {
	Payload *models.Error
}
PostCompareInternalServerError describes a response with status code 500, with default header values.

Generic error.

func NewPostCompareInternalServerError

func NewPostCompareInternalServerError() *PostCompareInternalServerError

NewPostCompareInternalServerError creates a PostCompareInternalServerError with default headers values

func (*PostCompareInternalServerError) Error

func (*PostCompareInternalServerError) GetPayload

func (o *PostCompareInternalServerError) GetPayload() *models.Error

type PostCompareOK

type PostCompareOK struct {
	Payload *models.Comparison
}
PostCompareOK describes a response with status code 200, with default header values.

Result.

func NewPostCompareOK

func NewPostCompareOK() *PostCompareOK

NewPostCompareOK creates a PostCompareOK with default headers values

func (*PostCompareOK) Error

func (o *PostCompareOK) Error() string

func (*PostCompareOK) GetPayload

func (o *PostCompareOK) GetPayload() *models.Comparison

type PostCompareParams

type PostCompareParams struct {

	// Request.
	Request *models.ComparisonRequest

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

PostCompareParams contains all the parameters to send to the API endpoint

for the post compare operation.

Typically these are written to a http.Request.

func NewPostCompareParams

func NewPostCompareParams() *PostCompareParams

NewPostCompareParams creates a new PostCompareParams 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 NewPostCompareParamsWithContext

func NewPostCompareParamsWithContext(ctx context.Context) *PostCompareParams

NewPostCompareParamsWithContext creates a new PostCompareParams object with the ability to set a context for a request.

func NewPostCompareParamsWithHTTPClient

func NewPostCompareParamsWithHTTPClient(client *http.Client) *PostCompareParams

NewPostCompareParamsWithHTTPClient creates a new PostCompareParams object with the ability to set a custom HTTPClient for a request.

func NewPostCompareParamsWithTimeout

func NewPostCompareParamsWithTimeout(timeout time.Duration) *PostCompareParams

NewPostCompareParamsWithTimeout creates a new PostCompareParams object with the ability to set a timeout on a request.

func (*PostCompareParams) SetContext

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

SetContext adds the context to the post compare params

func (*PostCompareParams) SetDefaults

func (o *PostCompareParams) SetDefaults()

SetDefaults hydrates default values in the post compare params (not the query body).

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

func (*PostCompareParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post compare params

func (*PostCompareParams) SetRequest

func (o *PostCompareParams) SetRequest(request *models.ComparisonRequest)

SetRequest adds the request to the post compare params

func (*PostCompareParams) SetTimeout

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

SetTimeout adds the timeout to the post compare params

func (*PostCompareParams) WithContext

func (o *PostCompareParams) WithContext(ctx context.Context) *PostCompareParams

WithContext adds the context to the post compare params

func (*PostCompareParams) WithDefaults

func (o *PostCompareParams) WithDefaults() *PostCompareParams

WithDefaults hydrates default values in the post compare params (not the query body).

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

func (*PostCompareParams) WithHTTPClient

func (o *PostCompareParams) WithHTTPClient(client *http.Client) *PostCompareParams

WithHTTPClient adds the HTTPClient to the post compare params

func (*PostCompareParams) WithRequest

func (o *PostCompareParams) WithRequest(request *models.ComparisonRequest) *PostCompareParams

WithRequest adds the request to the post compare params

func (*PostCompareParams) WithTimeout

func (o *PostCompareParams) WithTimeout(timeout time.Duration) *PostCompareParams

WithTimeout adds the timeout to the post compare params

func (*PostCompareParams) WriteToRequest

func (o *PostCompareParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PostCompareReader

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

PostCompareReader is a Reader for the PostCompare structure.

func (*PostCompareReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostExtractInternalServerError

type PostExtractInternalServerError struct {
}
PostExtractInternalServerError describes a response with status code 500, with default header values.

PostExtractInternalServerError post extract internal server error

func NewPostExtractInternalServerError

func NewPostExtractInternalServerError() *PostExtractInternalServerError

NewPostExtractInternalServerError creates a PostExtractInternalServerError with default headers values

func (*PostExtractInternalServerError) Error

type PostExtractOK

type PostExtractOK struct {
	Payload models.ExtractionResponse
}
PostExtractOK describes a response with status code 200, with default header values.

The extracted and decrypted documents.

func NewPostExtractOK

func NewPostExtractOK() *PostExtractOK

NewPostExtractOK creates a PostExtractOK with default headers values

func (*PostExtractOK) Error

func (o *PostExtractOK) Error() string

func (*PostExtractOK) GetPayload

func (o *PostExtractOK) GetPayload() models.ExtractionResponse

type PostExtractParams

type PostExtractParams struct {

	// Request.
	Request []models.Query

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

PostExtractParams contains all the parameters to send to the API endpoint

for the post extract operation.

Typically these are written to a http.Request.

func NewPostExtractParams

func NewPostExtractParams() *PostExtractParams

NewPostExtractParams creates a new PostExtractParams 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 NewPostExtractParamsWithContext

func NewPostExtractParamsWithContext(ctx context.Context) *PostExtractParams

NewPostExtractParamsWithContext creates a new PostExtractParams object with the ability to set a context for a request.

func NewPostExtractParamsWithHTTPClient

func NewPostExtractParamsWithHTTPClient(client *http.Client) *PostExtractParams

NewPostExtractParamsWithHTTPClient creates a new PostExtractParams object with the ability to set a custom HTTPClient for a request.

func NewPostExtractParamsWithTimeout

func NewPostExtractParamsWithTimeout(timeout time.Duration) *PostExtractParams

NewPostExtractParamsWithTimeout creates a new PostExtractParams object with the ability to set a timeout on a request.

func (*PostExtractParams) SetContext

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

SetContext adds the context to the post extract params

func (*PostExtractParams) SetDefaults

func (o *PostExtractParams) SetDefaults()

SetDefaults hydrates default values in the post extract params (not the query body).

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

func (*PostExtractParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post extract params

func (*PostExtractParams) SetRequest

func (o *PostExtractParams) SetRequest(request []models.Query)

SetRequest adds the request to the post extract params

func (*PostExtractParams) SetTimeout

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

SetTimeout adds the timeout to the post extract params

func (*PostExtractParams) WithContext

func (o *PostExtractParams) WithContext(ctx context.Context) *PostExtractParams

WithContext adds the context to the post extract params

func (*PostExtractParams) WithDefaults

func (o *PostExtractParams) WithDefaults() *PostExtractParams

WithDefaults hydrates default values in the post extract params (not the query body).

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

func (*PostExtractParams) WithHTTPClient

func (o *PostExtractParams) WithHTTPClient(client *http.Client) *PostExtractParams

WithHTTPClient adds the HTTPClient to the post extract params

func (*PostExtractParams) WithRequest

func (o *PostExtractParams) WithRequest(request []models.Query) *PostExtractParams

WithRequest adds the request to the post extract params

func (*PostExtractParams) WithTimeout

func (o *PostExtractParams) WithTimeout(timeout time.Duration) *PostExtractParams

WithTimeout adds the timeout to the post extract params

func (*PostExtractParams) WriteToRequest

func (o *PostExtractParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PostExtractReader

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

PostExtractReader is a Reader for the PostExtract structure.

func (*PostExtractReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostHubstoreProfilesCreated

type PostHubstoreProfilesCreated struct {

	/* Location of the new Profile.
	 */
	Location string

	Payload *models.Profile
}
PostHubstoreProfilesCreated describes a response with status code 201, with default header values.

New profile.

func NewPostHubstoreProfilesCreated

func NewPostHubstoreProfilesCreated() *PostHubstoreProfilesCreated

NewPostHubstoreProfilesCreated creates a PostHubstoreProfilesCreated with default headers values

func (*PostHubstoreProfilesCreated) Error

func (*PostHubstoreProfilesCreated) GetPayload

func (o *PostHubstoreProfilesCreated) GetPayload() *models.Profile

type PostHubstoreProfilesInternalServerError

type PostHubstoreProfilesInternalServerError struct {
	Payload *models.Error
}
PostHubstoreProfilesInternalServerError describes a response with status code 500, with default header values.

Generic Error

func NewPostHubstoreProfilesInternalServerError

func NewPostHubstoreProfilesInternalServerError() *PostHubstoreProfilesInternalServerError

NewPostHubstoreProfilesInternalServerError creates a PostHubstoreProfilesInternalServerError with default headers values

func (*PostHubstoreProfilesInternalServerError) Error

func (*PostHubstoreProfilesInternalServerError) GetPayload

type PostHubstoreProfilesParams

type PostHubstoreProfilesParams struct {

	// Request.
	Request *models.Profile

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

PostHubstoreProfilesParams contains all the parameters to send to the API endpoint

for the post hubstore profiles operation.

Typically these are written to a http.Request.

func NewPostHubstoreProfilesParams

func NewPostHubstoreProfilesParams() *PostHubstoreProfilesParams

NewPostHubstoreProfilesParams creates a new PostHubstoreProfilesParams 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 NewPostHubstoreProfilesParamsWithContext

func NewPostHubstoreProfilesParamsWithContext(ctx context.Context) *PostHubstoreProfilesParams

NewPostHubstoreProfilesParamsWithContext creates a new PostHubstoreProfilesParams object with the ability to set a context for a request.

func NewPostHubstoreProfilesParamsWithHTTPClient

func NewPostHubstoreProfilesParamsWithHTTPClient(client *http.Client) *PostHubstoreProfilesParams

NewPostHubstoreProfilesParamsWithHTTPClient creates a new PostHubstoreProfilesParams object with the ability to set a custom HTTPClient for a request.

func NewPostHubstoreProfilesParamsWithTimeout

func NewPostHubstoreProfilesParamsWithTimeout(timeout time.Duration) *PostHubstoreProfilesParams

NewPostHubstoreProfilesParamsWithTimeout creates a new PostHubstoreProfilesParams object with the ability to set a timeout on a request.

func (*PostHubstoreProfilesParams) SetContext

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

SetContext adds the context to the post hubstore profiles params

func (*PostHubstoreProfilesParams) SetDefaults

func (o *PostHubstoreProfilesParams) SetDefaults()

SetDefaults hydrates default values in the post hubstore profiles params (not the query body).

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

func (*PostHubstoreProfilesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post hubstore profiles params

func (*PostHubstoreProfilesParams) SetRequest

func (o *PostHubstoreProfilesParams) SetRequest(request *models.Profile)

SetRequest adds the request to the post hubstore profiles params

func (*PostHubstoreProfilesParams) SetTimeout

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

SetTimeout adds the timeout to the post hubstore profiles params

func (*PostHubstoreProfilesParams) WithContext

WithContext adds the context to the post hubstore profiles params

func (*PostHubstoreProfilesParams) WithDefaults

WithDefaults hydrates default values in the post hubstore profiles params (not the query body).

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

func (*PostHubstoreProfilesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post hubstore profiles params

func (*PostHubstoreProfilesParams) WithRequest

WithRequest adds the request to the post hubstore profiles params

func (*PostHubstoreProfilesParams) WithTimeout

WithTimeout adds the timeout to the post hubstore profiles params

func (*PostHubstoreProfilesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostHubstoreProfilesProfileIDAuthorizationsCreated

type PostHubstoreProfilesProfileIDAuthorizationsCreated struct {

	/* Location of the authorization.
	 */
	Location string

	Payload *models.Authorization
}
PostHubstoreProfilesProfileIDAuthorizationsCreated describes a response with status code 201, with default header values.

The new authorization.

func NewPostHubstoreProfilesProfileIDAuthorizationsCreated

func NewPostHubstoreProfilesProfileIDAuthorizationsCreated() *PostHubstoreProfilesProfileIDAuthorizationsCreated

NewPostHubstoreProfilesProfileIDAuthorizationsCreated creates a PostHubstoreProfilesProfileIDAuthorizationsCreated with default headers values

func (*PostHubstoreProfilesProfileIDAuthorizationsCreated) Error

func (*PostHubstoreProfilesProfileIDAuthorizationsCreated) GetPayload

type PostHubstoreProfilesProfileIDAuthorizationsInternalServerError

type PostHubstoreProfilesProfileIDAuthorizationsInternalServerError struct {
	Payload *models.Error
}
PostHubstoreProfilesProfileIDAuthorizationsInternalServerError describes a response with status code 500, with default header values.

Generic Error

func NewPostHubstoreProfilesProfileIDAuthorizationsInternalServerError

func NewPostHubstoreProfilesProfileIDAuthorizationsInternalServerError() *PostHubstoreProfilesProfileIDAuthorizationsInternalServerError

NewPostHubstoreProfilesProfileIDAuthorizationsInternalServerError creates a PostHubstoreProfilesProfileIDAuthorizationsInternalServerError with default headers values

func (*PostHubstoreProfilesProfileIDAuthorizationsInternalServerError) Error

func (*PostHubstoreProfilesProfileIDAuthorizationsInternalServerError) GetPayload

type PostHubstoreProfilesProfileIDAuthorizationsParams

type PostHubstoreProfilesProfileIDAuthorizationsParams struct {

	/* ProfileID.

	   The profile's ID.
	*/
	ProfileID string

	// Request.
	Request *models.Authorization

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

PostHubstoreProfilesProfileIDAuthorizationsParams contains all the parameters to send to the API endpoint

for the post hubstore profiles profile ID authorizations operation.

Typically these are written to a http.Request.

func NewPostHubstoreProfilesProfileIDAuthorizationsParams

func NewPostHubstoreProfilesProfileIDAuthorizationsParams() *PostHubstoreProfilesProfileIDAuthorizationsParams

NewPostHubstoreProfilesProfileIDAuthorizationsParams creates a new PostHubstoreProfilesProfileIDAuthorizationsParams 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 NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithContext

func NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithContext(ctx context.Context) *PostHubstoreProfilesProfileIDAuthorizationsParams

NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithContext creates a new PostHubstoreProfilesProfileIDAuthorizationsParams object with the ability to set a context for a request.

func NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithHTTPClient

func NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithHTTPClient(client *http.Client) *PostHubstoreProfilesProfileIDAuthorizationsParams

NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithHTTPClient creates a new PostHubstoreProfilesProfileIDAuthorizationsParams object with the ability to set a custom HTTPClient for a request.

func NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithTimeout

func NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithTimeout(timeout time.Duration) *PostHubstoreProfilesProfileIDAuthorizationsParams

NewPostHubstoreProfilesProfileIDAuthorizationsParamsWithTimeout creates a new PostHubstoreProfilesProfileIDAuthorizationsParams object with the ability to set a timeout on a request.

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) SetContext

SetContext adds the context to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) SetDefaults

SetDefaults hydrates default values in the post hubstore profiles profile ID authorizations params (not the query body).

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

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) SetProfileID

func (o *PostHubstoreProfilesProfileIDAuthorizationsParams) SetProfileID(profileID string)

SetProfileID adds the profileId to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) SetRequest

SetRequest adds the request to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) SetTimeout

SetTimeout adds the timeout to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WithContext

WithContext adds the context to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WithDefaults

WithDefaults hydrates default values in the post hubstore profiles profile ID authorizations params (not the query body).

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

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WithProfileID

WithProfileID adds the profileID to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WithRequest

WithRequest adds the request to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WithTimeout

WithTimeout adds the timeout to the post hubstore profiles profile ID authorizations params

func (*PostHubstoreProfilesProfileIDAuthorizationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostHubstoreProfilesProfileIDAuthorizationsReader

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

PostHubstoreProfilesProfileIDAuthorizationsReader is a Reader for the PostHubstoreProfilesProfileIDAuthorizations structure.

func (*PostHubstoreProfilesProfileIDAuthorizationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostHubstoreProfilesProfileIDQueriesBadRequest

type PostHubstoreProfilesProfileIDQueriesBadRequest struct {
	Payload *models.Error
}
PostHubstoreProfilesProfileIDQueriesBadRequest describes a response with status code 400, with default header values.

Bad request.

func NewPostHubstoreProfilesProfileIDQueriesBadRequest

func NewPostHubstoreProfilesProfileIDQueriesBadRequest() *PostHubstoreProfilesProfileIDQueriesBadRequest

NewPostHubstoreProfilesProfileIDQueriesBadRequest creates a PostHubstoreProfilesProfileIDQueriesBadRequest with default headers values

func (*PostHubstoreProfilesProfileIDQueriesBadRequest) Error

func (*PostHubstoreProfilesProfileIDQueriesBadRequest) GetPayload

type PostHubstoreProfilesProfileIDQueriesCreated

type PostHubstoreProfilesProfileIDQueriesCreated struct {

	/* Location of the query resource.
	 */
	Location string
}
PostHubstoreProfilesProfileIDQueriesCreated describes a response with status code 201, with default header values.

Query stored.

func NewPostHubstoreProfilesProfileIDQueriesCreated

func NewPostHubstoreProfilesProfileIDQueriesCreated() *PostHubstoreProfilesProfileIDQueriesCreated

NewPostHubstoreProfilesProfileIDQueriesCreated creates a PostHubstoreProfilesProfileIDQueriesCreated with default headers values

func (*PostHubstoreProfilesProfileIDQueriesCreated) Error

type PostHubstoreProfilesProfileIDQueriesInternalServerError

type PostHubstoreProfilesProfileIDQueriesInternalServerError struct {
	Payload *models.Error
}
PostHubstoreProfilesProfileIDQueriesInternalServerError describes a response with status code 500, with default header values.

Generic Error

func NewPostHubstoreProfilesProfileIDQueriesInternalServerError

func NewPostHubstoreProfilesProfileIDQueriesInternalServerError() *PostHubstoreProfilesProfileIDQueriesInternalServerError

NewPostHubstoreProfilesProfileIDQueriesInternalServerError creates a PostHubstoreProfilesProfileIDQueriesInternalServerError with default headers values

func (*PostHubstoreProfilesProfileIDQueriesInternalServerError) Error

func (*PostHubstoreProfilesProfileIDQueriesInternalServerError) GetPayload

type PostHubstoreProfilesProfileIDQueriesParams

type PostHubstoreProfilesProfileIDQueriesParams struct {

	/* ProfileID.

	   The profile's ID.
	*/
	ProfileID string

	// Request.
	Request models.Query

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

PostHubstoreProfilesProfileIDQueriesParams contains all the parameters to send to the API endpoint

for the post hubstore profiles profile ID queries operation.

Typically these are written to a http.Request.

func NewPostHubstoreProfilesProfileIDQueriesParams

func NewPostHubstoreProfilesProfileIDQueriesParams() *PostHubstoreProfilesProfileIDQueriesParams

NewPostHubstoreProfilesProfileIDQueriesParams creates a new PostHubstoreProfilesProfileIDQueriesParams 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 NewPostHubstoreProfilesProfileIDQueriesParamsWithContext

func NewPostHubstoreProfilesProfileIDQueriesParamsWithContext(ctx context.Context) *PostHubstoreProfilesProfileIDQueriesParams

NewPostHubstoreProfilesProfileIDQueriesParamsWithContext creates a new PostHubstoreProfilesProfileIDQueriesParams object with the ability to set a context for a request.

func NewPostHubstoreProfilesProfileIDQueriesParamsWithHTTPClient

func NewPostHubstoreProfilesProfileIDQueriesParamsWithHTTPClient(client *http.Client) *PostHubstoreProfilesProfileIDQueriesParams

NewPostHubstoreProfilesProfileIDQueriesParamsWithHTTPClient creates a new PostHubstoreProfilesProfileIDQueriesParams object with the ability to set a custom HTTPClient for a request.

func NewPostHubstoreProfilesProfileIDQueriesParamsWithTimeout

func NewPostHubstoreProfilesProfileIDQueriesParamsWithTimeout(timeout time.Duration) *PostHubstoreProfilesProfileIDQueriesParams

NewPostHubstoreProfilesProfileIDQueriesParamsWithTimeout creates a new PostHubstoreProfilesProfileIDQueriesParams object with the ability to set a timeout on a request.

func (*PostHubstoreProfilesProfileIDQueriesParams) SetContext

SetContext adds the context to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) SetDefaults

SetDefaults hydrates default values in the post hubstore profiles profile ID queries params (not the query body).

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

func (*PostHubstoreProfilesProfileIDQueriesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) SetProfileID

func (o *PostHubstoreProfilesProfileIDQueriesParams) SetProfileID(profileID string)

SetProfileID adds the profileId to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) SetRequest

SetRequest adds the request to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) SetTimeout

SetTimeout adds the timeout to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) WithContext

WithContext adds the context to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) WithDefaults

WithDefaults hydrates default values in the post hubstore profiles profile ID queries params (not the query body).

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

func (*PostHubstoreProfilesProfileIDQueriesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) WithProfileID

WithProfileID adds the profileID to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) WithRequest

WithRequest adds the request to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) WithTimeout

WithTimeout adds the timeout to the post hubstore profiles profile ID queries params

func (*PostHubstoreProfilesProfileIDQueriesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostHubstoreProfilesProfileIDQueriesReader

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

PostHubstoreProfilesProfileIDQueriesReader is a Reader for the PostHubstoreProfilesProfileIDQueries structure.

func (*PostHubstoreProfilesProfileIDQueriesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostHubstoreProfilesReader

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

PostHubstoreProfilesReader is a Reader for the PostHubstoreProfiles structure.

func (*PostHubstoreProfilesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL