pool_data_service

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Nov 27, 2021 License: MIT Imports: 11 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 pool data service API

func (*Client) PoolDataServiceBulkCreate

func (a *Client) PoolDataServiceBulkCreate(params *PoolDataServiceBulkCreateParams, opts ...ClientOption) (*PoolDataServiceBulkCreateOK, error)

PoolDataServiceBulkCreate bulks create mobile data records in a pool

func (*Client) PoolDataServiceBulkDelete

func (a *Client) PoolDataServiceBulkDelete(params *PoolDataServiceBulkDeleteParams, opts ...ClientOption) (*PoolDataServiceBulkDeleteOK, error)

PoolDataServiceBulkDelete bulks delete records from mobile data pool

func (*Client) PoolDataServiceBulkUpdate

func (a *Client) PoolDataServiceBulkUpdate(params *PoolDataServiceBulkUpdateParams, opts ...ClientOption) (*PoolDataServiceBulkUpdateOK, error)

PoolDataServiceBulkUpdate bulks update records in mobile data pool

func (*Client) PoolDataServiceDeleteAttachment added in v0.4.0

func (a *Client) PoolDataServiceDeleteAttachment(params *PoolDataServiceDeleteAttachmentParams, opts ...ClientOption) (*PoolDataServiceDeleteAttachmentOK, error)

PoolDataServiceDeleteAttachment deletes attachment

func (*Client) PoolDataServiceGet

func (a *Client) PoolDataServiceGet(params *PoolDataServiceGetParams, opts ...ClientOption) (*PoolDataServiceGetOK, error)

PoolDataServiceGet gets single mobile data record

func (*Client) PoolDataServiceGetAttachment added in v0.4.0

func (a *Client) PoolDataServiceGetAttachment(params *PoolDataServiceGetAttachmentParams, writer io.Writer, opts ...ClientOption) (*PoolDataServiceGetAttachmentOK, error)

PoolDataServiceGetAttachment gets attachment

func (*Client) PoolDataServiceList

func (a *Client) PoolDataServiceList(params *PoolDataServiceListParams, opts ...ClientOption) (*PoolDataServiceListOK, error)

PoolDataServiceList lists mobile data records

func (*Client) PoolDataServiceStoreAttachment added in v0.4.0

func (a *Client) PoolDataServiceStoreAttachment(params *PoolDataServiceStoreAttachmentParams, opts ...ClientOption) (*PoolDataServiceStoreAttachmentOK, error)

PoolDataServiceStoreAttachment stores attachment

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption added in v0.6.0

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	PoolDataServiceBulkCreate(params *PoolDataServiceBulkCreateParams, opts ...ClientOption) (*PoolDataServiceBulkCreateOK, error)

	PoolDataServiceBulkDelete(params *PoolDataServiceBulkDeleteParams, opts ...ClientOption) (*PoolDataServiceBulkDeleteOK, error)

	PoolDataServiceBulkUpdate(params *PoolDataServiceBulkUpdateParams, opts ...ClientOption) (*PoolDataServiceBulkUpdateOK, error)

	PoolDataServiceDeleteAttachment(params *PoolDataServiceDeleteAttachmentParams, opts ...ClientOption) (*PoolDataServiceDeleteAttachmentOK, error)

	PoolDataServiceGet(params *PoolDataServiceGetParams, opts ...ClientOption) (*PoolDataServiceGetOK, error)

	PoolDataServiceGetAttachment(params *PoolDataServiceGetAttachmentParams, writer io.Writer, opts ...ClientOption) (*PoolDataServiceGetAttachmentOK, error)

	PoolDataServiceList(params *PoolDataServiceListParams, opts ...ClientOption) (*PoolDataServiceListOK, error)

	PoolDataServiceStoreAttachment(params *PoolDataServiceStoreAttachmentParams, opts ...ClientOption) (*PoolDataServiceStoreAttachmentOK, 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 pool data service API client.

type PoolDataServiceBulkCreateBadRequest

type PoolDataServiceBulkCreateBadRequest struct {
	Payload string
}
PoolDataServiceBulkCreateBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceBulkCreateBadRequest

func NewPoolDataServiceBulkCreateBadRequest() *PoolDataServiceBulkCreateBadRequest

NewPoolDataServiceBulkCreateBadRequest creates a PoolDataServiceBulkCreateBadRequest with default headers values

func (*PoolDataServiceBulkCreateBadRequest) Error

func (*PoolDataServiceBulkCreateBadRequest) GetPayload

type PoolDataServiceBulkCreateOK

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

A successful response.

func NewPoolDataServiceBulkCreateOK

func NewPoolDataServiceBulkCreateOK() *PoolDataServiceBulkCreateOK

NewPoolDataServiceBulkCreateOK creates a PoolDataServiceBulkCreateOK with default headers values

func (*PoolDataServiceBulkCreateOK) Error

func (*PoolDataServiceBulkCreateOK) GetPayload

type PoolDataServiceBulkCreateParams

type PoolDataServiceBulkCreateParams struct {

	// Body.
	Body models.DataBulkCreateRequest

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

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

PoolDataServiceBulkCreateParams contains all the parameters to send to the API endpoint

for the pool data service bulk create operation.

Typically these are written to a http.Request.

func NewPoolDataServiceBulkCreateParams

func NewPoolDataServiceBulkCreateParams() *PoolDataServiceBulkCreateParams

NewPoolDataServiceBulkCreateParams creates a new PoolDataServiceBulkCreateParams 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 NewPoolDataServiceBulkCreateParamsWithContext

func NewPoolDataServiceBulkCreateParamsWithContext(ctx context.Context) *PoolDataServiceBulkCreateParams

NewPoolDataServiceBulkCreateParamsWithContext creates a new PoolDataServiceBulkCreateParams object with the ability to set a context for a request.

func NewPoolDataServiceBulkCreateParamsWithHTTPClient

func NewPoolDataServiceBulkCreateParamsWithHTTPClient(client *http.Client) *PoolDataServiceBulkCreateParams

NewPoolDataServiceBulkCreateParamsWithHTTPClient creates a new PoolDataServiceBulkCreateParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceBulkCreateParamsWithTimeout

func NewPoolDataServiceBulkCreateParamsWithTimeout(timeout time.Duration) *PoolDataServiceBulkCreateParams

NewPoolDataServiceBulkCreateParamsWithTimeout creates a new PoolDataServiceBulkCreateParams object with the ability to set a timeout on a request.

func (*PoolDataServiceBulkCreateParams) SetBody

SetBody adds the body to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) SetContext

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

SetContext adds the context to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceBulkCreateParams) SetDefaults()

