executions

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Aug 27, 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 executions API

func (*Client) DeleteAllUsingDELETE

func (a *Client) DeleteAllUsingDELETE(params *DeleteAllUsingDELETEParams, opts ...ClientOption) (*DeleteAllUsingDELETEAccepted, error)

DeleteAllUsingDELETE deletes all executions

Delete executions that match the specified filter.

func (*Client) DeleteUsingDELETE3

func (a *Client) DeleteUsingDELETE3(params *DeleteUsingDELETE3Params, opts ...ClientOption) (*DeleteUsingDELETE3OK, error)

DeleteUsingDELETE3 deletes an execution by id

Delete an Execution

func (*Client) GetAllUsingGET3

func (a *Client) GetAllUsingGET3(params *GetAllUsingGET3Params, opts ...ClientOption) (*GetAllUsingGET3OK, error)

GetAllUsingGET3 gets all executions

Get all Executions with specified paging and filter parameters.

func (*Client) GetUsingGET1

func (a *Client) GetUsingGET1(params *GetUsingGET1Params, opts ...ClientOption) (*GetUsingGET1OK, error)

GetUsingGET1 gets an execution

Get an Execution by id

func (*Client) ModifyExecutionUsingPOST

func (a *Client) ModifyExecutionUsingPOST(params *ModifyExecutionUsingPOSTParams, opts ...ClientOption) (*ModifyExecutionUsingPOSTOK, error)

ModifyExecutionUsingPOST acts on an execution

Actions supported are pause, resume, cancel and tag

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateUsingPOST

func (a *Client) UpdateUsingPOST(params *UpdateUsingPOSTParams, opts ...ClientOption) (*UpdateUsingPOSTOK, error)

UpdateUsingPOST updates a batch of user operations

Approves/ Rejects a set of user operations

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeleteAllUsingDELETE(params *DeleteAllUsingDELETEParams, opts ...ClientOption) (*DeleteAllUsingDELETEAccepted, error)

	DeleteUsingDELETE3(params *DeleteUsingDELETE3Params, opts ...ClientOption) (*DeleteUsingDELETE3OK, error)

	GetAllUsingGET3(params *GetAllUsingGET3Params, opts ...ClientOption) (*GetAllUsingGET3OK, error)

	GetUsingGET1(params *GetUsingGET1Params, opts ...ClientOption) (*GetUsingGET1OK, error)

	ModifyExecutionUsingPOST(params *ModifyExecutionUsingPOSTParams, opts ...ClientOption) (*ModifyExecutionUsingPOSTOK, error)

	UpdateUsingPOST(params *UpdateUsingPOSTParams, opts ...ClientOption) (*UpdateUsingPOSTOK, 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 executions API client.

type DeleteAllUsingDELETEAccepted

type DeleteAllUsingDELETEAccepted struct {
	Payload models.Executions
}
DeleteAllUsingDELETEAccepted describes a response with status code 202, with default header values.

Count of executions to be deleted

func NewDeleteAllUsingDELETEAccepted

func NewDeleteAllUsingDELETEAccepted() *DeleteAllUsingDELETEAccepted

NewDeleteAllUsingDELETEAccepted creates a DeleteAllUsingDELETEAccepted with default headers values

func (*DeleteAllUsingDELETEAccepted) Error

func (*DeleteAllUsingDELETEAccepted) GetPayload

type DeleteAllUsingDELETEForbidden

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

Forbidden

func NewDeleteAllUsingDELETEForbidden

func NewDeleteAllUsingDELETEForbidden() *DeleteAllUsingDELETEForbidden

NewDeleteAllUsingDELETEForbidden creates a DeleteAllUsingDELETEForbidden with default headers values

func (*DeleteAllUsingDELETEForbidden) Error

type DeleteAllUsingDELETEInternalServerError

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

Server Error

func NewDeleteAllUsingDELETEInternalServerError

func NewDeleteAllUsingDELETEInternalServerError() *DeleteAllUsingDELETEInternalServerError

NewDeleteAllUsingDELETEInternalServerError creates a DeleteAllUsingDELETEInternalServerError with default headers values

func (*DeleteAllUsingDELETEInternalServerError) Error

type DeleteAllUsingDELETENotFound

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

Not Found

func NewDeleteAllUsingDELETENotFound

func NewDeleteAllUsingDELETENotFound() *DeleteAllUsingDELETENotFound

NewDeleteAllUsingDELETENotFound creates a DeleteAllUsingDELETENotFound with default headers values

func (*DeleteAllUsingDELETENotFound) Error

func (*DeleteAllUsingDELETENotFound) GetPayload

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

type DeleteAllUsingDELETEParams

type DeleteAllUsingDELETEParams struct {

	/* Authorization.

	   Bearer token
	*/
	Authorization string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /codestream/api/about
	*/
	APIVersion string

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

DeleteAllUsingDELETEParams contains all the parameters to send to the API endpoint

for the delete all using d e l e t e operation.

Typically these are written to a http.Request.

func NewDeleteAllUsingDELETEParams

func NewDeleteAllUsingDELETEParams() *DeleteAllUsingDELETEParams

NewDeleteAllUsingDELETEParams creates a new DeleteAllUsingDELETEParams 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 NewDeleteAllUsingDELETEParamsWithContext

func NewDeleteAllUsingDELETEParamsWithContext(ctx context.Context) *DeleteAllUsingDELETEParams

NewDeleteAllUsingDELETEParamsWithContext creates a new DeleteAllUsingDELETEParams object with the ability to set a context for a request.

func NewDeleteAllUsingDELETEParamsWithHTTPClient

func NewDeleteAllUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteAllUsingDELETEParams

NewDeleteAllUsingDELETEParamsWithHTTPClient creates a new DeleteAllUsingDELETEParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAllUsingDELETEParamsWithTimeout

func NewDeleteAllUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteAllUsingDELETEParams

NewDeleteAllUsingDELETEParamsWithTimeout creates a new DeleteAllUsingDELETEParams object with the ability to set a timeout on a request.

func (*DeleteAllUsingDELETEParams) SetAPIVersion

func (o *DeleteAllUsingDELETEParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) SetAuthorization

func (o *DeleteAllUsingDELETEParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) SetContext

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

SetContext adds the context to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) SetDefaults

func (o *DeleteAllUsingDELETEParams) SetDefaults()

SetDefaults hydrates default values in the delete all using d e l e t e params (not the query body).

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

func (*DeleteAllUsingDELETEParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) SetTimeout

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

SetTimeout adds the timeout to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) WithAPIVersion

