endpoints

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Nov 17, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for endpoints API

func (*Client) CreateEndpointUsingPOST added in v0.4.0

func (a *Client) CreateEndpointUsingPOST(params *CreateEndpointUsingPOSTParams, opts ...ClientOption) (*CreateEndpointUsingPOSTOK, error)

CreateEndpointUsingPOST creates an endpoint

Create an Endpoint based on the given project

func (*Client) DeleteEndpointByIDUsingDELETE added in v0.4.0

func (a *Client) DeleteEndpointByIDUsingDELETE(params *DeleteEndpointByIDUsingDELETEParams, opts ...ClientOption) (*DeleteEndpointByIDUsingDELETEOK, error)

DeleteEndpointByIDUsingDELETE deletes an endpoint by id

Delete an Endpoint with the given id

func (*Client) DeleteEndpointByNameUsingDELETE added in v0.4.0

func (a *Client) DeleteEndpointByNameUsingDELETE(params *DeleteEndpointByNameUsingDELETEParams, opts ...ClientOption) (*DeleteEndpointByNameUsingDELETEOK, error)

DeleteEndpointByNameUsingDELETE deletes an endpoint by project and name

Delete an Endpoint with the given name

func (*Client) GetAllEndpointsUsingGET added in v0.4.0

func (a *Client) GetAllEndpointsUsingGET(params *GetAllEndpointsUsingGETParams, opts ...ClientOption) (*GetAllEndpointsUsingGETOK, error)

GetAllEndpointsUsingGET gets all endpoints

Get all Endpoints with specified paging and filter parameters

func (*Client) GetEndpointByIDUsingGET added in v0.4.0

func (a *Client) GetEndpointByIDUsingGET(params *GetEndpointByIDUsingGETParams, opts ...ClientOption) (*GetEndpointByIDUsingGETOK, error)

GetEndpointByIDUsingGET gets an endpoint

Get an Endpoint with the given id

func (*Client) GetEndpointByNameUsingGET added in v0.4.0

func (a *Client) GetEndpointByNameUsingGET(params *GetEndpointByNameUsingGETParams, opts ...ClientOption) (*GetEndpointByNameUsingGETOK, error)

GetEndpointByNameUsingGET gets an endpoint by project and name

Get an Endpoint with the given project and name

func (*Client) GetEndpointPropertiesUsingGET

func (a *Client) GetEndpointPropertiesUsingGET(params *GetEndpointPropertiesUsingGETParams, opts ...ClientOption) (*GetEndpointPropertiesUsingGETOK, error)

GetEndpointPropertiesUsingGET gets endpoint properties

Get endpoint properties with the given endpoint type

func (*Client) GetEndpointTilesUsingGET

func (a *Client) GetEndpointTilesUsingGET(params *GetEndpointTilesUsingGETParams, opts ...ClientOption) (*GetEndpointTilesUsingGETOK, error)

GetEndpointTilesUsingGET gets all endpoint tiles

Get all supported endpoint tiles

func (*Client) GetUsingGETMixin4 added in v0.5.0

func (a *Client) GetUsingGETMixin4(params *GetUsingGETMixin4Params, opts ...ClientOption) (*GetUsingGETMixin4OK, error)

GetUsingGETMixin4 gets endpoint certificate

Get endpoint certificate chain for validation

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateEndpointByIDUsingPUT added in v0.4.0

func (a *Client) UpdateEndpointByIDUsingPUT(params *UpdateEndpointByIDUsingPUTParams, opts ...ClientOption) (*UpdateEndpointByIDUsingPUTOK, error)

UpdateEndpointByIDUsingPUT updates an endpoint by id

Update an Endpoint with the given id

func (*Client) UpdateEndpointByNameUsingPUT added in v0.4.0

func (a *Client) UpdateEndpointByNameUsingPUT(params *UpdateEndpointByNameUsingPUTParams, opts ...ClientOption) (*UpdateEndpointByNameUsingPUTOK, error)

UpdateEndpointByNameUsingPUT updates an endpoint by project and name

Update an Endpoint with the given project and name

func (*Client) ValidateEndpointUsingPOST

func (a *Client) ValidateEndpointUsingPOST(params *ValidateEndpointUsingPOSTParams, opts ...ClientOption) (*ValidateEndpointUsingPOSTOK, error)

ValidateEndpointUsingPOST validates endpoint