SetDefaults hydrates default values in the pool data service bulk create params (not the query body).

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

func (*PoolDataServiceBulkCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) SetPoolID

func (o *PoolDataServiceBulkCreateParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) SetTimeout

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

SetTimeout adds the timeout to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) WithBody

WithBody adds the body to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) WithContext

WithContext adds the context to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service bulk create params (not the query body).

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

func (*PoolDataServiceBulkCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) WithPoolID

WithPoolID adds the poolID to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) WithTimeout

WithTimeout adds the timeout to the pool data service bulk create params

func (*PoolDataServiceBulkCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PoolDataServiceBulkCreateReader

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

PoolDataServiceBulkCreateReader is a Reader for the PoolDataServiceBulkCreate structure.

func (*PoolDataServiceBulkCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PoolDataServiceBulkDeleteBadRequest

type PoolDataServiceBulkDeleteBadRequest struct {
	Payload string
}
PoolDataServiceBulkDeleteBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceBulkDeleteBadRequest

func NewPoolDataServiceBulkDeleteBadRequest() *PoolDataServiceBulkDeleteBadRequest

NewPoolDataServiceBulkDeleteBadRequest creates a PoolDataServiceBulkDeleteBadRequest with default headers values

func (*PoolDataServiceBulkDeleteBadRequest) Error

func (*PoolDataServiceBulkDeleteBadRequest) GetPayload

type PoolDataServiceBulkDeleteOK

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

A successful response.

func NewPoolDataServiceBulkDeleteOK

func NewPoolDataServiceBulkDeleteOK() *PoolDataServiceBulkDeleteOK

NewPoolDataServiceBulkDeleteOK creates a PoolDataServiceBulkDeleteOK with default headers values

func (*PoolDataServiceBulkDeleteOK) Error

func (*PoolDataServiceBulkDeleteOK) GetPayload

type PoolDataServiceBulkDeleteParams

type PoolDataServiceBulkDeleteParams struct {

	// Body.
	Body models.DataBulkDeleteRequest

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

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

PoolDataServiceBulkDeleteParams contains all the parameters to send to the API endpoint

for the pool data service bulk delete operation.

Typically these are written to a http.Request.

func NewPoolDataServiceBulkDeleteParams

func NewPoolDataServiceBulkDeleteParams() *PoolDataServiceBulkDeleteParams

NewPoolDataServiceBulkDeleteParams creates a new PoolDataServiceBulkDeleteParams 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 NewPoolDataServiceBulkDeleteParamsWithContext

func NewPoolDataServiceBulkDeleteParamsWithContext(ctx context.Context) *PoolDataServiceBulkDeleteParams

NewPoolDataServiceBulkDeleteParamsWithContext creates a new PoolDataServiceBulkDeleteParams object with the ability to set a context for a request.

func NewPoolDataServiceBulkDeleteParamsWithHTTPClient

func NewPoolDataServiceBulkDeleteParamsWithHTTPClient(client *http.Client) *PoolDataServiceBulkDeleteParams

NewPoolDataServiceBulkDeleteParamsWithHTTPClient creates a new PoolDataServiceBulkDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceBulkDeleteParamsWithTimeout

func NewPoolDataServiceBulkDeleteParamsWithTimeout(timeout time.Duration) *PoolDataServiceBulkDeleteParams

NewPoolDataServiceBulkDeleteParamsWithTimeout creates a new PoolDataServiceBulkDeleteParams object with the ability to set a timeout on a request.

func (*PoolDataServiceBulkDeleteParams) SetBody

SetBody adds the body to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) SetContext

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

SetContext adds the context to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceBulkDeleteParams) SetDefaults()

SetDefaults hydrates default values in the pool data service bulk delete params (not the query body).

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

func (*PoolDataServiceBulkDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) SetPoolID

func (o *PoolDataServiceBulkDeleteParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) WithBody

WithBody adds the body to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) WithContext