func (o *DeleteAllUsingDELETEParams) WithAPIVersion(aPIVersion string) *DeleteAllUsingDELETEParams

WithAPIVersion adds the aPIVersion to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) WithAuthorization

func (o *DeleteAllUsingDELETEParams) WithAuthorization(authorization string) *DeleteAllUsingDELETEParams

WithAuthorization adds the authorization to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) WithContext

WithContext adds the context to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) WithDefaults

WithDefaults hydrates default values in the delete all using d e l e t e params (not the query body).

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

func (*DeleteAllUsingDELETEParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) WithTimeout

WithTimeout adds the timeout to the delete all using d e l e t e params

func (*DeleteAllUsingDELETEParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAllUsingDELETEReader

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

DeleteAllUsingDELETEReader is a Reader for the DeleteAllUsingDELETE structure.

func (*DeleteAllUsingDELETEReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAllUsingDELETEUnauthorized

type DeleteAllUsingDELETEUnauthorized struct {
}
DeleteAllUsingDELETEUnauthorized describes a response with status code 401, with default header values.

Unauthorized Request

func NewDeleteAllUsingDELETEUnauthorized

func NewDeleteAllUsingDELETEUnauthorized() *DeleteAllUsingDELETEUnauthorized

NewDeleteAllUsingDELETEUnauthorized creates a DeleteAllUsingDELETEUnauthorized with default headers values

func (*DeleteAllUsingDELETEUnauthorized) Error

type DeleteUsingDELETE3Forbidden

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

Forbidden

func NewDeleteUsingDELETE3Forbidden

func NewDeleteUsingDELETE3Forbidden() *DeleteUsingDELETE3Forbidden

NewDeleteUsingDELETE3Forbidden creates a DeleteUsingDELETE3Forbidden with default headers values

func (*DeleteUsingDELETE3Forbidden) Error

type DeleteUsingDELETE3InternalServerError

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

Server Error

func NewDeleteUsingDELETE3InternalServerError

func NewDeleteUsingDELETE3InternalServerError() *DeleteUsingDELETE3InternalServerError

NewDeleteUsingDELETE3InternalServerError creates a DeleteUsingDELETE3InternalServerError with default headers values

func (*DeleteUsingDELETE3InternalServerError) Error

type DeleteUsingDELETE3NotFound

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

Not Found

func NewDeleteUsingDELETE3NotFound

func NewDeleteUsingDELETE3NotFound() *DeleteUsingDELETE3NotFound

NewDeleteUsingDELETE3NotFound creates a DeleteUsingDELETE3NotFound with default headers values

func (*DeleteUsingDELETE3NotFound) Error

func (*DeleteUsingDELETE3NotFound) GetPayload

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

type DeleteUsingDELETE3OK

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

'Success' with execution delete

func NewDeleteUsingDELETE3OK

func NewDeleteUsingDELETE3OK() *DeleteUsingDELETE3OK

NewDeleteUsingDELETE3OK creates a DeleteUsingDELETE3OK with default headers values

func (*DeleteUsingDELETE3OK) Error

func (o *DeleteUsingDELETE3OK) Error() string

func (*DeleteUsingDELETE3OK) GetPayload

func (o *DeleteUsingDELETE3OK) GetPayload() models.Execution

type DeleteUsingDELETE3Params

type DeleteUsingDELETE3Params struct {

	/* Authorization.

	   Bearer token
	*/
	Authorization string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /codestream/api/about
	*/
	APIVersion string

	/* ID.

	   The ID of the Execution
	*/
	ID string

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

DeleteUsingDELETE3Params contains all the parameters to send to the API endpoint

for the delete using d e l e t e 3 operation.

Typically these are written to a http.Request.

func NewDeleteUsingDELETE3Params

func NewDeleteUsingDELETE3Params() *DeleteUsingDELETE3Params

NewDeleteUsingDELETE3Params creates a new DeleteUsingDELETE3Params 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 NewDeleteUsingDELETE3ParamsWithContext

func NewDeleteUsingDELETE3ParamsWithContext(ctx context.Context) *DeleteUsingDELETE3Params

NewDeleteUsingDELETE3ParamsWithContext creates a new DeleteUsingDELETE3Params object with the ability to set a context for a request.

func NewDeleteUsingDELETE3ParamsWithHTTPClient

func NewDeleteUsingDELETE3ParamsWithHTTPClient(client *http.Client) *DeleteUsingDELETE3Params

NewDeleteUsingDELETE3ParamsWithHTTPClient creates a new DeleteUsingDELETE3Params object with the ability to set a custom HTTPClient for a request.

func NewDeleteUsingDELETE3ParamsWithTimeout

func NewDeleteUsingDELETE3ParamsWithTimeout(timeout time.Duration) *DeleteUsingDELETE3Params

NewDeleteUsingDELETE3ParamsWithTimeout creates a new DeleteUsingDELETE3Params object with the ability to set a timeout on a request.

func (*DeleteUsingDELETE3Params) SetAPIVersion

func (o *DeleteUsingDELETE3Params) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) SetAuthorization

func (o *DeleteUsingDELETE3Params) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) SetContext

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

SetContext adds the context to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) SetDefaults