Validates the given endpoint

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateEndpointUsingPOST(params *CreateEndpointUsingPOSTParams, opts ...ClientOption) (*CreateEndpointUsingPOSTOK, error)

	DeleteEndpointByIDUsingDELETE(params *DeleteEndpointByIDUsingDELETEParams, opts ...ClientOption) (*DeleteEndpointByIDUsingDELETEOK, error)

	DeleteEndpointByNameUsingDELETE(params *DeleteEndpointByNameUsingDELETEParams, opts ...ClientOption) (*DeleteEndpointByNameUsingDELETEOK, error)

	GetAllEndpointsUsingGET(params *GetAllEndpointsUsingGETParams, opts ...ClientOption) (*GetAllEndpointsUsingGETOK, error)

	GetEndpointByIDUsingGET(params *GetEndpointByIDUsingGETParams, opts ...ClientOption) (*GetEndpointByIDUsingGETOK, error)

	GetEndpointByNameUsingGET(params *GetEndpointByNameUsingGETParams, opts ...ClientOption) (*GetEndpointByNameUsingGETOK, error)

	GetEndpointPropertiesUsingGET(params *GetEndpointPropertiesUsingGETParams, opts ...ClientOption) (*GetEndpointPropertiesUsingGETOK, error)

	GetEndpointTilesUsingGET(params *GetEndpointTilesUsingGETParams, opts ...ClientOption) (*GetEndpointTilesUsingGETOK, error)

	GetUsingGETMixin4(params *GetUsingGETMixin4Params, opts ...ClientOption) (*GetUsingGETMixin4OK, error)

	UpdateEndpointByIDUsingPUT(params *UpdateEndpointByIDUsingPUTParams, opts ...ClientOption) (*UpdateEndpointByIDUsingPUTOK, error)

	UpdateEndpointByNameUsingPUT(params *UpdateEndpointByNameUsingPUTParams, opts ...ClientOption) (*UpdateEndpointByNameUsingPUTOK, error)

	ValidateEndpointUsingPOST(params *ValidateEndpointUsingPOSTParams, opts ...ClientOption) (*ValidateEndpointUsingPOSTOK, 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 endpoints API client.

type CreateEndpointUsingPOSTForbidden added in v0.4.0

type CreateEndpointUsingPOSTForbidden struct {
}

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

Forbidden

func NewCreateEndpointUsingPOSTForbidden added in v0.4.0

func NewCreateEndpointUsingPOSTForbidden() *CreateEndpointUsingPOSTForbidden

NewCreateEndpointUsingPOSTForbidden creates a CreateEndpointUsingPOSTForbidden with default headers values

func (*CreateEndpointUsingPOSTForbidden) Error added in v0.4.0

func (*CreateEndpointUsingPOSTForbidden) IsClientError added in v0.5.0

func (o *CreateEndpointUsingPOSTForbidden) IsClientError() bool

IsClientError returns true when this create endpoint using p o s t forbidden response has a 4xx status code

func (*CreateEndpointUsingPOSTForbidden) IsCode added in v0.5.0

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

IsCode returns true when this create endpoint using p o s t forbidden response a status code equal to that given

func (*CreateEndpointUsingPOSTForbidden) IsRedirect added in v0.5.0

func (o *CreateEndpointUsingPOSTForbidden) IsRedirect() bool

IsRedirect returns true when this create endpoint using p o s t forbidden response has a 3xx status code

func (*CreateEndpointUsingPOSTForbidden) IsServerError added in v0.5.0

func (o *CreateEndpointUsingPOSTForbidden) IsServerError() bool

IsServerError returns true when this create endpoint using p o s t forbidden response has a 5xx status code

func (*CreateEndpointUsingPOSTForbidden) IsSuccess added in v0.5.0

func (o *CreateEndpointUsingPOSTForbidden) IsSuccess() bool

IsSuccess returns true when this create endpoint using p o s t forbidden response has a 2xx status code

func (*CreateEndpointUsingPOSTForbidden) String added in v0.5.0

type CreateEndpointUsingPOSTInternalServerError added in v0.4.0

type CreateEndpointUsingPOSTInternalServerError struct {
}

CreateEndpointUsingPOSTInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewCreateEndpointUsingPOSTInternalServerError added in v0.4.0

func NewCreateEndpointUsingPOSTInternalServerError() *CreateEndpointUsingPOSTInternalServerError

NewCreateEndpointUsingPOSTInternalServerError creates a CreateEndpointUsingPOSTInternalServerError with default headers values

func (*CreateEndpointUsingPOSTInternalServerError) Error added in v0.4.0

func (*CreateEndpointUsingPOSTInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this create endpoint using p o s t internal server error response has a 4xx status code

func (*CreateEndpointUsingPOSTInternalServerError) IsCode added in v0.5.0

IsCode returns true when this create endpoint using p o s t internal server error response a status code equal to that given

func (*CreateEndpointUsingPOSTInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this create endpoint using p o s t internal server error response has a 3xx status code

func (*CreateEndpointUsingPOSTInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this create endpoint using p o s t internal server error response has a 5xx status code

func (*CreateEndpointUsingPOSTInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this create endpoint using p o s t internal server error response has a 2xx status code

func (*CreateEndpointUsingPOSTInternalServerError) String added in v0.5.0

type CreateEndpointUsingPOSTNotFound added in v0.4.0

type CreateEndpointUsingPOSTNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewCreateEndpointUsingPOSTNotFound added in v0.4.0

func NewCreateEndpointUsingPOSTNotFound() *CreateEndpointUsingPOSTNotFound

NewCreateEndpointUsingPOSTNotFound creates a CreateEndpointUsingPOSTNotFound with default headers values

func (*CreateEndpointUsingPOSTNotFound) Error added in v0.4.0

func (*CreateEndpointUsingPOSTNotFound) GetPayload added in v0.4.0

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

func (*CreateEndpointUsingPOSTNotFound) IsClientError added in v0.5.0

func (o *CreateEndpointUsingPOSTNotFound) IsClientError() bool

IsClientError returns true when this create endpoint using p o s t not found response has a 4xx status code

func (*CreateEndpointUsingPOSTNotFound) IsCode added in v0.5.0

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

IsCode returns true when this create endpoint using p o s t not found response a status code equal to that given

func (*CreateEndpointUsingPOSTNotFound) IsRedirect added in v0.5.0

func (o *CreateEndpointUsingPOSTNotFound) IsRedirect() bool

IsRedirect returns true when this create endpoint using p o s t not found response has a 3xx status code

func (*CreateEndpointUsingPOSTNotFound) IsServerError added in v0.5.0

func (o *CreateEndpointUsingPOSTNotFound) IsServerError() bool

IsServerError returns true when this create endpoint using p o s t not found response has a 5xx status code

func (*CreateEndpointUsingPOSTNotFound) IsSuccess added in v0.5.0

func (o *CreateEndpointUsingPOSTNotFound) IsSuccess() bool

IsSuccess returns true when this create endpoint using p o s t not found response has a 2xx status code

func (*CreateEndpointUsingPOSTNotFound) String added in v0.5.0

type CreateEndpointUsingPOSTOK added in v0.4.0

type CreateEndpointUsingPOSTOK struct {
	Payload models.Endpoint
}

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

'Success' with the created Endpoint

func NewCreateEndpointUsingPOSTOK added in v0.4.0

func NewCreateEndpointUsingPOSTOK() *CreateEndpointUsingPOSTOK

NewCreateEndpointUsingPOSTOK creates a CreateEndpointUsingPOSTOK with default headers values

func (*CreateEndpointUsingPOSTOK) Error added in v0.4.0

func (o *CreateEndpointUsingPOSTOK) Error() string

func (*CreateEndpointUsingPOSTOK) GetPayload added in v0.4.0

func (o *CreateEndpointUsingPOSTOK) GetPayload() models.Endpoint

func (*CreateEndpointUsingPOSTOK) IsClientError added in v0.5.0

func (o *CreateEndpointUsingPOSTOK) IsClientError() bool

IsClientError returns true when this create endpoint using p o s t o k response has a 4xx status code

func (*CreateEndpointUsingPOSTOK) IsCode added in v0.5.0

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

IsCode returns true when this create endpoint using p o s t o k response a status code equal to that given

func (*CreateEndpointUsingPOSTOK) IsRedirect added in v0.5.0

func (o *CreateEndpointUsingPOSTOK) IsRedirect() bool

IsRedirect returns true when this create endpoint using p o s t o k response has a 3xx status code

func (*CreateEndpointUsingPOSTOK) IsServerError added in v0.5.0

func (o *CreateEndpointUsingPOSTOK) IsServerError() bool

IsServerError returns true when this create endpoint using p o s t o k response has a 5xx status code

func (*CreateEndpointUsingPOSTOK) IsSuccess added in v0.5.0

func (o *CreateEndpointUsingPOSTOK) IsSuccess() bool

IsSuccess returns true when this create endpoint using p o s t o k response has a 2xx status code

func (*CreateEndpointUsingPOSTOK) String added in v0.5.0

func (o *CreateEndpointUsingPOSTOK) String() string

type CreateEndpointUsingPOSTParams added in v0.4.0

type CreateEndpointUsingPOSTParams 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

	/* Body.

	   Endpoint specification
	*/
	Body models.EndpointSpec

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

CreateEndpointUsingPOSTParams contains all the parameters to send to the API endpoint

for the create endpoint using p o s t operation.

Typically these are written to a http.Request.

func NewCreateEndpointUsingPOSTParams added in v0.4.0

func NewCreateEndpointUsingPOSTParams() *CreateEndpointUsingPOSTParams

NewCreateEndpointUsingPOSTParams creates a new CreateEndpointUsingPOSTParams 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 NewCreateEndpointUsingPOSTParamsWithContext added in v0.4.0

func NewCreateEndpointUsingPOSTParamsWithContext(ctx context.Context) *CreateEndpointUsingPOSTParams

NewCreateEndpointUsingPOSTParamsWithContext creates a new CreateEndpointUsingPOSTParams object with the ability to set a context for a request.

func NewCreateEndpointUsingPOSTParamsWithHTTPClient added in v0.4.0

func NewCreateEndpointUsingPOSTParamsWithHTTPClient(client *http.Client) *CreateEndpointUsingPOSTParams

NewCreateEndpointUsingPOSTParamsWithHTTPClient creates a new CreateEndpointUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewCreateEndpointUsingPOSTParamsWithTimeout added in v0.4.0

func NewCreateEndpointUsingPOSTParamsWithTimeout(timeout time.Duration) *CreateEndpointUsingPOSTParams

NewCreateEndpointUsingPOSTParamsWithTimeout creates a new CreateEndpointUsingPOSTParams object with the ability to set a timeout on a request.

func (*CreateEndpointUsingPOSTParams) SetAPIVersion added in v0.4.0

func (o *CreateEndpointUsingPOSTParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) SetAuthorization added in v0.4.0

func (o *CreateEndpointUsingPOSTParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) SetBody added in v0.4.0

SetBody adds the body to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) SetContext added in v0.4.0

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

SetContext adds the context to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) SetDefaults added in v0.4.0

func (o *CreateEndpointUsingPOSTParams) SetDefaults()

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

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

func (*CreateEndpointUsingPOSTParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WithAuthorization added in v0.4.0

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

WithAuthorization adds the authorization to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WithBody added in v0.4.0

WithBody adds the body to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WithContext added in v0.4.0

WithContext adds the context to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WithDefaults added in v0.4.0

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

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

func (*CreateEndpointUsingPOSTParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the create endpoint using p o s t params

func (*CreateEndpointUsingPOSTParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type CreateEndpointUsingPOSTReader added in v0.4.0

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

CreateEndpointUsingPOSTReader is a Reader for the CreateEndpointUsingPOST structure.

func (*CreateEndpointUsingPOSTReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type CreateEndpointUsingPOSTUnauthorized added in v0.4.0

type CreateEndpointUsingPOSTUnauthorized struct {
}

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

Unauthorized Request

func NewCreateEndpointUsingPOSTUnauthorized added in v0.4.0

func NewCreateEndpointUsingPOSTUnauthorized() *CreateEndpointUsingPOSTUnauthorized

NewCreateEndpointUsingPOSTUnauthorized creates a CreateEndpointUsingPOSTUnauthorized with default headers values

func (*CreateEndpointUsingPOSTUnauthorized) Error added in v0.4.0

func (*CreateEndpointUsingPOSTUnauthorized) IsClientError added in v0.5.0

func (o *CreateEndpointUsingPOSTUnauthorized) IsClientError() bool

IsClientError returns true when this create endpoint using p o s t unauthorized response has a 4xx status code

func (*CreateEndpointUsingPOSTUnauthorized) IsCode added in v0.5.0

IsCode returns true when this create endpoint using p o s t unauthorized response a status code equal to that given

func (*CreateEndpointUsingPOSTUnauthorized) IsRedirect added in v0.5.0

func (o *CreateEndpointUsingPOSTUnauthorized) IsRedirect() bool

IsRedirect returns true when this create endpoint using p o s t unauthorized response has a 3xx status code

func (*CreateEndpointUsingPOSTUnauthorized) IsServerError added in v0.5.0

func (o *CreateEndpointUsingPOSTUnauthorized) IsServerError() bool

IsServerError returns true when this create endpoint using p o s t unauthorized response has a 5xx status code

func (*CreateEndpointUsingPOSTUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this create endpoint using p o s t unauthorized response has a 2xx status code

func (*CreateEndpointUsingPOSTUnauthorized) String added in v0.5.0

type DeleteEndpointByIDUsingDELETEForbidden added in v0.4.0

type DeleteEndpointByIDUsingDELETEForbidden struct {
}

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

Forbidden

func NewDeleteEndpointByIDUsingDELETEForbidden added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEForbidden() *DeleteEndpointByIDUsingDELETEForbidden

NewDeleteEndpointByIDUsingDELETEForbidden creates a DeleteEndpointByIDUsingDELETEForbidden with default headers values

func (*DeleteEndpointByIDUsingDELETEForbidden) Error added in v0.4.0

func (*DeleteEndpointByIDUsingDELETEForbidden) IsClientError added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETEForbidden) IsClientError() bool

IsClientError returns true when this delete endpoint by Id using d e l e t e forbidden response has a 4xx status code

func (*DeleteEndpointByIDUsingDELETEForbidden) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by Id using d e l e t e forbidden response a status code equal to that given

func (*DeleteEndpointByIDUsingDELETEForbidden) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by Id using d e l e t e forbidden response has a 3xx status code

func (*DeleteEndpointByIDUsingDELETEForbidden) IsServerError added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETEForbidden) IsServerError() bool

IsServerError returns true when this delete endpoint by Id using d e l e t e forbidden response has a 5xx status code

func (*DeleteEndpointByIDUsingDELETEForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by Id using d e l e t e forbidden response has a 2xx status code

func (*DeleteEndpointByIDUsingDELETEForbidden) String added in v0.5.0

type DeleteEndpointByIDUsingDELETEInternalServerError added in v0.4.0

type DeleteEndpointByIDUsingDELETEInternalServerError struct {
}

DeleteEndpointByIDUsingDELETEInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewDeleteEndpointByIDUsingDELETEInternalServerError added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEInternalServerError() *DeleteEndpointByIDUsingDELETEInternalServerError

NewDeleteEndpointByIDUsingDELETEInternalServerError creates a DeleteEndpointByIDUsingDELETEInternalServerError with default headers values

func (*DeleteEndpointByIDUsingDELETEInternalServerError) Error added in v0.4.0

func (*DeleteEndpointByIDUsingDELETEInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this delete endpoint by Id using d e l e t e internal server error response has a 4xx status code

func (*DeleteEndpointByIDUsingDELETEInternalServerError) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by Id using d e l e t e internal server error response a status code equal to that given

func (*DeleteEndpointByIDUsingDELETEInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by Id using d e l e t e internal server error response has a 3xx status code

func (*DeleteEndpointByIDUsingDELETEInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this delete endpoint by Id using d e l e t e internal server error response has a 5xx status code

func (*DeleteEndpointByIDUsingDELETEInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by Id using d e l e t e internal server error response has a 2xx status code

func (*DeleteEndpointByIDUsingDELETEInternalServerError) String added in v0.5.0

type DeleteEndpointByIDUsingDELETENotFound added in v0.4.0

type DeleteEndpointByIDUsingDELETENotFound struct {
	Payload *models.Error
}

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

Not Found

func NewDeleteEndpointByIDUsingDELETENotFound added in v0.4.0

func NewDeleteEndpointByIDUsingDELETENotFound() *DeleteEndpointByIDUsingDELETENotFound

NewDeleteEndpointByIDUsingDELETENotFound creates a DeleteEndpointByIDUsingDELETENotFound with default headers values

func (*DeleteEndpointByIDUsingDELETENotFound) Error added in v0.4.0

func (*DeleteEndpointByIDUsingDELETENotFound) GetPayload added in v0.4.0

func (*DeleteEndpointByIDUsingDELETENotFound) IsClientError added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETENotFound) IsClientError() bool

IsClientError returns true when this delete endpoint by Id using d e l e t e not found response has a 4xx status code

func (*DeleteEndpointByIDUsingDELETENotFound) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by Id using d e l e t e not found response a status code equal to that given

func (*DeleteEndpointByIDUsingDELETENotFound) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by Id using d e l e t e not found response has a 3xx status code

func (*DeleteEndpointByIDUsingDELETENotFound) IsServerError added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETENotFound) IsServerError() bool

IsServerError returns true when this delete endpoint by Id using d e l e t e not found response has a 5xx status code

func (*DeleteEndpointByIDUsingDELETENotFound) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by Id using d e l e t e not found response has a 2xx status code

func (*DeleteEndpointByIDUsingDELETENotFound) String added in v0.5.0

type DeleteEndpointByIDUsingDELETEOK added in v0.4.0

type DeleteEndpointByIDUsingDELETEOK struct {
	Payload models.Endpoint
}

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

'Success' with the deleted Endpoint

func NewDeleteEndpointByIDUsingDELETEOK added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEOK() *DeleteEndpointByIDUsingDELETEOK

NewDeleteEndpointByIDUsingDELETEOK creates a DeleteEndpointByIDUsingDELETEOK with default headers values

func (*DeleteEndpointByIDUsingDELETEOK) Error added in v0.4.0

func (*DeleteEndpointByIDUsingDELETEOK) GetPayload added in v0.4.0

func (*DeleteEndpointByIDUsingDELETEOK) IsClientError added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETEOK) IsClientError() bool

IsClientError returns true when this delete endpoint by Id using d e l e t e o k response has a 4xx status code

func (*DeleteEndpointByIDUsingDELETEOK) IsCode added in v0.5.0

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

IsCode returns true when this delete endpoint by Id using d e l e t e o k response a status code equal to that given

func (*DeleteEndpointByIDUsingDELETEOK) IsRedirect added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETEOK) IsRedirect() bool

IsRedirect returns true when this delete endpoint by Id using d e l e t e o k response has a 3xx status code

func (*DeleteEndpointByIDUsingDELETEOK) IsServerError added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETEOK) IsServerError() bool

IsServerError returns true when this delete endpoint by Id using d e l e t e o k response has a 5xx status code

func (*DeleteEndpointByIDUsingDELETEOK) IsSuccess added in v0.5.0

func (o *DeleteEndpointByIDUsingDELETEOK) IsSuccess() bool

IsSuccess returns true when this delete endpoint by Id using d e l e t e o k response has a 2xx status code

func (*DeleteEndpointByIDUsingDELETEOK) String added in v0.5.0

type DeleteEndpointByIDUsingDELETEParams added in v0.4.0

type DeleteEndpointByIDUsingDELETEParams 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 Endpoint
	*/
	ID string

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

DeleteEndpointByIDUsingDELETEParams contains all the parameters to send to the API endpoint

for the delete endpoint by Id using d e l e t e operation.

Typically these are written to a http.Request.

func NewDeleteEndpointByIDUsingDELETEParams added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEParams() *DeleteEndpointByIDUsingDELETEParams

NewDeleteEndpointByIDUsingDELETEParams creates a new DeleteEndpointByIDUsingDELETEParams 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 NewDeleteEndpointByIDUsingDELETEParamsWithContext added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEParamsWithContext(ctx context.Context) *DeleteEndpointByIDUsingDELETEParams

NewDeleteEndpointByIDUsingDELETEParamsWithContext creates a new DeleteEndpointByIDUsingDELETEParams object with the ability to set a context for a request.

func NewDeleteEndpointByIDUsingDELETEParamsWithHTTPClient added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteEndpointByIDUsingDELETEParams

NewDeleteEndpointByIDUsingDELETEParamsWithHTTPClient creates a new DeleteEndpointByIDUsingDELETEParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteEndpointByIDUsingDELETEParamsWithTimeout added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteEndpointByIDUsingDELETEParams

NewDeleteEndpointByIDUsingDELETEParamsWithTimeout creates a new DeleteEndpointByIDUsingDELETEParams object with the ability to set a timeout on a request.

func (*DeleteEndpointByIDUsingDELETEParams) SetAPIVersion added in v0.4.0

func (o *DeleteEndpointByIDUsingDELETEParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) SetAuthorization added in v0.4.0

func (o *DeleteEndpointByIDUsingDELETEParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) SetContext added in v0.4.0

SetContext adds the context to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) SetDefaults added in v0.4.0

func (o *DeleteEndpointByIDUsingDELETEParams) SetDefaults()

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

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

func (*DeleteEndpointByIDUsingDELETEParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) SetID added in v0.4.0

SetID adds the id to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WithAuthorization added in v0.4.0

WithAuthorization adds the authorization to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WithContext added in v0.4.0

WithContext adds the context to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WithDefaults added in v0.4.0

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

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

func (*DeleteEndpointByIDUsingDELETEParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WithID added in v0.4.0

WithID adds the id to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the delete endpoint by Id using d e l e t e params

func (*DeleteEndpointByIDUsingDELETEParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type DeleteEndpointByIDUsingDELETEReader added in v0.4.0

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

DeleteEndpointByIDUsingDELETEReader is a Reader for the DeleteEndpointByIDUsingDELETE structure.

func (*DeleteEndpointByIDUsingDELETEReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type DeleteEndpointByIDUsingDELETEUnauthorized added in v0.4.0

type DeleteEndpointByIDUsingDELETEUnauthorized struct {
}

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

Unauthorized Request

func NewDeleteEndpointByIDUsingDELETEUnauthorized added in v0.4.0

func NewDeleteEndpointByIDUsingDELETEUnauthorized() *DeleteEndpointByIDUsingDELETEUnauthorized

NewDeleteEndpointByIDUsingDELETEUnauthorized creates a DeleteEndpointByIDUsingDELETEUnauthorized with default headers values

func (*DeleteEndpointByIDUsingDELETEUnauthorized) Error added in v0.4.0

func (*DeleteEndpointByIDUsingDELETEUnauthorized) IsClientError added in v0.5.0

IsClientError returns true when this delete endpoint by Id using d e l e t e unauthorized response has a 4xx status code

func (*DeleteEndpointByIDUsingDELETEUnauthorized) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by Id using d e l e t e unauthorized response a status code equal to that given

func (*DeleteEndpointByIDUsingDELETEUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by Id using d e l e t e unauthorized response has a 3xx status code

func (*DeleteEndpointByIDUsingDELETEUnauthorized) IsServerError added in v0.5.0

IsServerError returns true when this delete endpoint by Id using d e l e t e unauthorized response has a 5xx status code

func (*DeleteEndpointByIDUsingDELETEUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by Id using d e l e t e unauthorized response has a 2xx status code

func (*DeleteEndpointByIDUsingDELETEUnauthorized) String added in v0.5.0

type DeleteEndpointByNameUsingDELETEForbidden added in v0.4.0

type DeleteEndpointByNameUsingDELETEForbidden struct {
}

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

Forbidden

func NewDeleteEndpointByNameUsingDELETEForbidden added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEForbidden() *DeleteEndpointByNameUsingDELETEForbidden

NewDeleteEndpointByNameUsingDELETEForbidden creates a DeleteEndpointByNameUsingDELETEForbidden with default headers values

func (*DeleteEndpointByNameUsingDELETEForbidden) Error added in v0.4.0

func (*DeleteEndpointByNameUsingDELETEForbidden) IsClientError added in v0.5.0

IsClientError returns true when this delete endpoint by name using d e l e t e forbidden response has a 4xx status code

func (*DeleteEndpointByNameUsingDELETEForbidden) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by name using d e l e t e forbidden response a status code equal to that given

func (*DeleteEndpointByNameUsingDELETEForbidden) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by name using d e l e t e forbidden response has a 3xx status code

func (*DeleteEndpointByNameUsingDELETEForbidden) IsServerError added in v0.5.0

IsServerError returns true when this delete endpoint by name using d e l e t e forbidden response has a 5xx status code

func (*DeleteEndpointByNameUsingDELETEForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by name using d e l e t e forbidden response has a 2xx status code

func (*DeleteEndpointByNameUsingDELETEForbidden) String added in v0.5.0

type DeleteEndpointByNameUsingDELETEInternalServerError added in v0.4.0

type DeleteEndpointByNameUsingDELETEInternalServerError struct {
}

DeleteEndpointByNameUsingDELETEInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewDeleteEndpointByNameUsingDELETEInternalServerError added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEInternalServerError() *DeleteEndpointByNameUsingDELETEInternalServerError

NewDeleteEndpointByNameUsingDELETEInternalServerError creates a DeleteEndpointByNameUsingDELETEInternalServerError with default headers values

func (*DeleteEndpointByNameUsingDELETEInternalServerError) Error added in v0.4.0

func (*DeleteEndpointByNameUsingDELETEInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this delete endpoint by name using d e l e t e internal server error response has a 4xx status code

func (*DeleteEndpointByNameUsingDELETEInternalServerError) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by name using d e l e t e internal server error response a status code equal to that given

func (*DeleteEndpointByNameUsingDELETEInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by name using d e l e t e internal server error response has a 3xx status code

func (*DeleteEndpointByNameUsingDELETEInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this delete endpoint by name using d e l e t e internal server error response has a 5xx status code

func (*DeleteEndpointByNameUsingDELETEInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by name using d e l e t e internal server error response has a 2xx status code

func (*DeleteEndpointByNameUsingDELETEInternalServerError) String added in v0.5.0

type DeleteEndpointByNameUsingDELETENotFound added in v0.4.0

type DeleteEndpointByNameUsingDELETENotFound struct {
	Payload *models.Error
}

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

Not Found

func NewDeleteEndpointByNameUsingDELETENotFound added in v0.4.0

func NewDeleteEndpointByNameUsingDELETENotFound() *DeleteEndpointByNameUsingDELETENotFound

NewDeleteEndpointByNameUsingDELETENotFound creates a DeleteEndpointByNameUsingDELETENotFound with default headers values

func (*DeleteEndpointByNameUsingDELETENotFound) Error added in v0.4.0

func (*DeleteEndpointByNameUsingDELETENotFound) GetPayload added in v0.4.0

func (*DeleteEndpointByNameUsingDELETENotFound) IsClientError added in v0.5.0

func (o *DeleteEndpointByNameUsingDELETENotFound) IsClientError() bool

IsClientError returns true when this delete endpoint by name using d e l e t e not found response has a 4xx status code

func (*DeleteEndpointByNameUsingDELETENotFound) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by name using d e l e t e not found response a status code equal to that given

func (*DeleteEndpointByNameUsingDELETENotFound) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by name using d e l e t e not found response has a 3xx status code

func (*DeleteEndpointByNameUsingDELETENotFound) IsServerError added in v0.5.0

func (o *DeleteEndpointByNameUsingDELETENotFound) IsServerError() bool

IsServerError returns true when this delete endpoint by name using d e l e t e not found response has a 5xx status code

func (*DeleteEndpointByNameUsingDELETENotFound) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by name using d e l e t e not found response has a 2xx status code

func (*DeleteEndpointByNameUsingDELETENotFound) String added in v0.5.0

type DeleteEndpointByNameUsingDELETEOK added in v0.4.0

type DeleteEndpointByNameUsingDELETEOK struct {
	Payload models.Endpoint
}

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

'Success' with the deleted Endpoint

func NewDeleteEndpointByNameUsingDELETEOK added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEOK() *DeleteEndpointByNameUsingDELETEOK

NewDeleteEndpointByNameUsingDELETEOK creates a DeleteEndpointByNameUsingDELETEOK with default headers values

func (*DeleteEndpointByNameUsingDELETEOK) Error added in v0.4.0

func (*DeleteEndpointByNameUsingDELETEOK) GetPayload added in v0.4.0

func (*DeleteEndpointByNameUsingDELETEOK) IsClientError added in v0.5.0

func (o *DeleteEndpointByNameUsingDELETEOK) IsClientError() bool

IsClientError returns true when this delete endpoint by name using d e l e t e o k response has a 4xx status code

func (*DeleteEndpointByNameUsingDELETEOK) IsCode added in v0.5.0

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

IsCode returns true when this delete endpoint by name using d e l e t e o k response a status code equal to that given

func (*DeleteEndpointByNameUsingDELETEOK) IsRedirect added in v0.5.0

func (o *DeleteEndpointByNameUsingDELETEOK) IsRedirect() bool

IsRedirect returns true when this delete endpoint by name using d e l e t e o k response has a 3xx status code

func (*DeleteEndpointByNameUsingDELETEOK) IsServerError added in v0.5.0

func (o *DeleteEndpointByNameUsingDELETEOK) IsServerError() bool

IsServerError returns true when this delete endpoint by name using d e l e t e o k response has a 5xx status code

func (*DeleteEndpointByNameUsingDELETEOK) IsSuccess added in v0.5.0

func (o *DeleteEndpointByNameUsingDELETEOK) IsSuccess() bool

IsSuccess returns true when this delete endpoint by name using d e l e t e o k response has a 2xx status code

func (*DeleteEndpointByNameUsingDELETEOK) String added in v0.5.0

type DeleteEndpointByNameUsingDELETEParams added in v0.4.0

type DeleteEndpointByNameUsingDELETEParams 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

	/* Name.

	   The name of the Endpoint
	*/
	Name string

	/* Project.

	   The project the Endpoint belongs to
	*/
	Project string

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

DeleteEndpointByNameUsingDELETEParams contains all the parameters to send to the API endpoint

for the delete endpoint by name using d e l e t e operation.

Typically these are written to a http.Request.

func NewDeleteEndpointByNameUsingDELETEParams added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEParams() *DeleteEndpointByNameUsingDELETEParams

NewDeleteEndpointByNameUsingDELETEParams creates a new DeleteEndpointByNameUsingDELETEParams 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 NewDeleteEndpointByNameUsingDELETEParamsWithContext added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEParamsWithContext(ctx context.Context) *DeleteEndpointByNameUsingDELETEParams

NewDeleteEndpointByNameUsingDELETEParamsWithContext creates a new DeleteEndpointByNameUsingDELETEParams object with the ability to set a context for a request.

func NewDeleteEndpointByNameUsingDELETEParamsWithHTTPClient added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteEndpointByNameUsingDELETEParams

NewDeleteEndpointByNameUsingDELETEParamsWithHTTPClient creates a new DeleteEndpointByNameUsingDELETEParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteEndpointByNameUsingDELETEParamsWithTimeout added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteEndpointByNameUsingDELETEParams

NewDeleteEndpointByNameUsingDELETEParamsWithTimeout creates a new DeleteEndpointByNameUsingDELETEParams object with the ability to set a timeout on a request.

func (*DeleteEndpointByNameUsingDELETEParams) SetAPIVersion added in v0.4.0

func (o *DeleteEndpointByNameUsingDELETEParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) SetAuthorization added in v0.4.0

func (o *DeleteEndpointByNameUsingDELETEParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) SetContext added in v0.4.0

SetContext adds the context to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) SetDefaults added in v0.4.0

func (o *DeleteEndpointByNameUsingDELETEParams) SetDefaults()

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

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

func (*DeleteEndpointByNameUsingDELETEParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) SetName added in v0.4.0

SetName adds the name to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) SetProject added in v0.4.0

func (o *DeleteEndpointByNameUsingDELETEParams) SetProject(project string)

SetProject adds the project to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithAuthorization added in v0.4.0

WithAuthorization adds the authorization to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithContext added in v0.4.0

WithContext adds the context to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithDefaults added in v0.4.0

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

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

func (*DeleteEndpointByNameUsingDELETEParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithName added in v0.4.0

WithName adds the name to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithProject added in v0.4.0

WithProject adds the project to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the delete endpoint by name using d e l e t e params

func (*DeleteEndpointByNameUsingDELETEParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type DeleteEndpointByNameUsingDELETEReader added in v0.4.0

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

DeleteEndpointByNameUsingDELETEReader is a Reader for the DeleteEndpointByNameUsingDELETE structure.

func (*DeleteEndpointByNameUsingDELETEReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type DeleteEndpointByNameUsingDELETEUnauthorized added in v0.4.0

type DeleteEndpointByNameUsingDELETEUnauthorized struct {
}

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

Unauthorized Request

func NewDeleteEndpointByNameUsingDELETEUnauthorized added in v0.4.0

func NewDeleteEndpointByNameUsingDELETEUnauthorized() *DeleteEndpointByNameUsingDELETEUnauthorized

NewDeleteEndpointByNameUsingDELETEUnauthorized creates a DeleteEndpointByNameUsingDELETEUnauthorized with default headers values

func (*DeleteEndpointByNameUsingDELETEUnauthorized) Error added in v0.4.0

func (*DeleteEndpointByNameUsingDELETEUnauthorized) IsClientError added in v0.5.0

IsClientError returns true when this delete endpoint by name using d e l e t e unauthorized response has a 4xx status code

func (*DeleteEndpointByNameUsingDELETEUnauthorized) IsCode added in v0.5.0

IsCode returns true when this delete endpoint by name using d e l e t e unauthorized response a status code equal to that given

func (*DeleteEndpointByNameUsingDELETEUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this delete endpoint by name using d e l e t e unauthorized response has a 3xx status code

func (*DeleteEndpointByNameUsingDELETEUnauthorized) IsServerError added in v0.5.0

IsServerError returns true when this delete endpoint by name using d e l e t e unauthorized response has a 5xx status code

func (*DeleteEndpointByNameUsingDELETEUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this delete endpoint by name using d e l e t e unauthorized response has a 2xx status code

func (*DeleteEndpointByNameUsingDELETEUnauthorized) String added in v0.5.0

type GetAllEndpointsUsingGETForbidden added in v0.4.0

type GetAllEndpointsUsingGETForbidden struct {
}

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

Forbidden

func NewGetAllEndpointsUsingGETForbidden added in v0.4.0

func NewGetAllEndpointsUsingGETForbidden() *GetAllEndpointsUsingGETForbidden

NewGetAllEndpointsUsingGETForbidden creates a GetAllEndpointsUsingGETForbidden with default headers values

func (*GetAllEndpointsUsingGETForbidden) Error added in v0.4.0

func (*GetAllEndpointsUsingGETForbidden) IsClientError added in v0.5.0

func (o *GetAllEndpointsUsingGETForbidden) IsClientError() bool

IsClientError returns true when this get all endpoints using g e t forbidden response has a 4xx status code

func (*GetAllEndpointsUsingGETForbidden) IsCode added in v0.5.0

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

IsCode returns true when this get all endpoints using g e t forbidden response a status code equal to that given

func (*GetAllEndpointsUsingGETForbidden) IsRedirect added in v0.5.0

func (o *GetAllEndpointsUsingGETForbidden) IsRedirect() bool

IsRedirect returns true when this get all endpoints using g e t forbidden response has a 3xx status code

func (*GetAllEndpointsUsingGETForbidden) IsServerError added in v0.5.0

func (o *GetAllEndpointsUsingGETForbidden) IsServerError() bool

IsServerError returns true when this get all endpoints using g e t forbidden response has a 5xx status code

func (*GetAllEndpointsUsingGETForbidden) IsSuccess added in v0.5.0

func (o *GetAllEndpointsUsingGETForbidden) IsSuccess() bool

IsSuccess returns true when this get all endpoints using g e t forbidden response has a 2xx status code

func (*GetAllEndpointsUsingGETForbidden) String added in v0.5.0

type GetAllEndpointsUsingGETInternalServerError added in v0.4.0

type GetAllEndpointsUsingGETInternalServerError struct {
}

GetAllEndpointsUsingGETInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewGetAllEndpointsUsingGETInternalServerError added in v0.4.0

func NewGetAllEndpointsUsingGETInternalServerError() *GetAllEndpointsUsingGETInternalServerError

NewGetAllEndpointsUsingGETInternalServerError creates a GetAllEndpointsUsingGETInternalServerError with default headers values

func (*GetAllEndpointsUsingGETInternalServerError) Error added in v0.4.0

func (*GetAllEndpointsUsingGETInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this get all endpoints using g e t internal server error response has a 4xx status code

func (*GetAllEndpointsUsingGETInternalServerError) IsCode added in v0.5.0

IsCode returns true when this get all endpoints using g e t internal server error response a status code equal to that given

func (*GetAllEndpointsUsingGETInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this get all endpoints using g e t internal server error response has a 3xx status code

func (*GetAllEndpointsUsingGETInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this get all endpoints using g e t internal server error response has a 5xx status code

func (*GetAllEndpointsUsingGETInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this get all endpoints using g e t internal server error response has a 2xx status code

func (*GetAllEndpointsUsingGETInternalServerError) String added in v0.5.0

type GetAllEndpointsUsingGETNotFound added in v0.4.0

type GetAllEndpointsUsingGETNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewGetAllEndpointsUsingGETNotFound added in v0.4.0

func NewGetAllEndpointsUsingGETNotFound() *GetAllEndpointsUsingGETNotFound

NewGetAllEndpointsUsingGETNotFound creates a GetAllEndpointsUsingGETNotFound with default headers values

func (*GetAllEndpointsUsingGETNotFound) Error added in v0.4.0

func (*GetAllEndpointsUsingGETNotFound) GetPayload added in v0.4.0

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

func (*GetAllEndpointsUsingGETNotFound) IsClientError added in v0.5.0

func (o *GetAllEndpointsUsingGETNotFound) IsClientError() bool

IsClientError returns true when this get all endpoints using g e t not found response has a 4xx status code

func (*GetAllEndpointsUsingGETNotFound) IsCode added in v0.5.0

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

IsCode returns true when this get all endpoints using g e t not found response a status code equal to that given

func (*GetAllEndpointsUsingGETNotFound) IsRedirect added in v0.5.0

func (o *GetAllEndpointsUsingGETNotFound) IsRedirect() bool

IsRedirect returns true when this get all endpoints using g e t not found response has a 3xx status code

func (*GetAllEndpointsUsingGETNotFound) IsServerError added in v0.5.0

func (o *GetAllEndpointsUsingGETNotFound) IsServerError() bool

IsServerError returns true when this get all endpoints using g e t not found response has a 5xx status code

func (*GetAllEndpointsUsingGETNotFound) IsSuccess added in v0.5.0

func (o *GetAllEndpointsUsingGETNotFound) IsSuccess() bool

IsSuccess returns true when this get all endpoints using g e t not found response has a 2xx status code

func (*GetAllEndpointsUsingGETNotFound) String added in v0.5.0

type GetAllEndpointsUsingGETOK added in v0.4.0

type GetAllEndpointsUsingGETOK struct {
	Payload *models.Endpoints
}

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

'Success' with the requested Endpoints

func NewGetAllEndpointsUsingGETOK added in v0.4.0

func NewGetAllEndpointsUsingGETOK() *GetAllEndpointsUsingGETOK

NewGetAllEndpointsUsingGETOK creates a GetAllEndpointsUsingGETOK with default headers values

func (*GetAllEndpointsUsingGETOK) Error added in v0.4.0

func (o *GetAllEndpointsUsingGETOK) Error() string

func (*GetAllEndpointsUsingGETOK) GetPayload added in v0.4.0

func (o *GetAllEndpointsUsingGETOK) GetPayload() *models.Endpoints

func (*GetAllEndpointsUsingGETOK) IsClientError added in v0.5.0

func (o *GetAllEndpointsUsingGETOK) IsClientError() bool

IsClientError returns true when this get all endpoints using g e t o k response has a 4xx status code

func (*GetAllEndpointsUsingGETOK) IsCode added in v0.5.0

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

IsCode returns true when this get all endpoints using g e t o k response a status code equal to that given

func (*GetAllEndpointsUsingGETOK) IsRedirect added in v0.5.0

func (o *GetAllEndpointsUsingGETOK) IsRedirect() bool

IsRedirect returns true when this get all endpoints using g e t o k response has a 3xx status code

func (*GetAllEndpointsUsingGETOK) IsServerError added in v0.5.0

func (o *GetAllEndpointsUsingGETOK) IsServerError() bool

IsServerError returns true when this get all endpoints using g e t o k response has a 5xx status code

func (*GetAllEndpointsUsingGETOK) IsSuccess added in v0.5.0

func (o *GetAllEndpointsUsingGETOK) IsSuccess() bool

IsSuccess returns true when this get all endpoints using g e t o k response has a 2xx status code

func (*GetAllEndpointsUsingGETOK) String added in v0.5.0

func (o *GetAllEndpointsUsingGETOK) String() string

type GetAllEndpointsUsingGETParams added in v0.4.0

type GetAllEndpointsUsingGETParams struct {

	/* DollarFilter.

	   To list Endpoints with OData like filter
	*/
	DollarFilter *string

	/* DollarOrderby.

	   Order by attribute

	   Default: "name desc"
	*/
	DollarOrderby *string

	/* DollarSkip.

	   To skip 'n' Endpoints for listing

	   Default: "0"
	*/
	DollarSkip *string

	/* DollarTop.

	   To list top 'n' Endpoints 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
}

GetAllEndpointsUsingGETParams contains all the parameters to send to the API endpoint

for the get all endpoints using g e t operation.

Typically these are written to a http.Request.

func NewGetAllEndpointsUsingGETParams added in v0.4.0

func NewGetAllEndpointsUsingGETParams() *GetAllEndpointsUsingGETParams

NewGetAllEndpointsUsingGETParams creates a new GetAllEndpointsUsingGETParams 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 NewGetAllEndpointsUsingGETParamsWithContext added in v0.4.0

func NewGetAllEndpointsUsingGETParamsWithContext(ctx context.Context) *GetAllEndpointsUsingGETParams

NewGetAllEndpointsUsingGETParamsWithContext creates a new GetAllEndpointsUsingGETParams object with the ability to set a context for a request.

func NewGetAllEndpointsUsingGETParamsWithHTTPClient added in v0.4.0

func NewGetAllEndpointsUsingGETParamsWithHTTPClient(client *http.Client) *GetAllEndpointsUsingGETParams

NewGetAllEndpointsUsingGETParamsWithHTTPClient creates a new GetAllEndpointsUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetAllEndpointsUsingGETParamsWithTimeout added in v0.4.0

func NewGetAllEndpointsUsingGETParamsWithTimeout(timeout time.Duration) *GetAllEndpointsUsingGETParams

NewGetAllEndpointsUsingGETParamsWithTimeout creates a new GetAllEndpointsUsingGETParams object with the ability to set a timeout on a request.

func (*GetAllEndpointsUsingGETParams) SetAPIVersion added in v0.4.0

func (o *GetAllEndpointsUsingGETParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetAuthorization added in v0.4.0

func (o *GetAllEndpointsUsingGETParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetContext added in v0.4.0

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

SetContext adds the context to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetDefaults added in v0.4.0

func (o *GetAllEndpointsUsingGETParams) SetDefaults()

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

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

func (*GetAllEndpointsUsingGETParams) SetDollarFilter added in v0.4.0

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

SetDollarFilter adds the dollarFilter to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetDollarOrderby added in v0.4.0

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

SetDollarOrderby adds the dollarOrderby to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetDollarSkip added in v0.4.0

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

SetDollarSkip adds the dollarSkip to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetDollarTop added in v0.4.0

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

SetDollarTop adds the dollarTop to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetPage added in v0.4.0

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

SetPage adds the page to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithAuthorization added in v0.4.0

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

WithAuthorization adds the authorization to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithContext added in v0.4.0

WithContext adds the context to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithDefaults added in v0.4.0

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

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

func (*GetAllEndpointsUsingGETParams) WithDollarFilter added in v0.4.0

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

WithDollarFilter adds the dollarFilter to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithDollarOrderby added in v0.4.0

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

WithDollarOrderby adds the dollarOrderby to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithDollarSkip added in v0.4.0

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

WithDollarSkip adds the dollarSkip to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithDollarTop added in v0.4.0

WithDollarTop adds the dollarTop to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithPage added in v0.4.0

WithPage adds the page to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the get all endpoints using get params

func (*GetAllEndpointsUsingGETParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type GetAllEndpointsUsingGETReader added in v0.4.0

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

GetAllEndpointsUsingGETReader is a Reader for the GetAllEndpointsUsingGET structure.

func (*GetAllEndpointsUsingGETReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type GetAllEndpointsUsingGETUnauthorized added in v0.4.0

type GetAllEndpointsUsingGETUnauthorized struct {
}

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

Unauthorized Request

func NewGetAllEndpointsUsingGETUnauthorized added in v0.4.0

func NewGetAllEndpointsUsingGETUnauthorized() *GetAllEndpointsUsingGETUnauthorized

NewGetAllEndpointsUsingGETUnauthorized creates a GetAllEndpointsUsingGETUnauthorized with default headers values

func (*GetAllEndpointsUsingGETUnauthorized) Error added in v0.4.0

func (*GetAllEndpointsUsingGETUnauthorized) IsClientError added in v0.5.0

func (o *GetAllEndpointsUsingGETUnauthorized) IsClientError() bool

IsClientError returns true when this get all endpoints using g e t unauthorized response has a 4xx status code

func (*GetAllEndpointsUsingGETUnauthorized) IsCode added in v0.5.0

IsCode returns true when this get all endpoints using g e t unauthorized response a status code equal to that given

func (*GetAllEndpointsUsingGETUnauthorized) IsRedirect added in v0.5.0

func (o *GetAllEndpointsUsingGETUnauthorized) IsRedirect() bool

IsRedirect returns true when this get all endpoints using g e t unauthorized response has a 3xx status code

func (*GetAllEndpointsUsingGETUnauthorized) IsServerError added in v0.5.0

func (o *GetAllEndpointsUsingGETUnauthorized) IsServerError() bool

IsServerError returns true when this get all endpoints using g e t unauthorized response has a 5xx status code

func (*GetAllEndpointsUsingGETUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this get all endpoints using g e t unauthorized response has a 2xx status code

func (*GetAllEndpointsUsingGETUnauthorized) String added in v0.5.0

type GetEndpointByIDUsingGETForbidden added in v0.4.0

type GetEndpointByIDUsingGETForbidden struct {
}

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

Forbidden

func NewGetEndpointByIDUsingGETForbidden added in v0.4.0

func NewGetEndpointByIDUsingGETForbidden() *GetEndpointByIDUsingGETForbidden

NewGetEndpointByIDUsingGETForbidden creates a GetEndpointByIDUsingGETForbidden with default headers values

func (*GetEndpointByIDUsingGETForbidden) Error added in v0.4.0

func (*GetEndpointByIDUsingGETForbidden) IsClientError added in v0.5.0

func (o *GetEndpointByIDUsingGETForbidden) IsClientError() bool

IsClientError returns true when this get endpoint by Id using g e t forbidden response has a 4xx status code

func (*GetEndpointByIDUsingGETForbidden) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint by Id using g e t forbidden response a status code equal to that given

func (*GetEndpointByIDUsingGETForbidden) IsRedirect added in v0.5.0

func (o *GetEndpointByIDUsingGETForbidden) IsRedirect() bool

IsRedirect returns true when this get endpoint by Id using g e t forbidden response has a 3xx status code

func (*GetEndpointByIDUsingGETForbidden) IsServerError added in v0.5.0

func (o *GetEndpointByIDUsingGETForbidden) IsServerError() bool

IsServerError returns true when this get endpoint by Id using g e t forbidden response has a 5xx status code

func (*GetEndpointByIDUsingGETForbidden) IsSuccess added in v0.5.0

func (o *GetEndpointByIDUsingGETForbidden) IsSuccess() bool

IsSuccess returns true when this get endpoint by Id using g e t forbidden response has a 2xx status code

func (*GetEndpointByIDUsingGETForbidden) String added in v0.5.0

type GetEndpointByIDUsingGETInternalServerError added in v0.4.0

type GetEndpointByIDUsingGETInternalServerError struct {
}

GetEndpointByIDUsingGETInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewGetEndpointByIDUsingGETInternalServerError added in v0.4.0

func NewGetEndpointByIDUsingGETInternalServerError() *GetEndpointByIDUsingGETInternalServerError

NewGetEndpointByIDUsingGETInternalServerError creates a GetEndpointByIDUsingGETInternalServerError with default headers values

func (*GetEndpointByIDUsingGETInternalServerError) Error added in v0.4.0

func (*GetEndpointByIDUsingGETInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this get endpoint by Id using g e t internal server error response has a 4xx status code

func (*GetEndpointByIDUsingGETInternalServerError) IsCode added in v0.5.0

IsCode returns true when this get endpoint by Id using g e t internal server error response a status code equal to that given

func (*GetEndpointByIDUsingGETInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint by Id using g e t internal server error response has a 3xx status code

func (*GetEndpointByIDUsingGETInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this get endpoint by Id using g e t internal server error response has a 5xx status code

func (*GetEndpointByIDUsingGETInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint by Id using g e t internal server error response has a 2xx status code

func (*GetEndpointByIDUsingGETInternalServerError) String added in v0.5.0

type GetEndpointByIDUsingGETNotFound added in v0.4.0

type GetEndpointByIDUsingGETNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewGetEndpointByIDUsingGETNotFound added in v0.4.0

func NewGetEndpointByIDUsingGETNotFound() *GetEndpointByIDUsingGETNotFound

NewGetEndpointByIDUsingGETNotFound creates a GetEndpointByIDUsingGETNotFound with default headers values

func (*GetEndpointByIDUsingGETNotFound) Error added in v0.4.0

func (*GetEndpointByIDUsingGETNotFound) GetPayload added in v0.4.0

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

func (*GetEndpointByIDUsingGETNotFound) IsClientError added in v0.5.0

func (o *GetEndpointByIDUsingGETNotFound) IsClientError() bool

IsClientError returns true when this get endpoint by Id using g e t not found response has a 4xx status code

func (*GetEndpointByIDUsingGETNotFound) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint by Id using g e t not found response a status code equal to that given

func (*GetEndpointByIDUsingGETNotFound) IsRedirect added in v0.5.0

func (o *GetEndpointByIDUsingGETNotFound) IsRedirect() bool

IsRedirect returns true when this get endpoint by Id using g e t not found response has a 3xx status code

func (*GetEndpointByIDUsingGETNotFound) IsServerError added in v0.5.0

func (o *GetEndpointByIDUsingGETNotFound) IsServerError() bool

IsServerError returns true when this get endpoint by Id using g e t not found response has a 5xx status code

func (*GetEndpointByIDUsingGETNotFound) IsSuccess added in v0.5.0

func (o *GetEndpointByIDUsingGETNotFound) IsSuccess() bool

IsSuccess returns true when this get endpoint by Id using g e t not found response has a 2xx status code

func (*GetEndpointByIDUsingGETNotFound) String added in v0.5.0

type GetEndpointByIDUsingGETOK added in v0.4.0

type GetEndpointByIDUsingGETOK struct {
	Payload models.Endpoint
}

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

'Success' with the requested Endpoint

func NewGetEndpointByIDUsingGETOK added in v0.4.0

func NewGetEndpointByIDUsingGETOK() *GetEndpointByIDUsingGETOK

NewGetEndpointByIDUsingGETOK creates a GetEndpointByIDUsingGETOK with default headers values

func (*GetEndpointByIDUsingGETOK) Error added in v0.4.0

func (o *GetEndpointByIDUsingGETOK) Error() string

func (*GetEndpointByIDUsingGETOK) GetPayload added in v0.4.0

func (o *GetEndpointByIDUsingGETOK) GetPayload() models.Endpoint

func (*GetEndpointByIDUsingGETOK) IsClientError added in v0.5.0

func (o *GetEndpointByIDUsingGETOK) IsClientError() bool

IsClientError returns true when this get endpoint by Id using g e t o k response has a 4xx status code

func (*GetEndpointByIDUsingGETOK) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint by Id using g e t o k response a status code equal to that given

func (*GetEndpointByIDUsingGETOK) IsRedirect added in v0.5.0

func (o *GetEndpointByIDUsingGETOK) IsRedirect() bool

IsRedirect returns true when this get endpoint by Id using g e t o k response has a 3xx status code

func (*GetEndpointByIDUsingGETOK) IsServerError added in v0.5.0

func (o *GetEndpointByIDUsingGETOK) IsServerError() bool

IsServerError returns true when this get endpoint by Id using g e t o k response has a 5xx status code

func (*GetEndpointByIDUsingGETOK) IsSuccess added in v0.5.0

func (o *GetEndpointByIDUsingGETOK) IsSuccess() bool

IsSuccess returns true when this get endpoint by Id using g e t o k response has a 2xx status code

func (*GetEndpointByIDUsingGETOK) String added in v0.5.0

func (o *GetEndpointByIDUsingGETOK) String() string

type GetEndpointByIDUsingGETParams added in v0.4.0

type GetEndpointByIDUsingGETParams 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 Endpoint
	*/
	ID string

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

GetEndpointByIDUsingGETParams contains all the parameters to send to the API endpoint

for the get endpoint by Id using g e t operation.

Typically these are written to a http.Request.

func NewGetEndpointByIDUsingGETParams added in v0.4.0

func NewGetEndpointByIDUsingGETParams() *GetEndpointByIDUsingGETParams

NewGetEndpointByIDUsingGETParams creates a new GetEndpointByIDUsingGETParams 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 NewGetEndpointByIDUsingGETParamsWithContext added in v0.4.0

func NewGetEndpointByIDUsingGETParamsWithContext(ctx context.Context) *GetEndpointByIDUsingGETParams

NewGetEndpointByIDUsingGETParamsWithContext creates a new GetEndpointByIDUsingGETParams object with the ability to set a context for a request.

func NewGetEndpointByIDUsingGETParamsWithHTTPClient added in v0.4.0

func NewGetEndpointByIDUsingGETParamsWithHTTPClient(client *http.Client) *GetEndpointByIDUsingGETParams

NewGetEndpointByIDUsingGETParamsWithHTTPClient creates a new GetEndpointByIDUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetEndpointByIDUsingGETParamsWithTimeout added in v0.4.0

func NewGetEndpointByIDUsingGETParamsWithTimeout(timeout time.Duration) *GetEndpointByIDUsingGETParams

NewGetEndpointByIDUsingGETParamsWithTimeout creates a new GetEndpointByIDUsingGETParams object with the ability to set a timeout on a request.

func (*GetEndpointByIDUsingGETParams) SetAPIVersion added in v0.4.0

func (o *GetEndpointByIDUsingGETParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) SetAuthorization added in v0.4.0

func (o *GetEndpointByIDUsingGETParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) SetContext added in v0.4.0

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

SetContext adds the context to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) SetDefaults added in v0.4.0

func (o *GetEndpointByIDUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get endpoint by Id using get params (not the query body).

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

func (*GetEndpointByIDUsingGETParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) SetID added in v0.4.0

SetID adds the id to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WithAuthorization added in v0.4.0

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

WithAuthorization adds the authorization to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WithContext added in v0.4.0

WithContext adds the context to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WithDefaults added in v0.4.0

WithDefaults hydrates default values in the get endpoint by Id using get params (not the query body).

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

func (*GetEndpointByIDUsingGETParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WithID added in v0.4.0

WithID adds the id to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the get endpoint by Id using get params

func (*GetEndpointByIDUsingGETParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type GetEndpointByIDUsingGETReader added in v0.4.0

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

GetEndpointByIDUsingGETReader is a Reader for the GetEndpointByIDUsingGET structure.

func (*GetEndpointByIDUsingGETReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type GetEndpointByIDUsingGETUnauthorized added in v0.4.0

type GetEndpointByIDUsingGETUnauthorized struct {
}

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

Unauthorized Request

func NewGetEndpointByIDUsingGETUnauthorized added in v0.4.0

func NewGetEndpointByIDUsingGETUnauthorized() *GetEndpointByIDUsingGETUnauthorized

NewGetEndpointByIDUsingGETUnauthorized creates a GetEndpointByIDUsingGETUnauthorized with default headers values

func (*GetEndpointByIDUsingGETUnauthorized) Error added in v0.4.0

func (*GetEndpointByIDUsingGETUnauthorized) IsClientError added in v0.5.0

func (o *GetEndpointByIDUsingGETUnauthorized) IsClientError() bool

IsClientError returns true when this get endpoint by Id using g e t unauthorized response has a 4xx status code

func (*GetEndpointByIDUsingGETUnauthorized) IsCode added in v0.5.0

IsCode returns true when this get endpoint by Id using g e t unauthorized response a status code equal to that given

func (*GetEndpointByIDUsingGETUnauthorized) IsRedirect added in v0.5.0

func (o *GetEndpointByIDUsingGETUnauthorized) IsRedirect() bool

IsRedirect returns true when this get endpoint by Id using g e t unauthorized response has a 3xx status code

func (*GetEndpointByIDUsingGETUnauthorized) IsServerError added in v0.5.0

func (o *GetEndpointByIDUsingGETUnauthorized) IsServerError() bool

IsServerError returns true when this get endpoint by Id using g e t unauthorized response has a 5xx status code

func (*GetEndpointByIDUsingGETUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint by Id using g e t unauthorized response has a 2xx status code

func (*GetEndpointByIDUsingGETUnauthorized) String added in v0.5.0

type GetEndpointByNameUsingGETForbidden added in v0.4.0

type GetEndpointByNameUsingGETForbidden struct {
}

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

Forbidden

func NewGetEndpointByNameUsingGETForbidden added in v0.4.0

func NewGetEndpointByNameUsingGETForbidden() *GetEndpointByNameUsingGETForbidden

NewGetEndpointByNameUsingGETForbidden creates a GetEndpointByNameUsingGETForbidden with default headers values

func (*GetEndpointByNameUsingGETForbidden) Error added in v0.4.0

func (*GetEndpointByNameUsingGETForbidden) IsClientError added in v0.5.0

func (o *GetEndpointByNameUsingGETForbidden) IsClientError() bool

IsClientError returns true when this get endpoint by name using g e t forbidden response has a 4xx status code

func (*GetEndpointByNameUsingGETForbidden) IsCode added in v0.5.0

IsCode returns true when this get endpoint by name using g e t forbidden response a status code equal to that given

func (*GetEndpointByNameUsingGETForbidden) IsRedirect added in v0.5.0

func (o *GetEndpointByNameUsingGETForbidden) IsRedirect() bool

IsRedirect returns true when this get endpoint by name using g e t forbidden response has a 3xx status code

func (*GetEndpointByNameUsingGETForbidden) IsServerError added in v0.5.0

func (o *GetEndpointByNameUsingGETForbidden) IsServerError() bool

IsServerError returns true when this get endpoint by name using g e t forbidden response has a 5xx status code

func (*GetEndpointByNameUsingGETForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint by name using g e t forbidden response has a 2xx status code

func (*GetEndpointByNameUsingGETForbidden) String added in v0.5.0

type GetEndpointByNameUsingGETInternalServerError added in v0.4.0

type GetEndpointByNameUsingGETInternalServerError struct {
}

GetEndpointByNameUsingGETInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewGetEndpointByNameUsingGETInternalServerError added in v0.4.0

func NewGetEndpointByNameUsingGETInternalServerError() *GetEndpointByNameUsingGETInternalServerError

NewGetEndpointByNameUsingGETInternalServerError creates a GetEndpointByNameUsingGETInternalServerError with default headers values

func (*GetEndpointByNameUsingGETInternalServerError) Error added in v0.4.0

func (*GetEndpointByNameUsingGETInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this get endpoint by name using g e t internal server error response has a 4xx status code

func (*GetEndpointByNameUsingGETInternalServerError) IsCode added in v0.5.0

IsCode returns true when this get endpoint by name using g e t internal server error response a status code equal to that given

func (*GetEndpointByNameUsingGETInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint by name using g e t internal server error response has a 3xx status code

func (*GetEndpointByNameUsingGETInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this get endpoint by name using g e t internal server error response has a 5xx status code

func (*GetEndpointByNameUsingGETInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint by name using g e t internal server error response has a 2xx status code

func (*GetEndpointByNameUsingGETInternalServerError) String added in v0.5.0

type GetEndpointByNameUsingGETNotFound added in v0.4.0

type GetEndpointByNameUsingGETNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewGetEndpointByNameUsingGETNotFound added in v0.4.0

func NewGetEndpointByNameUsingGETNotFound() *GetEndpointByNameUsingGETNotFound

NewGetEndpointByNameUsingGETNotFound creates a GetEndpointByNameUsingGETNotFound with default headers values

func (*GetEndpointByNameUsingGETNotFound) Error added in v0.4.0

func (*GetEndpointByNameUsingGETNotFound) GetPayload added in v0.4.0

func (*GetEndpointByNameUsingGETNotFound) IsClientError added in v0.5.0

func (o *GetEndpointByNameUsingGETNotFound) IsClientError() bool

IsClientError returns true when this get endpoint by name using g e t not found response has a 4xx status code

func (*GetEndpointByNameUsingGETNotFound) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint by name using g e t not found response a status code equal to that given

func (*GetEndpointByNameUsingGETNotFound) IsRedirect added in v0.5.0

func (o *GetEndpointByNameUsingGETNotFound) IsRedirect() bool

IsRedirect returns true when this get endpoint by name using g e t not found response has a 3xx status code

func (*GetEndpointByNameUsingGETNotFound) IsServerError added in v0.5.0

func (o *GetEndpointByNameUsingGETNotFound) IsServerError() bool

IsServerError returns true when this get endpoint by name using g e t not found response has a 5xx status code

func (*GetEndpointByNameUsingGETNotFound) IsSuccess added in v0.5.0

func (o *GetEndpointByNameUsingGETNotFound) IsSuccess() bool

IsSuccess returns true when this get endpoint by name using g e t not found response has a 2xx status code

func (*GetEndpointByNameUsingGETNotFound) String added in v0.5.0

type GetEndpointByNameUsingGETOK added in v0.4.0

type GetEndpointByNameUsingGETOK struct {
	Payload models.Endpoint
}

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

'Success' with the requested Endpoint

func NewGetEndpointByNameUsingGETOK added in v0.4.0

func NewGetEndpointByNameUsingGETOK() *GetEndpointByNameUsingGETOK

NewGetEndpointByNameUsingGETOK creates a GetEndpointByNameUsingGETOK with default headers values

func (*GetEndpointByNameUsingGETOK) Error added in v0.4.0

func (*GetEndpointByNameUsingGETOK) GetPayload added in v0.4.0

func (*GetEndpointByNameUsingGETOK) IsClientError added in v0.5.0

func (o *GetEndpointByNameUsingGETOK) IsClientError() bool

IsClientError returns true when this get endpoint by name using g e t o k response has a 4xx status code

func (*GetEndpointByNameUsingGETOK) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint by name using g e t o k response a status code equal to that given

func (*GetEndpointByNameUsingGETOK) IsRedirect added in v0.5.0

func (o *GetEndpointByNameUsingGETOK) IsRedirect() bool

IsRedirect returns true when this get endpoint by name using g e t o k response has a 3xx status code

func (*GetEndpointByNameUsingGETOK) IsServerError added in v0.5.0

func (o *GetEndpointByNameUsingGETOK) IsServerError() bool

IsServerError returns true when this get endpoint by name using g e t o k response has a 5xx status code

func (*GetEndpointByNameUsingGETOK) IsSuccess added in v0.5.0

func (o *GetEndpointByNameUsingGETOK) IsSuccess() bool

IsSuccess returns true when this get endpoint by name using g e t o k response has a 2xx status code

func (*GetEndpointByNameUsingGETOK) String added in v0.5.0

func (o *GetEndpointByNameUsingGETOK) String() string

type GetEndpointByNameUsingGETParams added in v0.4.0

type GetEndpointByNameUsingGETParams 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

	/* Name.

	   The name of the Endpoint
	*/
	Name string

	/* Project.

	   The project the Endpoint belongs to
	*/
	Project string

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

GetEndpointByNameUsingGETParams contains all the parameters to send to the API endpoint

for the get endpoint by name using g e t operation.

Typically these are written to a http.Request.

func NewGetEndpointByNameUsingGETParams added in v0.4.0

func NewGetEndpointByNameUsingGETParams() *GetEndpointByNameUsingGETParams

NewGetEndpointByNameUsingGETParams creates a new GetEndpointByNameUsingGETParams 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 NewGetEndpointByNameUsingGETParamsWithContext added in v0.4.0

func NewGetEndpointByNameUsingGETParamsWithContext(ctx context.Context) *GetEndpointByNameUsingGETParams

NewGetEndpointByNameUsingGETParamsWithContext creates a new GetEndpointByNameUsingGETParams object with the ability to set a context for a request.

func NewGetEndpointByNameUsingGETParamsWithHTTPClient added in v0.4.0

func NewGetEndpointByNameUsingGETParamsWithHTTPClient(client *http.Client) *GetEndpointByNameUsingGETParams

NewGetEndpointByNameUsingGETParamsWithHTTPClient creates a new GetEndpointByNameUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetEndpointByNameUsingGETParamsWithTimeout added in v0.4.0

func NewGetEndpointByNameUsingGETParamsWithTimeout(timeout time.Duration) *GetEndpointByNameUsingGETParams

NewGetEndpointByNameUsingGETParamsWithTimeout creates a new GetEndpointByNameUsingGETParams object with the ability to set a timeout on a request.

func (*GetEndpointByNameUsingGETParams) SetAPIVersion added in v0.4.0

func (o *GetEndpointByNameUsingGETParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) SetAuthorization added in v0.4.0

func (o *GetEndpointByNameUsingGETParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) SetContext added in v0.4.0

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

SetContext adds the context to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) SetDefaults added in v0.4.0

func (o *GetEndpointByNameUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get endpoint by name using get params (not the query body).

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

func (*GetEndpointByNameUsingGETParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) SetName added in v0.4.0

func (o *GetEndpointByNameUsingGETParams) SetName(name string)

SetName adds the name to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) SetProject added in v0.4.0

func (o *GetEndpointByNameUsingGETParams) SetProject(project string)

SetProject adds the project to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithAuthorization added in v0.4.0

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

WithAuthorization adds the authorization to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithContext added in v0.4.0

WithContext adds the context to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithDefaults added in v0.4.0

WithDefaults hydrates default values in the get endpoint by name using get params (not the query body).

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

func (*GetEndpointByNameUsingGETParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithName added in v0.4.0

WithName adds the name to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithProject added in v0.4.0

WithProject adds the project to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the get endpoint by name using get params

func (*GetEndpointByNameUsingGETParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type GetEndpointByNameUsingGETReader added in v0.4.0

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

GetEndpointByNameUsingGETReader is a Reader for the GetEndpointByNameUsingGET structure.

func (*GetEndpointByNameUsingGETReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type GetEndpointByNameUsingGETUnauthorized added in v0.4.0

type GetEndpointByNameUsingGETUnauthorized struct {
}

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

Unauthorized Request

func NewGetEndpointByNameUsingGETUnauthorized added in v0.4.0

func NewGetEndpointByNameUsingGETUnauthorized() *GetEndpointByNameUsingGETUnauthorized

NewGetEndpointByNameUsingGETUnauthorized creates a GetEndpointByNameUsingGETUnauthorized with default headers values

func (*GetEndpointByNameUsingGETUnauthorized) Error added in v0.4.0

func (*GetEndpointByNameUsingGETUnauthorized) IsClientError added in v0.5.0

func (o *GetEndpointByNameUsingGETUnauthorized) IsClientError() bool

IsClientError returns true when this get endpoint by name using g e t unauthorized response has a 4xx status code

func (*GetEndpointByNameUsingGETUnauthorized) IsCode added in v0.5.0

IsCode returns true when this get endpoint by name using g e t unauthorized response a status code equal to that given

func (*GetEndpointByNameUsingGETUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint by name using g e t unauthorized response has a 3xx status code

func (*GetEndpointByNameUsingGETUnauthorized) IsServerError added in v0.5.0

func (o *GetEndpointByNameUsingGETUnauthorized) IsServerError() bool

IsServerError returns true when this get endpoint by name using g e t unauthorized response has a 5xx status code

func (*GetEndpointByNameUsingGETUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint by name using g e t unauthorized response has a 2xx status code

func (*GetEndpointByNameUsingGETUnauthorized) String added in v0.5.0

type GetEndpointPropertiesUsingGETForbidden

type GetEndpointPropertiesUsingGETForbidden struct {
}

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

Forbidden

func NewGetEndpointPropertiesUsingGETForbidden

func NewGetEndpointPropertiesUsingGETForbidden() *GetEndpointPropertiesUsingGETForbidden

NewGetEndpointPropertiesUsingGETForbidden creates a GetEndpointPropertiesUsingGETForbidden with default headers values

func (*GetEndpointPropertiesUsingGETForbidden) Error

func (*GetEndpointPropertiesUsingGETForbidden) IsClientError added in v0.5.0

func (o *GetEndpointPropertiesUsingGETForbidden) IsClientError() bool

IsClientError returns true when this get endpoint properties using g e t forbidden response has a 4xx status code

func (*GetEndpointPropertiesUsingGETForbidden) IsCode added in v0.5.0

IsCode returns true when this get endpoint properties using g e t forbidden response a status code equal to that given

func (*GetEndpointPropertiesUsingGETForbidden) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint properties using g e t forbidden response has a 3xx status code

func (*GetEndpointPropertiesUsingGETForbidden) IsServerError added in v0.5.0

func (o *GetEndpointPropertiesUsingGETForbidden) IsServerError() bool

IsServerError returns true when this get endpoint properties using g e t forbidden response has a 5xx status code

func (*GetEndpointPropertiesUsingGETForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint properties using g e t forbidden response has a 2xx status code

func (*GetEndpointPropertiesUsingGETForbidden) String added in v0.5.0

type GetEndpointPropertiesUsingGETInternalServerError

type GetEndpointPropertiesUsingGETInternalServerError struct {
}

GetEndpointPropertiesUsingGETInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewGetEndpointPropertiesUsingGETInternalServerError

func NewGetEndpointPropertiesUsingGETInternalServerError() *GetEndpointPropertiesUsingGETInternalServerError

NewGetEndpointPropertiesUsingGETInternalServerError creates a GetEndpointPropertiesUsingGETInternalServerError with default headers values

func (*GetEndpointPropertiesUsingGETInternalServerError) Error

func (*GetEndpointPropertiesUsingGETInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this get endpoint properties using g e t internal server error response has a 4xx status code

func (*GetEndpointPropertiesUsingGETInternalServerError) IsCode added in v0.5.0

IsCode returns true when this get endpoint properties using g e t internal server error response a status code equal to that given

func (*GetEndpointPropertiesUsingGETInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint properties using g e t internal server error response has a 3xx status code

func (*GetEndpointPropertiesUsingGETInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this get endpoint properties using g e t internal server error response has a 5xx status code

func (*GetEndpointPropertiesUsingGETInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint properties using g e t internal server error response has a 2xx status code

func (*GetEndpointPropertiesUsingGETInternalServerError) String added in v0.5.0

type GetEndpointPropertiesUsingGETNotFound

type GetEndpointPropertiesUsingGETNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewGetEndpointPropertiesUsingGETNotFound

func NewGetEndpointPropertiesUsingGETNotFound() *GetEndpointPropertiesUsingGETNotFound

NewGetEndpointPropertiesUsingGETNotFound creates a GetEndpointPropertiesUsingGETNotFound with default headers values

func (*GetEndpointPropertiesUsingGETNotFound) Error

func (*GetEndpointPropertiesUsingGETNotFound) GetPayload

func (*GetEndpointPropertiesUsingGETNotFound) IsClientError added in v0.5.0

func (o *GetEndpointPropertiesUsingGETNotFound) IsClientError() bool

IsClientError returns true when this get endpoint properties using g e t not found response has a 4xx status code

func (*GetEndpointPropertiesUsingGETNotFound) IsCode added in v0.5.0

IsCode returns true when this get endpoint properties using g e t not found response a status code equal to that given

func (*GetEndpointPropertiesUsingGETNotFound) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint properties using g e t not found response has a 3xx status code

func (*GetEndpointPropertiesUsingGETNotFound) IsServerError added in v0.5.0

func (o *GetEndpointPropertiesUsingGETNotFound) IsServerError() bool

IsServerError returns true when this get endpoint properties using g e t not found response has a 5xx status code

func (*GetEndpointPropertiesUsingGETNotFound) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint properties using g e t not found response has a 2xx status code

func (*GetEndpointPropertiesUsingGETNotFound) String added in v0.5.0

type GetEndpointPropertiesUsingGETOK

type GetEndpointPropertiesUsingGETOK struct {
	Payload interface{}
}

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

'Success' with endpoint properties

func NewGetEndpointPropertiesUsingGETOK

func NewGetEndpointPropertiesUsingGETOK() *GetEndpointPropertiesUsingGETOK

NewGetEndpointPropertiesUsingGETOK creates a GetEndpointPropertiesUsingGETOK with default headers values

func (*GetEndpointPropertiesUsingGETOK) Error

func (*GetEndpointPropertiesUsingGETOK) GetPayload

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

func (*GetEndpointPropertiesUsingGETOK) IsClientError added in v0.5.0

func (o *GetEndpointPropertiesUsingGETOK) IsClientError() bool

IsClientError returns true when this get endpoint properties using g e t o k response has a 4xx status code

func (*GetEndpointPropertiesUsingGETOK) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint properties using g e t o k response a status code equal to that given

func (*GetEndpointPropertiesUsingGETOK) IsRedirect added in v0.5.0

func (o *GetEndpointPropertiesUsingGETOK) IsRedirect() bool

IsRedirect returns true when this get endpoint properties using g e t o k response has a 3xx status code

func (*GetEndpointPropertiesUsingGETOK) IsServerError added in v0.5.0

func (o *GetEndpointPropertiesUsingGETOK) IsServerError() bool

IsServerError returns true when this get endpoint properties using g e t o k response has a 5xx status code

func (*GetEndpointPropertiesUsingGETOK) IsSuccess added in v0.5.0

func (o *GetEndpointPropertiesUsingGETOK) IsSuccess() bool

IsSuccess returns true when this get endpoint properties using g e t o k response has a 2xx status code

func (*GetEndpointPropertiesUsingGETOK) String added in v0.5.0

type GetEndpointPropertiesUsingGETParams

type GetEndpointPropertiesUsingGETParams 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

	/* Type.

	   type
	*/
	Type string

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

GetEndpointPropertiesUsingGETParams contains all the parameters to send to the API endpoint

for the get endpoint properties using g e t operation.

Typically these are written to a http.Request.

func NewGetEndpointPropertiesUsingGETParams

func NewGetEndpointPropertiesUsingGETParams() *GetEndpointPropertiesUsingGETParams

NewGetEndpointPropertiesUsingGETParams creates a new GetEndpointPropertiesUsingGETParams 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 NewGetEndpointPropertiesUsingGETParamsWithContext

func NewGetEndpointPropertiesUsingGETParamsWithContext(ctx context.Context) *GetEndpointPropertiesUsingGETParams

NewGetEndpointPropertiesUsingGETParamsWithContext creates a new GetEndpointPropertiesUsingGETParams object with the ability to set a context for a request.

func NewGetEndpointPropertiesUsingGETParamsWithHTTPClient

func NewGetEndpointPropertiesUsingGETParamsWithHTTPClient(client *http.Client) *GetEndpointPropertiesUsingGETParams

NewGetEndpointPropertiesUsingGETParamsWithHTTPClient creates a new GetEndpointPropertiesUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetEndpointPropertiesUsingGETParamsWithTimeout

func NewGetEndpointPropertiesUsingGETParamsWithTimeout(timeout time.Duration) *GetEndpointPropertiesUsingGETParams

NewGetEndpointPropertiesUsingGETParamsWithTimeout creates a new GetEndpointPropertiesUsingGETParams object with the ability to set a timeout on a request.

func (*GetEndpointPropertiesUsingGETParams) SetAPIVersion

func (o *GetEndpointPropertiesUsingGETParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) SetAuthorization

func (o *GetEndpointPropertiesUsingGETParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) SetContext

SetContext adds the context to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) SetDefaults

func (o *GetEndpointPropertiesUsingGETParams) SetDefaults()

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

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

func (*GetEndpointPropertiesUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) SetType

func (o *GetEndpointPropertiesUsingGETParams) SetType(typeVar string)

SetType adds the type to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WithAPIVersion

WithAPIVersion adds the aPIVersion to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WithAuthorization

WithAuthorization adds the authorization to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WithContext

WithContext adds the context to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WithDefaults

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

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

func (*GetEndpointPropertiesUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WithType

WithType adds the typeVar to the get endpoint properties using get params

func (*GetEndpointPropertiesUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetEndpointPropertiesUsingGETReader

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

GetEndpointPropertiesUsingGETReader is a Reader for the GetEndpointPropertiesUsingGET structure.

func (*GetEndpointPropertiesUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEndpointPropertiesUsingGETUnauthorized

type GetEndpointPropertiesUsingGETUnauthorized struct {
}

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

Unauthorized Request

func NewGetEndpointPropertiesUsingGETUnauthorized

func NewGetEndpointPropertiesUsingGETUnauthorized() *GetEndpointPropertiesUsingGETUnauthorized

NewGetEndpointPropertiesUsingGETUnauthorized creates a GetEndpointPropertiesUsingGETUnauthorized with default headers values

func (*GetEndpointPropertiesUsingGETUnauthorized) Error

func (*GetEndpointPropertiesUsingGETUnauthorized) IsClientError added in v0.5.0

IsClientError returns true when this get endpoint properties using g e t unauthorized response has a 4xx status code

func (*GetEndpointPropertiesUsingGETUnauthorized) IsCode added in v0.5.0

IsCode returns true when this get endpoint properties using g e t unauthorized response a status code equal to that given

func (*GetEndpointPropertiesUsingGETUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint properties using g e t unauthorized response has a 3xx status code

func (*GetEndpointPropertiesUsingGETUnauthorized) IsServerError added in v0.5.0

IsServerError returns true when this get endpoint properties using g e t unauthorized response has a 5xx status code

func (*GetEndpointPropertiesUsingGETUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint properties using g e t unauthorized response has a 2xx status code

func (*GetEndpointPropertiesUsingGETUnauthorized) String added in v0.5.0

type GetEndpointTilesUsingGETForbidden

type GetEndpointTilesUsingGETForbidden struct {
}

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

Forbidden

func NewGetEndpointTilesUsingGETForbidden

func NewGetEndpointTilesUsingGETForbidden() *GetEndpointTilesUsingGETForbidden

NewGetEndpointTilesUsingGETForbidden creates a GetEndpointTilesUsingGETForbidden with default headers values

func (*GetEndpointTilesUsingGETForbidden) Error

func (*GetEndpointTilesUsingGETForbidden) IsClientError added in v0.5.0

func (o *GetEndpointTilesUsingGETForbidden) IsClientError() bool

IsClientError returns true when this get endpoint tiles using g e t forbidden response has a 4xx status code

func (*GetEndpointTilesUsingGETForbidden) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint tiles using g e t forbidden response a status code equal to that given

func (*GetEndpointTilesUsingGETForbidden) IsRedirect added in v0.5.0

func (o *GetEndpointTilesUsingGETForbidden) IsRedirect() bool

IsRedirect returns true when this get endpoint tiles using g e t forbidden response has a 3xx status code

func (*GetEndpointTilesUsingGETForbidden) IsServerError added in v0.5.0

func (o *GetEndpointTilesUsingGETForbidden) IsServerError() bool

IsServerError returns true when this get endpoint tiles using g e t forbidden response has a 5xx status code

func (*GetEndpointTilesUsingGETForbidden) IsSuccess added in v0.5.0

func (o *GetEndpointTilesUsingGETForbidden) IsSuccess() bool

IsSuccess returns true when this get endpoint tiles using g e t forbidden response has a 2xx status code

func (*GetEndpointTilesUsingGETForbidden) String added in v0.5.0

type GetEndpointTilesUsingGETInternalServerError

type GetEndpointTilesUsingGETInternalServerError struct {
}

GetEndpointTilesUsingGETInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewGetEndpointTilesUsingGETInternalServerError

func NewGetEndpointTilesUsingGETInternalServerError() *GetEndpointTilesUsingGETInternalServerError

NewGetEndpointTilesUsingGETInternalServerError creates a GetEndpointTilesUsingGETInternalServerError with default headers values

func (*GetEndpointTilesUsingGETInternalServerError) Error

func (*GetEndpointTilesUsingGETInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this get endpoint tiles using g e t internal server error response has a 4xx status code

func (*GetEndpointTilesUsingGETInternalServerError) IsCode added in v0.5.0

IsCode returns true when this get endpoint tiles using g e t internal server error response a status code equal to that given

func (*GetEndpointTilesUsingGETInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint tiles using g e t internal server error response has a 3xx status code

func (*GetEndpointTilesUsingGETInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this get endpoint tiles using g e t internal server error response has a 5xx status code

func (*GetEndpointTilesUsingGETInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint tiles using g e t internal server error response has a 2xx status code

func (*GetEndpointTilesUsingGETInternalServerError) String added in v0.5.0

type GetEndpointTilesUsingGETNotFound

type GetEndpointTilesUsingGETNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewGetEndpointTilesUsingGETNotFound

func NewGetEndpointTilesUsingGETNotFound() *GetEndpointTilesUsingGETNotFound

NewGetEndpointTilesUsingGETNotFound creates a GetEndpointTilesUsingGETNotFound with default headers values

func (*GetEndpointTilesUsingGETNotFound) Error

func (*GetEndpointTilesUsingGETNotFound) GetPayload

func (*GetEndpointTilesUsingGETNotFound) IsClientError added in v0.5.0

func (o *GetEndpointTilesUsingGETNotFound) IsClientError() bool

IsClientError returns true when this get endpoint tiles using g e t not found response has a 4xx status code

func (*GetEndpointTilesUsingGETNotFound) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint tiles using g e t not found response a status code equal to that given

func (*GetEndpointTilesUsingGETNotFound) IsRedirect added in v0.5.0

func (o *GetEndpointTilesUsingGETNotFound) IsRedirect() bool

IsRedirect returns true when this get endpoint tiles using g e t not found response has a 3xx status code

func (*GetEndpointTilesUsingGETNotFound) IsServerError added in v0.5.0

func (o *GetEndpointTilesUsingGETNotFound) IsServerError() bool

IsServerError returns true when this get endpoint tiles using g e t not found response has a 5xx status code

func (*GetEndpointTilesUsingGETNotFound) IsSuccess added in v0.5.0

func (o *GetEndpointTilesUsingGETNotFound) IsSuccess() bool

IsSuccess returns true when this get endpoint tiles using g e t not found response has a 2xx status code

func (*GetEndpointTilesUsingGETNotFound) String added in v0.5.0

type GetEndpointTilesUsingGETOK

type GetEndpointTilesUsingGETOK struct {
	Payload models.Tiles
}

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

'Success' with supported endpoint tiles

func NewGetEndpointTilesUsingGETOK

func NewGetEndpointTilesUsingGETOK() *GetEndpointTilesUsingGETOK

NewGetEndpointTilesUsingGETOK creates a GetEndpointTilesUsingGETOK with default headers values

func (*GetEndpointTilesUsingGETOK) Error

func (*GetEndpointTilesUsingGETOK) GetPayload

func (o *GetEndpointTilesUsingGETOK) GetPayload() models.Tiles

func (*GetEndpointTilesUsingGETOK) IsClientError added in v0.5.0

func (o *GetEndpointTilesUsingGETOK) IsClientError() bool

IsClientError returns true when this get endpoint tiles using g e t o k response has a 4xx status code

func (*GetEndpointTilesUsingGETOK) IsCode added in v0.5.0

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

IsCode returns true when this get endpoint tiles using g e t o k response a status code equal to that given

func (*GetEndpointTilesUsingGETOK) IsRedirect added in v0.5.0

func (o *GetEndpointTilesUsingGETOK) IsRedirect() bool

IsRedirect returns true when this get endpoint tiles using g e t o k response has a 3xx status code

func (*GetEndpointTilesUsingGETOK) IsServerError added in v0.5.0

func (o *GetEndpointTilesUsingGETOK) IsServerError() bool

IsServerError returns true when this get endpoint tiles using g e t o k response has a 5xx status code

func (*GetEndpointTilesUsingGETOK) IsSuccess added in v0.5.0

func (o *GetEndpointTilesUsingGETOK) IsSuccess() bool

IsSuccess returns true when this get endpoint tiles using g e t o k response has a 2xx status code

func (*GetEndpointTilesUsingGETOK) String added in v0.5.0

func (o *GetEndpointTilesUsingGETOK) String() string

type GetEndpointTilesUsingGETParams

type GetEndpointTilesUsingGETParams 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
}

GetEndpointTilesUsingGETParams contains all the parameters to send to the API endpoint

for the get endpoint tiles using g e t operation.

Typically these are written to a http.Request.

func NewGetEndpointTilesUsingGETParams

func NewGetEndpointTilesUsingGETParams() *GetEndpointTilesUsingGETParams

NewGetEndpointTilesUsingGETParams creates a new GetEndpointTilesUsingGETParams 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 NewGetEndpointTilesUsingGETParamsWithContext

func NewGetEndpointTilesUsingGETParamsWithContext(ctx context.Context) *GetEndpointTilesUsingGETParams

NewGetEndpointTilesUsingGETParamsWithContext creates a new GetEndpointTilesUsingGETParams object with the ability to set a context for a request.

func NewGetEndpointTilesUsingGETParamsWithHTTPClient

func NewGetEndpointTilesUsingGETParamsWithHTTPClient(client *http.Client) *GetEndpointTilesUsingGETParams

NewGetEndpointTilesUsingGETParamsWithHTTPClient creates a new GetEndpointTilesUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetEndpointTilesUsingGETParamsWithTimeout

func NewGetEndpointTilesUsingGETParamsWithTimeout(timeout time.Duration) *GetEndpointTilesUsingGETParams

NewGetEndpointTilesUsingGETParamsWithTimeout creates a new GetEndpointTilesUsingGETParams object with the ability to set a timeout on a request.

func (*GetEndpointTilesUsingGETParams) SetAPIVersion

func (o *GetEndpointTilesUsingGETParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) SetAuthorization

func (o *GetEndpointTilesUsingGETParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) SetContext

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

SetContext adds the context to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) SetDefaults

func (o *GetEndpointTilesUsingGETParams) SetDefaults()

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

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

func (*GetEndpointTilesUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) WithAPIVersion

WithAPIVersion adds the aPIVersion to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) WithAuthorization

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

WithAuthorization adds the authorization to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) WithContext

WithContext adds the context to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) WithDefaults

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

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

func (*GetEndpointTilesUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get endpoint tiles using get params

func (*GetEndpointTilesUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetEndpointTilesUsingGETReader

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

GetEndpointTilesUsingGETReader is a Reader for the GetEndpointTilesUsingGET structure.

func (*GetEndpointTilesUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEndpointTilesUsingGETUnauthorized

type GetEndpointTilesUsingGETUnauthorized struct {
}

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

Unauthorized Request

func NewGetEndpointTilesUsingGETUnauthorized

func NewGetEndpointTilesUsingGETUnauthorized() *GetEndpointTilesUsingGETUnauthorized

NewGetEndpointTilesUsingGETUnauthorized creates a GetEndpointTilesUsingGETUnauthorized with default headers values

func (*GetEndpointTilesUsingGETUnauthorized) Error

func (*GetEndpointTilesUsingGETUnauthorized) IsClientError added in v0.5.0

func (o *GetEndpointTilesUsingGETUnauthorized) IsClientError() bool

IsClientError returns true when this get endpoint tiles using g e t unauthorized response has a 4xx status code

func (*GetEndpointTilesUsingGETUnauthorized) IsCode added in v0.5.0

IsCode returns true when this get endpoint tiles using g e t unauthorized response a status code equal to that given

func (*GetEndpointTilesUsingGETUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this get endpoint tiles using g e t unauthorized response has a 3xx status code

func (*GetEndpointTilesUsingGETUnauthorized) IsServerError added in v0.5.0

func (o *GetEndpointTilesUsingGETUnauthorized) IsServerError() bool

IsServerError returns true when this get endpoint tiles using g e t unauthorized response has a 5xx status code

func (*GetEndpointTilesUsingGETUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this get endpoint tiles using g e t unauthorized response has a 2xx status code

func (*GetEndpointTilesUsingGETUnauthorized) String added in v0.5.0

type GetUsingGETMixin4Forbidden added in v0.5.0

type GetUsingGETMixin4Forbidden struct {
}

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

Forbidden

func NewGetUsingGETMixin4Forbidden added in v0.5.0

func NewGetUsingGETMixin4Forbidden() *GetUsingGETMixin4Forbidden

NewGetUsingGETMixin4Forbidden creates a GetUsingGETMixin4Forbidden with default headers values

func (*GetUsingGETMixin4Forbidden) Error added in v0.5.0

func (*GetUsingGETMixin4Forbidden) IsClientError added in v0.5.0

func (o *GetUsingGETMixin4Forbidden) IsClientError() bool

IsClientError returns true when this get using g e t mixin4 forbidden response has a 4xx status code

func (*GetUsingGETMixin4Forbidden) IsCode added in v0.5.0

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

IsCode returns true when this get using g e t mixin4 forbidden response a status code equal to that given

func (*GetUsingGETMixin4Forbidden) IsRedirect added in v0.5.0

func (o *GetUsingGETMixin4Forbidden) IsRedirect() bool

IsRedirect returns true when this get using g e t mixin4 forbidden response has a 3xx status code

func (*GetUsingGETMixin4Forbidden) IsServerError added in v0.5.0

func (o *GetUsingGETMixin4Forbidden) IsServerError() bool

IsServerError returns true when this get using g e t mixin4 forbidden response has a 5xx status code

func (*GetUsingGETMixin4Forbidden) IsSuccess added in v0.5.0

func (o *GetUsingGETMixin4Forbidden) IsSuccess() bool

IsSuccess returns true when this get using g e t mixin4 forbidden response has a 2xx status code

func (*GetUsingGETMixin4Forbidden) String added in v0.5.0

func (o *GetUsingGETMixin4Forbidden) String() string

type GetUsingGETMixin4InternalServerError added in v0.5.0

type GetUsingGETMixin4InternalServerError struct {
}

GetUsingGETMixin4InternalServerError describes a response with status code 500, with default header values.

Server Error

func NewGetUsingGETMixin4InternalServerError added in v0.5.0

func NewGetUsingGETMixin4InternalServerError() *GetUsingGETMixin4InternalServerError

NewGetUsingGETMixin4InternalServerError creates a GetUsingGETMixin4InternalServerError with default headers values

func (*GetUsingGETMixin4InternalServerError) Error added in v0.5.0

func (*GetUsingGETMixin4InternalServerError) IsClientError added in v0.5.0

func (o *GetUsingGETMixin4InternalServerError) IsClientError() bool

IsClientError returns true when this get using g e t mixin4 internal server error response has a 4xx status code

func (*GetUsingGETMixin4InternalServerError) IsCode added in v0.5.0

IsCode returns true when this get using g e t mixin4 internal server error response a status code equal to that given

func (*GetUsingGETMixin4InternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this get using g e t mixin4 internal server error response has a 3xx status code

func (*GetUsingGETMixin4InternalServerError) IsServerError added in v0.5.0

func (o *GetUsingGETMixin4InternalServerError) IsServerError() bool

IsServerError returns true when this get using g e t mixin4 internal server error response has a 5xx status code

func (*GetUsingGETMixin4InternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this get using g e t mixin4 internal server error response has a 2xx status code

func (*GetUsingGETMixin4InternalServerError) String added in v0.5.0

type GetUsingGETMixin4NotFound added in v0.5.0

type GetUsingGETMixin4NotFound struct {
	Payload *models.Error
}

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

Not Found

func NewGetUsingGETMixin4NotFound added in v0.5.0

func NewGetUsingGETMixin4NotFound() *GetUsingGETMixin4NotFound

NewGetUsingGETMixin4NotFound creates a GetUsingGETMixin4NotFound with default headers values

func (*GetUsingGETMixin4NotFound) Error added in v0.5.0

func (o *GetUsingGETMixin4NotFound) Error() string

func (*GetUsingGETMixin4NotFound) GetPayload added in v0.5.0

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

func (*GetUsingGETMixin4NotFound) IsClientError added in v0.5.0

func (o *GetUsingGETMixin4NotFound) IsClientError() bool

IsClientError returns true when this get using g e t mixin4 not found response has a 4xx status code

func (*GetUsingGETMixin4NotFound) IsCode added in v0.5.0

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

IsCode returns true when this get using g e t mixin4 not found response a status code equal to that given

func (*GetUsingGETMixin4NotFound) IsRedirect added in v0.5.0

func (o *GetUsingGETMixin4NotFound) IsRedirect() bool

IsRedirect returns true when this get using g e t mixin4 not found response has a 3xx status code

func (*GetUsingGETMixin4NotFound) IsServerError added in v0.5.0

func (o *GetUsingGETMixin4NotFound) IsServerError() bool

IsServerError returns true when this get using g e t mixin4 not found response has a 5xx status code

func (*GetUsingGETMixin4NotFound) IsSuccess added in v0.5.0

func (o *GetUsingGETMixin4NotFound) IsSuccess() bool

IsSuccess returns true when this get using g e t mixin4 not found response has a 2xx status code

func (*GetUsingGETMixin4NotFound) String added in v0.5.0

func (o *GetUsingGETMixin4NotFound) String() string

type GetUsingGETMixin4OK added in v0.5.0

type GetUsingGETMixin4OK struct {
	Payload models.EndpointCertificateChain
}

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

'Success' with endpoint certificate details

func NewGetUsingGETMixin4OK added in v0.5.0

func NewGetUsingGETMixin4OK() *GetUsingGETMixin4OK

NewGetUsingGETMixin4OK creates a GetUsingGETMixin4OK with default headers values

func (*GetUsingGETMixin4OK) Error added in v0.5.0

func (o *GetUsingGETMixin4OK) Error() string

func (*GetUsingGETMixin4OK) GetPayload added in v0.5.0

func (*GetUsingGETMixin4OK) IsClientError added in v0.5.0

func (o *GetUsingGETMixin4OK) IsClientError() bool

IsClientError returns true when this get using g e t mixin4 o k response has a 4xx status code

func (*GetUsingGETMixin4OK) IsCode added in v0.5.0

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

IsCode returns true when this get using g e t mixin4 o k response a status code equal to that given

func (*GetUsingGETMixin4OK) IsRedirect added in v0.5.0

func (o *GetUsingGETMixin4OK) IsRedirect() bool

IsRedirect returns true when this get using g e t mixin4 o k response has a 3xx status code

func (*GetUsingGETMixin4OK) IsServerError added in v0.5.0

func (o *GetUsingGETMixin4OK) IsServerError() bool

IsServerError returns true when this get using g e t mixin4 o k response has a 5xx status code

func (*GetUsingGETMixin4OK) IsSuccess added in v0.5.0

func (o *GetUsingGETMixin4OK) IsSuccess() bool

IsSuccess returns true when this get using g e t mixin4 o k response has a 2xx status code

func (*GetUsingGETMixin4OK) String added in v0.5.0

func (o *GetUsingGETMixin4OK) String() string

type GetUsingGETMixin4Params added in v0.5.0

type GetUsingGETMixin4Params 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
}

GetUsingGETMixin4Params contains all the parameters to send to the API endpoint

for the get using g e t mixin4 operation.

Typically these are written to a http.Request.

func NewGetUsingGETMixin4Params added in v0.5.0

func NewGetUsingGETMixin4Params() *GetUsingGETMixin4Params

NewGetUsingGETMixin4Params creates a new GetUsingGETMixin4Params 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 NewGetUsingGETMixin4ParamsWithContext added in v0.5.0

func NewGetUsingGETMixin4ParamsWithContext(ctx context.Context) *GetUsingGETMixin4Params

NewGetUsingGETMixin4ParamsWithContext creates a new GetUsingGETMixin4Params object with the ability to set a context for a request.

func NewGetUsingGETMixin4ParamsWithHTTPClient added in v0.5.0

func NewGetUsingGETMixin4ParamsWithHTTPClient(client *http.Client) *GetUsingGETMixin4Params

NewGetUsingGETMixin4ParamsWithHTTPClient creates a new GetUsingGETMixin4Params object with the ability to set a custom HTTPClient for a request.

func NewGetUsingGETMixin4ParamsWithTimeout added in v0.5.0

func NewGetUsingGETMixin4ParamsWithTimeout(timeout time.Duration) *GetUsingGETMixin4Params

NewGetUsingGETMixin4ParamsWithTimeout creates a new GetUsingGETMixin4Params object with the ability to set a timeout on a request.

func (*GetUsingGETMixin4Params) SetAPIVersion added in v0.5.0

func (o *GetUsingGETMixin4Params) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) SetAuthorization added in v0.5.0

func (o *GetUsingGETMixin4Params) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) SetContext added in v0.5.0

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

SetContext adds the context to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) SetDefaults added in v0.5.0

func (o *GetUsingGETMixin4Params) SetDefaults()

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

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

func (*GetUsingGETMixin4Params) SetHTTPClient added in v0.5.0

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

SetHTTPClient adds the HTTPClient to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) SetTimeout added in v0.5.0

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

SetTimeout adds the timeout to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) WithAPIVersion added in v0.5.0

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

WithAPIVersion adds the aPIVersion to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) WithAuthorization added in v0.5.0

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

WithAuthorization adds the authorization to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) WithContext added in v0.5.0

WithContext adds the context to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) WithDefaults added in v0.5.0

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

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

func (*GetUsingGETMixin4Params) WithHTTPClient added in v0.5.0

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

WithHTTPClient adds the HTTPClient to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) WithTimeout added in v0.5.0

WithTimeout adds the timeout to the get using g e t mixin4 params

func (*GetUsingGETMixin4Params) WriteToRequest added in v0.5.0

WriteToRequest writes these params to a swagger request

type GetUsingGETMixin4Reader added in v0.5.0

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

GetUsingGETMixin4Reader is a Reader for the GetUsingGETMixin4 structure.

func (*GetUsingGETMixin4Reader) ReadResponse added in v0.5.0

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

ReadResponse reads a server response into the received o.

type GetUsingGETMixin4Unauthorized added in v0.5.0

type GetUsingGETMixin4Unauthorized struct {
}

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

Unauthorized Request

func NewGetUsingGETMixin4Unauthorized added in v0.5.0

func NewGetUsingGETMixin4Unauthorized() *GetUsingGETMixin4Unauthorized

NewGetUsingGETMixin4Unauthorized creates a GetUsingGETMixin4Unauthorized with default headers values

func (*GetUsingGETMixin4Unauthorized) Error added in v0.5.0

func (*GetUsingGETMixin4Unauthorized) IsClientError added in v0.5.0

func (o *GetUsingGETMixin4Unauthorized) IsClientError() bool

IsClientError returns true when this get using g e t mixin4 unauthorized response has a 4xx status code

func (*GetUsingGETMixin4Unauthorized) IsCode added in v0.5.0

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

IsCode returns true when this get using g e t mixin4 unauthorized response a status code equal to that given

func (*GetUsingGETMixin4Unauthorized) IsRedirect added in v0.5.0

func (o *GetUsingGETMixin4Unauthorized) IsRedirect() bool

IsRedirect returns true when this get using g e t mixin4 unauthorized response has a 3xx status code

func (*GetUsingGETMixin4Unauthorized) IsServerError added in v0.5.0

func (o *GetUsingGETMixin4Unauthorized) IsServerError() bool

IsServerError returns true when this get using g e t mixin4 unauthorized response has a 5xx status code

func (*GetUsingGETMixin4Unauthorized) IsSuccess added in v0.5.0

func (o *GetUsingGETMixin4Unauthorized) IsSuccess() bool

IsSuccess returns true when this get using g e t mixin4 unauthorized response has a 2xx status code

func (*GetUsingGETMixin4Unauthorized) String added in v0.5.0

type UpdateEndpointByIDUsingPUTForbidden added in v0.4.0

type UpdateEndpointByIDUsingPUTForbidden struct {
}

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

Forbidden

func NewUpdateEndpointByIDUsingPUTForbidden added in v0.4.0

func NewUpdateEndpointByIDUsingPUTForbidden() *UpdateEndpointByIDUsingPUTForbidden

NewUpdateEndpointByIDUsingPUTForbidden creates a UpdateEndpointByIDUsingPUTForbidden with default headers values

func (*UpdateEndpointByIDUsingPUTForbidden) Error added in v0.4.0

func (*UpdateEndpointByIDUsingPUTForbidden) IsClientError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTForbidden) IsClientError() bool

IsClientError returns true when this update endpoint by Id using p u t forbidden response has a 4xx status code

func (*UpdateEndpointByIDUsingPUTForbidden) IsCode added in v0.5.0

IsCode returns true when this update endpoint by Id using p u t forbidden response a status code equal to that given

func (*UpdateEndpointByIDUsingPUTForbidden) IsRedirect added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTForbidden) IsRedirect() bool

IsRedirect returns true when this update endpoint by Id using p u t forbidden response has a 3xx status code

func (*UpdateEndpointByIDUsingPUTForbidden) IsServerError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTForbidden) IsServerError() bool

IsServerError returns true when this update endpoint by Id using p u t forbidden response has a 5xx status code

func (*UpdateEndpointByIDUsingPUTForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by Id using p u t forbidden response has a 2xx status code

func (*UpdateEndpointByIDUsingPUTForbidden) String added in v0.5.0

type UpdateEndpointByIDUsingPUTInternalServerError added in v0.4.0

type UpdateEndpointByIDUsingPUTInternalServerError struct {
}

UpdateEndpointByIDUsingPUTInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewUpdateEndpointByIDUsingPUTInternalServerError added in v0.4.0

func NewUpdateEndpointByIDUsingPUTInternalServerError() *UpdateEndpointByIDUsingPUTInternalServerError

NewUpdateEndpointByIDUsingPUTInternalServerError creates a UpdateEndpointByIDUsingPUTInternalServerError with default headers values

func (*UpdateEndpointByIDUsingPUTInternalServerError) Error added in v0.4.0

func (*UpdateEndpointByIDUsingPUTInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this update endpoint by Id using p u t internal server error response has a 4xx status code

func (*UpdateEndpointByIDUsingPUTInternalServerError) IsCode added in v0.5.0

IsCode returns true when this update endpoint by Id using p u t internal server error response a status code equal to that given

func (*UpdateEndpointByIDUsingPUTInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this update endpoint by Id using p u t internal server error response has a 3xx status code

func (*UpdateEndpointByIDUsingPUTInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this update endpoint by Id using p u t internal server error response has a 5xx status code

func (*UpdateEndpointByIDUsingPUTInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by Id using p u t internal server error response has a 2xx status code

func (*UpdateEndpointByIDUsingPUTInternalServerError) String added in v0.5.0

type UpdateEndpointByIDUsingPUTNotFound added in v0.4.0

type UpdateEndpointByIDUsingPUTNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewUpdateEndpointByIDUsingPUTNotFound added in v0.4.0

func NewUpdateEndpointByIDUsingPUTNotFound() *UpdateEndpointByIDUsingPUTNotFound

NewUpdateEndpointByIDUsingPUTNotFound creates a UpdateEndpointByIDUsingPUTNotFound with default headers values

func (*UpdateEndpointByIDUsingPUTNotFound) Error added in v0.4.0

func (*UpdateEndpointByIDUsingPUTNotFound) GetPayload added in v0.4.0

func (*UpdateEndpointByIDUsingPUTNotFound) IsClientError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTNotFound) IsClientError() bool

IsClientError returns true when this update endpoint by Id using p u t not found response has a 4xx status code

func (*UpdateEndpointByIDUsingPUTNotFound) IsCode added in v0.5.0

IsCode returns true when this update endpoint by Id using p u t not found response a status code equal to that given

func (*UpdateEndpointByIDUsingPUTNotFound) IsRedirect added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTNotFound) IsRedirect() bool

IsRedirect returns true when this update endpoint by Id using p u t not found response has a 3xx status code

func (*UpdateEndpointByIDUsingPUTNotFound) IsServerError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTNotFound) IsServerError() bool

IsServerError returns true when this update endpoint by Id using p u t not found response has a 5xx status code

func (*UpdateEndpointByIDUsingPUTNotFound) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by Id using p u t not found response has a 2xx status code

func (*UpdateEndpointByIDUsingPUTNotFound) String added in v0.5.0

type UpdateEndpointByIDUsingPUTOK added in v0.4.0

type UpdateEndpointByIDUsingPUTOK struct {
	Payload models.Endpoint
}

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

'Success' with the updated Endpoint

func NewUpdateEndpointByIDUsingPUTOK added in v0.4.0

func NewUpdateEndpointByIDUsingPUTOK() *UpdateEndpointByIDUsingPUTOK

NewUpdateEndpointByIDUsingPUTOK creates a UpdateEndpointByIDUsingPUTOK with default headers values

func (*UpdateEndpointByIDUsingPUTOK) Error added in v0.4.0

func (*UpdateEndpointByIDUsingPUTOK) GetPayload added in v0.4.0

func (*UpdateEndpointByIDUsingPUTOK) IsClientError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTOK) IsClientError() bool

IsClientError returns true when this update endpoint by Id using p u t o k response has a 4xx status code

func (*UpdateEndpointByIDUsingPUTOK) IsCode added in v0.5.0

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

IsCode returns true when this update endpoint by Id using p u t o k response a status code equal to that given

func (*UpdateEndpointByIDUsingPUTOK) IsRedirect added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTOK) IsRedirect() bool

IsRedirect returns true when this update endpoint by Id using p u t o k response has a 3xx status code

func (*UpdateEndpointByIDUsingPUTOK) IsServerError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTOK) IsServerError() bool

IsServerError returns true when this update endpoint by Id using p u t o k response has a 5xx status code

func (*UpdateEndpointByIDUsingPUTOK) IsSuccess added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTOK) IsSuccess() bool

IsSuccess returns true when this update endpoint by Id using p u t o k response has a 2xx status code

func (*UpdateEndpointByIDUsingPUTOK) String added in v0.5.0

type UpdateEndpointByIDUsingPUTParams added in v0.4.0

type UpdateEndpointByIDUsingPUTParams 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

	/* Body.

	   Endpoint specification
	*/
	Body models.EndpointSpec

	/* ID.

	   The ID of the Endpoint
	*/
	ID string

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

UpdateEndpointByIDUsingPUTParams contains all the parameters to send to the API endpoint

for the update endpoint by Id using p u t operation.

Typically these are written to a http.Request.

func NewUpdateEndpointByIDUsingPUTParams added in v0.4.0

func NewUpdateEndpointByIDUsingPUTParams() *UpdateEndpointByIDUsingPUTParams

NewUpdateEndpointByIDUsingPUTParams creates a new UpdateEndpointByIDUsingPUTParams 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 NewUpdateEndpointByIDUsingPUTParamsWithContext added in v0.4.0

func NewUpdateEndpointByIDUsingPUTParamsWithContext(ctx context.Context) *UpdateEndpointByIDUsingPUTParams

NewUpdateEndpointByIDUsingPUTParamsWithContext creates a new UpdateEndpointByIDUsingPUTParams object with the ability to set a context for a request.

func NewUpdateEndpointByIDUsingPUTParamsWithHTTPClient added in v0.4.0

func NewUpdateEndpointByIDUsingPUTParamsWithHTTPClient(client *http.Client) *UpdateEndpointByIDUsingPUTParams

NewUpdateEndpointByIDUsingPUTParamsWithHTTPClient creates a new UpdateEndpointByIDUsingPUTParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateEndpointByIDUsingPUTParamsWithTimeout added in v0.4.0

func NewUpdateEndpointByIDUsingPUTParamsWithTimeout(timeout time.Duration) *UpdateEndpointByIDUsingPUTParams

NewUpdateEndpointByIDUsingPUTParamsWithTimeout creates a new UpdateEndpointByIDUsingPUTParams object with the ability to set a timeout on a request.

func (*UpdateEndpointByIDUsingPUTParams) SetAPIVersion added in v0.4.0

func (o *UpdateEndpointByIDUsingPUTParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) SetAuthorization added in v0.4.0

func (o *UpdateEndpointByIDUsingPUTParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) SetBody added in v0.4.0

SetBody adds the body to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) SetContext added in v0.4.0

SetContext adds the context to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) SetDefaults added in v0.4.0

func (o *UpdateEndpointByIDUsingPUTParams) SetDefaults()

SetDefaults hydrates default values in the update endpoint by Id using p u t params (not the query body).

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

func (*UpdateEndpointByIDUsingPUTParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) SetID added in v0.4.0

SetID adds the id to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithAuthorization added in v0.4.0

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

WithAuthorization adds the authorization to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithBody added in v0.4.0

WithBody adds the body to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithContext added in v0.4.0

WithContext adds the context to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithDefaults added in v0.4.0

WithDefaults hydrates default values in the update endpoint by Id using p u t params (not the query body).

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

func (*UpdateEndpointByIDUsingPUTParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithID added in v0.4.0

WithID adds the id to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the update endpoint by Id using p u t params

func (*UpdateEndpointByIDUsingPUTParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type UpdateEndpointByIDUsingPUTReader added in v0.4.0

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

UpdateEndpointByIDUsingPUTReader is a Reader for the UpdateEndpointByIDUsingPUT structure.

func (*UpdateEndpointByIDUsingPUTReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type UpdateEndpointByIDUsingPUTUnauthorized added in v0.4.0

type UpdateEndpointByIDUsingPUTUnauthorized struct {
}

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

Unauthorized Request

func NewUpdateEndpointByIDUsingPUTUnauthorized added in v0.4.0

func NewUpdateEndpointByIDUsingPUTUnauthorized() *UpdateEndpointByIDUsingPUTUnauthorized

NewUpdateEndpointByIDUsingPUTUnauthorized creates a UpdateEndpointByIDUsingPUTUnauthorized with default headers values

func (*UpdateEndpointByIDUsingPUTUnauthorized) Error added in v0.4.0

func (*UpdateEndpointByIDUsingPUTUnauthorized) IsClientError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTUnauthorized) IsClientError() bool

IsClientError returns true when this update endpoint by Id using p u t unauthorized response has a 4xx status code

func (*UpdateEndpointByIDUsingPUTUnauthorized) IsCode added in v0.5.0

IsCode returns true when this update endpoint by Id using p u t unauthorized response a status code equal to that given

func (*UpdateEndpointByIDUsingPUTUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this update endpoint by Id using p u t unauthorized response has a 3xx status code

func (*UpdateEndpointByIDUsingPUTUnauthorized) IsServerError added in v0.5.0

func (o *UpdateEndpointByIDUsingPUTUnauthorized) IsServerError() bool

IsServerError returns true when this update endpoint by Id using p u t unauthorized response has a 5xx status code

func (*UpdateEndpointByIDUsingPUTUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by Id using p u t unauthorized response has a 2xx status code

func (*UpdateEndpointByIDUsingPUTUnauthorized) String added in v0.5.0

type UpdateEndpointByNameUsingPUTForbidden added in v0.4.0

type UpdateEndpointByNameUsingPUTForbidden struct {
}

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

Forbidden

func NewUpdateEndpointByNameUsingPUTForbidden added in v0.4.0

func NewUpdateEndpointByNameUsingPUTForbidden() *UpdateEndpointByNameUsingPUTForbidden

NewUpdateEndpointByNameUsingPUTForbidden creates a UpdateEndpointByNameUsingPUTForbidden with default headers values

func (*UpdateEndpointByNameUsingPUTForbidden) Error added in v0.4.0

func (*UpdateEndpointByNameUsingPUTForbidden) IsClientError added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTForbidden) IsClientError() bool

IsClientError returns true when this update endpoint by name using p u t forbidden response has a 4xx status code

func (*UpdateEndpointByNameUsingPUTForbidden) IsCode added in v0.5.0

IsCode returns true when this update endpoint by name using p u t forbidden response a status code equal to that given

func (*UpdateEndpointByNameUsingPUTForbidden) IsRedirect added in v0.5.0

IsRedirect returns true when this update endpoint by name using p u t forbidden response has a 3xx status code

func (*UpdateEndpointByNameUsingPUTForbidden) IsServerError added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTForbidden) IsServerError() bool

IsServerError returns true when this update endpoint by name using p u t forbidden response has a 5xx status code

func (*UpdateEndpointByNameUsingPUTForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by name using p u t forbidden response has a 2xx status code

func (*UpdateEndpointByNameUsingPUTForbidden) String added in v0.5.0

type UpdateEndpointByNameUsingPUTInternalServerError added in v0.4.0

type UpdateEndpointByNameUsingPUTInternalServerError struct {
}

UpdateEndpointByNameUsingPUTInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewUpdateEndpointByNameUsingPUTInternalServerError added in v0.4.0

func NewUpdateEndpointByNameUsingPUTInternalServerError() *UpdateEndpointByNameUsingPUTInternalServerError

NewUpdateEndpointByNameUsingPUTInternalServerError creates a UpdateEndpointByNameUsingPUTInternalServerError with default headers values

func (*UpdateEndpointByNameUsingPUTInternalServerError) Error added in v0.4.0

func (*UpdateEndpointByNameUsingPUTInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this update endpoint by name using p u t internal server error response has a 4xx status code

func (*UpdateEndpointByNameUsingPUTInternalServerError) IsCode added in v0.5.0

IsCode returns true when this update endpoint by name using p u t internal server error response a status code equal to that given

func (*UpdateEndpointByNameUsingPUTInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this update endpoint by name using p u t internal server error response has a 3xx status code

func (*UpdateEndpointByNameUsingPUTInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this update endpoint by name using p u t internal server error response has a 5xx status code

func (*UpdateEndpointByNameUsingPUTInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by name using p u t internal server error response has a 2xx status code

func (*UpdateEndpointByNameUsingPUTInternalServerError) String added in v0.5.0

type UpdateEndpointByNameUsingPUTNotFound added in v0.4.0

type UpdateEndpointByNameUsingPUTNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewUpdateEndpointByNameUsingPUTNotFound added in v0.4.0

func NewUpdateEndpointByNameUsingPUTNotFound() *UpdateEndpointByNameUsingPUTNotFound

NewUpdateEndpointByNameUsingPUTNotFound creates a UpdateEndpointByNameUsingPUTNotFound with default headers values

func (*UpdateEndpointByNameUsingPUTNotFound) Error added in v0.4.0

func (*UpdateEndpointByNameUsingPUTNotFound) GetPayload added in v0.4.0

func (*UpdateEndpointByNameUsingPUTNotFound) IsClientError added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTNotFound) IsClientError() bool

IsClientError returns true when this update endpoint by name using p u t not found response has a 4xx status code

func (*UpdateEndpointByNameUsingPUTNotFound) IsCode added in v0.5.0

IsCode returns true when this update endpoint by name using p u t not found response a status code equal to that given

func (*UpdateEndpointByNameUsingPUTNotFound) IsRedirect added in v0.5.0

IsRedirect returns true when this update endpoint by name using p u t not found response has a 3xx status code

func (*UpdateEndpointByNameUsingPUTNotFound) IsServerError added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTNotFound) IsServerError() bool

IsServerError returns true when this update endpoint by name using p u t not found response has a 5xx status code

func (*UpdateEndpointByNameUsingPUTNotFound) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by name using p u t not found response has a 2xx status code

func (*UpdateEndpointByNameUsingPUTNotFound) String added in v0.5.0

type UpdateEndpointByNameUsingPUTOK added in v0.4.0

type UpdateEndpointByNameUsingPUTOK struct {
	Payload models.Endpoint
}

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

'Success' with the updated Endpoint

func NewUpdateEndpointByNameUsingPUTOK added in v0.4.0

func NewUpdateEndpointByNameUsingPUTOK() *UpdateEndpointByNameUsingPUTOK

NewUpdateEndpointByNameUsingPUTOK creates a UpdateEndpointByNameUsingPUTOK with default headers values

func (*UpdateEndpointByNameUsingPUTOK) Error added in v0.4.0

func (*UpdateEndpointByNameUsingPUTOK) GetPayload added in v0.4.0

func (*UpdateEndpointByNameUsingPUTOK) IsClientError added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTOK) IsClientError() bool

IsClientError returns true when this update endpoint by name using p u t o k response has a 4xx status code

func (*UpdateEndpointByNameUsingPUTOK) IsCode added in v0.5.0

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

IsCode returns true when this update endpoint by name using p u t o k response a status code equal to that given

func (*UpdateEndpointByNameUsingPUTOK) IsRedirect added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTOK) IsRedirect() bool

IsRedirect returns true when this update endpoint by name using p u t o k response has a 3xx status code

func (*UpdateEndpointByNameUsingPUTOK) IsServerError added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTOK) IsServerError() bool

IsServerError returns true when this update endpoint by name using p u t o k response has a 5xx status code

func (*UpdateEndpointByNameUsingPUTOK) IsSuccess added in v0.5.0

func (o *UpdateEndpointByNameUsingPUTOK) IsSuccess() bool

IsSuccess returns true when this update endpoint by name using p u t o k response has a 2xx status code

func (*UpdateEndpointByNameUsingPUTOK) String added in v0.5.0

type UpdateEndpointByNameUsingPUTParams added in v0.4.0

type UpdateEndpointByNameUsingPUTParams 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

	/* Body.

	   Endpoint specification
	*/
	Body models.EndpointSpec

	/* Name.

	   The name of the Endpoint
	*/
	Name string

	/* Project.

	   The project the Endpoint belongs to
	*/
	Project string

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

UpdateEndpointByNameUsingPUTParams contains all the parameters to send to the API endpoint

for the update endpoint by name using p u t operation.

Typically these are written to a http.Request.

func NewUpdateEndpointByNameUsingPUTParams added in v0.4.0

func NewUpdateEndpointByNameUsingPUTParams() *UpdateEndpointByNameUsingPUTParams

NewUpdateEndpointByNameUsingPUTParams creates a new UpdateEndpointByNameUsingPUTParams 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 NewUpdateEndpointByNameUsingPUTParamsWithContext added in v0.4.0

func NewUpdateEndpointByNameUsingPUTParamsWithContext(ctx context.Context) *UpdateEndpointByNameUsingPUTParams

NewUpdateEndpointByNameUsingPUTParamsWithContext creates a new UpdateEndpointByNameUsingPUTParams object with the ability to set a context for a request.

func NewUpdateEndpointByNameUsingPUTParamsWithHTTPClient added in v0.4.0

func NewUpdateEndpointByNameUsingPUTParamsWithHTTPClient(client *http.Client) *UpdateEndpointByNameUsingPUTParams

NewUpdateEndpointByNameUsingPUTParamsWithHTTPClient creates a new UpdateEndpointByNameUsingPUTParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateEndpointByNameUsingPUTParamsWithTimeout added in v0.4.0

func NewUpdateEndpointByNameUsingPUTParamsWithTimeout(timeout time.Duration) *UpdateEndpointByNameUsingPUTParams

NewUpdateEndpointByNameUsingPUTParamsWithTimeout creates a new UpdateEndpointByNameUsingPUTParams object with the ability to set a timeout on a request.

func (*UpdateEndpointByNameUsingPUTParams) SetAPIVersion added in v0.4.0

func (o *UpdateEndpointByNameUsingPUTParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetAuthorization added in v0.4.0

func (o *UpdateEndpointByNameUsingPUTParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetBody added in v0.4.0

SetBody adds the body to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetContext added in v0.4.0

SetContext adds the context to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetDefaults added in v0.4.0

func (o *UpdateEndpointByNameUsingPUTParams) SetDefaults()

SetDefaults hydrates default values in the update endpoint by name using p u t params (not the query body).

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

func (*UpdateEndpointByNameUsingPUTParams) SetHTTPClient added in v0.4.0

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

SetHTTPClient adds the HTTPClient to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetName added in v0.4.0

func (o *UpdateEndpointByNameUsingPUTParams) SetName(name string)

SetName adds the name to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetProject added in v0.4.0

func (o *UpdateEndpointByNameUsingPUTParams) SetProject(project string)

SetProject adds the project to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) SetTimeout added in v0.4.0

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

SetTimeout adds the timeout to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithAPIVersion added in v0.4.0

WithAPIVersion adds the aPIVersion to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithAuthorization added in v0.4.0

WithAuthorization adds the authorization to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithBody added in v0.4.0

WithBody adds the body to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithContext added in v0.4.0

WithContext adds the context to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithDefaults added in v0.4.0

WithDefaults hydrates default values in the update endpoint by name using p u t params (not the query body).

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

func (*UpdateEndpointByNameUsingPUTParams) WithHTTPClient added in v0.4.0

WithHTTPClient adds the HTTPClient to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithName added in v0.4.0

WithName adds the name to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithProject added in v0.4.0

WithProject adds the project to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WithTimeout added in v0.4.0

WithTimeout adds the timeout to the update endpoint by name using p u t params

func (*UpdateEndpointByNameUsingPUTParams) WriteToRequest added in v0.4.0

WriteToRequest writes these params to a swagger request

type UpdateEndpointByNameUsingPUTReader added in v0.4.0

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

UpdateEndpointByNameUsingPUTReader is a Reader for the UpdateEndpointByNameUsingPUT structure.

func (*UpdateEndpointByNameUsingPUTReader) ReadResponse added in v0.4.0

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

ReadResponse reads a server response into the received o.

type UpdateEndpointByNameUsingPUTUnauthorized added in v0.4.0

type UpdateEndpointByNameUsingPUTUnauthorized struct {
}

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

Unauthorized Request

func NewUpdateEndpointByNameUsingPUTUnauthorized added in v0.4.0

func NewUpdateEndpointByNameUsingPUTUnauthorized() *UpdateEndpointByNameUsingPUTUnauthorized

NewUpdateEndpointByNameUsingPUTUnauthorized creates a UpdateEndpointByNameUsingPUTUnauthorized with default headers values

func (*UpdateEndpointByNameUsingPUTUnauthorized) Error added in v0.4.0

func (*UpdateEndpointByNameUsingPUTUnauthorized) IsClientError added in v0.5.0

IsClientError returns true when this update endpoint by name using p u t unauthorized response has a 4xx status code

func (*UpdateEndpointByNameUsingPUTUnauthorized) IsCode added in v0.5.0

IsCode returns true when this update endpoint by name using p u t unauthorized response a status code equal to that given

func (*UpdateEndpointByNameUsingPUTUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this update endpoint by name using p u t unauthorized response has a 3xx status code

func (*UpdateEndpointByNameUsingPUTUnauthorized) IsServerError added in v0.5.0

IsServerError returns true when this update endpoint by name using p u t unauthorized response has a 5xx status code

func (*UpdateEndpointByNameUsingPUTUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this update endpoint by name using p u t unauthorized response has a 2xx status code

func (*UpdateEndpointByNameUsingPUTUnauthorized) String added in v0.5.0

type ValidateEndpointUsingPOSTForbidden

type ValidateEndpointUsingPOSTForbidden struct {
}

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

Forbidden

func NewValidateEndpointUsingPOSTForbidden

func NewValidateEndpointUsingPOSTForbidden() *ValidateEndpointUsingPOSTForbidden

NewValidateEndpointUsingPOSTForbidden creates a ValidateEndpointUsingPOSTForbidden with default headers values

func (*ValidateEndpointUsingPOSTForbidden) Error

func (*ValidateEndpointUsingPOSTForbidden) IsClientError added in v0.5.0

func (o *ValidateEndpointUsingPOSTForbidden) IsClientError() bool

IsClientError returns true when this validate endpoint using p o s t forbidden response has a 4xx status code

func (*ValidateEndpointUsingPOSTForbidden) IsCode added in v0.5.0

IsCode returns true when this validate endpoint using p o s t forbidden response a status code equal to that given

func (*ValidateEndpointUsingPOSTForbidden) IsRedirect added in v0.5.0

func (o *ValidateEndpointUsingPOSTForbidden) IsRedirect() bool

IsRedirect returns true when this validate endpoint using p o s t forbidden response has a 3xx status code

func (*ValidateEndpointUsingPOSTForbidden) IsServerError added in v0.5.0

func (o *ValidateEndpointUsingPOSTForbidden) IsServerError() bool

IsServerError returns true when this validate endpoint using p o s t forbidden response has a 5xx status code

func (*ValidateEndpointUsingPOSTForbidden) IsSuccess added in v0.5.0

IsSuccess returns true when this validate endpoint using p o s t forbidden response has a 2xx status code

func (*ValidateEndpointUsingPOSTForbidden) String added in v0.5.0

type ValidateEndpointUsingPOSTInternalServerError

type ValidateEndpointUsingPOSTInternalServerError struct {
}

ValidateEndpointUsingPOSTInternalServerError describes a response with status code 500, with default header values.

Server Error

func NewValidateEndpointUsingPOSTInternalServerError

func NewValidateEndpointUsingPOSTInternalServerError() *ValidateEndpointUsingPOSTInternalServerError

NewValidateEndpointUsingPOSTInternalServerError creates a ValidateEndpointUsingPOSTInternalServerError with default headers values

func (*ValidateEndpointUsingPOSTInternalServerError) Error

func (*ValidateEndpointUsingPOSTInternalServerError) IsClientError added in v0.5.0

IsClientError returns true when this validate endpoint using p o s t internal server error response has a 4xx status code

func (*ValidateEndpointUsingPOSTInternalServerError) IsCode added in v0.5.0

IsCode returns true when this validate endpoint using p o s t internal server error response a status code equal to that given

func (*ValidateEndpointUsingPOSTInternalServerError) IsRedirect added in v0.5.0

IsRedirect returns true when this validate endpoint using p o s t internal server error response has a 3xx status code

func (*ValidateEndpointUsingPOSTInternalServerError) IsServerError added in v0.5.0

IsServerError returns true when this validate endpoint using p o s t internal server error response has a 5xx status code

func (*ValidateEndpointUsingPOSTInternalServerError) IsSuccess added in v0.5.0

IsSuccess returns true when this validate endpoint using p o s t internal server error response has a 2xx status code

func (*ValidateEndpointUsingPOSTInternalServerError) String added in v0.5.0

type ValidateEndpointUsingPOSTNotFound

type ValidateEndpointUsingPOSTNotFound struct {
	Payload *models.Error
}

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

Not Found

func NewValidateEndpointUsingPOSTNotFound

func NewValidateEndpointUsingPOSTNotFound() *ValidateEndpointUsingPOSTNotFound

NewValidateEndpointUsingPOSTNotFound creates a ValidateEndpointUsingPOSTNotFound with default headers values

func (*ValidateEndpointUsingPOSTNotFound) Error

func (*ValidateEndpointUsingPOSTNotFound) GetPayload

func (*ValidateEndpointUsingPOSTNotFound) IsClientError added in v0.5.0

func (o *ValidateEndpointUsingPOSTNotFound) IsClientError() bool

IsClientError returns true when this validate endpoint using p o s t not found response has a 4xx status code

func (*ValidateEndpointUsingPOSTNotFound) IsCode added in v0.5.0

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

IsCode returns true when this validate endpoint using p o s t not found response a status code equal to that given

func (*ValidateEndpointUsingPOSTNotFound) IsRedirect added in v0.5.0

func (o *ValidateEndpointUsingPOSTNotFound) IsRedirect() bool

IsRedirect returns true when this validate endpoint using p o s t not found response has a 3xx status code

func (*ValidateEndpointUsingPOSTNotFound) IsServerError added in v0.5.0

func (o *ValidateEndpointUsingPOSTNotFound) IsServerError() bool

IsServerError returns true when this validate endpoint using p o s t not found response has a 5xx status code

func (*ValidateEndpointUsingPOSTNotFound) IsSuccess added in v0.5.0

func (o *ValidateEndpointUsingPOSTNotFound) IsSuccess() bool

IsSuccess returns true when this validate endpoint using p o s t not found response has a 2xx status code

func (*ValidateEndpointUsingPOSTNotFound) String added in v0.5.0

type ValidateEndpointUsingPOSTOK

type ValidateEndpointUsingPOSTOK struct {
	Payload *models.TileExecutorResponse
}

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

'Success' with endpoint validations

func NewValidateEndpointUsingPOSTOK

func NewValidateEndpointUsingPOSTOK() *ValidateEndpointUsingPOSTOK

NewValidateEndpointUsingPOSTOK creates a ValidateEndpointUsingPOSTOK with default headers values

func (*ValidateEndpointUsingPOSTOK) Error

func (*ValidateEndpointUsingPOSTOK) GetPayload

func (*ValidateEndpointUsingPOSTOK) IsClientError added in v0.5.0

func (o *ValidateEndpointUsingPOSTOK) IsClientError() bool

IsClientError returns true when this validate endpoint using p o s t o k response has a 4xx status code

func (*ValidateEndpointUsingPOSTOK) IsCode added in v0.5.0

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

IsCode returns true when this validate endpoint using p o s t o k response a status code equal to that given

func (*ValidateEndpointUsingPOSTOK) IsRedirect added in v0.5.0

func (o *ValidateEndpointUsingPOSTOK) IsRedirect() bool

IsRedirect returns true when this validate endpoint using p o s t o k response has a 3xx status code

func (*ValidateEndpointUsingPOSTOK) IsServerError added in v0.5.0

func (o *ValidateEndpointUsingPOSTOK) IsServerError() bool

IsServerError returns true when this validate endpoint using p o s t o k response has a 5xx status code

func (*ValidateEndpointUsingPOSTOK) IsSuccess added in v0.5.0

func (o *ValidateEndpointUsingPOSTOK) IsSuccess() bool

IsSuccess returns true when this validate endpoint using p o s t o k response has a 2xx status code

func (*ValidateEndpointUsingPOSTOK) String added in v0.5.0

func (o *ValidateEndpointUsingPOSTOK) String() string

type ValidateEndpointUsingPOSTParams

type ValidateEndpointUsingPOSTParams 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

	/* Body.

	   Endpoint specification
	*/
	Body models.EndpointValidationSpec

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

ValidateEndpointUsingPOSTParams contains all the parameters to send to the API endpoint

for the validate endpoint using p o s t operation.

Typically these are written to a http.Request.

func NewValidateEndpointUsingPOSTParams

func NewValidateEndpointUsingPOSTParams() *ValidateEndpointUsingPOSTParams

NewValidateEndpointUsingPOSTParams creates a new ValidateEndpointUsingPOSTParams 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 NewValidateEndpointUsingPOSTParamsWithContext

func NewValidateEndpointUsingPOSTParamsWithContext(ctx context.Context) *ValidateEndpointUsingPOSTParams

NewValidateEndpointUsingPOSTParamsWithContext creates a new ValidateEndpointUsingPOSTParams object with the ability to set a context for a request.

func NewValidateEndpointUsingPOSTParamsWithHTTPClient

func NewValidateEndpointUsingPOSTParamsWithHTTPClient(client *http.Client) *ValidateEndpointUsingPOSTParams

NewValidateEndpointUsingPOSTParamsWithHTTPClient creates a new ValidateEndpointUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewValidateEndpointUsingPOSTParamsWithTimeout

func NewValidateEndpointUsingPOSTParamsWithTimeout(timeout time.Duration) *ValidateEndpointUsingPOSTParams

NewValidateEndpointUsingPOSTParamsWithTimeout creates a new ValidateEndpointUsingPOSTParams object with the ability to set a timeout on a request.

func (*ValidateEndpointUsingPOSTParams) SetAPIVersion

func (o *ValidateEndpointUsingPOSTParams) SetAPIVersion(aPIVersion string)

SetAPIVersion adds the apiVersion to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) SetAuthorization

func (o *ValidateEndpointUsingPOSTParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) SetBody

SetBody adds the body to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) SetContext

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

SetContext adds the context to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) SetDefaults

func (o *ValidateEndpointUsingPOSTParams) SetDefaults()

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

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

func (*ValidateEndpointUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) SetTimeout

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

SetTimeout adds the timeout to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WithAPIVersion

WithAPIVersion adds the aPIVersion to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WithAuthorization

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

WithAuthorization adds the authorization to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WithBody

WithBody adds the body to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WithContext

WithContext adds the context to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WithDefaults

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

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

func (*ValidateEndpointUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the validate endpoint using p o s t params

func (*ValidateEndpointUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ValidateEndpointUsingPOSTReader

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

ValidateEndpointUsingPOSTReader is a Reader for the ValidateEndpointUsingPOST structure.

func (*ValidateEndpointUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ValidateEndpointUsingPOSTUnauthorized

type ValidateEndpointUsingPOSTUnauthorized struct {
}

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

Unauthorized Request

func NewValidateEndpointUsingPOSTUnauthorized

func NewValidateEndpointUsingPOSTUnauthorized() *ValidateEndpointUsingPOSTUnauthorized

NewValidateEndpointUsingPOSTUnauthorized creates a ValidateEndpointUsingPOSTUnauthorized with default headers values

func (*ValidateEndpointUsingPOSTUnauthorized) Error

func (*ValidateEndpointUsingPOSTUnauthorized) IsClientError added in v0.5.0

func (o *ValidateEndpointUsingPOSTUnauthorized) IsClientError() bool

IsClientError returns true when this validate endpoint using p o s t unauthorized response has a 4xx status code

func (*ValidateEndpointUsingPOSTUnauthorized) IsCode added in v0.5.0

IsCode returns true when this validate endpoint using p o s t unauthorized response a status code equal to that given

func (*ValidateEndpointUsingPOSTUnauthorized) IsRedirect added in v0.5.0

IsRedirect returns true when this validate endpoint using p o s t unauthorized response has a 3xx status code

func (*ValidateEndpointUsingPOSTUnauthorized) IsServerError added in v0.5.0

func (o *ValidateEndpointUsingPOSTUnauthorized) IsServerError() bool

IsServerError returns true when this validate endpoint using p o s t unauthorized response has a 5xx status code

func (*ValidateEndpointUsingPOSTUnauthorized) IsSuccess added in v0.5.0

IsSuccess returns true when this validate endpoint using p o s t unauthorized response has a 2xx status code

func (*ValidateEndpointUsingPOSTUnauthorized) String added in v0.5.0

Jump to

Keyboard shortcuts

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