WithContext adds the context to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service bulk delete params (not the query body).

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

func (*PoolDataServiceBulkDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) WithPoolID

WithPoolID adds the poolID to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) WithTimeout

WithTimeout adds the timeout to the pool data service bulk delete params

func (*PoolDataServiceBulkDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PoolDataServiceBulkDeleteReader

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

PoolDataServiceBulkDeleteReader is a Reader for the PoolDataServiceBulkDelete structure.

func (*PoolDataServiceBulkDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PoolDataServiceBulkUpdateBadRequest

type PoolDataServiceBulkUpdateBadRequest struct {
	Payload string
}
PoolDataServiceBulkUpdateBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceBulkUpdateBadRequest

func NewPoolDataServiceBulkUpdateBadRequest() *PoolDataServiceBulkUpdateBadRequest

NewPoolDataServiceBulkUpdateBadRequest creates a PoolDataServiceBulkUpdateBadRequest with default headers values

func (*PoolDataServiceBulkUpdateBadRequest) Error

func (*PoolDataServiceBulkUpdateBadRequest) GetPayload

type PoolDataServiceBulkUpdateOK

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

A successful response.

func NewPoolDataServiceBulkUpdateOK

func NewPoolDataServiceBulkUpdateOK() *PoolDataServiceBulkUpdateOK

NewPoolDataServiceBulkUpdateOK creates a PoolDataServiceBulkUpdateOK with default headers values

func (*PoolDataServiceBulkUpdateOK) Error

func (*PoolDataServiceBulkUpdateOK) GetPayload

type PoolDataServiceBulkUpdateParams

type PoolDataServiceBulkUpdateParams struct {

	// Body.
	Body models.DataBulkUpdateRequest

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

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

PoolDataServiceBulkUpdateParams contains all the parameters to send to the API endpoint

for the pool data service bulk update operation.

Typically these are written to a http.Request.

func NewPoolDataServiceBulkUpdateParams

func NewPoolDataServiceBulkUpdateParams() *PoolDataServiceBulkUpdateParams

NewPoolDataServiceBulkUpdateParams creates a new PoolDataServiceBulkUpdateParams 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 NewPoolDataServiceBulkUpdateParamsWithContext

func NewPoolDataServiceBulkUpdateParamsWithContext(ctx context.Context) *PoolDataServiceBulkUpdateParams

NewPoolDataServiceBulkUpdateParamsWithContext creates a new PoolDataServiceBulkUpdateParams object with the ability to set a context for a request.

func NewPoolDataServiceBulkUpdateParamsWithHTTPClient

func NewPoolDataServiceBulkUpdateParamsWithHTTPClient(client *http.Client) *PoolDataServiceBulkUpdateParams

NewPoolDataServiceBulkUpdateParamsWithHTTPClient creates a new PoolDataServiceBulkUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceBulkUpdateParamsWithTimeout

func NewPoolDataServiceBulkUpdateParamsWithTimeout(timeout time.Duration) *PoolDataServiceBulkUpdateParams

NewPoolDataServiceBulkUpdateParamsWithTimeout creates a new PoolDataServiceBulkUpdateParams object with the ability to set a timeout on a request.

func (*PoolDataServiceBulkUpdateParams) SetBody

SetBody adds the body to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) SetContext

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

SetContext adds the context to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceBulkUpdateParams) SetDefaults()

SetDefaults hydrates default values in the pool data service bulk update params (not the query body).

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

func (*PoolDataServiceBulkUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) SetPoolID

func (o *PoolDataServiceBulkUpdateParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) WithBody

WithBody adds the body to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) WithContext

WithContext adds the context to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service bulk update params (not the query body).

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

func (*PoolDataServiceBulkUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) WithPoolID

WithPoolID adds the poolID to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) WithTimeout

WithTimeout adds the timeout to the pool data service bulk update params