func (o *DeleteUsingDELETE3Params) SetDefaults()

SetDefaults hydrates default values in the delete using d e l e t e 3 params (not the query body).

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

func (*DeleteUsingDELETE3Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) SetID

func (o *DeleteUsingDELETE3Params) SetID(id string)

SetID adds the id to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) SetTimeout

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

SetTimeout adds the timeout to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WithAPIVersion

func (o *DeleteUsingDELETE3Params) WithAPIVersion(aPIVersion string) *DeleteUsingDELETE3Params

WithAPIVersion adds the aPIVersion to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WithAuthorization

func (o *DeleteUsingDELETE3Params) WithAuthorization(authorization string) *DeleteUsingDELETE3Params

WithAuthorization adds the authorization to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WithContext

WithContext adds the context to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WithDefaults

WithDefaults hydrates default values in the delete using d e l e t e 3 params (not the query body).

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

func (*DeleteUsingDELETE3Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WithID

WithID adds the id to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WithTimeout

WithTimeout adds the timeout to the delete using d e l e t e 3 params

func (*DeleteUsingDELETE3Params) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteUsingDELETE3Reader

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

DeleteUsingDELETE3Reader is a Reader for the DeleteUsingDELETE3 structure.

func (*DeleteUsingDELETE3Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteUsingDELETE3Unauthorized

type DeleteUsingDELETE3Unauthorized struct {
}
DeleteUsingDELETE3Unauthorized describes a response with status code 401, with default header values.

Unauthorized Request

func NewDeleteUsingDELETE3Unauthorized

func NewDeleteUsingDELETE3Unauthorized() *DeleteUsingDELETE3Unauthorized

NewDeleteUsingDELETE3Unauthorized creates a DeleteUsingDELETE3Unauthorized with default headers values

func (*DeleteUsingDELETE3Unauthorized) Error

type GetAllUsingGET3Forbidden

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

Forbidden

func NewGetAllUsingGET3Forbidden

func NewGetAllUsingGET3Forbidden() *GetAllUsingGET3Forbidden

NewGetAllUsingGET3Forbidden creates a GetAllUsingGET3Forbidden with default headers values

func (*GetAllUsingGET3Forbidden) Error

func (o *GetAllUsingGET3Forbidden) Error() string

type GetAllUsingGET3InternalServerError

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

Server Error

func NewGetAllUsingGET3InternalServerError

func NewGetAllUsingGET3InternalServerError() *GetAllUsingGET3InternalServerError

NewGetAllUsingGET3InternalServerError creates a GetAllUsingGET3InternalServerError with default headers values

func (*GetAllUsingGET3InternalServerError) Error

type GetAllUsingGET3NotFound

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

Not Found

func NewGetAllUsingGET3NotFound

func NewGetAllUsingGET3NotFound() *GetAllUsingGET3NotFound

NewGetAllUsingGET3NotFound creates a GetAllUsingGET3NotFound with default headers values

func (*GetAllUsingGET3NotFound) Error

func (o *GetAllUsingGET3NotFound) Error() string

func (*GetAllUsingGET3NotFound) GetPayload

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

type GetAllUsingGET3OK

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

'Success' with the requested Executions

func NewGetAllUsingGET3OK

func NewGetAllUsingGET3OK() *GetAllUsingGET3OK

NewGetAllUsingGET3OK creates a GetAllUsingGET3OK with default headers values

func (*GetAllUsingGET3OK) Error

func (o *GetAllUsingGET3OK) Error() string

func (*GetAllUsingGET3OK) GetPayload

func (o *GetAllUsingGET3OK) GetPayload() models.Executions

type GetAllUsingGET3Params

type GetAllUsingGET3Params struct {

	/* DollarFilter.

	   To list with OData like filter
	*/
	DollarFilter *string

	/* DollarOrderby.

	   Order by attribute

	   Default: "name desc"
	*/
	DollarOrderby *string

	/* DollarSkip.

	   To skip 'n' Executions for listing

	   Default: "0"
	*/
	DollarSkip *string

	/* DollarTop.

	   To list top 'n' Executions for listing

	   Default: "25"
	*/
	DollarTop *string

	/* Authorization.

	   Bearer token
	*/
	Authorization string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /codestream/api/about
	*/
	APIVersion string

	/* Page.

	   To select 'n'th page for listing

	   Default: "0"
	*/
	Page *string

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

GetAllUsingGET3Params contains all the parameters to send to the API endpoint

for the get all using g e t 3 operation.

Typically these are written to a http.Request.

func NewGetAllUsingGET3Params

func NewGetAllUsingGET3Params() *GetAllUsingGET3Params

NewGetAllUsingGET3Params creates a new GetAllUsingGET3Params 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 NewGetAllUsingGET3ParamsWithContext

func NewGetAllUsingGET3ParamsWithContext(ctx context.Context) *GetAllUsingGET3Params

NewGetAllUsingGET3ParamsWithContext creates a new GetAllUsingGET3Params object with the ability to set a context for a request.

func NewGetAllUsingGET3ParamsWithHTTPClient

func NewGetAllUsingGET3ParamsWithHTTPClient(client *http.Client) *GetAllUsingGET3Params

NewGetAllUsingGET3ParamsWithHTTPClient creates a new GetAllUsingGET3Params object with the ability to set a custom HTTPClient for a request.

func NewGetAllUsingGET3ParamsWithTimeout

func NewGetAllUsingGET3ParamsWithTimeout(timeout time.Duration) *GetAllUsingGET3Params

NewGetAllUsingGET3ParamsWithTimeout creates a new GetAllUsingGET3Params object with the ability to set a timeout on a request.

func (*GetAllUsingGET3Params) SetAPIVersion

func (o *GetAllUsingGET3Params) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetAuthorization

func (o *GetAllUsingGET3Params) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetContext

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

SetContext adds the context to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetDefaults

func (o *GetAllUsingGET3Params) SetDefaults()

SetDefaults hydrates default values in the get all using g e t 3 params (not the query body).

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

func (*GetAllUsingGET3Params) SetDollarFilter

func (o *GetAllUsingGET3Params) SetDollarFilter(dollarFilter *string)

SetDollarFilter adds the dollarFilter to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetDollarOrderby

func (o *GetAllUsingGET3Params) SetDollarOrderby(dollarOrderby *string)

SetDollarOrderby adds the dollarOrderby to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetDollarSkip

func (o *GetAllUsingGET3Params) SetDollarSkip(dollarSkip *string)

SetDollarSkip adds the dollarSkip to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetDollarTop

func (o *GetAllUsingGET3Params) SetDollarTop(dollarTop *string)

SetDollarTop adds the dollarTop to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetPage

func (o *GetAllUsingGET3Params) SetPage(page *string)

SetPage adds the page to the get all using g e t 3 params

func (*GetAllUsingGET3Params) SetTimeout

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

SetTimeout adds the timeout to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithAPIVersion

func (o *GetAllUsingGET3Params) WithAPIVersion(aPIVersion string) *GetAllUsingGET3Params

WithAPIVersion adds the aPIVersion to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithAuthorization

func (o *GetAllUsingGET3Params) WithAuthorization(authorization string) *GetAllUsingGET3Params

WithAuthorization adds the authorization to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithContext

WithContext adds the context to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithDefaults

func (o *GetAllUsingGET3Params) WithDefaults() *GetAllUsingGET3Params

WithDefaults hydrates default values in the get all using g e t 3 params (not the query body).

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

func (*GetAllUsingGET3Params) WithDollarFilter

func (o *GetAllUsingGET3Params) WithDollarFilter(dollarFilter *string) *GetAllUsingGET3Params

WithDollarFilter adds the dollarFilter to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithDollarOrderby

func (o *GetAllUsingGET3Params) WithDollarOrderby(dollarOrderby *string) *GetAllUsingGET3Params

WithDollarOrderby adds the dollarOrderby to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithDollarSkip

func (o *GetAllUsingGET3Params) WithDollarSkip(dollarSkip *string) *GetAllUsingGET3Params

WithDollarSkip adds the dollarSkip to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithDollarTop

func (o *GetAllUsingGET3Params) WithDollarTop(dollarTop *string) *GetAllUsingGET3Params

WithDollarTop adds the dollarTop to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithPage

WithPage adds the page to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WithTimeout

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

WithTimeout adds the timeout to the get all using g e t 3 params

func (*GetAllUsingGET3Params) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAllUsingGET3Reader

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

GetAllUsingGET3Reader is a Reader for the GetAllUsingGET3 structure.

func (*GetAllUsingGET3Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAllUsingGET3Unauthorized

type GetAllUsingGET3Unauthorized struct {
}
GetAllUsingGET3Unauthorized describes a response with status code 401, with default header values.

Unauthorized Request

func NewGetAllUsingGET3Unauthorized

func NewGetAllUsingGET3Unauthorized() *GetAllUsingGET3Unauthorized

NewGetAllUsingGET3Unauthorized creates a GetAllUsingGET3Unauthorized with default headers values

func (*GetAllUsingGET3Unauthorized) Error

type GetUsingGET1Forbidden

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

Forbidden

func NewGetUsingGET1Forbidden

func NewGetUsingGET1Forbidden() *GetUsingGET1Forbidden

NewGetUsingGET1Forbidden creates a GetUsingGET1Forbidden with default headers values

func (*GetUsingGET1Forbidden) Error

func (o *GetUsingGET1Forbidden) Error() string

type GetUsingGET1InternalServerError

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

Server Error

func NewGetUsingGET1InternalServerError

func NewGetUsingGET1InternalServerError() *GetUsingGET1InternalServerError

NewGetUsingGET1InternalServerError creates a GetUsingGET1InternalServerError with default headers values

func (*GetUsingGET1InternalServerError) Error

type GetUsingGET1NotFound

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

Not Found

func NewGetUsingGET1NotFound

func NewGetUsingGET1NotFound() *GetUsingGET1NotFound

NewGetUsingGET1NotFound creates a GetUsingGET1NotFound with default headers values

func (*GetUsingGET1NotFound) Error

func (o *GetUsingGET1NotFound) Error() string

func (*GetUsingGET1NotFound) GetPayload

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

type GetUsingGET1OK

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

'Success' with Execution

func NewGetUsingGET1OK

func NewGetUsingGET1OK() *GetUsingGET1OK

NewGetUsingGET1OK creates a GetUsingGET1OK with default headers values

func (*GetUsingGET1OK) Error

func (o *GetUsingGET1OK) Error() string

func (*GetUsingGET1OK) GetPayload

func (o *GetUsingGET1OK) GetPayload() models.Execution

type GetUsingGET1Params

type GetUsingGET1Params struct {

	/* Authorization.

	   Bearer token
	*/
	Authorization string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /codestream/api/about
	*/
	APIVersion string

	/* ID.

	   The ID of the Execution
	*/
	ID string

	/* QueryParams.

	   queryParams
	*/
	QueryParams []string

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

GetUsingGET1Params contains all the parameters to send to the API endpoint

for the get using get1 operation.

Typically these are written to a http.Request.

func NewGetUsingGET1Params

func NewGetUsingGET1Params() *GetUsingGET1Params

NewGetUsingGET1Params creates a new GetUsingGET1Params 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 NewGetUsingGET1ParamsWithContext

func NewGetUsingGET1ParamsWithContext(ctx context.Context) *GetUsingGET1Params

NewGetUsingGET1ParamsWithContext creates a new GetUsingGET1Params object with the ability to set a context for a request.

func NewGetUsingGET1ParamsWithHTTPClient

func NewGetUsingGET1ParamsWithHTTPClient(client *http.Client) *GetUsingGET1Params

NewGetUsingGET1ParamsWithHTTPClient creates a new GetUsingGET1Params object with the ability to set a custom HTTPClient for a request.

func NewGetUsingGET1ParamsWithTimeout

func NewGetUsingGET1ParamsWithTimeout(timeout time.Duration) *GetUsingGET1Params

NewGetUsingGET1ParamsWithTimeout creates a new GetUsingGET1Params object with the ability to set a timeout on a request.

func (*GetUsingGET1Params) SetAPIVersion

func (o *GetUsingGET1Params) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get using get1 params

func (*GetUsingGET1Params) SetAuthorization

func (o *GetUsingGET1Params) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get using get1 params

func (*GetUsingGET1Params) SetContext

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

SetContext adds the context to the get using get1 params

func (*GetUsingGET1Params) SetDefaults

func (o *GetUsingGET1Params) SetDefaults()

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

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

func (*GetUsingGET1Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get using get1 params

func (*GetUsingGET1Params) SetID

func (o *GetUsingGET1Params) SetID(id string)

SetID adds the id to the get using get1 params

func (*GetUsingGET1Params) SetQueryParams

func (o *GetUsingGET1Params) SetQueryParams(queryParams []string)

SetQueryParams adds the queryParams to the get using get1 params

func (*GetUsingGET1Params) SetTimeout

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

SetTimeout adds the timeout to the get using get1 params

func (*GetUsingGET1Params) WithAPIVersion

func (o *GetUsingGET1Params) WithAPIVersion(aPIVersion string) *GetUsingGET1Params

WithAPIVersion adds the aPIVersion to the get using get1 params

func (*GetUsingGET1Params) WithAuthorization

func (o *GetUsingGET1Params) WithAuthorization(authorization string) *GetUsingGET1Params

WithAuthorization adds the authorization to the get using get1 params

func (*GetUsingGET1Params) WithContext

WithContext adds the context to the get using get1 params

func (*GetUsingGET1Params) WithDefaults

func (o *GetUsingGET1Params) WithDefaults() *GetUsingGET1Params

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

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

func (*GetUsingGET1Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get using get1 params

func (*GetUsingGET1Params) WithID

WithID adds the id to the get using get1 params

func (*GetUsingGET1Params) WithQueryParams

func (o *GetUsingGET1Params) WithQueryParams(queryParams []string) *GetUsingGET1Params

WithQueryParams adds the queryParams to the get using get1 params

func (*GetUsingGET1Params) WithTimeout

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

WithTimeout adds the timeout to the get using get1 params

func (*GetUsingGET1Params) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetUsingGET1Reader

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

GetUsingGET1Reader is a Reader for the GetUsingGET1 structure.

func (*GetUsingGET1Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUsingGET1Unauthorized

type GetUsingGET1Unauthorized struct {
}
GetUsingGET1Unauthorized describes a response with status code 401, with default header values.

Unauthorized Request

func NewGetUsingGET1Unauthorized

func NewGetUsingGET1Unauthorized() *GetUsingGET1Unauthorized

NewGetUsingGET1Unauthorized creates a GetUsingGET1Unauthorized with default headers values

func (*GetUsingGET1Unauthorized) Error

func (o *GetUsingGET1Unauthorized) Error() string

type ModifyExecutionUsingPOSTForbidden

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

Forbidden

func NewModifyExecutionUsingPOSTForbidden

func NewModifyExecutionUsingPOSTForbidden() *ModifyExecutionUsingPOSTForbidden

NewModifyExecutionUsingPOSTForbidden creates a ModifyExecutionUsingPOSTForbidden with default headers values

func (*ModifyExecutionUsingPOSTForbidden) Error

type ModifyExecutionUsingPOSTInternalServerError

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

Server Error

func NewModifyExecutionUsingPOSTInternalServerError

func NewModifyExecutionUsingPOSTInternalServerError() *ModifyExecutionUsingPOSTInternalServerError

NewModifyExecutionUsingPOSTInternalServerError creates a ModifyExecutionUsingPOSTInternalServerError with default headers values

func (*ModifyExecutionUsingPOSTInternalServerError) Error

type ModifyExecutionUsingPOSTNotFound

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

Not Found

func NewModifyExecutionUsingPOSTNotFound

func NewModifyExecutionUsingPOSTNotFound() *ModifyExecutionUsingPOSTNotFound

NewModifyExecutionUsingPOSTNotFound creates a ModifyExecutionUsingPOSTNotFound with default headers values

func (*ModifyExecutionUsingPOSTNotFound) Error

func (*ModifyExecutionUsingPOSTNotFound) GetPayload

type ModifyExecutionUsingPOSTOK

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

'Success' with Execution

func NewModifyExecutionUsingPOSTOK

func NewModifyExecutionUsingPOSTOK() *ModifyExecutionUsingPOSTOK

NewModifyExecutionUsingPOSTOK creates a ModifyExecutionUsingPOSTOK with default headers values

func (*ModifyExecutionUsingPOSTOK) Error

func (*ModifyExecutionUsingPOSTOK) GetPayload

type ModifyExecutionUsingPOSTParams

type ModifyExecutionUsingPOSTParams struct {

	/* Authorization.

	   Bearer token
	*/
	Authorization string

	/* Action.

	   Action to perform on the Execution. Can be any of pause, resume, cancel and tag
	*/
	Action string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /codestream/api/about
	*/
	APIVersion string

	/* Body.

	   Execution Request specification
	*/
	Body models.ExecutionActionRequest

	/* ID.

	   The ID of the Execution
	*/
	ID string

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

ModifyExecutionUsingPOSTParams contains all the parameters to send to the API endpoint

for the modify execution using p o s t operation.

Typically these are written to a http.Request.

func NewModifyExecutionUsingPOSTParams

func NewModifyExecutionUsingPOSTParams() *ModifyExecutionUsingPOSTParams

NewModifyExecutionUsingPOSTParams creates a new ModifyExecutionUsingPOSTParams 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 NewModifyExecutionUsingPOSTParamsWithContext

func NewModifyExecutionUsingPOSTParamsWithContext(ctx context.Context) *ModifyExecutionUsingPOSTParams

NewModifyExecutionUsingPOSTParamsWithContext creates a new ModifyExecutionUsingPOSTParams object with the ability to set a context for a request.

func NewModifyExecutionUsingPOSTParamsWithHTTPClient

func NewModifyExecutionUsingPOSTParamsWithHTTPClient(client *http.Client) *ModifyExecutionUsingPOSTParams

NewModifyExecutionUsingPOSTParamsWithHTTPClient creates a new ModifyExecutionUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewModifyExecutionUsingPOSTParamsWithTimeout

func NewModifyExecutionUsingPOSTParamsWithTimeout(timeout time.Duration) *ModifyExecutionUsingPOSTParams

NewModifyExecutionUsingPOSTParamsWithTimeout creates a new ModifyExecutionUsingPOSTParams object with the ability to set a timeout on a request.

func (*ModifyExecutionUsingPOSTParams) SetAPIVersion

func (o *ModifyExecutionUsingPOSTParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetAction

func (o *ModifyExecutionUsingPOSTParams) SetAction(action string)

SetAction adds the action to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetAuthorization

func (o *ModifyExecutionUsingPOSTParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetBody

SetBody adds the body to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetContext

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

SetContext adds the context to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetDefaults

func (o *ModifyExecutionUsingPOSTParams) SetDefaults()

SetDefaults hydrates default values in the modify execution using p o s t params (not the query body).

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

func (*ModifyExecutionUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetID

SetID adds the id to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) SetTimeout

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

SetTimeout adds the timeout to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithAPIVersion

WithAPIVersion adds the aPIVersion to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithAction

WithAction adds the action to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithAuthorization

func (o *ModifyExecutionUsingPOSTParams) WithAuthorization(authorization string) *ModifyExecutionUsingPOSTParams

WithAuthorization adds the authorization to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithBody

WithBody adds the body to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithContext

WithContext adds the context to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithDefaults

WithDefaults hydrates default values in the modify execution using p o s t params (not the query body).

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

func (*ModifyExecutionUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithID

WithID adds the id to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the modify execution using p o s t params

func (*ModifyExecutionUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ModifyExecutionUsingPOSTReader

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

ModifyExecutionUsingPOSTReader is a Reader for the ModifyExecutionUsingPOST structure.

func (*ModifyExecutionUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ModifyExecutionUsingPOSTUnauthorized

type ModifyExecutionUsingPOSTUnauthorized struct {
}
ModifyExecutionUsingPOSTUnauthorized describes a response with status code 401, with default header values.

Unauthorized Request

func NewModifyExecutionUsingPOSTUnauthorized

func NewModifyExecutionUsingPOSTUnauthorized() *ModifyExecutionUsingPOSTUnauthorized

NewModifyExecutionUsingPOSTUnauthorized creates a ModifyExecutionUsingPOSTUnauthorized with default headers values

func (*ModifyExecutionUsingPOSTUnauthorized) Error

type UpdateUsingPOSTForbidden

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

Forbidden

func NewUpdateUsingPOSTForbidden

func NewUpdateUsingPOSTForbidden() *UpdateUsingPOSTForbidden

NewUpdateUsingPOSTForbidden creates a UpdateUsingPOSTForbidden with default headers values

func (*UpdateUsingPOSTForbidden) Error

func (o *UpdateUsingPOSTForbidden) Error() string

type UpdateUsingPOSTInternalServerError

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

Server Error

func NewUpdateUsingPOSTInternalServerError

func NewUpdateUsingPOSTInternalServerError() *UpdateUsingPOSTInternalServerError

NewUpdateUsingPOSTInternalServerError creates a UpdateUsingPOSTInternalServerError with default headers values

func (*UpdateUsingPOSTInternalServerError) Error

type UpdateUsingPOSTNotFound

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

Not Found

func NewUpdateUsingPOSTNotFound

func NewUpdateUsingPOSTNotFound() *UpdateUsingPOSTNotFound

NewUpdateUsingPOSTNotFound creates a UpdateUsingPOSTNotFound with default headers values

func (*UpdateUsingPOSTNotFound) Error

func (o *UpdateUsingPOSTNotFound) Error() string

func (*UpdateUsingPOSTNotFound) GetPayload

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

type UpdateUsingPOSTOK

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

Approved/Rejected all selected user operations successfully.

func NewUpdateUsingPOSTOK

func NewUpdateUsingPOSTOK() *UpdateUsingPOSTOK

NewUpdateUsingPOSTOK creates a UpdateUsingPOSTOK with default headers values

func (*UpdateUsingPOSTOK) Error

func (o *UpdateUsingPOSTOK) Error() string

func (*UpdateUsingPOSTOK) GetPayload

type UpdateUsingPOSTParams

type UpdateUsingPOSTParams struct {

	/* Authorization.

	   Bearer token
	*/
	Authorization string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /codestream/api/about
	*/
	APIVersion string

	/* Request.

	   request
	*/
	Request models.BatchUserOperationRequest

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

UpdateUsingPOSTParams contains all the parameters to send to the API endpoint

for the update using p o s t operation.

Typically these are written to a http.Request.

func NewUpdateUsingPOSTParams

func NewUpdateUsingPOSTParams() *UpdateUsingPOSTParams

NewUpdateUsingPOSTParams creates a new UpdateUsingPOSTParams 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 NewUpdateUsingPOSTParamsWithContext

func NewUpdateUsingPOSTParamsWithContext(ctx context.Context) *UpdateUsingPOSTParams

NewUpdateUsingPOSTParamsWithContext creates a new UpdateUsingPOSTParams object with the ability to set a context for a request.

func NewUpdateUsingPOSTParamsWithHTTPClient

func NewUpdateUsingPOSTParamsWithHTTPClient(client *http.Client) *UpdateUsingPOSTParams

NewUpdateUsingPOSTParamsWithHTTPClient creates a new UpdateUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateUsingPOSTParamsWithTimeout

func NewUpdateUsingPOSTParamsWithTimeout(timeout time.Duration) *UpdateUsingPOSTParams

NewUpdateUsingPOSTParamsWithTimeout creates a new UpdateUsingPOSTParams object with the ability to set a timeout on a request.

func (*UpdateUsingPOSTParams) SetAPIVersion

func (o *UpdateUsingPOSTParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the update using p o s t params

func (*UpdateUsingPOSTParams) SetAuthorization

func (o *UpdateUsingPOSTParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update using p o s t params

func (*UpdateUsingPOSTParams) SetContext

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

SetContext adds the context to the update using p o s t params

func (*UpdateUsingPOSTParams) SetDefaults

func (o *UpdateUsingPOSTParams) SetDefaults()

SetDefaults hydrates default values in the update using p o s t params (not the query body).

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

func (*UpdateUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update using p o s t params

func (*UpdateUsingPOSTParams) SetRequest

SetRequest adds the request to the update using p o s t params

func (*UpdateUsingPOSTParams) SetTimeout

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

SetTimeout adds the timeout to the update using p o s t params

func (*UpdateUsingPOSTParams) WithAPIVersion

func (o *UpdateUsingPOSTParams) WithAPIVersion(aPIVersion string) *UpdateUsingPOSTParams

WithAPIVersion adds the aPIVersion to the update using p o s t params

func (*UpdateUsingPOSTParams) WithAuthorization

func (o *UpdateUsingPOSTParams) WithAuthorization(authorization string) *UpdateUsingPOSTParams

WithAuthorization adds the authorization to the update using p o s t params

func (*UpdateUsingPOSTParams) WithContext

WithContext adds the context to the update using p o s t params

func (*UpdateUsingPOSTParams) WithDefaults

func (o *UpdateUsingPOSTParams) WithDefaults() *UpdateUsingPOSTParams

WithDefaults hydrates default values in the update using p o s t params (not the query body).

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

func (*UpdateUsingPOSTParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update using p o s t params

func (*UpdateUsingPOSTParams) WithRequest

WithRequest adds the request to the update using p o s t params

func (*UpdateUsingPOSTParams) WithTimeout

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

WithTimeout adds the timeout to the update using p o s t params

func (*UpdateUsingPOSTParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateUsingPOSTReader

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

UpdateUsingPOSTReader is a Reader for the UpdateUsingPOST structure.

func (*UpdateUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateUsingPOSTUnauthorized

type UpdateUsingPOSTUnauthorized struct {
}
UpdateUsingPOSTUnauthorized describes a response with status code 401, with default header values.

Unauthorized Request

func NewUpdateUsingPOSTUnauthorized

func NewUpdateUsingPOSTUnauthorized() *UpdateUsingPOSTUnauthorized

NewUpdateUsingPOSTUnauthorized creates a UpdateUsingPOSTUnauthorized with default headers values

func (*UpdateUsingPOSTUnauthorized) Error

Jump to

Keyboard shortcuts

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