queues_v1

package
v0.0.0-...-13a6dad Latest Latest
Warning

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

Go to latest
Published: Sep 28, 2021 License: Apache-2.0 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 queues v1 API

func (*Client) CreateQueue

CreateQueue creates queue

func (*Client) DeleteQueue

DeleteQueue deletes queue

func (*Client) GetQueue

func (a *Client) GetQueue(params *GetQueueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetQueueOK, *GetQueueNoContent, error)

GetQueue gets queue

func (*Client) ListOrganizationQueueNames

ListOrganizationQueueNames lists organization level queues names

func (*Client) ListOrganizationQueues

ListOrganizationQueues lists organization level queues

func (*Client) ListQueueNames

ListQueueNames lists queues names

func (*Client) ListQueues

ListQueues lists queues

func (*Client) PatchQueue

PatchQueue patches queue

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateQueue

UpdateQueue updates queue

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateQueue(params *CreateQueueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateQueueOK, *CreateQueueNoContent, error)

	DeleteQueue(params *DeleteQueueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteQueueOK, *DeleteQueueNoContent, error)

	GetQueue(params *GetQueueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetQueueOK, *GetQueueNoContent, error)

	ListOrganizationQueueNames(params *ListOrganizationQueueNamesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListOrganizationQueueNamesOK, *ListOrganizationQueueNamesNoContent, error)

	ListOrganizationQueues(params *ListOrganizationQueuesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListOrganizationQueuesOK, *ListOrganizationQueuesNoContent, error)

	ListQueueNames(params *ListQueueNamesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListQueueNamesOK, *ListQueueNamesNoContent, error)

	ListQueues(params *ListQueuesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListQueuesOK, *ListQueuesNoContent, error)

	PatchQueue(params *PatchQueueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchQueueOK, *PatchQueueNoContent, error)

	UpdateQueue(params *UpdateQueueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateQueueOK, *UpdateQueueNoContent, 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 queues v1 API client.

type CreateQueueDefault

type CreateQueueDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
CreateQueueDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewCreateQueueDefault

func NewCreateQueueDefault(code int) *CreateQueueDefault

NewCreateQueueDefault creates a CreateQueueDefault with default headers values

func (*CreateQueueDefault) Code

func (o *CreateQueueDefault) Code() int

Code gets the status code for the create queue default response

func (*CreateQueueDefault) Error

func (o *CreateQueueDefault) Error() string

func (*CreateQueueDefault) GetPayload

type CreateQueueForbidden

type CreateQueueForbidden struct {
	Payload interface{}
}
CreateQueueForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewCreateQueueForbidden

func NewCreateQueueForbidden() *CreateQueueForbidden

NewCreateQueueForbidden creates a CreateQueueForbidden with default headers values

func (*CreateQueueForbidden) Error

func (o *CreateQueueForbidden) Error() string

func (*CreateQueueForbidden) GetPayload

func (o *CreateQueueForbidden) GetPayload() interface{}

type CreateQueueNoContent

type CreateQueueNoContent struct {
	Payload interface{}
}
CreateQueueNoContent describes a response with status code 204, with default header values.

No content.

func NewCreateQueueNoContent

func NewCreateQueueNoContent() *CreateQueueNoContent

NewCreateQueueNoContent creates a CreateQueueNoContent with default headers values

func (*CreateQueueNoContent) Error

func (o *CreateQueueNoContent) Error() string

func (*CreateQueueNoContent) GetPayload

func (o *CreateQueueNoContent) GetPayload() interface{}

type CreateQueueNotFound

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

Resource does not exist.

func NewCreateQueueNotFound

func NewCreateQueueNotFound() *CreateQueueNotFound

NewCreateQueueNotFound creates a CreateQueueNotFound with default headers values

func (*CreateQueueNotFound) Error

func (o *CreateQueueNotFound) Error() string

func (*CreateQueueNotFound) GetPayload

func (o *CreateQueueNotFound) GetPayload() interface{}

type CreateQueueOK

type CreateQueueOK struct {
	Payload *service_model.V1Queue
}
CreateQueueOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateQueueOK

func NewCreateQueueOK() *CreateQueueOK

NewCreateQueueOK creates a CreateQueueOK with default headers values

func (*CreateQueueOK) Error

func (o *CreateQueueOK) Error() string

func (*CreateQueueOK) GetPayload

func (o *CreateQueueOK) GetPayload() *service_model.V1Queue

type CreateQueueParams

type CreateQueueParams struct {

	/* Agent.

	   Agent that consumes the queue
	*/
	Agent string

	/* Body.

	   Queue body
	*/
	Body *service_model.V1Queue

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

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

CreateQueueParams contains all the parameters to send to the API endpoint

for the create queue operation.

Typically these are written to a http.Request.

func NewCreateQueueParams

func NewCreateQueueParams() *CreateQueueParams

NewCreateQueueParams creates a new CreateQueueParams 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 NewCreateQueueParamsWithContext

func NewCreateQueueParamsWithContext(ctx context.Context) *CreateQueueParams

NewCreateQueueParamsWithContext creates a new CreateQueueParams object with the ability to set a context for a request.

func NewCreateQueueParamsWithHTTPClient

func NewCreateQueueParamsWithHTTPClient(client *http.Client) *CreateQueueParams

NewCreateQueueParamsWithHTTPClient creates a new CreateQueueParams object with the ability to set a custom HTTPClient for a request.

func NewCreateQueueParamsWithTimeout

func NewCreateQueueParamsWithTimeout(timeout time.Duration) *CreateQueueParams

NewCreateQueueParamsWithTimeout creates a new CreateQueueParams object with the ability to set a timeout on a request.

func (*CreateQueueParams) SetAgent

func (o *CreateQueueParams) SetAgent(agent string)

SetAgent adds the agent to the create queue params

func (*CreateQueueParams) SetBody

func (o *CreateQueueParams) SetBody(body *service_model.V1Queue)

SetBody adds the body to the create queue params

func (*CreateQueueParams) SetContext

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

SetContext adds the context to the create queue params

func (*CreateQueueParams) SetDefaults

func (o *CreateQueueParams) SetDefaults()

SetDefaults hydrates default values in the create queue params (not the query body).

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

func (*CreateQueueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create queue params

func (*CreateQueueParams) SetOwner

func (o *CreateQueueParams) SetOwner(owner string)

SetOwner adds the owner to the create queue params

func (*CreateQueueParams) SetTimeout

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

SetTimeout adds the timeout to the create queue params

func (*CreateQueueParams) WithAgent

func (o *CreateQueueParams) WithAgent(agent string) *CreateQueueParams

WithAgent adds the agent to the create queue params

func (*CreateQueueParams) WithBody

WithBody adds the body to the create queue params

func (*CreateQueueParams) WithContext

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

WithContext adds the context to the create queue params

func (*CreateQueueParams) WithDefaults

func (o *CreateQueueParams) WithDefaults() *CreateQueueParams

WithDefaults hydrates default values in the create queue params (not the query body).

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

func (*CreateQueueParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create queue params

func (*CreateQueueParams) WithOwner

func (o *CreateQueueParams) WithOwner(owner string) *CreateQueueParams

WithOwner adds the owner to the create queue params

func (*CreateQueueParams) WithTimeout

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

WithTimeout adds the timeout to the create queue params

func (*CreateQueueParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateQueueReader

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

CreateQueueReader is a Reader for the CreateQueue structure.

func (*CreateQueueReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteQueueDefault

type DeleteQueueDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
DeleteQueueDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewDeleteQueueDefault

func NewDeleteQueueDefault(code int) *DeleteQueueDefault

NewDeleteQueueDefault creates a DeleteQueueDefault with default headers values

func (*DeleteQueueDefault) Code

func (o *DeleteQueueDefault) Code() int

Code gets the status code for the delete queue default response

func (*DeleteQueueDefault) Error

func (o *DeleteQueueDefault) Error() string

func (*DeleteQueueDefault) GetPayload

type DeleteQueueForbidden

type DeleteQueueForbidden struct {
	Payload interface{}
}
DeleteQueueForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewDeleteQueueForbidden

func NewDeleteQueueForbidden() *DeleteQueueForbidden

NewDeleteQueueForbidden creates a DeleteQueueForbidden with default headers values

func (*DeleteQueueForbidden) Error

func (o *DeleteQueueForbidden) Error() string

func (*DeleteQueueForbidden) GetPayload

func (o *DeleteQueueForbidden) GetPayload() interface{}

type DeleteQueueNoContent

type DeleteQueueNoContent struct {
	Payload interface{}
}
DeleteQueueNoContent describes a response with status code 204, with default header values.

No content.

func NewDeleteQueueNoContent

func NewDeleteQueueNoContent() *DeleteQueueNoContent

NewDeleteQueueNoContent creates a DeleteQueueNoContent with default headers values

func (*DeleteQueueNoContent) Error

func (o *DeleteQueueNoContent) Error() string

func (*DeleteQueueNoContent) GetPayload

func (o *DeleteQueueNoContent) GetPayload() interface{}

type DeleteQueueNotFound

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

Resource does not exist.

func NewDeleteQueueNotFound

func NewDeleteQueueNotFound() *DeleteQueueNotFound

NewDeleteQueueNotFound creates a DeleteQueueNotFound with default headers values

func (*DeleteQueueNotFound) Error

func (o *DeleteQueueNotFound) Error() string

func (*DeleteQueueNotFound) GetPayload

func (o *DeleteQueueNotFound) GetPayload() interface{}

type DeleteQueueOK

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

A successful response.

func NewDeleteQueueOK

func NewDeleteQueueOK() *DeleteQueueOK

NewDeleteQueueOK creates a DeleteQueueOK with default headers values

func (*DeleteQueueOK) Error

func (o *DeleteQueueOK) Error() string

type DeleteQueueParams

type DeleteQueueParams struct {

	/* Entity.

	   Entity: project name, hub name, registry name, ...
	*/
	Entity string

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* UUID.

	   Uuid identifier of the sub-entity
	*/
	UUID string

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

DeleteQueueParams contains all the parameters to send to the API endpoint

for the delete queue operation.

Typically these are written to a http.Request.

func NewDeleteQueueParams

func NewDeleteQueueParams() *DeleteQueueParams

NewDeleteQueueParams creates a new DeleteQueueParams 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 NewDeleteQueueParamsWithContext

func NewDeleteQueueParamsWithContext(ctx context.Context) *DeleteQueueParams

NewDeleteQueueParamsWithContext creates a new DeleteQueueParams object with the ability to set a context for a request.

func NewDeleteQueueParamsWithHTTPClient

func NewDeleteQueueParamsWithHTTPClient(client *http.Client) *DeleteQueueParams

NewDeleteQueueParamsWithHTTPClient creates a new DeleteQueueParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteQueueParamsWithTimeout

func NewDeleteQueueParamsWithTimeout(timeout time.Duration) *DeleteQueueParams

NewDeleteQueueParamsWithTimeout creates a new DeleteQueueParams object with the ability to set a timeout on a request.

func (*DeleteQueueParams) SetContext

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

SetContext adds the context to the delete queue params

func (*DeleteQueueParams) SetDefaults

func (o *DeleteQueueParams) SetDefaults()

SetDefaults hydrates default values in the delete queue params (not the query body).

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

func (*DeleteQueueParams) SetEntity

func (o *DeleteQueueParams) SetEntity(entity string)

SetEntity adds the entity to the delete queue params

func (*DeleteQueueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete queue params

func (*DeleteQueueParams) SetOwner

func (o *DeleteQueueParams) SetOwner(owner string)

SetOwner adds the owner to the delete queue params

func (*DeleteQueueParams) SetTimeout

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

SetTimeout adds the timeout to the delete queue params

func (*DeleteQueueParams) SetUUID

func (o *DeleteQueueParams) SetUUID(uuid string)

SetUUID adds the uuid to the delete queue params

func (*DeleteQueueParams) WithContext

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

WithContext adds the context to the delete queue params

func (*DeleteQueueParams) WithDefaults

func (o *DeleteQueueParams) WithDefaults() *DeleteQueueParams

WithDefaults hydrates default values in the delete queue params (not the query body).

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

func (*DeleteQueueParams) WithEntity

func (o *DeleteQueueParams) WithEntity(entity string) *DeleteQueueParams

WithEntity adds the entity to the delete queue params

func (*DeleteQueueParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete queue params

func (*DeleteQueueParams) WithOwner

func (o *DeleteQueueParams) WithOwner(owner string) *DeleteQueueParams

WithOwner adds the owner to the delete queue params

func (*DeleteQueueParams) WithTimeout

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

WithTimeout adds the timeout to the delete queue params

func (*DeleteQueueParams) WithUUID

func (o *DeleteQueueParams) WithUUID(uuid string) *DeleteQueueParams

WithUUID adds the uuid to the delete queue params

func (*DeleteQueueParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteQueueReader

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

DeleteQueueReader is a Reader for the DeleteQueue structure.

func (*DeleteQueueReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetQueueDefault

type GetQueueDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
GetQueueDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewGetQueueDefault

func NewGetQueueDefault(code int) *GetQueueDefault

NewGetQueueDefault creates a GetQueueDefault with default headers values

func (*GetQueueDefault) Code

func (o *GetQueueDefault) Code() int

Code gets the status code for the get queue default response

func (*GetQueueDefault) Error

func (o *GetQueueDefault) Error() string

func (*GetQueueDefault) GetPayload

func (o *GetQueueDefault) GetPayload() *service_model.RuntimeError

type GetQueueForbidden

type GetQueueForbidden struct {
	Payload interface{}
}
GetQueueForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewGetQueueForbidden

func NewGetQueueForbidden() *GetQueueForbidden

NewGetQueueForbidden creates a GetQueueForbidden with default headers values

func (*GetQueueForbidden) Error

func (o *GetQueueForbidden) Error() string

func (*GetQueueForbidden) GetPayload

func (o *GetQueueForbidden) GetPayload() interface{}

type GetQueueNoContent

type GetQueueNoContent struct {
	Payload interface{}
}
GetQueueNoContent describes a response with status code 204, with default header values.

No content.

func NewGetQueueNoContent

func NewGetQueueNoContent() *GetQueueNoContent

NewGetQueueNoContent creates a GetQueueNoContent with default headers values

func (*GetQueueNoContent) Error

func (o *GetQueueNoContent) Error() string

func (*GetQueueNoContent) GetPayload

func (o *GetQueueNoContent) GetPayload() interface{}

type GetQueueNotFound

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

Resource does not exist.

func NewGetQueueNotFound

func NewGetQueueNotFound() *GetQueueNotFound

NewGetQueueNotFound creates a GetQueueNotFound with default headers values

func (*GetQueueNotFound) Error

func (o *GetQueueNotFound) Error() string

func (*GetQueueNotFound) GetPayload

func (o *GetQueueNotFound) GetPayload() interface{}

type GetQueueOK

type GetQueueOK struct {
	Payload *service_model.V1Queue
}
GetQueueOK describes a response with status code 200, with default header values.

A successful response.

func NewGetQueueOK

func NewGetQueueOK() *GetQueueOK

NewGetQueueOK creates a GetQueueOK with default headers values

func (*GetQueueOK) Error

func (o *GetQueueOK) Error() string

func (*GetQueueOK) GetPayload

func (o *GetQueueOK) GetPayload() *service_model.V1Queue

type GetQueueParams

type GetQueueParams struct {

	/* Entity.

	   Entity: project name, hub name, registry name, ...
	*/
	Entity string

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* UUID.

	   Uuid identifier of the sub-entity
	*/
	UUID string

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

GetQueueParams contains all the parameters to send to the API endpoint

for the get queue operation.

Typically these are written to a http.Request.

func NewGetQueueParams

func NewGetQueueParams() *GetQueueParams

NewGetQueueParams creates a new GetQueueParams 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 NewGetQueueParamsWithContext

func NewGetQueueParamsWithContext(ctx context.Context) *GetQueueParams

NewGetQueueParamsWithContext creates a new GetQueueParams object with the ability to set a context for a request.

func NewGetQueueParamsWithHTTPClient

func NewGetQueueParamsWithHTTPClient(client *http.Client) *GetQueueParams

NewGetQueueParamsWithHTTPClient creates a new GetQueueParams object with the ability to set a custom HTTPClient for a request.

func NewGetQueueParamsWithTimeout

func NewGetQueueParamsWithTimeout(timeout time.Duration) *GetQueueParams

NewGetQueueParamsWithTimeout creates a new GetQueueParams object with the ability to set a timeout on a request.

func (*GetQueueParams) SetContext

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

SetContext adds the context to the get queue params

func (*GetQueueParams) SetDefaults

func (o *GetQueueParams) SetDefaults()

SetDefaults hydrates default values in the get queue params (not the query body).

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

func (*GetQueueParams) SetEntity

func (o *GetQueueParams) SetEntity(entity string)

SetEntity adds the entity to the get queue params

func (*GetQueueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get queue params

func (*GetQueueParams) SetOwner

func (o *GetQueueParams) SetOwner(owner string)

SetOwner adds the owner to the get queue params

func (*GetQueueParams) SetTimeout

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

SetTimeout adds the timeout to the get queue params

func (*GetQueueParams) SetUUID

func (o *GetQueueParams) SetUUID(uuid string)

SetUUID adds the uuid to the get queue params

func (*GetQueueParams) WithContext

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

WithContext adds the context to the get queue params

func (*GetQueueParams) WithDefaults

func (o *GetQueueParams) WithDefaults() *GetQueueParams

WithDefaults hydrates default values in the get queue params (not the query body).

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

func (*GetQueueParams) WithEntity

func (o *GetQueueParams) WithEntity(entity string) *GetQueueParams

WithEntity adds the entity to the get queue params

func (*GetQueueParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get queue params

func (*GetQueueParams) WithOwner

func (o *GetQueueParams) WithOwner(owner string) *GetQueueParams

WithOwner adds the owner to the get queue params

func (*GetQueueParams) WithTimeout

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

WithTimeout adds the timeout to the get queue params

func (*GetQueueParams) WithUUID

func (o *GetQueueParams) WithUUID(uuid string) *GetQueueParams

WithUUID adds the uuid to the get queue params

func (*GetQueueParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetQueueReader

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

GetQueueReader is a Reader for the GetQueue structure.

func (*GetQueueReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListOrganizationQueueNamesDefault

type ListOrganizationQueueNamesDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
ListOrganizationQueueNamesDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewListOrganizationQueueNamesDefault

func NewListOrganizationQueueNamesDefault(code int) *ListOrganizationQueueNamesDefault

NewListOrganizationQueueNamesDefault creates a ListOrganizationQueueNamesDefault with default headers values

func (*ListOrganizationQueueNamesDefault) Code

Code gets the status code for the list organization queue names default response

func (*ListOrganizationQueueNamesDefault) Error

func (*ListOrganizationQueueNamesDefault) GetPayload

type ListOrganizationQueueNamesForbidden

type ListOrganizationQueueNamesForbidden struct {
	Payload interface{}
}
ListOrganizationQueueNamesForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewListOrganizationQueueNamesForbidden

func NewListOrganizationQueueNamesForbidden() *ListOrganizationQueueNamesForbidden

NewListOrganizationQueueNamesForbidden creates a ListOrganizationQueueNamesForbidden with default headers values

func (*ListOrganizationQueueNamesForbidden) Error

func (*ListOrganizationQueueNamesForbidden) GetPayload

func (o *ListOrganizationQueueNamesForbidden) GetPayload() interface{}

type ListOrganizationQueueNamesNoContent

type ListOrganizationQueueNamesNoContent struct {
	Payload interface{}
}
ListOrganizationQueueNamesNoContent describes a response with status code 204, with default header values.

No content.

func NewListOrganizationQueueNamesNoContent

func NewListOrganizationQueueNamesNoContent() *ListOrganizationQueueNamesNoContent

NewListOrganizationQueueNamesNoContent creates a ListOrganizationQueueNamesNoContent with default headers values

func (*ListOrganizationQueueNamesNoContent) Error

func (*ListOrganizationQueueNamesNoContent) GetPayload

func (o *ListOrganizationQueueNamesNoContent) GetPayload() interface{}

type ListOrganizationQueueNamesNotFound

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

Resource does not exist.

func NewListOrganizationQueueNamesNotFound

func NewListOrganizationQueueNamesNotFound() *ListOrganizationQueueNamesNotFound

NewListOrganizationQueueNamesNotFound creates a ListOrganizationQueueNamesNotFound with default headers values

func (*ListOrganizationQueueNamesNotFound) Error

func (*ListOrganizationQueueNamesNotFound) GetPayload

func (o *ListOrganizationQueueNamesNotFound) GetPayload() interface{}

type ListOrganizationQueueNamesOK

type ListOrganizationQueueNamesOK struct {
	Payload *service_model.V1ListQueuesResponse
}
ListOrganizationQueueNamesOK describes a response with status code 200, with default header values.

A successful response.

func NewListOrganizationQueueNamesOK

func NewListOrganizationQueueNamesOK() *ListOrganizationQueueNamesOK

NewListOrganizationQueueNamesOK creates a ListOrganizationQueueNamesOK with default headers values

func (*ListOrganizationQueueNamesOK) Error

func (*ListOrganizationQueueNamesOK) GetPayload

type ListOrganizationQueueNamesParams

type ListOrganizationQueueNamesParams struct {

	/* Limit.

	   Limit size.

	   Format: int32
	*/
	Limit *int32

	/* NoPage.

	   No pagination.
	*/
	NoPage *bool

	/* Offset.

	   Pagination offset.

	   Format: int32
	*/
	Offset *int32

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* Query.

	   Query filter the search.
	*/
	Query *string

	/* Sort.

	   Sort to order the search.
	*/
	Sort *string

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

ListOrganizationQueueNamesParams contains all the parameters to send to the API endpoint

for the list organization queue names operation.

Typically these are written to a http.Request.

func NewListOrganizationQueueNamesParams

func NewListOrganizationQueueNamesParams() *ListOrganizationQueueNamesParams

NewListOrganizationQueueNamesParams creates a new ListOrganizationQueueNamesParams 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 NewListOrganizationQueueNamesParamsWithContext

func NewListOrganizationQueueNamesParamsWithContext(ctx context.Context) *ListOrganizationQueueNamesParams

NewListOrganizationQueueNamesParamsWithContext creates a new ListOrganizationQueueNamesParams object with the ability to set a context for a request.

func NewListOrganizationQueueNamesParamsWithHTTPClient

func NewListOrganizationQueueNamesParamsWithHTTPClient(client *http.Client) *ListOrganizationQueueNamesParams

NewListOrganizationQueueNamesParamsWithHTTPClient creates a new ListOrganizationQueueNamesParams object with the ability to set a custom HTTPClient for a request.

func NewListOrganizationQueueNamesParamsWithTimeout

func NewListOrganizationQueueNamesParamsWithTimeout(timeout time.Duration) *ListOrganizationQueueNamesParams

NewListOrganizationQueueNamesParamsWithTimeout creates a new ListOrganizationQueueNamesParams object with the ability to set a timeout on a request.

func (*ListOrganizationQueueNamesParams) SetContext

SetContext adds the context to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetDefaults

func (o *ListOrganizationQueueNamesParams) SetDefaults()

SetDefaults hydrates default values in the list organization queue names params (not the query body).

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

func (*ListOrganizationQueueNamesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetLimit

func (o *ListOrganizationQueueNamesParams) SetLimit(limit *int32)

SetLimit adds the limit to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetNoPage

func (o *ListOrganizationQueueNamesParams) SetNoPage(noPage *bool)

SetNoPage adds the noPage to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetOffset

func (o *ListOrganizationQueueNamesParams) SetOffset(offset *int32)

SetOffset adds the offset to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetOwner

func (o *ListOrganizationQueueNamesParams) SetOwner(owner string)

SetOwner adds the owner to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetQuery

func (o *ListOrganizationQueueNamesParams) SetQuery(query *string)

SetQuery adds the query to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetSort

func (o *ListOrganizationQueueNamesParams) SetSort(sort *string)

SetSort adds the sort to the list organization queue names params

func (*ListOrganizationQueueNamesParams) SetTimeout

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

SetTimeout adds the timeout to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithContext

WithContext adds the context to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithDefaults

WithDefaults hydrates default values in the list organization queue names params (not the query body).

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

func (*ListOrganizationQueueNamesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithLimit

WithLimit adds the limit to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithNoPage

WithNoPage adds the noPage to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithOffset

WithOffset adds the offset to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithOwner

WithOwner adds the owner to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithQuery

WithQuery adds the query to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithSort

WithSort adds the sort to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WithTimeout

WithTimeout adds the timeout to the list organization queue names params

func (*ListOrganizationQueueNamesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListOrganizationQueueNamesReader

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

ListOrganizationQueueNamesReader is a Reader for the ListOrganizationQueueNames structure.

func (*ListOrganizationQueueNamesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListOrganizationQueuesDefault

type ListOrganizationQueuesDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
ListOrganizationQueuesDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewListOrganizationQueuesDefault

func NewListOrganizationQueuesDefault(code int) *ListOrganizationQueuesDefault

NewListOrganizationQueuesDefault creates a ListOrganizationQueuesDefault with default headers values

func (*ListOrganizationQueuesDefault) Code

Code gets the status code for the list organization queues default response

func (*ListOrganizationQueuesDefault) Error

func (*ListOrganizationQueuesDefault) GetPayload

type ListOrganizationQueuesForbidden

type ListOrganizationQueuesForbidden struct {
	Payload interface{}
}
ListOrganizationQueuesForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewListOrganizationQueuesForbidden

func NewListOrganizationQueuesForbidden() *ListOrganizationQueuesForbidden

NewListOrganizationQueuesForbidden creates a ListOrganizationQueuesForbidden with default headers values

func (*ListOrganizationQueuesForbidden) Error

func (*ListOrganizationQueuesForbidden) GetPayload

func (o *ListOrganizationQueuesForbidden) GetPayload() interface{}

type ListOrganizationQueuesNoContent

type ListOrganizationQueuesNoContent struct {
	Payload interface{}
}
ListOrganizationQueuesNoContent describes a response with status code 204, with default header values.

No content.

func NewListOrganizationQueuesNoContent

func NewListOrganizationQueuesNoContent() *ListOrganizationQueuesNoContent

NewListOrganizationQueuesNoContent creates a ListOrganizationQueuesNoContent with default headers values

func (*ListOrganizationQueuesNoContent) Error

func (*ListOrganizationQueuesNoContent) GetPayload

func (o *ListOrganizationQueuesNoContent) GetPayload() interface{}

type ListOrganizationQueuesNotFound

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

Resource does not exist.

func NewListOrganizationQueuesNotFound

func NewListOrganizationQueuesNotFound() *ListOrganizationQueuesNotFound

NewListOrganizationQueuesNotFound creates a ListOrganizationQueuesNotFound with default headers values

func (*ListOrganizationQueuesNotFound) Error

func (*ListOrganizationQueuesNotFound) GetPayload

func (o *ListOrganizationQueuesNotFound) GetPayload() interface{}

type ListOrganizationQueuesOK

type ListOrganizationQueuesOK struct {
	Payload *service_model.V1ListQueuesResponse
}
ListOrganizationQueuesOK describes a response with status code 200, with default header values.

A successful response.

func NewListOrganizationQueuesOK

func NewListOrganizationQueuesOK() *ListOrganizationQueuesOK

NewListOrganizationQueuesOK creates a ListOrganizationQueuesOK with default headers values

func (*ListOrganizationQueuesOK) Error

func (o *ListOrganizationQueuesOK) Error() string

func (*ListOrganizationQueuesOK) GetPayload

type ListOrganizationQueuesParams

type ListOrganizationQueuesParams struct {

	/* Limit.

	   Limit size.

	   Format: int32
	*/
	Limit *int32

	/* NoPage.

	   No pagination.
	*/
	NoPage *bool

	/* Offset.

	   Pagination offset.

	   Format: int32
	*/
	Offset *int32

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* Query.

	   Query filter the search.
	*/
	Query *string

	/* Sort.

	   Sort to order the search.
	*/
	Sort *string

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

ListOrganizationQueuesParams contains all the parameters to send to the API endpoint

for the list organization queues operation.

Typically these are written to a http.Request.

func NewListOrganizationQueuesParams

func NewListOrganizationQueuesParams() *ListOrganizationQueuesParams

NewListOrganizationQueuesParams creates a new ListOrganizationQueuesParams 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 NewListOrganizationQueuesParamsWithContext

func NewListOrganizationQueuesParamsWithContext(ctx context.Context) *ListOrganizationQueuesParams

NewListOrganizationQueuesParamsWithContext creates a new ListOrganizationQueuesParams object with the ability to set a context for a request.

func NewListOrganizationQueuesParamsWithHTTPClient

func NewListOrganizationQueuesParamsWithHTTPClient(client *http.Client) *ListOrganizationQueuesParams

NewListOrganizationQueuesParamsWithHTTPClient creates a new ListOrganizationQueuesParams object with the ability to set a custom HTTPClient for a request.

func NewListOrganizationQueuesParamsWithTimeout

func NewListOrganizationQueuesParamsWithTimeout(timeout time.Duration) *ListOrganizationQueuesParams

NewListOrganizationQueuesParamsWithTimeout creates a new ListOrganizationQueuesParams object with the ability to set a timeout on a request.

func (*ListOrganizationQueuesParams) SetContext

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

SetContext adds the context to the list organization queues params

func (*ListOrganizationQueuesParams) SetDefaults

func (o *ListOrganizationQueuesParams) SetDefaults()

SetDefaults hydrates default values in the list organization queues params (not the query body).

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

func (*ListOrganizationQueuesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list organization queues params

func (*ListOrganizationQueuesParams) SetLimit

func (o *ListOrganizationQueuesParams) SetLimit(limit *int32)

SetLimit adds the limit to the list organization queues params

func (*ListOrganizationQueuesParams) SetNoPage

func (o *ListOrganizationQueuesParams) SetNoPage(noPage *bool)

SetNoPage adds the noPage to the list organization queues params

func (*ListOrganizationQueuesParams) SetOffset

func (o *ListOrganizationQueuesParams) SetOffset(offset *int32)

SetOffset adds the offset to the list organization queues params

func (*ListOrganizationQueuesParams) SetOwner

func (o *ListOrganizationQueuesParams) SetOwner(owner string)

SetOwner adds the owner to the list organization queues params

func (*ListOrganizationQueuesParams) SetQuery

func (o *ListOrganizationQueuesParams) SetQuery(query *string)

SetQuery adds the query to the list organization queues params

func (*ListOrganizationQueuesParams) SetSort

func (o *ListOrganizationQueuesParams) SetSort(sort *string)

SetSort adds the sort to the list organization queues params

func (*ListOrganizationQueuesParams) SetTimeout

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

SetTimeout adds the timeout to the list organization queues params

func (*ListOrganizationQueuesParams) WithContext

WithContext adds the context to the list organization queues params

func (*ListOrganizationQueuesParams) WithDefaults

WithDefaults hydrates default values in the list organization queues params (not the query body).

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

func (*ListOrganizationQueuesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list organization queues params

func (*ListOrganizationQueuesParams) WithLimit

WithLimit adds the limit to the list organization queues params

func (*ListOrganizationQueuesParams) WithNoPage

WithNoPage adds the noPage to the list organization queues params

func (*ListOrganizationQueuesParams) WithOffset

WithOffset adds the offset to the list organization queues params

func (*ListOrganizationQueuesParams) WithOwner

WithOwner adds the owner to the list organization queues params

func (*ListOrganizationQueuesParams) WithQuery

WithQuery adds the query to the list organization queues params

func (*ListOrganizationQueuesParams) WithSort

WithSort adds the sort to the list organization queues params

func (*ListOrganizationQueuesParams) WithTimeout

WithTimeout adds the timeout to the list organization queues params

func (*ListOrganizationQueuesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListOrganizationQueuesReader

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

ListOrganizationQueuesReader is a Reader for the ListOrganizationQueues structure.

func (*ListOrganizationQueuesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListQueueNamesDefault

type ListQueueNamesDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
ListQueueNamesDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewListQueueNamesDefault

func NewListQueueNamesDefault(code int) *ListQueueNamesDefault

NewListQueueNamesDefault creates a ListQueueNamesDefault with default headers values

func (*ListQueueNamesDefault) Code

func (o *ListQueueNamesDefault) Code() int

Code gets the status code for the list queue names default response

func (*ListQueueNamesDefault) Error

func (o *ListQueueNamesDefault) Error() string

func (*ListQueueNamesDefault) GetPayload

type ListQueueNamesForbidden

type ListQueueNamesForbidden struct {
	Payload interface{}
}
ListQueueNamesForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewListQueueNamesForbidden

func NewListQueueNamesForbidden() *ListQueueNamesForbidden

NewListQueueNamesForbidden creates a ListQueueNamesForbidden with default headers values

func (*ListQueueNamesForbidden) Error

func (o *ListQueueNamesForbidden) Error() string

func (*ListQueueNamesForbidden) GetPayload

func (o *ListQueueNamesForbidden) GetPayload() interface{}

type ListQueueNamesNoContent

type ListQueueNamesNoContent struct {
	Payload interface{}
}
ListQueueNamesNoContent describes a response with status code 204, with default header values.

No content.

func NewListQueueNamesNoContent

func NewListQueueNamesNoContent() *ListQueueNamesNoContent

NewListQueueNamesNoContent creates a ListQueueNamesNoContent with default headers values

func (*ListQueueNamesNoContent) Error

func (o *ListQueueNamesNoContent) Error() string

func (*ListQueueNamesNoContent) GetPayload

func (o *ListQueueNamesNoContent) GetPayload() interface{}

type ListQueueNamesNotFound

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

Resource does not exist.

func NewListQueueNamesNotFound

func NewListQueueNamesNotFound() *ListQueueNamesNotFound

NewListQueueNamesNotFound creates a ListQueueNamesNotFound with default headers values

func (*ListQueueNamesNotFound) Error

func (o *ListQueueNamesNotFound) Error() string

func (*ListQueueNamesNotFound) GetPayload

func (o *ListQueueNamesNotFound) GetPayload() interface{}

type ListQueueNamesOK

type ListQueueNamesOK struct {
	Payload *service_model.V1ListQueuesResponse
}
ListQueueNamesOK describes a response with status code 200, with default header values.

A successful response.

func NewListQueueNamesOK

func NewListQueueNamesOK() *ListQueueNamesOK

NewListQueueNamesOK creates a ListQueueNamesOK with default headers values

func (*ListQueueNamesOK) Error

func (o *ListQueueNamesOK) Error() string

func (*ListQueueNamesOK) GetPayload

type ListQueueNamesParams

type ListQueueNamesParams struct {

	/* Limit.

	   Limit size.

	   Format: int32
	*/
	Limit *int32

	/* Mode.

	   Mode of the search.
	*/
	Mode *string

	/* Name.

	   Entity managing the resource
	*/
	Name string

	/* NoPage.

	   No pagination.
	*/
	NoPage *bool

	/* Offset.

	   Pagination offset.

	   Format: int32
	*/
	Offset *int32

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* Query.

	   Query filter the search.
	*/
	Query *string

	/* Sort.

	   Sort to order the search.
	*/
	Sort *string

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

ListQueueNamesParams contains all the parameters to send to the API endpoint

for the list queue names operation.

Typically these are written to a http.Request.

func NewListQueueNamesParams

func NewListQueueNamesParams() *ListQueueNamesParams

NewListQueueNamesParams creates a new ListQueueNamesParams 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 NewListQueueNamesParamsWithContext

func NewListQueueNamesParamsWithContext(ctx context.Context) *ListQueueNamesParams

NewListQueueNamesParamsWithContext creates a new ListQueueNamesParams object with the ability to set a context for a request.

func NewListQueueNamesParamsWithHTTPClient

func NewListQueueNamesParamsWithHTTPClient(client *http.Client) *ListQueueNamesParams

NewListQueueNamesParamsWithHTTPClient creates a new ListQueueNamesParams object with the ability to set a custom HTTPClient for a request.

func NewListQueueNamesParamsWithTimeout

func NewListQueueNamesParamsWithTimeout(timeout time.Duration) *ListQueueNamesParams

NewListQueueNamesParamsWithTimeout creates a new ListQueueNamesParams object with the ability to set a timeout on a request.

func (*ListQueueNamesParams) SetContext

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

SetContext adds the context to the list queue names params

func (*ListQueueNamesParams) SetDefaults

func (o *ListQueueNamesParams) SetDefaults()

SetDefaults hydrates default values in the list queue names params (not the query body).

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

func (*ListQueueNamesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list queue names params

func (*ListQueueNamesParams) SetLimit

func (o *ListQueueNamesParams) SetLimit(limit *int32)

SetLimit adds the limit to the list queue names params

func (*ListQueueNamesParams) SetMode

func (o *ListQueueNamesParams) SetMode(mode *string)

SetMode adds the mode to the list queue names params

func (*ListQueueNamesParams) SetName

func (o *ListQueueNamesParams) SetName(name string)

SetName adds the name to the list queue names params

func (*ListQueueNamesParams) SetNoPage

func (o *ListQueueNamesParams) SetNoPage(noPage *bool)

SetNoPage adds the noPage to the list queue names params

func (*ListQueueNamesParams) SetOffset

func (o *ListQueueNamesParams) SetOffset(offset *int32)

SetOffset adds the offset to the list queue names params

func (*ListQueueNamesParams) SetOwner

func (o *ListQueueNamesParams) SetOwner(owner string)

SetOwner adds the owner to the list queue names params

func (*ListQueueNamesParams) SetQuery

func (o *ListQueueNamesParams) SetQuery(query *string)

SetQuery adds the query to the list queue names params

func (*ListQueueNamesParams) SetSort

func (o *ListQueueNamesParams) SetSort(sort *string)

SetSort adds the sort to the list queue names params

func (*ListQueueNamesParams) SetTimeout

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

SetTimeout adds the timeout to the list queue names params

func (*ListQueueNamesParams) WithContext

WithContext adds the context to the list queue names params

func (*ListQueueNamesParams) WithDefaults

func (o *ListQueueNamesParams) WithDefaults() *ListQueueNamesParams

WithDefaults hydrates default values in the list queue names params (not the query body).

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

func (*ListQueueNamesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list queue names params

func (*ListQueueNamesParams) WithLimit

func (o *ListQueueNamesParams) WithLimit(limit *int32) *ListQueueNamesParams

WithLimit adds the limit to the list queue names params

func (*ListQueueNamesParams) WithMode

func (o *ListQueueNamesParams) WithMode(mode *string) *ListQueueNamesParams

WithMode adds the mode to the list queue names params

func (*ListQueueNamesParams) WithName

WithName adds the name to the list queue names params

func (*ListQueueNamesParams) WithNoPage

func (o *ListQueueNamesParams) WithNoPage(noPage *bool) *ListQueueNamesParams

WithNoPage adds the noPage to the list queue names params

func (*ListQueueNamesParams) WithOffset

func (o *ListQueueNamesParams) WithOffset(offset *int32) *ListQueueNamesParams

WithOffset adds the offset to the list queue names params

func (*ListQueueNamesParams) WithOwner

func (o *ListQueueNamesParams) WithOwner(owner string) *ListQueueNamesParams

WithOwner adds the owner to the list queue names params

func (*ListQueueNamesParams) WithQuery

func (o *ListQueueNamesParams) WithQuery(query *string) *ListQueueNamesParams

WithQuery adds the query to the list queue names params

func (*ListQueueNamesParams) WithSort

func (o *ListQueueNamesParams) WithSort(sort *string) *ListQueueNamesParams

WithSort adds the sort to the list queue names params

func (*ListQueueNamesParams) WithTimeout

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

WithTimeout adds the timeout to the list queue names params

func (*ListQueueNamesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListQueueNamesReader

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

ListQueueNamesReader is a Reader for the ListQueueNames structure.

func (*ListQueueNamesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListQueuesDefault

type ListQueuesDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
ListQueuesDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewListQueuesDefault

func NewListQueuesDefault(code int) *ListQueuesDefault

NewListQueuesDefault creates a ListQueuesDefault with default headers values

func (*ListQueuesDefault) Code

func (o *ListQueuesDefault) Code() int

Code gets the status code for the list queues default response

func (*ListQueuesDefault) Error

func (o *ListQueuesDefault) Error() string

func (*ListQueuesDefault) GetPayload

func (o *ListQueuesDefault) GetPayload() *service_model.RuntimeError

type ListQueuesForbidden

type ListQueuesForbidden struct {
	Payload interface{}
}
ListQueuesForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewListQueuesForbidden

func NewListQueuesForbidden() *ListQueuesForbidden

NewListQueuesForbidden creates a ListQueuesForbidden with default headers values

func (*ListQueuesForbidden) Error

func (o *ListQueuesForbidden) Error() string

func (*ListQueuesForbidden) GetPayload

func (o *ListQueuesForbidden) GetPayload() interface{}

type ListQueuesNoContent

type ListQueuesNoContent struct {
	Payload interface{}
}
ListQueuesNoContent describes a response with status code 204, with default header values.

No content.

func NewListQueuesNoContent

func NewListQueuesNoContent() *ListQueuesNoContent

NewListQueuesNoContent creates a ListQueuesNoContent with default headers values

func (*ListQueuesNoContent) Error

func (o *ListQueuesNoContent) Error() string

func (*ListQueuesNoContent) GetPayload

func (o *ListQueuesNoContent) GetPayload() interface{}

type ListQueuesNotFound

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

Resource does not exist.

func NewListQueuesNotFound

func NewListQueuesNotFound() *ListQueuesNotFound

NewListQueuesNotFound creates a ListQueuesNotFound with default headers values

func (*ListQueuesNotFound) Error

func (o *ListQueuesNotFound) Error() string

func (*ListQueuesNotFound) GetPayload

func (o *ListQueuesNotFound) GetPayload() interface{}

type ListQueuesOK

type ListQueuesOK struct {
	Payload *service_model.V1ListQueuesResponse
}
ListQueuesOK describes a response with status code 200, with default header values.

A successful response.

func NewListQueuesOK

func NewListQueuesOK() *ListQueuesOK

NewListQueuesOK creates a ListQueuesOK with default headers values

func (*ListQueuesOK) Error

func (o *ListQueuesOK) Error() string

func (*ListQueuesOK) GetPayload

type ListQueuesParams

type ListQueuesParams struct {

	/* Limit.

	   Limit size.

	   Format: int32
	*/
	Limit *int32

	/* Mode.

	   Mode of the search.
	*/
	Mode *string

	/* Name.

	   Entity managing the resource
	*/
	Name string

	/* NoPage.

	   No pagination.
	*/
	NoPage *bool

	/* Offset.

	   Pagination offset.

	   Format: int32
	*/
	Offset *int32

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* Query.

	   Query filter the search.
	*/
	Query *string

	/* Sort.

	   Sort to order the search.
	*/
	Sort *string

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

ListQueuesParams contains all the parameters to send to the API endpoint

for the list queues operation.

Typically these are written to a http.Request.

func NewListQueuesParams

func NewListQueuesParams() *ListQueuesParams

NewListQueuesParams creates a new ListQueuesParams 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 NewListQueuesParamsWithContext

func NewListQueuesParamsWithContext(ctx context.Context) *ListQueuesParams

NewListQueuesParamsWithContext creates a new ListQueuesParams object with the ability to set a context for a request.

func NewListQueuesParamsWithHTTPClient

func NewListQueuesParamsWithHTTPClient(client *http.Client) *ListQueuesParams

NewListQueuesParamsWithHTTPClient creates a new ListQueuesParams object with the ability to set a custom HTTPClient for a request.

func NewListQueuesParamsWithTimeout

func NewListQueuesParamsWithTimeout(timeout time.Duration) *ListQueuesParams

NewListQueuesParamsWithTimeout creates a new ListQueuesParams object with the ability to set a timeout on a request.

func (*ListQueuesParams) SetContext

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

SetContext adds the context to the list queues params

func (*ListQueuesParams) SetDefaults

func (o *ListQueuesParams) SetDefaults()

SetDefaults hydrates default values in the list queues params (not the query body).

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

func (*ListQueuesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list queues params

func (*ListQueuesParams) SetLimit

func (o *ListQueuesParams) SetLimit(limit *int32)

SetLimit adds the limit to the list queues params

func (*ListQueuesParams) SetMode

func (o *ListQueuesParams) SetMode(mode *string)

SetMode adds the mode to the list queues params

func (*ListQueuesParams) SetName

func (o *ListQueuesParams) SetName(name string)

SetName adds the name to the list queues params

func (*ListQueuesParams) SetNoPage

func (o *ListQueuesParams) SetNoPage(noPage *bool)

SetNoPage adds the noPage to the list queues params

func (*ListQueuesParams) SetOffset

func (o *ListQueuesParams) SetOffset(offset *int32)

SetOffset adds the offset to the list queues params

func (*ListQueuesParams) SetOwner

func (o *ListQueuesParams) SetOwner(owner string)

SetOwner adds the owner to the list queues params

func (*ListQueuesParams) SetQuery

func (o *ListQueuesParams) SetQuery(query *string)

SetQuery adds the query to the list queues params

func (*ListQueuesParams) SetSort

func (o *ListQueuesParams) SetSort(sort *string)

SetSort adds the sort to the list queues params

func (*ListQueuesParams) SetTimeout

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

SetTimeout adds the timeout to the list queues params

func (*ListQueuesParams) WithContext

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

WithContext adds the context to the list queues params

func (*ListQueuesParams) WithDefaults

func (o *ListQueuesParams) WithDefaults() *ListQueuesParams

WithDefaults hydrates default values in the list queues params (not the query body).

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

func (*ListQueuesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list queues params

func (*ListQueuesParams) WithLimit

func (o *ListQueuesParams) WithLimit(limit *int32) *ListQueuesParams

WithLimit adds the limit to the list queues params

func (*ListQueuesParams) WithMode

func (o *ListQueuesParams) WithMode(mode *string) *ListQueuesParams

WithMode adds the mode to the list queues params

func (*ListQueuesParams) WithName

func (o *ListQueuesParams) WithName(name string) *ListQueuesParams

WithName adds the name to the list queues params

func (*ListQueuesParams) WithNoPage

func (o *ListQueuesParams) WithNoPage(noPage *bool) *ListQueuesParams

WithNoPage adds the noPage to the list queues params

func (*ListQueuesParams) WithOffset

func (o *ListQueuesParams) WithOffset(offset *int32) *ListQueuesParams

WithOffset adds the offset to the list queues params

func (*ListQueuesParams) WithOwner

func (o *ListQueuesParams) WithOwner(owner string) *ListQueuesParams

WithOwner adds the owner to the list queues params

func (*ListQueuesParams) WithQuery

func (o *ListQueuesParams) WithQuery(query *string) *ListQueuesParams

WithQuery adds the query to the list queues params

func (*ListQueuesParams) WithSort

func (o *ListQueuesParams) WithSort(sort *string) *ListQueuesParams

WithSort adds the sort to the list queues params

func (*ListQueuesParams) WithTimeout

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

WithTimeout adds the timeout to the list queues params

func (*ListQueuesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListQueuesReader

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

ListQueuesReader is a Reader for the ListQueues structure.

func (*ListQueuesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchQueueDefault

type PatchQueueDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
PatchQueueDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewPatchQueueDefault

func NewPatchQueueDefault(code int) *PatchQueueDefault

NewPatchQueueDefault creates a PatchQueueDefault with default headers values

func (*PatchQueueDefault) Code

func (o *PatchQueueDefault) Code() int

Code gets the status code for the patch queue default response

func (*PatchQueueDefault) Error

func (o *PatchQueueDefault) Error() string

func (*PatchQueueDefault) GetPayload

func (o *PatchQueueDefault) GetPayload() *service_model.RuntimeError

type PatchQueueForbidden

type PatchQueueForbidden struct {
	Payload interface{}
}
PatchQueueForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewPatchQueueForbidden

func NewPatchQueueForbidden() *PatchQueueForbidden

NewPatchQueueForbidden creates a PatchQueueForbidden with default headers values

func (*PatchQueueForbidden) Error

func (o *PatchQueueForbidden) Error() string

func (*PatchQueueForbidden) GetPayload

func (o *PatchQueueForbidden) GetPayload() interface{}

type PatchQueueNoContent

type PatchQueueNoContent struct {
	Payload interface{}
}
PatchQueueNoContent describes a response with status code 204, with default header values.

No content.

func NewPatchQueueNoContent

func NewPatchQueueNoContent() *PatchQueueNoContent

NewPatchQueueNoContent creates a PatchQueueNoContent with default headers values

func (*PatchQueueNoContent) Error

func (o *PatchQueueNoContent) Error() string

func (*PatchQueueNoContent) GetPayload

func (o *PatchQueueNoContent) GetPayload() interface{}

type PatchQueueNotFound

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

Resource does not exist.

func NewPatchQueueNotFound

func NewPatchQueueNotFound() *PatchQueueNotFound

NewPatchQueueNotFound creates a PatchQueueNotFound with default headers values

func (*PatchQueueNotFound) Error

func (o *PatchQueueNotFound) Error() string

func (*PatchQueueNotFound) GetPayload

func (o *PatchQueueNotFound) GetPayload() interface{}

type PatchQueueOK

type PatchQueueOK struct {
	Payload *service_model.V1Queue
}
PatchQueueOK describes a response with status code 200, with default header values.

A successful response.

func NewPatchQueueOK

func NewPatchQueueOK() *PatchQueueOK

NewPatchQueueOK creates a PatchQueueOK with default headers values

func (*PatchQueueOK) Error

func (o *PatchQueueOK) Error() string

func (*PatchQueueOK) GetPayload

func (o *PatchQueueOK) GetPayload() *service_model.V1Queue

type PatchQueueParams

type PatchQueueParams struct {

	/* Agent.

	   Agent that consumes the queue
	*/
	Agent string

	/* Body.

	   Queue body
	*/
	Body *service_model.V1Queue

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* QueueUUID.

	   UUID
	*/
	QueueUUID string

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

PatchQueueParams contains all the parameters to send to the API endpoint

for the patch queue operation.

Typically these are written to a http.Request.

func NewPatchQueueParams

func NewPatchQueueParams() *PatchQueueParams

NewPatchQueueParams creates a new PatchQueueParams 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 NewPatchQueueParamsWithContext

func NewPatchQueueParamsWithContext(ctx context.Context) *PatchQueueParams

NewPatchQueueParamsWithContext creates a new PatchQueueParams object with the ability to set a context for a request.

func NewPatchQueueParamsWithHTTPClient

func NewPatchQueueParamsWithHTTPClient(client *http.Client) *PatchQueueParams

NewPatchQueueParamsWithHTTPClient creates a new PatchQueueParams object with the ability to set a custom HTTPClient for a request.

func NewPatchQueueParamsWithTimeout

func NewPatchQueueParamsWithTimeout(timeout time.Duration) *PatchQueueParams

NewPatchQueueParamsWithTimeout creates a new PatchQueueParams object with the ability to set a timeout on a request.

func (*PatchQueueParams) SetAgent

func (o *PatchQueueParams) SetAgent(agent string)

SetAgent adds the agent to the patch queue params

func (*PatchQueueParams) SetBody

func (o *PatchQueueParams) SetBody(body *service_model.V1Queue)

SetBody adds the body to the patch queue params

func (*PatchQueueParams) SetContext

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

SetContext adds the context to the patch queue params

func (*PatchQueueParams) SetDefaults

func (o *PatchQueueParams) SetDefaults()

SetDefaults hydrates default values in the patch queue params (not the query body).

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

func (*PatchQueueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch queue params

func (*PatchQueueParams) SetOwner

func (o *PatchQueueParams) SetOwner(owner string)

SetOwner adds the owner to the patch queue params

func (*PatchQueueParams) SetQueueUUID

func (o *PatchQueueParams) SetQueueUUID(queueUUID string)

SetQueueUUID adds the queueUuid to the patch queue params

func (*PatchQueueParams) SetTimeout

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

SetTimeout adds the timeout to the patch queue params

func (*PatchQueueParams) WithAgent

func (o *PatchQueueParams) WithAgent(agent string) *PatchQueueParams

WithAgent adds the agent to the patch queue params

func (*PatchQueueParams) WithBody

WithBody adds the body to the patch queue params

func (*PatchQueueParams) WithContext

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

WithContext adds the context to the patch queue params

func (*PatchQueueParams) WithDefaults

func (o *PatchQueueParams) WithDefaults() *PatchQueueParams

WithDefaults hydrates default values in the patch queue params (not the query body).

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

func (*PatchQueueParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the patch queue params

func (*PatchQueueParams) WithOwner

func (o *PatchQueueParams) WithOwner(owner string) *PatchQueueParams

WithOwner adds the owner to the patch queue params

func (*PatchQueueParams) WithQueueUUID

func (o *PatchQueueParams) WithQueueUUID(queueUUID string) *PatchQueueParams

WithQueueUUID adds the queueUUID to the patch queue params

func (*PatchQueueParams) WithTimeout

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

WithTimeout adds the timeout to the patch queue params

func (*PatchQueueParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PatchQueueReader

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

PatchQueueReader is a Reader for the PatchQueue structure.

func (*PatchQueueReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateQueueDefault

type UpdateQueueDefault struct {
	Payload *service_model.RuntimeError
	// contains filtered or unexported fields
}
UpdateQueueDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewUpdateQueueDefault

func NewUpdateQueueDefault(code int) *UpdateQueueDefault

NewUpdateQueueDefault creates a UpdateQueueDefault with default headers values

func (*UpdateQueueDefault) Code

func (o *UpdateQueueDefault) Code() int

Code gets the status code for the update queue default response

func (*UpdateQueueDefault) Error

func (o *UpdateQueueDefault) Error() string

func (*UpdateQueueDefault) GetPayload

type UpdateQueueForbidden

type UpdateQueueForbidden struct {
	Payload interface{}
}
UpdateQueueForbidden describes a response with status code 403, with default header values.

You don't have permission to access the resource.

func NewUpdateQueueForbidden

func NewUpdateQueueForbidden() *UpdateQueueForbidden

NewUpdateQueueForbidden creates a UpdateQueueForbidden with default headers values

func (*UpdateQueueForbidden) Error

func (o *UpdateQueueForbidden) Error() string

func (*UpdateQueueForbidden) GetPayload

func (o *UpdateQueueForbidden) GetPayload() interface{}

type UpdateQueueNoContent

type UpdateQueueNoContent struct {
	Payload interface{}
}
UpdateQueueNoContent describes a response with status code 204, with default header values.

No content.

func NewUpdateQueueNoContent

func NewUpdateQueueNoContent() *UpdateQueueNoContent

NewUpdateQueueNoContent creates a UpdateQueueNoContent with default headers values

func (*UpdateQueueNoContent) Error

func (o *UpdateQueueNoContent) Error() string

func (*UpdateQueueNoContent) GetPayload

func (o *UpdateQueueNoContent) GetPayload() interface{}

type UpdateQueueNotFound

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

Resource does not exist.

func NewUpdateQueueNotFound

func NewUpdateQueueNotFound() *UpdateQueueNotFound

NewUpdateQueueNotFound creates a UpdateQueueNotFound with default headers values

func (*UpdateQueueNotFound) Error

func (o *UpdateQueueNotFound) Error() string

func (*UpdateQueueNotFound) GetPayload

func (o *UpdateQueueNotFound) GetPayload() interface{}

type UpdateQueueOK

type UpdateQueueOK struct {
	Payload *service_model.V1Queue
}
UpdateQueueOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateQueueOK

func NewUpdateQueueOK() *UpdateQueueOK

NewUpdateQueueOK creates a UpdateQueueOK with default headers values

func (*UpdateQueueOK) Error

func (o *UpdateQueueOK) Error() string

func (*UpdateQueueOK) GetPayload

func (o *UpdateQueueOK) GetPayload() *service_model.V1Queue

type UpdateQueueParams

type UpdateQueueParams struct {

	/* Agent.

	   Agent that consumes the queue
	*/
	Agent string

	/* Body.

	   Queue body
	*/
	Body *service_model.V1Queue

	/* Owner.

	   Owner of the namespace
	*/
	Owner string

	/* QueueUUID.

	   UUID
	*/
	QueueUUID string

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

UpdateQueueParams contains all the parameters to send to the API endpoint

for the update queue operation.

Typically these are written to a http.Request.

func NewUpdateQueueParams

func NewUpdateQueueParams() *UpdateQueueParams

NewUpdateQueueParams creates a new UpdateQueueParams 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 NewUpdateQueueParamsWithContext

func NewUpdateQueueParamsWithContext(ctx context.Context) *UpdateQueueParams

NewUpdateQueueParamsWithContext creates a new UpdateQueueParams object with the ability to set a context for a request.

func NewUpdateQueueParamsWithHTTPClient

func NewUpdateQueueParamsWithHTTPClient(client *http.Client) *UpdateQueueParams

NewUpdateQueueParamsWithHTTPClient creates a new UpdateQueueParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateQueueParamsWithTimeout

func NewUpdateQueueParamsWithTimeout(timeout time.Duration) *UpdateQueueParams

NewUpdateQueueParamsWithTimeout creates a new UpdateQueueParams object with the ability to set a timeout on a request.

func (*UpdateQueueParams) SetAgent

func (o *UpdateQueueParams) SetAgent(agent string)

SetAgent adds the agent to the update queue params

func (*UpdateQueueParams) SetBody

func (o *UpdateQueueParams) SetBody(body *service_model.V1Queue)

SetBody adds the body to the update queue params

func (*UpdateQueueParams) SetContext

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

SetContext adds the context to the update queue params

func (*UpdateQueueParams) SetDefaults

func (o *UpdateQueueParams) SetDefaults()

SetDefaults hydrates default values in the update queue params (not the query body).

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

func (*UpdateQueueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update queue params

func (*UpdateQueueParams) SetOwner

func (o *UpdateQueueParams) SetOwner(owner string)

SetOwner adds the owner to the update queue params

func (*UpdateQueueParams) SetQueueUUID

func (o *UpdateQueueParams) SetQueueUUID(queueUUID string)

SetQueueUUID adds the queueUuid to the update queue params

func (*UpdateQueueParams) SetTimeout

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

SetTimeout adds the timeout to the update queue params

func (*UpdateQueueParams) WithAgent

func (o *UpdateQueueParams) WithAgent(agent string) *UpdateQueueParams

WithAgent adds the agent to the update queue params

func (*UpdateQueueParams) WithBody

WithBody adds the body to the update queue params

func (*UpdateQueueParams) WithContext

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

WithContext adds the context to the update queue params

func (*UpdateQueueParams) WithDefaults

func (o *UpdateQueueParams) WithDefaults() *UpdateQueueParams

WithDefaults hydrates default values in the update queue params (not the query body).

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

func (*UpdateQueueParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update queue params

func (*UpdateQueueParams) WithOwner

func (o *UpdateQueueParams) WithOwner(owner string) *UpdateQueueParams

WithOwner adds the owner to the update queue params

func (*UpdateQueueParams) WithQueueUUID

func (o *UpdateQueueParams) WithQueueUUID(queueUUID string) *UpdateQueueParams

WithQueueUUID adds the queueUUID to the update queue params

func (*UpdateQueueParams) WithTimeout

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

WithTimeout adds the timeout to the update queue params

func (*UpdateQueueParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateQueueReader

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

UpdateQueueReader is a Reader for the UpdateQueue structure.

func (*UpdateQueueReader) ReadResponse

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