func (*PoolDataServiceBulkUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PoolDataServiceBulkUpdateReader

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

PoolDataServiceBulkUpdateReader is a Reader for the PoolDataServiceBulkUpdate structure.

func (*PoolDataServiceBulkUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PoolDataServiceDeleteAttachmentBadRequest added in v0.4.0

type PoolDataServiceDeleteAttachmentBadRequest struct {
	Payload string
}
PoolDataServiceDeleteAttachmentBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceDeleteAttachmentBadRequest added in v0.4.0

func NewPoolDataServiceDeleteAttachmentBadRequest() *PoolDataServiceDeleteAttachmentBadRequest

NewPoolDataServiceDeleteAttachmentBadRequest creates a PoolDataServiceDeleteAttachmentBadRequest with default headers values

func (*PoolDataServiceDeleteAttachmentBadRequest) Error added in v0.4.0

func (*PoolDataServiceDeleteAttachmentBadRequest) GetPayload added in v0.4.0

type PoolDataServiceDeleteAttachmentNotFound added in v0.4.0

type PoolDataServiceDeleteAttachmentNotFound struct {
	Payload string
}
PoolDataServiceDeleteAttachmentNotFound describes a response with status code 404, with default header values.

Returned when the document does not exist.

func NewPoolDataServiceDeleteAttachmentNotFound added in v0.4.0

func NewPoolDataServiceDeleteAttachmentNotFound() *PoolDataServiceDeleteAttachmentNotFound

NewPoolDataServiceDeleteAttachmentNotFound creates a PoolDataServiceDeleteAttachmentNotFound with default headers values

func (*PoolDataServiceDeleteAttachmentNotFound) Error added in v0.4.0

func (*PoolDataServiceDeleteAttachmentNotFound) GetPayload added in v0.4.0

type PoolDataServiceDeleteAttachmentOK added in v0.4.0

type PoolDataServiceDeleteAttachmentOK struct {
	Payload string
}
PoolDataServiceDeleteAttachmentOK describes a response with status code 200, with default header values.

A successful response.

func NewPoolDataServiceDeleteAttachmentOK added in v0.4.0

func NewPoolDataServiceDeleteAttachmentOK() *PoolDataServiceDeleteAttachmentOK

NewPoolDataServiceDeleteAttachmentOK creates a PoolDataServiceDeleteAttachmentOK with default headers values

func (*PoolDataServiceDeleteAttachmentOK) Error added in v0.4.0

func (*PoolDataServiceDeleteAttachmentOK) GetPayload added in v0.4.0

func (o *PoolDataServiceDeleteAttachmentOK) GetPayload() string

type PoolDataServiceDeleteAttachmentParams added in v0.4.0

type PoolDataServiceDeleteAttachmentParams struct {

	/* Attname.

	   Attachment name
	*/
	Attname string

	/* ID.

	   The ID (Primary Key) of the record
	*/
	ID string

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

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

PoolDataServiceDeleteAttachmentParams contains all the parameters to send to the API endpoint

for the pool data service delete attachment operation.

Typically these are written to a http.Request.

func NewPoolDataServiceDeleteAttachmentParams added in v0.4.0

func NewPoolDataServiceDeleteAttachmentParams() *PoolDataServiceDeleteAttachmentParams

NewPoolDataServiceDeleteAttachmentParams creates a new PoolDataServiceDeleteAttachmentParams 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 NewPoolDataServiceDeleteAttachmentParamsWithContext added in v0.4.0

func NewPoolDataServiceDeleteAttachmentParamsWithContext(ctx context.Context) *PoolDataServiceDeleteAttachmentParams

NewPoolDataServiceDeleteAttachmentParamsWithContext creates a new PoolDataServiceDeleteAttachmentParams object with the ability to set a context for a request.

func NewPoolDataServiceDeleteAttachmentParamsWithHTTPClient added in v0.4.0

func NewPoolDataServiceDeleteAttachmentParamsWithHTTPClient(client *http.Client) *PoolDataServiceDeleteAttachmentParams

NewPoolDataServiceDeleteAttachmentParamsWithHTTPClient creates a new PoolDataServiceDeleteAttachmentParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceDeleteAttachmentParamsWithTimeout added in v0.4.0

func NewPoolDataServiceDeleteAttachmentParamsWithTimeout(timeout time.Duration) *PoolDataServiceDeleteAttachmentParams

NewPoolDataServiceDeleteAttachmentParamsWithTimeout creates a new PoolDataServiceDeleteAttachmentParams object with the ability to set a timeout on a request.

func (*PoolDataServiceDeleteAttachmentParams) SetAttname added in v0.4.0

func (o *PoolDataServiceDeleteAttachmentParams) SetAttname(attname string)

SetAttname adds the attname to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) SetContext added in v0.4.0

SetContext adds the context to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceDeleteAttachmentParams) SetDefaults()

SetDefaults hydrates default values in the pool data service delete attachment params (not the query body).

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

func (*PoolDataServiceDeleteAttachmentParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) SetID added in v0.4.0

SetID adds the id to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) SetPoolID added in v0.4.0

func (o *PoolDataServiceDeleteAttachmentParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WithAttname added in v0.4.0

WithAttname adds the attname to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WithContext added in v0.4.0

WithContext adds the context to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service delete attachment params (not the query body).

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

func (*PoolDataServiceDeleteAttachmentParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WithID added in v0.4.0

WithID adds the id to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WithPoolID added in v0.4.0

WithPoolID adds the poolID to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the pool data service delete attachment params

func (*PoolDataServiceDeleteAttachmentParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type PoolDataServiceDeleteAttachmentReader added in v0.4.0

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

PoolDataServiceDeleteAttachmentReader is a Reader for the PoolDataServiceDeleteAttachment structure.

func (*PoolDataServiceDeleteAttachmentReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type PoolDataServiceGetAttachmentBadRequest added in v0.4.0

type PoolDataServiceGetAttachmentBadRequest struct {
	Payload string
}
PoolDataServiceGetAttachmentBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceGetAttachmentBadRequest added in v0.4.0

func NewPoolDataServiceGetAttachmentBadRequest() *PoolDataServiceGetAttachmentBadRequest

NewPoolDataServiceGetAttachmentBadRequest creates a PoolDataServiceGetAttachmentBadRequest with default headers values

func (*PoolDataServiceGetAttachmentBadRequest) Error added in v0.4.0

func (*PoolDataServiceGetAttachmentBadRequest) GetPayload added in v0.4.0

type PoolDataServiceGetAttachmentNotFound added in v0.4.0

type PoolDataServiceGetAttachmentNotFound struct {
	Payload string
}
PoolDataServiceGetAttachmentNotFound describes a response with status code 404, with default header values.

Returned when the document does not exist.

func NewPoolDataServiceGetAttachmentNotFound added in v0.4.0

func NewPoolDataServiceGetAttachmentNotFound() *PoolDataServiceGetAttachmentNotFound

NewPoolDataServiceGetAttachmentNotFound creates a PoolDataServiceGetAttachmentNotFound with default headers values

func (*PoolDataServiceGetAttachmentNotFound) Error added in v0.4.0

func (*PoolDataServiceGetAttachmentNotFound) GetPayload added in v0.4.0

type PoolDataServiceGetAttachmentOK added in v0.4.0

type PoolDataServiceGetAttachmentOK struct {
	Payload io.Writer
}
PoolDataServiceGetAttachmentOK describes a response with status code 200, with default header values.

A successful response.

func NewPoolDataServiceGetAttachmentOK added in v0.4.0

func NewPoolDataServiceGetAttachmentOK(writer io.Writer) *PoolDataServiceGetAttachmentOK

NewPoolDataServiceGetAttachmentOK creates a PoolDataServiceGetAttachmentOK with default headers values

func (*PoolDataServiceGetAttachmentOK) Error added in v0.4.0

func (*PoolDataServiceGetAttachmentOK) GetPayload added in v0.4.0

func (o *PoolDataServiceGetAttachmentOK) GetPayload() io.Writer

type PoolDataServiceGetAttachmentParams added in v0.4.0

type PoolDataServiceGetAttachmentParams struct {

	/* Attname.

	   Attachment name
	*/
	Attname string

	/* ID.

	   The ID (Primary Key) of the record
	*/
	ID string

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

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

PoolDataServiceGetAttachmentParams contains all the parameters to send to the API endpoint

for the pool data service get attachment operation.

Typically these are written to a http.Request.

func NewPoolDataServiceGetAttachmentParams added in v0.4.0

func NewPoolDataServiceGetAttachmentParams() *PoolDataServiceGetAttachmentParams

NewPoolDataServiceGetAttachmentParams creates a new PoolDataServiceGetAttachmentParams 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 NewPoolDataServiceGetAttachmentParamsWithContext added in v0.4.0

func NewPoolDataServiceGetAttachmentParamsWithContext(ctx context.Context) *PoolDataServiceGetAttachmentParams

NewPoolDataServiceGetAttachmentParamsWithContext creates a new PoolDataServiceGetAttachmentParams object with the ability to set a context for a request.

func NewPoolDataServiceGetAttachmentParamsWithHTTPClient added in v0.4.0

func NewPoolDataServiceGetAttachmentParamsWithHTTPClient(client *http.Client) *PoolDataServiceGetAttachmentParams

NewPoolDataServiceGetAttachmentParamsWithHTTPClient creates a new PoolDataServiceGetAttachmentParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceGetAttachmentParamsWithTimeout added in v0.4.0

func NewPoolDataServiceGetAttachmentParamsWithTimeout(timeout time.Duration) *PoolDataServiceGetAttachmentParams

NewPoolDataServiceGetAttachmentParamsWithTimeout creates a new PoolDataServiceGetAttachmentParams object with the ability to set a timeout on a request.

func (*PoolDataServiceGetAttachmentParams) SetAttname added in v0.4.0

func (o *PoolDataServiceGetAttachmentParams) SetAttname(attname string)

SetAttname adds the attname to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) SetContext added in v0.4.0

SetContext adds the context to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceGetAttachmentParams) SetDefaults()

SetDefaults hydrates default values in the pool data service get attachment params (not the query body).

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

func (*PoolDataServiceGetAttachmentParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) SetID added in v0.4.0

SetID adds the id to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) SetPoolID added in v0.4.0

func (o *PoolDataServiceGetAttachmentParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WithAttname added in v0.4.0

WithAttname adds the attname to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WithContext added in v0.4.0

WithContext adds the context to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service get attachment params (not the query body).

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

func (*PoolDataServiceGetAttachmentParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WithID added in v0.4.0

WithID adds the id to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WithPoolID added in v0.4.0

WithPoolID adds the poolID to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the pool data service get attachment params

func (*PoolDataServiceGetAttachmentParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type PoolDataServiceGetAttachmentReader added in v0.4.0

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

PoolDataServiceGetAttachmentReader is a Reader for the PoolDataServiceGetAttachment structure.

func (*PoolDataServiceGetAttachmentReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type PoolDataServiceGetBadRequest

type PoolDataServiceGetBadRequest struct {
	Payload string
}
PoolDataServiceGetBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceGetBadRequest

func NewPoolDataServiceGetBadRequest() *PoolDataServiceGetBadRequest

NewPoolDataServiceGetBadRequest creates a PoolDataServiceGetBadRequest with default headers values

func (*PoolDataServiceGetBadRequest) Error

func (*PoolDataServiceGetBadRequest) GetPayload

func (o *PoolDataServiceGetBadRequest) GetPayload() string

type PoolDataServiceGetNotFound

type PoolDataServiceGetNotFound struct {
	Payload string
}
PoolDataServiceGetNotFound describes a response with status code 404, with default header values.

Returned when the document does not exist.

func NewPoolDataServiceGetNotFound

func NewPoolDataServiceGetNotFound() *PoolDataServiceGetNotFound

NewPoolDataServiceGetNotFound creates a PoolDataServiceGetNotFound with default headers values

func (*PoolDataServiceGetNotFound) Error

func (*PoolDataServiceGetNotFound) GetPayload

func (o *PoolDataServiceGetNotFound) GetPayload() string

type PoolDataServiceGetOK

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

A successful response.

func NewPoolDataServiceGetOK

func NewPoolDataServiceGetOK() *PoolDataServiceGetOK

NewPoolDataServiceGetOK creates a PoolDataServiceGetOK with default headers values

func (*PoolDataServiceGetOK) Error

func (o *PoolDataServiceGetOK) Error() string

func (*PoolDataServiceGetOK) GetPayload

func (o *PoolDataServiceGetOK) GetPayload() *models.DataGetResponse

type PoolDataServiceGetParams

type PoolDataServiceGetParams struct {

	/* ID.

	   The ID (Primary Key) of the record
	*/
	ID string

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

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

PoolDataServiceGetParams contains all the parameters to send to the API endpoint

for the pool data service get operation.

Typically these are written to a http.Request.

func NewPoolDataServiceGetParams

func NewPoolDataServiceGetParams() *PoolDataServiceGetParams

NewPoolDataServiceGetParams creates a new PoolDataServiceGetParams 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 NewPoolDataServiceGetParamsWithContext

func NewPoolDataServiceGetParamsWithContext(ctx context.Context) *PoolDataServiceGetParams

NewPoolDataServiceGetParamsWithContext creates a new PoolDataServiceGetParams object with the ability to set a context for a request.

func NewPoolDataServiceGetParamsWithHTTPClient

func NewPoolDataServiceGetParamsWithHTTPClient(client *http.Client) *PoolDataServiceGetParams

NewPoolDataServiceGetParamsWithHTTPClient creates a new PoolDataServiceGetParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceGetParamsWithTimeout

func NewPoolDataServiceGetParamsWithTimeout(timeout time.Duration) *PoolDataServiceGetParams

NewPoolDataServiceGetParamsWithTimeout creates a new PoolDataServiceGetParams object with the ability to set a timeout on a request.

func (*PoolDataServiceGetParams) SetContext

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

SetContext adds the context to the pool data service get params

func (*PoolDataServiceGetParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceGetParams) SetDefaults()

SetDefaults hydrates default values in the pool data service get params (not the query body).

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

func (*PoolDataServiceGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the pool data service get params

func (*PoolDataServiceGetParams) SetID

func (o *PoolDataServiceGetParams) SetID(id string)

SetID adds the id to the pool data service get params

func (*PoolDataServiceGetParams) SetPoolID

func (o *PoolDataServiceGetParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service get params

func (*PoolDataServiceGetParams) SetTimeout

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

SetTimeout adds the timeout to the pool data service get params

func (*PoolDataServiceGetParams) WithContext

WithContext adds the context to the pool data service get params

func (*PoolDataServiceGetParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service get params (not the query body).

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

func (*PoolDataServiceGetParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the pool data service get params

func (*PoolDataServiceGetParams) WithID

WithID adds the id to the pool data service get params

func (*PoolDataServiceGetParams) WithPoolID

WithPoolID adds the poolID to the pool data service get params

func (*PoolDataServiceGetParams) WithTimeout

WithTimeout adds the timeout to the pool data service get params

func (*PoolDataServiceGetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PoolDataServiceGetReader

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

PoolDataServiceGetReader is a Reader for the PoolDataServiceGet structure.

func (*PoolDataServiceGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PoolDataServiceListBadRequest

type PoolDataServiceListBadRequest struct {
	Payload string
}
PoolDataServiceListBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided or correct

func NewPoolDataServiceListBadRequest

func NewPoolDataServiceListBadRequest() *PoolDataServiceListBadRequest

NewPoolDataServiceListBadRequest creates a PoolDataServiceListBadRequest with default headers values

func (*PoolDataServiceListBadRequest) Error

func (*PoolDataServiceListBadRequest) GetPayload

func (o *PoolDataServiceListBadRequest) GetPayload() string

type PoolDataServiceListOK

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

A successful response.

func NewPoolDataServiceListOK

func NewPoolDataServiceListOK() *PoolDataServiceListOK

NewPoolDataServiceListOK creates a PoolDataServiceListOK with default headers values

func (*PoolDataServiceListOK) Error

func (o *PoolDataServiceListOK) Error() string

func (*PoolDataServiceListOK) GetPayload

type PoolDataServiceListParams

type PoolDataServiceListParams struct {

	/* Limit.

	   The max number of records to fetch.
	*/
	Limit float64

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

	/* Skip.

	   The records to skip from the beggining
	*/
	Skip float64

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

PoolDataServiceListParams contains all the parameters to send to the API endpoint

for the pool data service list operation.

Typically these are written to a http.Request.

func NewPoolDataServiceListParams

func NewPoolDataServiceListParams() *PoolDataServiceListParams

NewPoolDataServiceListParams creates a new PoolDataServiceListParams 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 NewPoolDataServiceListParamsWithContext

func NewPoolDataServiceListParamsWithContext(ctx context.Context) *PoolDataServiceListParams

NewPoolDataServiceListParamsWithContext creates a new PoolDataServiceListParams object with the ability to set a context for a request.

func NewPoolDataServiceListParamsWithHTTPClient

func NewPoolDataServiceListParamsWithHTTPClient(client *http.Client) *PoolDataServiceListParams

NewPoolDataServiceListParamsWithHTTPClient creates a new PoolDataServiceListParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceListParamsWithTimeout

func NewPoolDataServiceListParamsWithTimeout(timeout time.Duration) *PoolDataServiceListParams

NewPoolDataServiceListParamsWithTimeout creates a new PoolDataServiceListParams object with the ability to set a timeout on a request.

func (*PoolDataServiceListParams) SetContext

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

SetContext adds the context to the pool data service list params

func (*PoolDataServiceListParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceListParams) SetDefaults()

SetDefaults hydrates default values in the pool data service list params (not the query body).

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

func (*PoolDataServiceListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the pool data service list params

func (*PoolDataServiceListParams) SetLimit

func (o *PoolDataServiceListParams) SetLimit(limit float64)

SetLimit adds the limit to the pool data service list params

func (*PoolDataServiceListParams) SetPoolID

func (o *PoolDataServiceListParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service list params

func (*PoolDataServiceListParams) SetSkip

func (o *PoolDataServiceListParams) SetSkip(skip float64)

SetSkip adds the skip to the pool data service list params

func (*PoolDataServiceListParams) SetTimeout

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

SetTimeout adds the timeout to the pool data service list params

func (*PoolDataServiceListParams) WithContext

WithContext adds the context to the pool data service list params

func (*PoolDataServiceListParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service list params (not the query body).

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

func (*PoolDataServiceListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the pool data service list params

func (*PoolDataServiceListParams) WithLimit

WithLimit adds the limit to the pool data service list params

func (*PoolDataServiceListParams) WithPoolID

WithPoolID adds the poolID to the pool data service list params

func (*PoolDataServiceListParams) WithSkip

WithSkip adds the skip to the pool data service list params

func (*PoolDataServiceListParams) WithTimeout

WithTimeout adds the timeout to the pool data service list params

func (*PoolDataServiceListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PoolDataServiceListReader

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

PoolDataServiceListReader is a Reader for the PoolDataServiceList structure.

func (*PoolDataServiceListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PoolDataServiceStoreAttachmentBadRequest added in v0.4.0

type PoolDataServiceStoreAttachmentBadRequest struct {
	Payload string
}
PoolDataServiceStoreAttachmentBadRequest describes a response with status code 400, with default header values.

Returned when input parameters are not provided

func NewPoolDataServiceStoreAttachmentBadRequest added in v0.4.0

func NewPoolDataServiceStoreAttachmentBadRequest() *PoolDataServiceStoreAttachmentBadRequest

NewPoolDataServiceStoreAttachmentBadRequest creates a PoolDataServiceStoreAttachmentBadRequest with default headers values

func (*PoolDataServiceStoreAttachmentBadRequest) Error added in v0.4.0

func (*PoolDataServiceStoreAttachmentBadRequest) GetPayload added in v0.4.0

type PoolDataServiceStoreAttachmentNotFound added in v0.4.0

type PoolDataServiceStoreAttachmentNotFound struct {
	Payload string
}
PoolDataServiceStoreAttachmentNotFound describes a response with status code 404, with default header values.

Returned when the document does not exist.

func NewPoolDataServiceStoreAttachmentNotFound added in v0.4.0

func NewPoolDataServiceStoreAttachmentNotFound() *PoolDataServiceStoreAttachmentNotFound

NewPoolDataServiceStoreAttachmentNotFound creates a PoolDataServiceStoreAttachmentNotFound with default headers values

func (*PoolDataServiceStoreAttachmentNotFound) Error added in v0.4.0

func (*PoolDataServiceStoreAttachmentNotFound) GetPayload added in v0.4.0

type PoolDataServiceStoreAttachmentOK added in v0.4.0

type PoolDataServiceStoreAttachmentOK struct {
	Payload string
}
PoolDataServiceStoreAttachmentOK describes a response with status code 200, with default header values.

A successful response.

func NewPoolDataServiceStoreAttachmentOK added in v0.4.0

func NewPoolDataServiceStoreAttachmentOK() *PoolDataServiceStoreAttachmentOK

NewPoolDataServiceStoreAttachmentOK creates a PoolDataServiceStoreAttachmentOK with default headers values

func (*PoolDataServiceStoreAttachmentOK) Error added in v0.4.0

func (*PoolDataServiceStoreAttachmentOK) GetPayload added in v0.4.0

func (o *PoolDataServiceStoreAttachmentOK) GetPayload() string

type PoolDataServiceStoreAttachmentParams added in v0.4.0

type PoolDataServiceStoreAttachmentParams struct {

	/* Attname.

	   Attachment name
	*/
	Attname string

	/* ID.

	   The ID (Primary Key) of the record
	*/
	ID string

	/* PoolID.

	   Pool ID (e.g. orders)
	*/
	PoolID string

	/* Upfile.

	   The attachment content file
	*/
	Upfile runtime.NamedReadCloser

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

PoolDataServiceStoreAttachmentParams contains all the parameters to send to the API endpoint

for the pool data service store attachment operation.

Typically these are written to a http.Request.

func NewPoolDataServiceStoreAttachmentParams added in v0.4.0

func NewPoolDataServiceStoreAttachmentParams() *PoolDataServiceStoreAttachmentParams

NewPoolDataServiceStoreAttachmentParams creates a new PoolDataServiceStoreAttachmentParams 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 NewPoolDataServiceStoreAttachmentParamsWithContext added in v0.4.0

func NewPoolDataServiceStoreAttachmentParamsWithContext(ctx context.Context) *PoolDataServiceStoreAttachmentParams

NewPoolDataServiceStoreAttachmentParamsWithContext creates a new PoolDataServiceStoreAttachmentParams object with the ability to set a context for a request.

func NewPoolDataServiceStoreAttachmentParamsWithHTTPClient added in v0.4.0

func NewPoolDataServiceStoreAttachmentParamsWithHTTPClient(client *http.Client) *PoolDataServiceStoreAttachmentParams

NewPoolDataServiceStoreAttachmentParamsWithHTTPClient creates a new PoolDataServiceStoreAttachmentParams object with the ability to set a custom HTTPClient for a request.

func NewPoolDataServiceStoreAttachmentParamsWithTimeout added in v0.4.0

func NewPoolDataServiceStoreAttachmentParamsWithTimeout(timeout time.Duration) *PoolDataServiceStoreAttachmentParams

NewPoolDataServiceStoreAttachmentParamsWithTimeout creates a new PoolDataServiceStoreAttachmentParams object with the ability to set a timeout on a request.

func (*PoolDataServiceStoreAttachmentParams) SetAttname added in v0.4.0

func (o *PoolDataServiceStoreAttachmentParams) SetAttname(attname string)

SetAttname adds the attname to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) SetContext added in v0.4.0

SetContext adds the context to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) SetDefaults added in v0.4.5

func (o *PoolDataServiceStoreAttachmentParams) SetDefaults()

SetDefaults hydrates default values in the pool data service store attachment params (not the query body).

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

func (*PoolDataServiceStoreAttachmentParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) SetID added in v0.4.0

SetID adds the id to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) SetPoolID added in v0.4.0

func (o *PoolDataServiceStoreAttachmentParams) SetPoolID(poolID string)

SetPoolID adds the poolId to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) SetUpfile added in v0.4.0

SetUpfile adds the upfile to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithAttname added in v0.4.0

WithAttname adds the attname to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithContext added in v0.4.0

WithContext adds the context to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithDefaults added in v0.4.5

WithDefaults hydrates default values in the pool data service store attachment params (not the query body).

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

func (*PoolDataServiceStoreAttachmentParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithID added in v0.4.0

WithID adds the id to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithPoolID added in v0.4.0

WithPoolID adds the poolID to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WithUpfile added in v0.4.0

WithUpfile adds the upfile to the pool data service store attachment params

func (*PoolDataServiceStoreAttachmentParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type PoolDataServiceStoreAttachmentReader added in v0.4.0

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

PoolDataServiceStoreAttachmentReader is a Reader for the PoolDataServiceStoreAttachment structure.

func (*PoolDataServiceStoreAttachmentReader) ReadResponse added in v0.4.0

func (o *PoolDataServiceStoreAttachmentReader) 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